 :root {
    --orange: #FF6B00;
    --orange-lt: #FF8C38;
    --orange-glow: rgba(255, 107, 0, 0.12);
    --dark: #0A0E1A;
    --dark2: #111827;
    --dark3: #1C2333;
    --slate: #2E3A50;
    --text: #E8ECF4;
    --muted: #8896AB;
    --white: #FFFFFF;

    /* White theme */
    --bg: #FFFFFF;
    --bg2: #F7F8FB;
    --bg3: #F0F2F7;
    --card-bg: #FFFFFF;
    --text-main: #1a2236;
    --text-muted: #6B7A99;
    --border: rgba(0, 0, 0, 0.07);

    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.7;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  ul {
    list-style: none;
  }

  img {
    display: block;
    max-width: 100%;
  }

  input,
  textarea,
  button {
    font-family: inherit;
  }

  /* Scrollbar */
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: var(--bg2);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 3px;
  }

  /* ============================================================
   UTILITY
============================================================ */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section {
    padding: 96px 0;
  }

  .section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--orange);
    background: var(--orange-glow);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 18px;
  }

  .section-title span {
    color: var(--orange);
  }

  .section-sub {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 540px;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: .93rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    letter-spacing: .02em;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.45);
  }

  .btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid rgba(0, 0, 0, 0.15);
  }

  .btn-outline:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
  }

  /* ============================================================
   NAVBAR — Logo LEFT | Links CENTER | Button RIGHT
============================================================ */
  #navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    max-width: 1280px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
  }

  #navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
  }

  .nav-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    gap: 16px;
  }

  /* Logo */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  .nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f4f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .nav-logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--text-main);
    white-space: nowrap;
  }

  .nav-logo-text span {
    color: var(--orange);
  }

  /* Center links */
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex-wrap: nowrap;
  }

  .nav-links a {
    font-size: .8rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 10px;
    border-radius: 8px;
    white-space: nowrap;
    transition: var(--transition);
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav-links a:hover {
    color: var(--text-main);
  }

  .nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  .nav-links a.active {
    color: var(--orange);
  }

  .nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* Right side — Get Quote button */
  .nav-right {
    flex-shrink: 0;
  }

  .nav-quote {
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3);
    font-size: .82rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
  }

  .nav-quote:hover {
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.5);
    transform: translateY(-1px);
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
    flex-shrink: 0;
    justify-self: end;
  }

  .hamburger:hover {
    background: transparent;
  }

  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
  }

  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile Menu */
  .mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.99);
    border-top: none;
    padding: 0;
    overflow: hidden;
    max-height: 0;
    border-radius: 0 0 28px 28px;
    transition: max-height .45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu.open {
    max-height: 600px;
    padding-bottom: 12px;
  }

  .mobile-menu a {
    padding: 12px 24px;
    font-size: .9rem;
    color: var(--text-muted);
    transition: var(--transition);
    border-left: 3px solid transparent;
  }

  .mobile-menu a:hover {
    color: var(--orange);
    border-left-color: var(--orange);
    background: var(--orange-glow);
    padding-left: 32px;
  }

  .mobile-menu .mob-quote {
    margin: 8px 16px 4px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: #fff !important;
    border-radius: 50px;
    text-align: center;
    justify-content: center;
    padding: 12px 24px !important;
    border-left: none !important;
  }

  .mobile-menu .mob-quote:hover {
    padding-left: 24px !important;
  }

  /* ============================================================
   HERO CAROUSEL
============================================================ */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  .carousel {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.04);
    pointer-events: none;
  }

  .slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  /* Hero BG — user will add their own image via CSS variable or inline style */
  .slide-bg {
    position: absolute;
    inset: 0;
    background-color: #f0f4ff;
  }

  .slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.1) 100%);
  }

  .slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-top: 80px;
  }

  .slide-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(0px, calc((100% - 1200px) / 2 + 20px));
    max-width: 700px;
    padding-right: 78px;
  }

  .slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 107, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    animation: fadeUp .7s .1s both;
  }

  .slide-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 22px;
    animation: fadeUp .7s .2s both;
  }

  .slide-heading span {
    color: var(--orange-lt);
  }

  .slide-text {
    font-size: clamp(.95rem, 1.8vw, 1.12rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 38px;
    max-width: 500px;
    line-height: 1.75;
    animation: fadeUp .7s .3s both;
  }

  .slide-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp .7s .4s both;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(28px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Carousel controls */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .carousel-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  }

  .carousel-btn.prev {
    left: 28px;
  }

  .carousel-btn.next {
    right: 28px;
  }

  .carousel-dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
  }

  .dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 4px;
  }

  /* ============================================================
   STATS SECTION
============================================================ */
  .stats-section {
    background: var(--bg2);
    padding: 72px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .stat-card {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: var(--transition);
  }

  .stat-card:last-child {
    border-right: none;
  }

  .stat-card:hover {
    background: rgba(255, 107, 0, 0.04);
  }

  .stat-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 107, 0, 0.04));
    border: 1px solid rgba(255, 107, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--orange);
    transition: var(--transition);
  }

  .stat-card:hover .stat-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.3);
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 8px;
  }

  .stat-number span {
    color: var(--orange);
  }

  .stat-label {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  /* ============================================================
   WHATSAPP FLOATING BUTTON — Fixed bottom-left
============================================================ */
  /* .whatsapp-fixed{
  position:fixed;bottom:28px;left:28px;z-index:9998;
}
.whatsapp-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:#25D366;color:#fff;
  padding:13px 20px;border-radius:50px;
  font-size:.88rem;font-weight:600;
  box-shadow:0 6px 28px rgba(37,211,102,0.4);
  transition:var(--transition);
}
.whatsapp-btn:hover{
  transform:translateY(-3px) scale(1.04);
  box-shadow:0 12px 36px rgba(37,211,102,0.55);
}
.whatsapp-btn i{font-size:1.3rem;}
.whatsapp-label{display:inline;} */

  /* NEW CODE */
  .whatsapp-fixed {
    position: fixed;
    bottom: 28px;
    right: 28px;
    /* left se right shift */
    z-index: 9998;
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 16px 24px;
    /* size increase */
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    /* safe transition */
  }

  .whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-btn i {
    font-size: 1.6rem;
    /* icon bigger */
  }

  .whatsapp-label {
    display: inline;
  }

  /* NEW CODE */
  /* ============================================================
   ABOUT SECTION
============================================================ */
  .about-section {
    background: var(--bg);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .about-img-wrap {
    position: relative;
  }

  .about-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Placeholder when no image */
  .about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: .85rem;
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
  }

  .about-img-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 107, 0, 0.25);
  }

  .about-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: #fff;
    padding: 18px 24px;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.35);
    text-align: center;
  }

  .about-badge strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
  }

  .about-badge span {
    font-size: .75rem;
    font-weight: 500;
    opacity: .9;
  }

  .about-list {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .95rem;
    color: var(--text-muted);
  }

  .about-list li i {
    color: var(--orange);
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* ============================================================
   VISION & MISSION
============================================================ */
  .vm-section {
    background: var(--bg2);
  }

  .vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .vm-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  }

  .vm-card:hover {
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  .vm-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 28px;
    box-shadow: 0 8px 28px rgba(255, 107, 0, 0.3);
  }

  .vm-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 16px;
  }

  .vm-card p {
    color: var(--text-muted);
    line-height: 1.8;
  }

  .vm-card ul {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .vm-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: .93rem;
  }

  .vm-card ul li i {
    color: var(--orange);
    margin-top: 3px;
    flex-shrink: 0;
  }

  /* ============================================================
   SERVICES
============================================================ */
  .services-section {
    background: var(--bg);
  }

  .services-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .services-header .section-sub {
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .service-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  .service-card:hover {
    border-color: rgba(255, 107, 0, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 107, 0, 0.1);
  }

  .service-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 22px;
    transition: var(--transition);
  }

  .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    color: #fff;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
    transform: scale(1.08);
  }

  .service-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ============================================================
   WHY CHOOSE US
============================================================ */
  .why-section {
    background: var(--bg2);
  }

  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .why-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 36px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 24px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .why-item:hover {
    background: rgba(255, 107, 0, 0.03);
    border-color: rgba(255, 107, 0, 0.15);
    transform: translateX(4px);
  }

  .why-item-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--orange);
    flex-shrink: 0;
  }

  .why-item-text h4 {
    font-size: .98rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
  }

  .why-item-text p {
    font-size: .83rem;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .why-big-card {
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    border-radius: var(--radius-lg);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(255, 107, 0, 0.3);
  }

  .why-big-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }

  .why-big-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
  }

  .why-big-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

  .why-big-card p {
    color: rgba(255, 255, 255, 0.88);
    font-size: .95rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }

  .why-big-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
  }

  .why-big-stat {
    text-align: center;
  }

  .why-big-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
  }

  .why-big-stat span {
    font-size: .78rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
  }

  /* ============================================================
   CONTACT
============================================================ */
  .contact-section {
    background: var(--bg);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
  }

  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 14px;
  }

  .contact-info>p {
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.75;
  }

  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .contact-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--orange);
    flex-shrink: 0;
  }

  .contact-item-text strong {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 3px;
  }

  .contact-item-text span {
    font-size: .85rem;
    color: var(--text-muted);
  }

  .contact-note {
    margin-top: 32px;
    padding: 18px 22px;
    background: rgba(255, 107, 0, 0.07);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: var(--radius);
    font-size: .88rem;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-form {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-lg);
  }

  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: var(--bg2);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: .93rem;
    color: var(--text-main);
    transition: var(--transition);
    outline: none;
    resize: none;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.25);
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  }

  .form-group textarea {
    min-height: 120px;
  }

  .field-error {
    display: block;
    margin-top: 6px;
    font-size: .78rem;
    color: #dc2626;
    min-height: 18px;
  }

  .form-group input.invalid,
  .form-group textarea.invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
    background: #fff;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1rem;
  }

  /* ============================================================
   SUBSCRIBE
============================================================ */
  .subscribe-section {
    background: linear-gradient(135deg, #fff7f0 0%, #fff3e8 100%);
    padding: 88px 0;
    border-top: 1px solid var(--border);
  }

  .subscribe-inner {
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
  }

  .subscribe-inner .section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
  }

  .subscribe-inner .section-sub {
    margin: 0 auto 40px;
    text-align: center;
  }

  .subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
  }

  .subscribe-form input {
    flex: 1;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 14px 22px;
    font-size: .93rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition);
  }

  .subscribe-form input::placeholder {
    color: rgba(0, 0, 0, 0.3);
  }

  .subscribe-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  }

  .subscribe-form .btn {
    flex-shrink: 0;
  }

  /* ============================================================
   SUCCESS POPUP
============================================================ */
  .modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.48);
    z-index: 10001;
    padding: 20px;
  }

  .modal.open {
    display: flex;
  }

  .modal-card {
    width: min(460px, 100%);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 32px 28px;
    text-align: center;
  }

  .modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
    font-size: 1.6rem;
  }

  .modal-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--text-main);
    margin-bottom: 8px;
  }

  .modal-card p {
    color: var(--text-muted);
    font-size: .95rem;
    margin-bottom: 20px;
  }

  /* ============================================================
   FOOTER
============================================================ */
  footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 72px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 56px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }

  .footer-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), var(--orange-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
    overflow: hidden;
  }

  .footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
  }

  .footer-logo-text span {
    color: var(--orange);
  }

  .footer-brand p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .social-links {
    display: flex;
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--muted);
    transition: var(--transition);
  }

  .social-link:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
  }

  .footer-col h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
  }

  .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: .85rem;
    color: var(--muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer-links a:hover {
    color: var(--orange);
    padding-left: 6px;
  }

  .footer-links a i {
    font-size: .65rem;
    color: var(--orange);
  }

  .footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
  }

  .footer-contact-list li i {
    color: var(--orange);
    margin-top: 2px;
    flex-shrink: 0;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: .82rem;
    color: var(--muted);
  }

  .footer-bottom span {
    color: var(--orange);
  }

  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }

  .footer-bottom-links a {
    font-size: .8rem;
    color: var(--muted);
    transition: var(--transition);
  }

  .footer-bottom-links a:hover {
    color: var(--orange);
  }

  /* ============================================================
   SCROLL REVEAL
============================================================ */
  .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ============================================================
   RESPONSIVE
============================================================ */
  @media(max-width:1100px) {
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 36px;
    }

    .nav-links a {
      padding: 8px 8px;
      font-size: .75rem;
    }
  }

  @media(max-width:900px) {
    .nav-links {
      display: none;
    }

    .hamburger {
      display: flex;
    }

    .mobile-menu {
      display: flex;
    }

    .nav-inner {
      grid-template-columns: 1fr auto;
    }

    .nav-right {
      display: none;
    }

    .about-grid,
    .why-grid,
    .contact-grid,
    .vm-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
      border-right: none;
      border-bottom: 1px solid var(--border);
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .about-badge {
      bottom: -14px;
      right: -10px;
    }

    .whatsapp-label {
      display: none;
    }

    /* .whatsapp-btn{padding:13px 16px;border-radius:50%;}
  .whatsapp-fixed{bottom:20px;left:18px;} */
  }

  /* NEW CODE */
  @media (max-width: 768px) {
    .whatsapp-fixed {
      bottom: 20px;
      right: 18px;
      /* left se right shift */
    }

    .whatsapp-btn {
      padding: 20px;
      /* balanced circular size */
      border-radius: 50%;
      font-size: 1.3rem;
    }

    .whatsapp-btn i {
      font-size: 2rem;
    }

    .whatsapp-label {
      display: none;
      /* mobile pe sirf icon */
    }
  }

  /* NEW CODE */

  @media(max-width:600px) {
    .section {
      padding: 64px 0;
    }

    #navbar {
      top: 10px;
      width: 96%;
      border-radius: 40px;
    }

    .nav-inner {
      padding: 0 12px;
    }

    .services-grid {
      grid-template-columns: 1fr;
    }

    .stats-grid {
      grid-template-columns: 1fr 1fr;
    }

    .subscribe-form {
      flex-direction: column;
    }

    .subscribe-form input {
      border-radius: var(--radius);
    }

    .subscribe-form .btn {
      border-radius: var(--radius);
      width: 100%;
      justify-content: center;
    }

    .footer-grid {
      grid-template-columns: 1fr;
    }

    .slide-inner {
      padding-right: 46px;
    }

    .carousel-btn {
      width: 32px;
      height: 32px;
      font-size: .75rem;
    }

    .carousel-btn.prev {
      left: 8px;
    }

    .carousel-btn.next {
      right: 8px;
    }

    .contact-form {
      padding: 24px 18px;
    }

    .why-big-stats {
      grid-template-columns: 1fr 1fr;
    }

    .vm-card {
      padding: 36px 26px;
    }
  }

  @media(max-width:380px) {
    .nav-logo-text {
      font-size: 1.1rem;
    }

    .slide-inner {
      padding-right: 40px;
    }
  }
