body {
  border: 0px solid red !important;
}

/* ====== PAGE WRAPPER / STRUCTURE ====== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HERO SECTION */
.about-hero {
  background: #f5f7fa;
  text-align: center;
  padding: 60px 20px;
}
.about-hero .wrap {
  max-width: 900px;
  margin: 0 auto;
}

/* INTRO GRID */
.intro {
  margin: 60px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 40px;
  align-items: center;
}
.profile-photo {
  width: 100%;
  border-radius: 10px;
}

/* SERVICES BANNER */
.services-banner-img {
  width: 100%;
  border-radius: 8px;
  margin: 40px 0;
}

/* EXPERTISE */
.expertise {
  margin: 60px 0;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.expertise-card {
  background: #fafafa;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
}

/* FEATURES SECTION */
.features ul {
  margin: 40px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.features li {
  background: #f0f0f0;
  padding: 10px 18px;
  border-radius: 6px;
}

/* CTA */
.cta {
  background: #222;
  color: white;
  padding: 60px 30px;
  border-radius: 12px;
  margin: 80px 0 40px;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background: #0077B6;
  color: #fff;
}
.btn-outline {
  border: 1px solid #0077B6;
  color: #fff;
}

/* FOOTER ALIGN */
.site-footer .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .cta-actions {
    flex-direction: column;
  }
}

/* GLOBAL FIX WRAPPER */
.wrap,
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}


/* INTRO SECTION FIX (center align and balanced spacing) */
.intro {
  margin: 80px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 350px auto;
  gap: 40px;
  align-items: center;
}
.intro-text h2 {
  margin-bottom: 14px;
  font-size: 28px;
}
.key-contact {
  margin-top: 16px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  margin-top: 30px;
}
.expertise-card {
  text-align: left;
}


/* FEATURES LIST CENTERED */
.features ul {
  justify-content: center;
}


/* CTA FULL WIDTH CENTER WITH CONTAINER */
.cta {
  border-radius: 12px;
  margin: 100px auto;
  padding: 60px 30px;
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}


/* FOOTER FIX (center everything evenly) */
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer .footer-right a {
  margin-left: 10px;
}


/* MOBILE FIXES */
@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .site-footer .wrap {
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }
}

/* TIMELINE FIX */
.timeline-section {
  margin: 60px 0;
  padding-left: 0;
}
.timeline {
  padding-left: 20px; /* thoda clean left align */
  margin-top: 20px;
  line-height: 1.7;
}
.timeline li {
  margin-bottom: 8px;
}

/* REMOVE BIG SPACE ABOVE FOOTER */
.cta {
  margin-bottom: 10px !important; /* pehle 80px tha */
}

/* INTRO SPACING FIX */
.intro {
  margin: 40px 0; /* pehle 60px tha → kam kar diya */
}

.intro-text h2 {
  margin-bottom: 12px; /* heading ke neeche gap kam */
}

.intro-text p {
  margin-bottom: 14px; /* paragraph ke neeche gap kam */
}

.key-contact {
  margin-top: 8px !important; /* contacts ke upar space kam */
}
.key-contact li {
  margin-bottom: 4px; /* list elements ke darmiyan space thoda kam */
}

/* Reduce space above services banner */
.intro {
  margin-bottom: 30px !important; /* 60px → 30px */
}

.services-banner-img {
  margin-top: 10px !important; /* 40px → 10px */
}

/* Improve Intro Text Hierarchy */
.intro-text h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0f172a; /* crisp dark */
}

.intro-text p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #1f2937;
}

/* Key Contact List Cleaner Look */
.key-contact {
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.key-contact li {
  margin-bottom: 6px;
  font-size: 16.5px;
  color: #1f2937;
}

.key-contact a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

.key-contact a:hover {
  text-decoration: underline;
}

/* Reduce spacing above & below intro section */
.intro {
  margin: 40px 0;
}

/* CONTACT INFO STYLING */
.contact-info p {
  margin: 6px 0;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 8px;
  color: #0077b6; /* professional blue */
}

.contact-info a {
  color: #0077b6;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info {
  margin-top: 14px;
}

.contact-info p {
  margin: 4px 0;
  font-size: 17px;
  color: #333;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 8px;
  color: #0077b6;
  font-size: 18px;
}

.contact-info a {
  color: #0077b6;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

.section-heading {
  max-width: 760px;
  margin: 60px auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-heading p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
}

.timeline {
  max-width: 750px;
  margin: 60px auto;
  padding: 0 20px;
}

.timeline h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 25px;
  letter-spacing: -0.4px;
  color: #111;
}

.timeline ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 3px solid #0077b6;
}

.timeline ul li {
  padding: 14px 0 14px 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  position: relative;
}

.timeline ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #0077b6;
  border-radius: 50%;
  position: absolute;
  left: -6px;
  top: 22px;
}

/* HERO STYLING IMPROVED */
.about-hero {
  background: #f7f9fc;
  padding: 80px 20px;
  text-align: center;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #111;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: #0077b6;
}

.hero-tagline {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero-tagline .role {
  color: #0077b6;
  font-weight: 600;
}

.hero-desc {
  max-width: 750px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-tagline {
    font-size: 18px;
  }
  .hero-desc {
    font-size: 16px;
  }
}

.about-hero {
  background: #f5f7fa;
  text-align: center;
  padding: 40px 20px; /* pehle 60px tha, ab kam */
}

.about-hero h1 {
  margin-bottom: 10px; /* heading ke neeche gap control */
}

.about-hero .hero-sub,
.about-hero p {
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
  margin-top: 8px; /* pehle zyada gap tha, ab tight */
}

@media (max-width: 768px) {

    /* Show mobile toggle button */
    .mobile-menu-btn {
        display: block;
        font-size: 28px;
        color: #fff;
        cursor: pointer;
    }

    /* Hide desktop menu on mobile */
    .menu {
        display: none;
    }

    /* Mobile menu styling */
    #mobile-menu {
        display: none;
        background: #000;
        padding: 20px;
    }

    #mobile-menu ul li a {
        color: #fff !important;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #333;
    }

    #mobile-menu ul li a:hover {
        color: #0077B6 !important;
    }
}

/* HIDE MOBILE MENU ON DESKTOP */
#mobile-menu {
    display: none;
    background: #000;
    padding: 20px;
}

.mobile-menu-btn {
    display: none;
}
