/* ===========================
   ROOT VARIABLES
   =========================== */
   :root {
    --primary: #B5A79B;
    --primary_hover: #8A7D72;
    --text: #4B4B4B;
    --text_light: #8A8A8A;
    --accent: #000000;
    --border: #E0E0E0;
    --background: #FFFFFF;
    --background_light: #F6F3EC;
    --font-main: 'Jost', sans-serif;
  }
  
  * { margin: 0; padding: 0; box-sizing: border-box; }
  
  body {
    font-family: var(--font-main);
    font-size: 16px;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
  }
  
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; height: auto; display: block; }
  
  /* ===========================
     FIXED LEFT SIDEBAR
     =========================== */
  .fixed-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 9999;
  }
  
  .sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px 14px 20px;
    background: rgba(246, 243, 236, 0.95);
    border-radius: 0 30px 30px 0;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    transition: all 0.3s ease;
    min-width: 130px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  
  .sidebar-item:hover {
    background: var(--primary);
    color: #fff;
    padding-left: 28px;
  }
  
  .sidebar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 15px;
  }
  
  .sidebar-text { line-height: 1.2; }
  
  /* ===========================
     HEADER - absolute (scroll pe gayab)
     =========================== */
  .site-header {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0 30px;
  }
  
  .header-pill {
    max-width: 1320px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 60px;
    padding: 14px 20px 14px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  
  .header-logo img { width: 60px; }
  
  .main-nav { flex: 1; display: flex; justify-content: center; }
  
  .nav-menu { display: flex; align-items: center; gap: 35px; }
  
  .menu-item { position: relative; }
  
  .menu-item > a {
    font-size: 15px;
    font-weight: 500;
    color: #000;
    padding: 8px 0;
    display: inline-block;
  }
  
  .menu-item.current-menu-item > a {
    border-bottom: 1.5px solid #000;
    padding-bottom: 4px;
  }
  
  .menu-item > a:hover { color: var(--primary); }
  
  .sub-menu {
    position: absolute;
    top: 140%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
  }
  
  .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .sub-menu li a {
    display: block;
    padding: 10px 22px;
    font-size: 14px;
    color: var(--text);
  }
  
  .sub-menu li a:hover {
    color: var(--primary);
    background: var(--background_light);
  }
  
  .header-right { display: flex; align-items: center; gap: 18px; }
  
  .lang-switch img { width: 26px; border-radius: 3px; }
  
  .appointment-label { font-size: 14px; font-weight: 400; color: var(--text); }
  
  .phone-link {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  
  .phone-link:hover { color: var(--primary); }
  
  .btn-touch {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .btn-touch:hover { background: var(--primary_hover); }
  
  .mobile-menu-btn {
    display: none;
    background: var(--primary);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* ===========================
     HERO SECTION - Full screen with bg image
     =========================== */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  /* Background Image */
  .hero-bg {
position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/bg-image.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  }
  
  /* Light beige overlay */
  .hero-overlay {
 position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(55, 50, 45, 0.55);   /* ← Warm dark overlay */
  z-index: 1;
  }
  
  /* ===========================
     HERO CONTENT (Heading + Desc)
     =========================== */
  .hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 200px 40px 80px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .hero-title {
    font-size: 96px;
    font-weight: 600;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 30px;
  }
  
  .hero-desc {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
  }
  
  /* ===========================
     HERO BOTTOM (Subtext + Btn + Cards)
     - still ON TOP of bg image
     =========================== */
  .hero-bottom {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 60px;
  }
  
  .hero-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
  }
  
  .hero-bottom-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .hero-subtext {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.25;
    color: #ffffff;
    max-width: 700px;
  }
  
  .btn-view-services {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 10px 10px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .btn-view-services:hover { background: rgba(255, 255, 255, 0.25); }
  
  .btn-view-services .btn-icon-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
  }
  
  .btn-view-services .btn-icon,
  .btn-view-services .btn-icon-hover {
    position: absolute;
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.4s ease;
  }
  
  .btn-view-services .btn-icon-hover { transform: translateX(-120%) rotate(-45deg); }
  .btn-view-services:hover .btn-icon { transform: translateX(120%) rotate(45deg); }
  .btn-view-services:hover .btn-icon-hover { transform: translateX(0) rotate(0); }
  
  /* ===========================
     3 CARDS - Transparent Glass (bg image dikhti hai)
     =========================== */
  .hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .hero-card {
    background: rgba(180, 170, 160, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    color: #fff;
  }
  
  .hero-card:hover {
    background: rgba(180, 170, 160, 0.55);
    transform: translateY(-5px);
  }
  
  .hero-card-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
  }
  
 .hero-card-icon svg {
    width: 42px;
    height: 42px;
    fill: #fff;
}
  
  .hero-card-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  
  .hero-card-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
  }
  
 



/* ===========================
   ABOUT SECTION
   =========================== */
   .about-section {
    background: #fff;
    padding: 120px 0;
    width: 100%;
  }
  
  .about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  /* ===========================
     TOP PART
     =========================== */
  .about-top {
    margin-bottom: 80px;
  }
  
  /* Pill Button - LEFT aligned */
  .about-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: transparent;
    border: 1px solid #D5D0C8;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4B4B4B;
    margin-bottom: 45px;
    transition: all 0.3s ease;
  }
  
  .about-pill:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
  }
  
  .pill-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    position: relative;
  }
  
  .pill-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
  }
  
  /* Heading - LEFT aligned, BARA */
  .about-heading {
    font-size: 72px;
    font-weight: 500;
    line-height: 1.08;
    color: var(--accent);
    letter-spacing: -2px;
    max-width: 900px;
    margin-bottom: 70px;
  }
  
  /* Vision + Mission - 2 columns */
  .about-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 950px;
  }
  
  .about-col-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.3px;
  }
  
  .about-col-title i {
    font-size: 18px;
    color: var(--accent);
  }
  
  .about-col-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #6B6B6B;
  }
  
  /* ===========================
     BOTTOM: Image + Grid
     =========================== */
  .about-bottom {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 25px;
    align-items: stretch;
  }
  
  /* Left Image */
  .about-image {
    width: 100%;
    min-height: 620px;
    border-radius: 30px 30px 30px 30px;
    overflow: hidden;
    background: #ddd;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Right 2x2 Grid */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  
  /* Box General */
  .about-box {
    border-radius: 25px;
    padding: 32px 28px;
    min-height: 295px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  
  /* Counter Box */
  .about-box-counter {
    background: #ffffff;
  }
  
  .about-box-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  }
  
  .box-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4B4B4B;
    padding-bottom: 18px;
    border-bottom: 1px solid #EAE5DD;
  }
  
  .box-counter {
    font-size: 68px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -2.5px;
    margin: 8px 0;
    font-family: var(--font-main);
  }
  
  .counter-suffix {
    color: var(--primary);
    font-size: 40px;
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: -1px;
  }
  
  .box-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #8A8A8A;
  }
  
  /* Image Box */
  .about-box-image {
    padding: 0;
    overflow: hidden;
    background: #ddd;
    position: relative;
  }
  
  .about-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    position: absolute;
    top: 0; left: 0;
  }
  
  .about-box-image:hover img {
    transform: scale(1.05);
  }
  





  /* ===========================
   SERVICES SECTION
   =========================== */

   .services-section {
    background: var(--background_light);
    padding: 120px 0;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  /* Optional - subtle diagonal line pattern */
  .services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(115deg, transparent 40%, rgba(255,255,255,0.35) 40.2%, transparent 40.4%),
      linear-gradient(115deg, transparent 78%, rgba(255,255,255,0.25) 78.2%, transparent 78.4%);
    pointer-events: none;
    z-index: 0;
  }
  
  .services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
  }
  
  /* Heading */
  .services-heading {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.08;
    color: var(--accent);
    letter-spacing: -2px;
    text-align: center;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Grid - 4 columns */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 50px;
  }
  
  /* Card - hover effect HATA diya */
  .service-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  /* Image wrapper */
  .service-image-wrap {
    position: relative;
    margin-bottom: 22px;
    padding: 0;
  }
  
  /* Image - hover pe SIRF yahi move hogi */
  .service-image {
    width: 100%;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    background: #ddd;
    position: relative;
    transition: transform 0.4s ease;
  }
  
  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
  }
  
  /* Hover pe sirf image right move */
  .service-card:hover .service-image {
    transform: translateX(12px);
  }
  
  /* Hover pe image zoom (optional) */
  .service-card:hover .service-image img {
    transform: scale(1.05);
  }
  
  /* Circle Arrow - image ke andar */
  .service-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.4s ease;
    z-index: 2;
  }
  
  .service-arrow i {
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
  }
  
  .service-card:hover .service-arrow {
    background: var(--accent);
  }
  
  .service-card:hover .service-arrow i {
    transform: rotate(0deg);
  }
  
  /* Content */
  .service-content {
    padding: 20px 18px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }
  
  .service-divider {
    width: 100%;
    height: 1px;
    background: #EAE5DD;
    margin-bottom: 18px;
  }
  
  .service-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: #6B6B6B;
    margin: 0;
  }
  
  /* Bottom Text */
  .services-bottom-text {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.3px;
    margin-top: 20px;
  }




  /* ===========================
   WHAT MAKES US DIFFERENT
   =========================== */
   .different-section {
    background: #FFFFFF;        
    padding: 120px 0;
    width: 100%;
  }
  
  .different-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
  }
  
  .different-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: start;
  }
  
  /* ===========================
     LEFT: Image + Rating
     =========================== */
  .different-left {
    position: relative;
  }
  
  .different-image {
    width: 100%;
    height: 720px;
    border-radius: 30px 0 30px 30px; /* Top-right flat */
    overflow: hidden;
    background: #ddd;
  }
  
  .different-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* Rating Card - Overlap */
  .rating-card {
    position: absolute;
    bottom: -30px;
    left: -10px;
    width: 200px;
    padding: 22px 20px;
    background: rgba(180, 170, 160, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .rating-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -1px;
  }
  
  .rating-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .rating-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -10px;
  }
  
  .rating-avatars img:first-child {
    margin-left: 0;
  }
  
  .rating-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
  }
  
  .rating-stars i {
    font-size: 12px;
    color: #E8A34E;
  }
  
  .rating-text {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
  }
  
  /* ===========================
     RIGHT: Heading + Rows
     =========================== */
  .different-right {
    padding-top: 10px;
  }
  
  .different-heading {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.05;
    color: var(--accent);
    letter-spacing: -2px;
    margin-bottom: 25px;
    max-width: 500px;
  }
  
  .different-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #6B6B6B;
    margin-bottom: 50px;
    max-width: 620px;
  }
  
  /* Row */
  .different-row {
    display: grid;
    grid-template-columns: 65px 200px 1fr;
    gap: 25px;
    align-items: flex-start;
    padding: 30px 0;
    border-top: 1px solid #E5DED3;
  }
  
  .different-row:last-child {
    border-bottom: 1px solid #E5DED3;
  }
  
  /* Icon Circle */
  .row-icon {
    width: 55px;
    height: 55px;
    background: rgba(180, 170, 160, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    transition: all 0.3s ease;
  }
  
  .different-row:hover .row-icon {
    background: var(--primary);
    color: #fff;
  }
  
  /* Title */
  .row-title {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--accent);
    letter-spacing: -0.2px;
    padding-top: 8px;
  }
  
  /* Description */
  .row-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: #6B6B6B;
    padding-top: 8px;
    margin: 0;
  }
  



/* ===========================
   TESTIMONIALS SECTION
   =========================== */
   .testimonials-section {
    position: relative;
    width: 100%;
    padding: 180px 0 120px;
    background: #FFFFFF;
    overflow: hidden;
  }
  
  /* Cream Arc - Bottom part */
  .testimonials-arc {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 120%;
    height: 75%;
    background: var(--background_light);
    border-radius: 50% 50% 0 0 / 22% 22% 0 0;
    z-index: 0;
  }
  
  /* Circular Logo Wrapper */
  .testimonials-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* White Circle around Logo */
  .logo-circle {
    width: 220px;
    height: 220px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  }
  
  .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
  }
  
  /* Container */
  .testimonials-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    margin-top: 150px;
  }
  
  /* Slider */
  .testimonials-slider {
    position: relative;
    overflow: hidden;
  }
  
  .testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  
  .testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 0 20px;
    outline: none;
  }
  
  /* Quote */
  .testimonial-quote {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--accent);
    letter-spacing: -0.8px;
    margin-bottom: 50px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
  }
  
  .testimonial-role {
    font-size: 14px;
    font-weight: 400;
    color: var(--text_light);
    margin: 0;
  }
  
  /* Arrows */
  .testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-arrow:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
  }
  
  .testimonial-prev { left: 0; }
  .testimonial-next { right: 0; }
  
 





  /* ===========================
   CONTACT FORM SECTION
   =========================== */
.contact-section {
    background: #FFFFFF;
    padding: 100px 60px;
    width: 100%;
  }
  
  /* Outer wrapper - textured brown/grey bg */
  .contact-outer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 40px;
    background-image: url('../images/contact\ bg\ image.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  
  /* Dark overlay */
  .contact-outer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(90, 85, 80, 0.75);
    z-index: 0;
  }
  
  /* Inner white card */
  .contact-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 70px 70px 60px;
  }
  
  /* Heading */
  .contact-heading {
    font-size: 42px;
    font-weight: 600;
    color: var(--accent);
    text-align: center;
    letter-spacing: -1px;
    margin-bottom: 12px;
    line-height: 1.15;
  }
  
  .contact-subheading {
    font-size: 15px;
    font-weight: 400;
    color: var(--text_light);
    text-align: center;
    margin-bottom: 45px;
  }
  
  /* Form */
  .contact-form {
    width: 100%;
  }
  
  /* 2x2 Grid */
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
  
  .form-group {
    position: relative;
  }
  
  /* Input - Pill shape */
  .form-input {
    width: 100%;
    padding: 18px 26px;
    background: #F5F2EE;
    border: 1px solid transparent;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 400;
    color: var(--accent);
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
  }
  
  .form-input::placeholder {
    color: #9A9A9A;
    font-weight: 400;
  }
  
  .form-input:focus {
    border-color: var(--primary);
    background: #ffffff;
  }
  
  /* Select wrapper */
  .select-wrapper {
    position: relative;
    width: 100%;
  }
  
  .form-select {
    cursor: pointer;
    padding-right: 50px;
  }
  
  .select-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 12px;
    pointer-events: none;
  }
  
  /* Bottom row */
  .form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
  }
  
  .form-note {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
  }
  
  /* Submit Button */
  .form-submit {
    padding: 16px 34px;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .form-submit:hover {
    background: var(--primary_hover);
    transform: translateY(-2px);
  }
  




/* ===========================
   BLOG SECTION
   =========================== */
.blog-section {
  background: #FFFFFF;
  padding: 100px 0 120px;
  width: 100%;
  overflow: hidden;
}

.blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ===========================
   MARQUEE PILL
   =========================== */
.marquee-pill {
  display: inline-block;
  width: 160px;
  padding: 8px 0;
  border: 1px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  background: #ffffff;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.marquee-pill:hover {
  transform: translateX(8px);
}

.marquee-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  animation: marquee-scroll 12s linear infinite;
  padding-left: 20px;
}

.marquee-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text);
  text-transform: uppercase;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   HEADER ROW
   =========================== */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 55px;
}

.blog-heading {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--accent);
  letter-spacing: -2px;
  margin: 0;
}

.btn-all-posts {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 22px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.4s ease, background 0.3s ease;
  margin-bottom: 8px;
}

.btn-all-posts:hover {
  background: var(--background_light);
  transform: translateX(8px);
}

.btn-all-posts .btn-icon-wrap {
  position: relative;
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.btn-all-posts .btn-icon,
.btn-all-posts .btn-icon-hover {
  position: absolute;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform 0.4s ease;
}

.btn-all-posts .btn-icon-hover {
  transform: translateX(-120%) rotate(-45deg);
}

.btn-all-posts:hover .btn-icon {
  transform: translateX(120%) rotate(45deg);
}

.btn-all-posts:hover .btn-icon-hover {
  transform: translateX(0) rotate(0);
}

/* ===========================
   BLOG SLIDER
   =========================== */
.blog-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  cursor: grab;
}

.blog-slider.dragging {
  cursor: grabbing;
}

.blog-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  user-select: none;
}

/* 3 cards visible on desktop */
.blog-slider-track .blog-card {
  min-width: calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  flex-shrink: 0;
  cursor: pointer;
}

/* ===========================
   BLOG CARD
   =========================== */
.blog-card {
  cursor: pointer;
}

.blog-image {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #ddd;
  margin-bottom: 22px;
  transition: transform 0.4s ease;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  pointer-events: none;
}

.blog-card:hover .blog-image {
  transform: translateX(12px);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.blog-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.blog-line {
  flex: 1;
  height: 1px;
  background: #E5DED3;
}

.blog-date {
  font-size: 12px;
  font-weight: 400;
  color: var(--text_light);
  white-space: nowrap;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--accent);
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--primary);
}

  





  /* ===========================
   FOOTER + CTA SECTION
   =========================== */
.footer-section {
    position: relative;
    width: 100%;
    padding: 100px 0 60px;
    background: #2B2B2B;
    overflow: hidden;
  }
  
  /* Background Image */
  .footer-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('../images/bg-image-footer.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  
  .footer-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(30, 30, 30, 0.65);
    z-index: 1;
  }
  
  /* CTA Content */
  .footer-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 40px 220px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .cta-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.05;
    color: #ffffff;
    letter-spacing: -2px;
    margin-bottom: 25px;
  }
  
  .cta-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 50px;
  }
  
  /* Circle Button */
  .cta-circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
  }
  
  .cta-circle-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
  }
  
  .cta-circle-btn span {
    display: block;
    padding: 0 10px;
  }
  
  /* ===========================
     FOOTER WHITE CARD
     =========================== */
  .footer-card {
    position: relative;
    z-index: 3;
    max-width: 1250px;
    margin: -140px auto 0;    /* ← CTA ke saath overlap */
    background: #ffffff;
    border-radius: 30px;
    padding: 60px 60px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 45px;
  }
  
  /* Column: Brand */
  .footer-col-brand {
    padding-right: 30px;
    border-right: 1px solid #EAE5DD;
  }
  
  .footer-logo {
    margin-bottom: 25px;
  }
  
  .footer-logo img {
    width: 90px;
    height: auto;
  }
  
  .footer-brand-desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #6B6B6B;
    margin: 0;
  }
  
  /* Column: Links */
  .footer-col-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .footer-col-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    transition: color 0.3s ease;
  }
  
  .footer-col-links a:hover {
    color: var(--primary);
  }
  
  /* Column: Contact */
  .footer-col-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 30px;
    border-left: 1px solid #EAE5DD;
  }
  
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
    transition: color 0.3s ease;
  }
  
  .footer-contact-item:hover {
    color: var(--primary);
  }
  
  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--background_light);
    border-radius: 50%;
    font-size: 13px;
    color: var(--accent);
    flex-shrink: 0;
    text-decoration: none;
  }
  
  /* Social Icons */
  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 50px;
  }
  
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--background_light);
    border-radius: 50%;
    font-size: 14px;
    color: var(--accent);
    transition: all 0.3s ease;
  }
  
  .footer-social a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
  }
  
  /* Divider */
  .footer-divider {
    width: 100%;
    height: 1px;
    background: #EAE5DD;
    margin-bottom: 25px;
  }
  
  /* Copyright */
  .footer-copyright {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #6B6B6B;
    margin: 0;
  }
  
  .footer-copyright strong {
    font-weight: 600;
    color: var(--accent);
  }
  
 