/* ===================== GLOBAL RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 100px;
    /* Space for fixed header */
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background-color: #fff;
    color: #000;
    scroll-behavior: smooth;
}

/* ===================== HEADER ===================== */
header {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(35deg, #ffffff, #ffffff, #fc5d02);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 10px rgba(115, 115, 115, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

section {
    scroll-margin-top: 100px;
    /* header ki height ke barabar */
}

/* ===================== LOGO ===================== */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
    display: flex;
    gap: 45px;
}

.nav-links a {
    color: #000;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffd700;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000;
}

/* ===== SUBMENU ===== */
.has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(to bottom right, #fff5e1, #ffffff);
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    min-width: 180px;
    z-index: 999;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}

.submenu a:hover {
    background-color: #f97316;
    color: #fff;
    border-radius: 6px;
}

@media (min-width: 769px) {
    .has-submenu:hover .submenu {
        display: block;
    }
}


/* ============ HERO ============ */
    .about-hero {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/about-banner.jpg') center/cover no-repeat;
      height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .about-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    .about-hero h1 span {
      color: #ff9800;
    }
    .about-hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: auto;
    }

    /* ============ MAIN ABOUT ============ */

    .about-main {
      padding: 80px 10%;
      background: #fff;
    }
    .about-container {
      display: flex;
      gap: 50px;
      align-items: center;
      flex-wrap: wrap;
    }
    .about-text {
      flex: 1;
    }
    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #222;
      position: relative;
    }
    .about-text h2::after {
      content: "";
      width: 60px;
      height: 4px;
      background: #ff9800;
      display: block;
      margin-top: 8px;
    }
    .about-text p {
      margin-bottom: 15px;
      font-size: 1rem;
    }
    .about-img {
      flex: 1;
    }
    .about-img img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    /* ============ MISSION & VISION ============ */
    .mission-vision {
      padding: 80px 10%;
      background: #f4f4f4;
    }
    .mv-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .mv-box {
      background: #fff;
      padding: 40px 25px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    .mv-box:hover {
      transform: translateY(-10px);
    }
    .mv-box i {
      font-size: 2rem;
      color: #ff9800;
      margin-bottom: 15px;
    }
    .mv-box h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    /* ============ WHY CHOOSE US ============ */
    .why-choose {
      padding: 80px 10%;
      background: #fff;
      text-align: center;
    }
    .why-choose h2 {
      font-size: 2rem;
      margin-bottom: 50px;
    }
    .why-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }
    .why-box {
      background: #f9f9f9;
      padding: 30px 20px;
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .why-box:hover {
      background: #ff9800;
      color: #fff;
      transform: translateY(-8px);
    }
    .why-box i {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #ff9800;
      transition: color 0.3s ease;
    }
    .why-box:hover i {
      color: #fff;
    }

    /* ============ RESPONSIVE ============ */
    @media(max-width: 768px) {
      .about-container {
        flex-direction: column;
      }
      .about-hero h1 {
        font-size: 2.2rem;
      }
    }

/* ====== Footer ====== */
.site-footer {
    background: radial-gradient(1200px 600px at 70% -200px, rgba(252, 93, 2, 0.08), transparent 60%),
        #101216;
    color: #d6d8de;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 10px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 28px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: .3px;
}

.footer-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
    background: #fff;
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-name {
    font-weight: 700;
    color: #f97316;
    font-size: 1.1rem;
}

.brand-tagline {
    margin: 10px 0 14px;
    color: #b9bcc6;
    line-height: 1.6;
    font-size: .95rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #cfd2da;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: #ffd28f;
    transform: translateX(4px);
}

.contact-list {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.contact-list a {
    color: #d6d8de;
    text-decoration: none;
}

.contact-list a:hover {
    color: #ffd28f;
}

.ci {
    margin-right: 6px;
    filter: grayscale(20%);
}

.newsletter {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.newsletter input {
    flex: 1;
    background: #161a21;
    border: 1px solid #242934;
    color: #e6e8ee;
    border-radius: 10px;
    padding: 10px 12px;
    outline: none;
    transition: border .2s ease, box-shadow .2s ease;
}

.newsletter input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(252, 93, 2, .18);
}

.newsletter button {
    background: linear-gradient(90deg, #fc5d02, #ff7a2b);
    border: none;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .2s ease;
}

.newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 93, 2, .35);
}

/* Socials */
.social-row {
    display: flex;
    gap: 10px;
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #161a21;
    border: 1px solid #242934;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.social svg {
    width: 18px;
    fill: #e6e8ee;
}

.social:hover {
    transform: translateY(-3px);
    background: #1b2130;
    box-shadow: 0 10px 22px rgba(0, 0, 0, .35),
        0 0 0 2px rgba(252, 93, 2, .25) inset;
}

/* Bottom strip */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 20px;
    padding: 14px 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: #aeb3bf;
    font-size: .92rem;
}

.bottom-links {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.bottom-links a {
    color: #cfd2da;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #ffd28f;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 980px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    /* Hamburger */
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%; left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .nav-links.active { display: flex; }
    .nav-links a {
        padding: 12px 20px;
        font-weight: 600;
        font-size: 15px;
        color: #333;
        border-bottom: 1px solid #eee;
    }
    .nav-links a:hover { background: #a4151c; color: #fff; }
    .contact-container { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .footer-container { grid-template-columns: 1fr; gap: 22px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}


@media (max-width: 768px) {
  .has-submenu .submenu {
    position: static;   /* dropdown full width le */
    box-shadow: none;
    border-radius: 0;
    display: none;
  }

  .has-submenu.active .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 40px; /* thoda indent dikhane ke liye */
  }
}