* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f8f9fb;
  color: #333;
}

/* NAVBAR */
.navbar {
    position: fixed;   
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;     
    
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* LOGO */
.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #e53935;
}

/* MENU */
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #e53935;
}

/* BUTTON */
.btn {
    background: #e53935;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
    transition: 0.3s;
}

.btn:hover {
    background: #d32f2f;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 20px;
        background: #fff;
        flex-direction: column;
        width: 220px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 10px 0;
    }

}

.btn {
  background: #e53935;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #c62828;
}

.large {
  padding: 14px 25px;
  margin-top: 15px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  gap: 40px;
  margin-top: 100px;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 48px;
}

.hero-text span {
  color: #e53935;
}

.hero-text p {
  margin-top: 15px;
  color: #666;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: white;
    width: 200px;
    padding: 20px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    right: 20px;
  }

  .menu-toggle {
    display: block;
  }
}


.about-section {
  padding: 80px 8%;
  background: #f9fafc;
}

/* HEADER */
.about-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 50px;
}

.tag {
  font-size: 14px;
  color: #999;
}

.about-header h2 {
  font-size: 36px;
  margin: 10px 0;
}

.about-header h2 span {
  color: #e53935;
}

.about-header p {
  color: #666;
  line-height: 1.6;
}

/* CONTENT */
.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
}

/* IMAGE */
.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* TEXT */
.about-text {
  max-width: 500px;
}

.about-text h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.about-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* STATS */
.stats {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.stat-box {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  flex: 1;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h4 {
  color: #e53935;
  font-size: 22px;
}

.stat-box p {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .about-header h2 {
    font-size: 28px;
  }

  .about-text h3 {
    font-size: 20px;
  }
}






.values-section {
  padding: 80px 8%;
  background: #f8f9fb;
  text-align: center;
}

.values-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

/* GRID */
.values-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
.value-card {
  background: transparent;
  padding: 30px 20px;
  max-width: 300px;
  border-radius: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON */
.icon {
  font-size: 28px;
  color: #e53935;
  margin-bottom: 15px;
}

/* TEXT */
.value-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER EFFECT (ZOOM OUT) */
.value-card:hover {
  transform: scale(0.95); /* zoom out */
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .values-container {
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .values-section h2 {
    font-size: 26px;
  }

  .value-card {
    max-width: 100%;
  }
}


    .section {
        padding: 60px 20px;
        text-align: center;
        max-width: 1200px;
        margin: auto;
    }

    .tag {
        display: inline-block;
        background: #fff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 14px;
        color: #888;
        margin-bottom: 15px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }

    h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    h1 span {
        color: #e53935;
    }

    .subtitle {
        color: #666;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .card {
        background: #fff;
        padding: 30px;
        border-radius: 12px;
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    /* 🔥 Hover zoom OUT effect */
    .card:hover {
        transform: scale(0.95);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .card-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .card h3 {
        margin-bottom: 10px;
    }

    .card p {
        color: #666;
        line-height: 1.6;
        font-size: 14px;
    }

    /* 📱 Mobile tweaks */
    @media (max-width: 500px) {
        h1 {
            font-size: 26px;
        }
    }







    .app-section{
        background: #f5f6f8;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50vh;
    }

      .app-div {
        background: #fff;
        padding: 50px 20px;
        border-radius: 15px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        text-align: center;
        max-width: 800px;
        width: 90%;
   
    }

    .app-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .app-section p {
        color: #666;
        max-width: 600px;
        margin: 0 auto 30px;
        line-height: 1.6;
    }

    .buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .btn i {
        font-size: 18px;
    }

    .app-store {
        background: #000;
        color: #fff;
    }

    .google-play {
        background: #1a8f5c;
        color: #fff;
    }

    /* Hover effect */
    .btn:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    /* Mobile */
    @media (max-width: 500px) {
        .app-section h2 {
            font-size: 22px;
        }

        .btn {
            width: 100%;
            justify-content: center;
        }
    }


    /* SECTION */
.success-section {
    position: relative;
    background: url('https://images.unsplash.com/photo-1554224155-6726b3ff858f') center/cover no-repeat;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

/* DARK OVERLAY */
.success-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.content {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

/* HEADING */
.content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.content h1 span {
    color: #ff4d4d;
}

.content p {
    max-width: 700px;
    margin: auto;
    color: #ddd;
    line-height: 1.6;
}

/* STATS */
.stats {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    width: 200px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.05);
}

.stat-card h2 {
    font-size: 28px;
    margin: 10px 0;
}

.stat-card span {
    font-size: 14px;
    color: #ccc;
}

/* CTA BOX */
.cta {
    margin-top: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 35px 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta h3 {
    margin-bottom: 10px;
}

.cta p {
    font-size: 14px;
    margin-bottom: 20px;
}

/* BUTTON */
.cta button {
    background: #ff4d4d;
    border: none;
    padding: 12px 25px;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.cta button:hover {
    background: #ff2e2e;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .content h1 {
        font-size: 28px;
    }

    .stat-card {
        width: 100%;
        max-width: 280px;
    }
}















body {
    background: #f5f6f8;
}

/* SECTION */
.careers {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.header p {
    color: #666;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT SIDE */
.left h2 {
    margin-bottom: 25px;
}

/* FEATURES */
.feature {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    color: #e53935;
    font-size: 20px;
}

.feature h4 {
    margin-bottom: 5px;
}

.feature p {
    color: #666;
    font-size: 14px;
}

/* APPLY BOX */
.apply-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.apply-box h3 {
    margin-bottom: 10px;
}

.apply-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.apply-box button {
    width: 100%;
    padding: 12px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.apply-box button:hover {
    background: #d32f2f;
}

/* RIGHT SIDE */
.right h2 {
    margin-bottom: 10px;
}

.right p {
    color: #666;
    margin-bottom: 20px;
}

/* JOB CARD */
.job {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.job:hover {
    transform: translateY(-5px);
}

.job h4 {
    margin-bottom: 5px;
}

.job span {
    font-size: 13px;
    color: #777;
}

/* FOOT TEXT */
.footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.footer-text a {
    color: #e53935;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }
}





/* SECTION */
.contact {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 36px;
}

.header span {
    color: #e53935;
}

.header p {
    color: #666;
    margin-top: 10px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT */
.map-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.map-box h3 {
    margin-bottom: 10px;
}

.map-box p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.map {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* BUTTONS */
.map-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.red {
    background: #e53935;
}

.black {
    background: #000;
}

/* RIGHT */
.form-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-box h3 {
    margin-bottom: 10px;
}

.form-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* FORM */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #e53935;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }
}



/* SECTION */
.info-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

/* GRID */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 12px;
}

.icon {
    color: #e53935;
    font-size: 18px;
}

.info-text h4 {
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    color: #666;
}

/* SOCIAL */
.social {
    margin: 20px 0;
}

.social h4 {
    margin-bottom: 10px;
}

.social a {
    margin-right: 10px;
    font-size: 18px;
    color: #e53935;
    text-decoration: none;
}

/* IMAGE BANNER */
.banner {
    margin-top: 20px;
}

.banner img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 700px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}



/* SECTION WRAPPER */
.partner-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

/* CARD */
.partner-card {
    background: #e53935;
    color: #fff;
    padding: 50px 20px;
    border-radius: 18px;
    text-align: center;
    max-width: 850px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* TAG */
.tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* TITLE */
.partner-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TEXT */
.partner-card p {
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
    color: #ffecec;
}

/* BUTTON */
.partner-card button {
    background: #fff;
    color: #e53935;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.partner-card button:hover {
    transform: scale(1.05);
    background: #fce4e4;
}

/* RESPONSIVE */
@media (max-width: 500px) {
    .partner-card h2 {
        font-size: 22px;
    }
}




/* FOOTER */
.footer {
    background: #2f3a44;
    color: #ccc;
    padding: 60px 20px 20px;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

/* LOGO + TEXT */
.footer-logo h2 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo span {
    color: #e53935;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* SOCIAL */
.social a {
    display: inline-block;
    margin-right: 10px;
    color: #ccc;
    font-size: 16px;
    transition: 0.3s;
}

.social a:hover {
    color: #fff;
}

/* TITLES */
.footer h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 16px;
}

/* LINKS */
.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 8px;
    }
}



