

:root {

    --accent: #D9C3AB;
    --off-white: #FAF8F7;
    --white: #ffffff;
    --gray: #939392;
    --gray: #939392;
    --dark: #3A3A3A;
    --black: #000;

  }

  /* to be deleted tbd end*/

/* reset all default margin and padding */
img{
  pointer-events: none;
  -webkit-user-drag: none;
}
*,

*::before,

*::after {

  margin: 0;

  padding: 0;

  box-sizing: border-box;

  user-select: none;

  -webkit-user-select: none; /* Safari */
 
  -ms-user-select: none;     /* IE/Edge */
}

ul,a{

    list-style: none; 

}

/* Set up some basic styles */

html{
  scroll-behavior: smooth;
  font-size: 16px;

}



.smooth-wrapper {

  position: fixed;

  width: 100%;

}

/* assuming CSS is in /public/css and fonts in /public/fonts/poppins */
@font-face{
  font-family:'poppins';
  src:
    url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight:400;
  font-style:normal; 
  font-display:swap;
  size-adjust:102%; ascent-override:92%; descent-override:24%; line-gap-override:0%;

}
@font-face{
  font-family:'poppins';
  src:
      url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
      url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
  font-weight:500; 
  font-style:normal; 
  font-display:swap;
  size-adjust:102%; ascent-override:92%; descent-override:24%; line-gap-override:0%;

}
@font-face{
  font-family:'poppins';
  src:    
      url('../fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
      /*url('../fonts/poppins/Poppins-Semibold.woff2') format('woff2'),*/
  font-weight:600; 
  font-style:normal; 
  font-display:swap;
  size-adjust:102%; ascent-override:92%; descent-override:24%; line-gap-override:0%;

}
@font-face{
  font-family:'poppins';
  src:
      url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight:700; 
  font-style:normal; 
  font-display:swap;
  size-adjust:102%; ascent-override:92%; descent-override:24%; line-gap-override:0%;

}
body {

  line-height: 1.4;              

  width: 100vw;

  overflow-x: hidden;

    font-family: 'poppins';
  
}

/* Style the scrollbar itself */

::-webkit-scrollbar {

  width: 15px;  /* Width of the vertical scrollbar */

  height: 12px; /* Height of the horizontal scrollbar */

}



/* Style the thumb (the draggable part of the scrollbar) */

::-webkit-scrollbar-thumb {

  background-color: var(--dark-background); /* Thumb color */

  border-radius: 10px;       /* Rounded corners for the thumb */

  border: 3px solid #f1f1f1; /* Border around the thumb */

  transition: all 0.4s ease;

}



/* Style the track (the area the thumb slides within) */

::-webkit-scrollbar-track {

  background-color: #f1f1f1; /* Track color */

  border-radius: 10px;       /* Rounded corners for the track */

}



/* Optional: Style the hover effect on the thumb */

::-webkit-scrollbar-thumb:hover {

  background-color: var(--accent-1); /* Change color when the thumb is hovered */

}

.error-message{

  color: red;

}

.container{

  width: 100%;
  max-width: 1440px;
  padding: 56px max(5%,165px);
  /* padding: 100px; */

  margin: 0 auto; 


}
@media (max-width:1300px) {
 .container{
   padding: 44px 100px ; 
 }
}
@media (max-width:900px) {
 .container{
   padding: 44px 72px ; 
 }
}
@media (max-width:768px) {
 .container{
   padding: 40px 32px ; 
 }
}
@media (max-width: 420px) {
  .container{
    padding: 40px 16px ; 
  }
}
.alert{
  position: fixed;
  z-index: 24;
  bottom:30px;
  right:30px;
  transition: opacity 0.5s ease-in-out;
  animation: fadeOut 5s forwards;
  color: var(--black);
  padding: 20px;
  border-radius: 20px;
  z-index: 40;
}

.alert-success{
  color: #fff;
  background-color: var(--accent);
}

@keyframes fadeOut {

  0% {

    opacity: 1;

  }

  80% {

    opacity: 1;

  }

  100% {

    opacity: 0;

    visibility: hidden;

  }

}


section{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
}

.image-conatiner img{
 width: 100%;
}

h1{

    font-size: 56px;
    color: var(--black);
    font-family: 'poppins';
    font-weight: bold;
    line-height: 1.2;
    text-align: left;

}

h2{
    font-size: 36px;
    font-family: 'poppins';
    color: var(--black);
    font-weight: bold;
    font-weight: 700;
}

h3{

    font-size: 28px;
    font-family: 'poppins';
    color: var(--accent);
    font-weight: 700;
}

h4{

    font-size: 24px;

    font-family: 'poppins';

    color: var(--black);

    font-weight: 600;

}

h5{

    font-size: 18px;

    font-family: 'poppins';

    color: var(--black);

    font-weight: 500;

}

h6{

  font-size: 16px;

  color: var(--white-text);

  font-weight: bold;

  font-family: 'poppins';

}
@media(max-width:1000px){
  h4{
    font-size: 18px;
  }

}
@media(max-width:768px){
  h1,h2{
    font-size: 30px;
  }
  
}
p{
    
    font-size: 1rem;
    font-family: 'poppins';


    font-weight: 400;

}

a{

    font-weight: 400;
    font-family: 'poppins';
    font-size: 18px;
    color: var(--white);

}
a, span{
  font-size: 16px;
  
  font-family: 'poppins';
  
  text-decoration: none;
  
}


span{
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.image-container img{

  width: 100%;

}


.xl2-text{

    font-size: 30px;

}

.xl-text{

    font-size: 20px;

}

.l-text{
    line-height: 1.6;
    font-size: 18px;

}

.m-text{

    font-size: 16px;

}

.s-text{

    font-size: 14px;

}

.xs-text{

    font-size: 12px;

}

@media(max-width:1200px){
  
  .l-text{
      font-size: 18px;
    }
  .l-text{

      font-size: 16px;

  }
}
.title-subtitle{
  display: flex;
  flex-direction: column;
}
.bg-dark{

  background-color: var(--dark-background);

}

.bg-white{

  background-color: var(--white-background);

}

.bg-accent{

  background-color: var(--accent-background);

}

.max-300{

  max-width: 300px;

}

.max-450{
  max-width: 450px;
}
.max-500{

  max-width: 500px;

}

.max-1000{
  max-width: 1000px;
}
.max-1200{

  max-width: 1200px;

  margin-inline:auto;

}

.max-1440{

  max-width: 1440px !important;

  margin-inline: auto;

}

.max-1900{

  max-width: 1900px !important;

  margin-inline: auto;

}

.width-100{

  width: 100%;

}


.absolute{

  position: absolute;

}
.btn{
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  background: var(--accent);
  color: var(--white);
  padding: 24px 36px;
  color: var(--white);
  width: fit-content;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.4);
    background-color: color-mix(in srgb, var(--accent) 90%, white);
}

.btn:hover svg {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}
@media(max-width:768px){
.btn{
  padding: 24px 30px;
}
}
.btn.outlined{
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn.outlined::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent, #d4b5a0);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn.outlined:hover::after {
    width: 100%;
}

.btn.outlined:hover {
    color: white;
    border-color: var(--accent, #d4b5a0);
    box-shadow: 0 8px 25px rgba(212, 181, 160, 0.3);
}

.btn.outlined:hover svg {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Arrow icon animation for both buttons */
.btn svg {
    transition: transform 0.3s ease;
}
.arrow-btn{
  display: flex;
  gap: 8px;
  align-items: center;
}
.arrow-btn:hover svg path{
  stroke: #fff;
}
.btn-with-arrow svg{
  width: 14px;
  height: 14px;
}

/* header start */
header{
  width: 100vw;
  height: 110px;
  z-index: 5;
    top: 0;
  left: 0;
  box-shadow: 0 4px 15px rgba(6,0,72,0.1);
}

.nav-header {
    position: relative;
    z-index: 7;
    background: transparent;
    height: 110px;
    padding: 20px 40px ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    width: 100vw;
    max-width: 1190px;
    margin-inline:auto ;
    

}

.logo {
  width: 183px;
  width: auto;
}
header .logo img{
  width: 100%;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 33px;
}

.desktop-nav > li:not( > .company-profile) {
    width:75px;
}
.desktop-nav li a:not(.company-profile) {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.desktop-nav li a:not(.company-profile):hover,
.desktop-nav li a:not(.company-profile).active {
    font-weight:bold;
    color: var(--accent);
}

.desktop-nav li a:not(.company-profile):after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 7px;
    border-radius:5px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-mobile-buttons {
  display: none;
}
.company-profile {
    padding: 18px 24px;
    background-color: var(--accent);
    width: fit-content;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.company-profile::before {
  pointer-events: none;
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.company-profile:hover::before {
    left: 100%;
}

.company-profile:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.4);
    background-color: color-mix(in srgb, var(--accent) 90%, white);
}

.language-switcher{
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 40px;
    border: none;
    z-index: 2;
    width: 100px;
    height: 50px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;

}
.language-switcher{
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

[dir="rtl"] .language-switcher a{
  font-family: "poppins";
}
/* Mobile Menu Toggle */
.menu-toggle {
    background-color: transparent;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: none; /* Hidden by default (desktop) */
    justify-content: center;
    align-items: center;
}

.menu-toggle:hover {
    background-color: var(--accent);
}

.menu-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 25px;
    width: 21.2px;
    gap: 3.5px;
}

.menu-line {
    position: relative;
    width: 30px;
    height: 4px;
    background-color: var(--black);
    transition: all 0.4s ease;
}


/* Active state animations */
.menu-toggle.active .menu-line:nth-of-type(1) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%,-50%)  rotate(45deg)  ;
    width: 20px;
    height: 2px;

}

.menu-toggle.active .menu-line:nth-of-type(2) {
    opacity: 0;
}

.menu-toggle.active .menu-line:nth-of-type(3) {
    
    position: absolute;
    left: 50%;
    top: 50%;
    transform:translate(-50%,-50%)  rotate(-45deg)  ;
    width: 20px;
    height: 2px;
}


/* Mobile Styles */
@media (max-width: 1100px) {
    
    .nav-mobile-buttons {
      display: flex;
      gap: 20px;
    }
    .nav-header .logo{
      width: 156px;
    }
    header{
      height: 70px;
    }
    .nav-header {
      height: 70px;
        padding:20px;
    }
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* Desktop Styles */
@media (min-width: 1100px) {
  .desktop-nav {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-header .logo{
    margin-right: 0;
  }
  .language-switcher{
    width: 80px;
    height: 40px;
  }
  .language-switcher svg{
    height: 20px;
    width: 20px;
  }

}

/* Full Menu Styles (existing mobile menu) */
.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 176px 20px 0px 20px;
    
    background: linear-gradient(to bottom, var(--off-white), var(--accent));
    z-index: 999;
    transform: translateX(-100%);
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.full-menu.active {
    transform: translateX(0);
}



  .full-menu.active {
      transform: translateY(0);
  }

  .menu-header {
      position: absolute;
      top: 20px;
      left: 40px;
      right: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .menu-content {
    z-index: 4;
      flex: 1;
      display: flex;
      align-items: center;
  }

  .menu-nav {
      list-style: none;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      transition-delay: 0.3s;
  }

  .full-menu.active .menu-nav {
      opacity: 1;
      transform: translateY(0);
  }

  .menu-nav li {
      margin-bottom: 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .full-menu.active .menu-nav li:nth-child(1) {
      transition-delay: 0.4s;
      opacity: 1;
      transform: translateY(0);
  }

  .full-menu.active .menu-nav li:nth-child(2) {
      transition-delay: 0.5s;
      opacity: 1;
      transform: translateY(0);
  }

  .full-menu.active .menu-nav li:nth-child(3) {
      transition-delay: 0.6s;
      opacity: 1;
      transform: translateY(0);
  }

  .full-menu.active .menu-nav li:nth-child(4) {
      transition-delay: 0.7s;
      opacity: 1;
      transform: translateY(0);
  }

  .full-menu.active .menu-nav li:nth-child(5) {
      transition-delay: 0.8s;
      opacity: 1;
      transform: translateY(0);
  }

  .menu-nav a {
      text-decoration: none;
      color: #333;
      font-size: 2rem;
      font-weight: 300;
      line-height: 1.2;
      transition: color 0.3s ease;
  }

  .menu-nav a:hover {
      color: var(--accent);
  }

  .menu-nav a.active {
    font-weight: bold;
  }

  .menu-visual {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      position: absolute;
      left: 0%;
      bottom: 0;
      width: 100%;
  }

  .mobile-menu-background {
    width: 100%;
    position: relative;
    mix-blend-mode: soft-light;

  }

  .full-menu .contact-info {
      position: absolute;
      bottom: 10px;
      left: 20px;
      text-align: right;
      font-size: 14px;
      color: #666;
  }


  /* Desktop indicator */
  .desktop-indicator {
      position: absolute;
      top: 10px;
      left: 15px;
      font-size: 12px;
      color: #999;
  }

  .menu-state-indicator {
      position: absolute;
      top: 10px;
      left: 15px;
      font-size: 12px;
      color: #999;
  }



  
/* header end */
  .gradient-overlay{
          background: linear-gradient(to top , #fff , #ffffff00 20%);
          width: 100%;
          height: 100%;
          top: 2px;
          left: 0;
          position: absolute;
          z-index: 1;
          pointer-events: none;
        }
/********************** Home Page Start *********************/
/* hero section start */
  
        .hero-slider {
          width: 100vw;
          height: 785px;
          position: relative;
        }
      
        
        .hero-slider .splide__track {
            height: 100%;
        }

        .hero-slider .splide__list {
          height: 100%;
          position: relative;
        }
        .hero-slider .hero-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100vw;
          z-index: 1;
        }
        
        .hero-slider .splide__slide {
            max-height: 100%;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;

        }
        .hero-slider .splide__slide img{
            position:absolute;
            z-index:1;
            width: 100vw;
            height: 100%;
            object-fit: cover;
            top:0;
            
        }
        /* Hero slide overlay */
        .hero-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height:100%;
            z-index: 1;
             background-image:url('../images/homepage/hero-overlay-1.webp'); 
             background-repeat: no-repeat; 
             background-position: bottom; 
             background-size: cover; 
          }
        .hero-slide-overlay video{
          object-fit: cover;
          width: 100%;
          height: 100%;
        }

        /* Hero slide content */
        .hero-content {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
            text-align: left;
            position: relative;
            z-index: 2 ;
            /*width: calc( 442px + 320px);*/
            width: calc(617px + 320px);
            margin:0;
            padding-bottom: 110px;
        }
        .hero h1,.hero p{ font-family:'poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
                          line-height:1.1; }
        .hero-content h1{
          margin-bottom: 16px;
        }
        .hero-content p{
          margin-bottom: 32px;
        }

        .hero-button {
            display: inline-block;
            padding: 15px 35px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            text-shadow: none;
        }
        .hero-buttons{
          display: flex;
          gap: 37px;
        }



        /* Hero pagination styling */
        .hero-slider .splide__pagination {
            bottom: 70px !important;
            width: 105px;
            left: 150px;
        }

        .hero-slider .splide__pagination__page {
            background: rgba(0, 0, 0, 0.3) !important;
            border: none !important;
            width: 12px !important;
            height: 12px !important;
            margin: 0 6px !important;
            transition: all 0.3s ease !important;
        }

        .hero-slider .splide__pagination__page.is-active {
            background: #000 !important;
            transform: scale(1) !important;
        }

       

        @media (max-width:1300px) {
  
         .hero-slider .splide__pagination {
            left: 85px;
         }
        }
        @media (max-width:900px) {
          .hero-slider .splide__pagination {
            left: 58px;
         }
        }
        @media (max-width:768px) {
            .hero-slide-overlay {
                background-image:url('../images/homepage/hero-overlay-1.webp'); 
                 background-repeat: no-repeat; 
                 background-position: bottom; 
                 background-size: cover; 
            }
     .hero-slider .splide__slide{
      max-height: calc(100vh - 70px) !important;
     }
        .hero-slider {
          height: calc(100vh - 70px);
        }
          .hero-slider .splide__pagination {
            left: 18px;
         }
         .hero-buttons{
          gap: 10px;
         }
          .btn {
              padding: 16px 12px;
          }
        }

      

/* hero section end */
/* about section start */
        .about-section-container{
          position: relative;
          overflow-x: clip;
          min-height: 700px; /* Reserve space for the section */
          contain: layout style paint; /* Prevent layout shifts */
        }
        .about-section-container .background{
          position: absolute;
          top: 63px;
          left: 0;
          width: 275px;
          z-index: 0;
          will-change: transform, opacity; /* Hint browser about changes */
          transform: scale(1.2); /* Set initial transform state */
        }
        .about-section{
          display: flex;
          justify-content: space-between;
        }
        .about-section .content-container{
          display: flex;
          flex-direction: column;
          gap: 64px;
          max-width: 530px;
          position: relative;
          z-index: 1;
          min-height: 500px; 
        }
        .about-section .text-container{
          display: flex;
          flex-direction: column;
          gap: 32px;
        }
        .about-section .text-container p.l-text{
            color: var(--gray);
      
            will-change: transform, opacity; /* Hint browser */
            min-height: 4em; /* Reserve space for text */
        }
         .about-section .stats-container {
            max-width: 420px;

            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 32px 100px;
            align-items: start;
        }

         .about-section .stat-item {
            text-align: left;

            /*transform: translateY(30px);*/
            will-change: transform, opacity; /* Hint browser */
            min-height: 70px; /* Reserve space for each stat item */
        }

         .about-section .stat-number {
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }
        .about-section .stat-number{
          min-width: var(--w, 4ch);           /* reserve digits */
          font-variant-numeric: tabular-nums; /* stable digit width */
        }
        .about-section .image-container {
        
            position: relative;
            /*transform: translateX(100px); */
            width: 100%; /* Or your specific width */
            max-width: 500px; /* Adjust based on your design */
        }
        
        .about-section .image-container img {

            will-change: transform; /* Hint browser */
       
        }
         .about-section .stat-plus {
            color: var(--accent);
        }

       /* ADDITIONAL PERFORMANCE OPTIMIZATIONS */
        .about-section * {
            box-sizing: border-box; /* Prevent unexpected layout changes */
        }
        
        /* Loading state optimization */
        .about-section-container.loading {
            min-height: 600px;
            background-color: transparent;
        }
        
        .about-section-container.loading .background {
            visibility: hidden; /* Hide until loaded, but keep space */
        }
        /* Mobile Design - Stay in 2x2 grid */
        @media (max-width: 1100px) {
          .about-section .content-container,
          .about-section .text-container{
            gap: 30px;
          }
            .about-section .text-container .l-text{
            font-size: 16px;
          }
         .about-section-container {

            min-height: 550px; /* Adjust for tablet */
        }
        }
        @media (max-width: 1100px ) and (min-width: 768px) {
          .about-section .content-container{
            max-width: 400px;
          }
          .about-section .image-container{
                max-width: 400px;
          }
        
        }
        @media (max-width: 768px) {
         .about-section-container {
            min-height: 700px; /* Adjust for mobile stacked layout */
        }
          .about-section{
            flex-direction: column;
            gap: 30px;
          }
          .about-section .content-container{
            width: 90%;
            max-width: unset;
          }
            .about-section.stats-container {
                padding: 40px 16px;
            }
            
            .about-section.stats-container {
                gap: 32px 24px;
            }
            
         .about-section .image-container {
            max-width: 100%;
        }
        }

        @media (max-width: 480px) {
         .about-section-container {

            min-height: 650px; /* Adjust for small mobile */
        }
            .about-section .content-container{
            width: 100%;
          }
            .about-section.stats-container {
                max-width: 392px;
                padding: 32px 16px;
            }
            
            .about-section.stats-container {
                gap: 28px 20px;
            }
            
            .about-section.stat-number {
                margin-bottom: 4px;
            }
        }
        
        
/* about section end */
/* services section start */ 
.services-section-container{
  overflow-x: clip;
          background-color: var(--off-white);

}
.services-section{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services-section .services-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap:32px;
  width: 100%;  
}
.services-section .services-top .text-container{
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.services-section .services-top .text-container p{
  max-width: 380px;
  color: var(--gray);
}
.services-section .services-top .services-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-weight: bold;
} 
.services-section .services-top .services-btn:hover{
  cursor: pointer;
}
.services-section .services-top .services-btn svg,
.services-section .services-top .services-btn svg rect{
  transition: all .4s ease;
}
.services-section .services-top .services-btn:hover svg{
  transform: scale(1.1);
}
.services-section .services-top .services-btn:hover svg rect{
  fill: var(--black);
  stroke: none;
}
.services-section .services-top .services-btn:hover svg path{
  stroke: var(--white);
}
.services-section .services-cards{
  display: flex;
  gap: 30px;
}
   .services-card {
     width: 350px;
     height: 136px;
     background: var(--accent);
     border-radius: 10px;
     position: relative;
     overflow: hidden;
     cursor: pointer;
     box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
     transform-origin: left center; /* Set origin to expand only right */
    }
    .services-card .card-title{
      width: 200px;
      transition: color .4s ease;
    }
    .services-card:hover .card-title{
      color: var(--black);
    }
      
    .card-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-size: cover;
        background-position: center;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        z-index: 1;
    }

    /* Different background images for each card */
    .card-1 .card-background {
        background-image: url('../images/homepage/services-card-image-1.webp');
    }

    .card-2 .card-background {
        background-image: url('../images/homepage/services-card-image-2.webp');
    }

    .card-3 .card-background {
        background-image: url('../images/homepage/services-card-image-3.webp');
    }

    .card-content {
        position: relative;
        width: 100%;
        height: 100%;
        z-index: 3;
        padding: 16px;
    }

    .card-title {
        position: absolute;
        bottom: 16px;
        left: 16px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--white);
        line-height: 1.3;
        z-index: 4;
        transition: none; /* Remove any CSS transitions that might cause fading */
    }

    .card-arrow {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 4;
        transition: none; /* Remove any CSS transitions */
    }

    .card-arrow svg {
        width: 16px;
        height: 16px;
        fill: white;
    }
    .services-section .services-card .card-og-background{
        position: absolute;
        width: 100px;
        top: -30px;
        left: 50px;
    }
    /* Remove CSS hover states - will be fully controlled by GSAP */


    @media (max-width: 768px) {
      .services-section .services-cards{
        flex-direction: column;
      }
      .services-card{
        width: 100%;
      }
      @media (max-width: 600px) {
        .services-section .services-top{
          flex-direction: column;
        }
        .services-section .services-top .services-btn{
          align-self: flex-end;
        }
      }
    }
/* services section end */

/* clients section start */
.clients-section-container{
  overflow-x: clip;
}
.clients-section-container h2{
  margin-bottom: 50px;
}
.clients-section p.l-text{
  max-width: 550px;
  text-align: center;
}
.clients-section-container .background{
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  width: 100vw;
  top: -120px;
  min-width: 1597px;
  z-index: -1;
}
.clients-section-container .background img{
  width: 100%;
}
.clients-section{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clients-section h5{
  margin-bottom: 20px;
}


@keyframes slide-to-left {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-146.5px * 6))}
}
@keyframes slide-to-right {
	0% { transform: translateX(calc(-146.5px * 6));}
	100% { transform: translateX(0)}
}


.logo-sliders {
  width:997.5px;
  overflow: hidden;
}
.logo-slider {
  display: flex;
  align-items: center;
	background: white;
	height: 100px;
	margin: auto;
	/* overflow:hidden; */
	position: relative;
  margin-bottom: 14.44px;
}
	
.logo-slider .overlay {
    content: "";
    height: 120px;
    position: absolute;
    width: 250px;
    z-index: 5;
}

.logo-slider .overlay-right {
  right: -2px;
  top: 0;
  background: linear-gradient(to left,  rgba(255,255,255,1) 20%,rgba(255,255,255,0) 100%);
  
}

.logo-slider .overlay-left {
  left: -2px;
  top: 0;
  background: linear-gradient(to right,  rgba(255,255,255,1) 20%,rgba(255,255,255,0) 100%);
}

.logo-slide-track {
  animation: slide-to-left 25s linear infinite;
  display: flex;
  width: calc(146.5px * 12);
}
.logo {
  /* height: 100px;
  width: 146.5px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 86px;

}
@media(max-width:1000px){
  .clients-section{
    width: 100%;
  }
  .logo-sliders {
    width: 100%;
  }
}
@media(max-width:768px){
    .logo-slider .overlay{
    width: 50px;

    }
  .logo-slider .overlay-right {
    background: linear-gradient(to left,  rgba(255,255,255,1) 20%,rgba(255,255,255,0) 100%);
    
  }
  .logo-slider .overlay-left {
    width: 25px;
    background: linear-gradient(to right,  rgba(255,255,255,1) 20%,rgba(255,255,255,0) 100%);
  }
}
/* clients section end */
/* contact section start */
/* Contact Section Styling */
.contact-container{
  padding-inline:106px ;
  overflow-x: clip;
}
.contact-container .content-container{  
  position: relative;
  display: flex;
  padding:52px 60px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background-color: var(--off-white);
  border-top-right-radius:414px ;
  border-bottom-right-radius: 414px;
  background: url(../images/homepage/contact-background.webp);
  background-repeat: no-repeat;
  background-position: top right;
  
}
.contact-container .content-container::after{
  content: '';
  width: 100%;
  height: 100%;
  max-height: 643px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #FAF8F7 45%, #FAF8F700);
  z-index: 1;
}  
.contact-container .content-container .contact-airplane.mobile{
  display: none;
}

.contact-container .content-container .contact-airplane{
  width: 768px;
  position: absolute;
  right: -50px;
  top: -50px;
  z-index: 3;
}


/* Right Column - Form */
.contact-form {
  position: relative;
  z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
   width: 730px;
}

.text-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-container .contact-info{
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.text-container .l-text {
  color: var(--gray);
  max-width: 520px;
}

/* Form Fields */
.fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fields .row{
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 30px;
}
.fields .row input{
  width: 50%;
}
.fields input{
  height: 50px;
}
.fields input,
.fields textarea {
    padding: 16px 20px;
    border: 1px solid #EEE5DC;
    border-radius: 8px;
    background: #FAF8F7;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.fields input::placeholder,
.fields textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.fields input:focus,
.fields textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb, 102, 126, 234), 0.1);
}

.fields textarea {
    resize: vertical;
    min-height: 120px;
    height: 148px;
    font-family: inherit;
}

/* Submit Button */
.contact-form button[type="submit"] {
    background: var(--accent);
    width: 418px;
    padding: 18px 24px;
    color: var(--white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-form button[type="submit"]:hover {
   
    box-shadow: 0 10px 30px rgba(212, 181, 160, 0.4);
    background-color: color-mix(in srgb, var(--accent) 90%, white);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1350px) {
  .contact-container .content-container .contact-airplane{
    width: 600px;
  }
}
@media (max-width: 1200px) {
  .contact-form{
    max-width: 500px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .contact-form .l-text{
    font-size: 14px;
    max-width: 400px;
  }
  .contact-container .content-container .contact-airplane{
    width: 550px;
    right: -100px;
    top: -30px;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  .contact-container .content-container .contact-airplane{
    width: 490px;
    right: -100px;
    top: -30px;
       transform: rotate(11deg);

 
  }
}

@media (max-width:900px)  and (min-width: 768px){
  .contact-container{
    padding: 44px 72px;
  }
  .contact-container .content-container .contact-airplane{
    width: 400px;
    right: -70px;
    top: -20px;
       transform: rotate(11deg);
  }
  .contact-form{
    max-width: 400px;
  }
}
  @media (max-width: 768px) {
    .contact-container .content-container::after,
    .contact-container .content-container{
      background:none;
    }
    .fields .row{
      flex-direction: column;
      gap: 16px;
    }
    .fields .row input{
      width: 100%;
    }
    .contact-container{
      padding: 40px 0;
    }
    .contact-container .content-container{
      padding: 0;
    }
    .contact-form{
      width: 100%;
    }
    .contact-container .contact-form{
      padding-inline: 32px;
    }
  }


@media (max-width: 768px) {
    .contact-container .contact-info{
      height: 198px;
      background: url('../images/homepage/contact-background-tablet.webp');
      background-repeat: no-repeat;
      background-position: top right;
      position: relative;
      width: 100%;
      display: flex;
      align-items: center;
      padding-left: 32px;
      z-index: 1;
    }
    .contact-container .contact-info h2{
      position: relative;
      z-index: 4;
      width: 250px;
    }
    .contact-container .contact-info::after{
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background: linear-gradient(to right, #FAF8F7 20%, #FAF8F700);
      z-index: 3;
    }

    .contact-container .content-container .contact-airplane.mobile{
      display: block;
      width: 320px;
      z-index: 5;
    }
    .contact-airplane.desktop-tablet{
      display: none;
    }
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    .text-container {
        gap: 25px;
    }
    
    .fields {
        gap: 16px;
    }
    
    .fields input,
    .fields textarea {
        padding: 14px 16px;
    }
    
    .contact-form button[type="submit"] {
        width: 100%;
    }
  
}

@media (max-width: 480px) {
      
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-info h2 {
    font-size: 2rem;
  }
  
  .text-container .s-text {
    font-size: 0.95rem;
  }
  
  .contact-container .contact-info{
    background: url('../images/homepage/contact-background-mobile.webp');
    background-repeat: no-repeat;
    background-position: top right;
  }
  
  .contact-container .contact-info::after{
    background: linear-gradient(to right, #FAF8F7 30%, #FAF8F700);
  }
  .contact-container .content-container .contact-airplane.mobile{
    width: 240px;
    right: -30;
    top: -20px;
  }
}
@media (max-width: 420px) {
  .contact-container{
   padding-inline: 0 ; 
}
}
/* contact section end */
/********************** Home Page End *********************/
/********************** About Page Start *********************/
/* header section start */
 .header-section-container{
        background: url('../images/about/about-header.webp');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .header-section{
        position: relative;
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        height: 539px;
    }
    .clouds-overlay{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      background-image: url('../images/about/about-header-overlay.webp');
      background-repeat: no-repeat;
      background-position: bottom;
      background-size: cover;
    }
    .header-section .text-container{
        max-width: 500px
    }
    .header-section .text-container p{
        color: var(--black);
        position: relative;
        z-index: 2;
    }
    .header-section-container .text-container .l-text{
      max-width: 450px;
    }
    @media(max-width: 430px){
      .header-section-container{
          background: url('../images/about/about-header-mobile.webp');
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
      }
    }
/* header section end */
/* details section start */
.about-details-section .journey-container {
    max-width: 1200px;
    margin: 0 auto;
    
}

/* Top Content */
.about-details-section .journey-content {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;

}

.about-details-section .journey-text {
    flex: 1;
}

.about-details-section .journey-title {
    margin-bottom: 30px;
}

.about-details-section .journey-description {
    color: var(--gray);
    margin-bottom: 30px;
}

/* Feature List */
.about-details-section .journey-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-details-section .feature-item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-details-section .feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-details-section .feature-text{
    font-weight: bold
}
.about-details-section .feature-icon::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: 600;
}



/* Image Container */
.about-details-section .journey-image {
    flex: 1;
    position: relative;
}


.about-details-section .image-wrapper  {
    overflow: hidden;

}
.about-details-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section - Updated for your existing JS */
.about-details-section .stats-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    border-top-right-radius: 80px;
    border-bottom-right-radius: 80px;
    background: var(--off-white)
}

.about-details-section .stat-item {
    display: flex;
    gap: 20px;
    align-items: center;
    text-align: left;
    padding: 20px 10px;
    transition: transform 0.3s ease;
    opacity: 0;
}
.about-details-section .stat-item .column{
    border-left:2px solid #F6EFEA;
    padding-left: 8px
}

.about-details-section .stat-item:hover {
    transform: translateY(-5px);
}

.about-details-section .stat-number {
    margin-bottom: 8px;
    font-weight: bold
}
.about-details-section .stat-label {
    font-weight: bold;
}

.about-details-section .stat-number .stat-plus{
    color: var(--accent)
}


/* Responsive Design */
@media (max-width: 1024px) {
    .about-details-section .journey-content {
        gap: 60px;
        margin-bottom: 60px;
        flex-direction: column-reverse;
    }
    .about-details-section{
        padding-inline: 0;
    }
    .journey-content{
        padding-inline: 72px;
    }
    .about-details-section  .stats-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        padding-inline: 72px;
        border-radius: 0;
    }

}

@media (max-width: 768px) {

    .about-details-section .journey-content {
        gap: 30px;
        padding-inline: 0;
    }
    .journey-text{
        padding-inline: 32px;
    }
    .about-details-section  .stats-container{
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        padding-inline: 32px;
        border-radius: 0;
    }

    
   
    .about-details-section .stat-item{
        flex-direction: column;
        align-items: flex-start;
    }
    .about-details-section .stat-item .column{
        border-left:none;
        text-align: left;
    }
    .about-details-section .stats-container {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {   
}
/* details section end */
/********************** About Page End *********************/
/********************** Services Page Start *********************/

/* header section start */
 .services .header-section-container{
        background: url('../images/services/services-header.webp');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
/* header section end */
/* all services start */
        .all-services-section-container{
            display: flex;
            flex-direction: column;
            gap: 120px;
        }
        /* Services Section */
        .services .service-detail-section {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .services .service-container {
            display: flex;
            gap: 30px;
            align-items: start;
        }

        /* Left Column - Content */
        .services .service-content {
            flex: 1;
            padding-right: 20px;
        }

        .services .service-description {
            margin-bottom: 68px;
            color: var(--gray);
        }

        .services .service-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: #f0f0f0;
            position: relative;
            cursor: pointer;
        }

        .services .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .services .service-image:hover img {
            transform: scale(1.1);
        }

        /* Right Column - Service Tabs */
        .services .service-tabs {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .services .service-tab {
            opacity: 1;
            visibility: visible;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 24px;
            background: var(--off-white);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top-right-radius: 100px;
            border-bottom-right-radius:100px; 
        }

        .services .service-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.5s ease;
        }

        .services .service-tab:hover::before {
            left: 100%;
        }

        .services .service-tab:hover {
            background: #ffffff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-3px);
        }

        .services .tab-content {
            flex: 1;
        }
        .services .tab-content .tab-description{
            color: var(--gray);
        }

        .services .tab-title {
            margin-bottom: 8px;
            transition: color 0.3s ease;
            max-width: 86%;
        }

        .services .service-tab:hover .tab-title {
            color: var(--accent);
        }


        .services .tab-icon {
            position: absolute;
            top: 13px;
            right: 46px;
            width: 40px;
            height: 40px;
            margin-left: 20px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        .services .tab-icon rect{
            fill:var(--black);
            transition: all .3s ease;
        }
        .services .service-tab:hover rect{
            fill: var(--accent);
            stroke: none;
        }
        .services .tab-icon path{
            stroke:var(--white)
        }

        .services .service-tab:hover .tab-icon {
            transform: scale(1.1);
        }



        /* Responsive Design */
        @media (max-width: 1200px) {
            .services h4{
                font-size: 20px;
            }
            .services .tab-icon{
                width: 30px;
                height: 30px;
                right: 30px;
                top: 20px;
            }
        }
        @media (max-width: 1024px) {
            .services .service-container {
                flex-direction: column;
                gap: 30px;
            }
            .services .service-description{
                margin-bottom: 30px;
            }
            .all-services-section-container{
              gap: 100px;
            }
        }

        @media (max-width: 768px) {
         

            .all-services-section-container{
              gap: 60px;
            }
            .services .service-content {
                padding-right: 0;
            }

            .services .service-title {
            }

            .services .service-image {
                height: 250px;
            }

            .services .service-tab {
                padding: 20px;
                min-height: 125px;
            }


            .services .tab-icon {
                width: 35px;
                height: 35px;
                margin-left: 15px;
            }
        }

        @media (max-width: 480px) {
  
            .services .service-image {
                height: 200px;
            }

            .services .service-tab {
                padding: 18px;
            }

            .services .tab-icon {
                width: 32px;
                height: 32px;
            }
        }
/* all services end */
/********************** Services Page End *********************/
/********************** Single Service Page Start *********************/
.service-details-section .content-container{
        background: linear-gradient(to bottom, #fff , var(--off-white) 20%);
        border-top-right-radius: 400px;
        border-bottom-right-radius: 400px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start
    }
    .service-details-section .text-container{
        padding: 29px 0 29px 38px;
    }
    .service-details-section .text-container p{
    }
    .service-details-section .image-container{
        padding: 10px;
        overflow: hidden;
    }

    @media(max-width:1050px){
        .service-details-section{
            padding-inline: 0;
        }
         .service-details-section .content-container{
            border-radius: 0;
            flex-direction: column-reverse;
         }
        .service-details-section .image-container{
            padding:0;
        }
        .service-details-section .text-container{
            align-self: flex-end
        }
    }
    @media(max-width:768px){
          .service-details-section .text-container{
            align-self: unset;
            padding: 28px;
        }
        .service-details-section h4{
            font-size: 28px;
        }
    }


    
        /* Feature List */
        .single-service .features-section {
            display: flex;
            flex-direction: column;
            gap: 32px;
            align-items: flex-start;
        }
        .single-service .journey-features {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .single-service .feature-item {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .single-service .feature-icon {
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
  
        .single-service .feature-icon::after {
            content: '✓';
            color: white;
            font-size: 14px;
            font-weight: 600;
        }



/********************** Single Service Page End *********************/
/********************** Contact Page Start *********************/
.contact-header.header-section-container{
  background:url('../images/general/contact-header.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media(max-width:430px){
  .contact-header.header-section-container{
    background:url('../images/general/contact-header-mobile.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
}
/* info section start */
.contact-page .info-section{
  display: flex;
  justify-content: space-between;
}
.contact-page .info-column,
.contact-page .map-column{
  display: flex;
  flex-direction: column;
  max-width: 500px;
}
.contact-page .info-column h4,
.contact-page .map-column h4{
  margin-bottom: 16px;
}
.contact-page .info-column p.l-text{
  margin-bottom: 43px;
  color: var(--gray);

}
.contact-page .map-column p.l-text{
  margin-bottom: 27px;
  color: var(--gray);

}

.contact-page .map-column iframe{
  width: 100%;
  max-width:540px;
}
.contact-page .info-column .contact-info{
  display: flex;
  flex-direction: column;
  gap:28px;
  margin-bottom: 24px;
}
.contact-page .info-column .contact-info li{
  display: flex;
  align-items: start;
  gap: 8px;
  max-width: 250px;
}
.contact-page .info-column .contact-info a{
  color: black; 
  max-width: 200px;
}
.contact-page .info-column .social-media-icons{
  border-top-right-radius: 18px ;
  border-bottom-right-radius: 18px ;
  width: 143px;
}

.contact-page .info-2 .contact-info a{
  max-width: 305px;
}
.contact-page .info-2 .contact-info li{
  max-width: 355px;
}
    .row{
        display: flex;
        flex-direction: row   ;
        align-items: center;
        justify-content: flex-start;
        gap:8px;
    }
        .info-2 li{

            flex-direction: column
        }
        .contact-page .info-column .contact-info li{
            align-items: start;
        }
        .contact-page .info-column .contact-info li .gray-text{
            color: #939392;
        }
        .contact-page .info-column .contact-info li span{
            font-family: inherit;
        }
@media (max-width:1250px) {
  .contact-page .info-column p.l-text{
    max-width: 400px;
  }
}
@media (max-width:1100px) {
  .contact-page .info-column p.l-text{
    max-width: 300px;
  }
}
@media (max-width:1000px) {
  .contact-page .info-section{
    flex-direction: column;
    gap: 80px;
  }
  .contact-page .info-column p.l-text{
    max-width: unset;
  }
}
/* info section end */
/********************** Contact Page End *********************/
/* footer start */
    footer{
      background: var(--black);
    }
    .footer-container{
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 488px;
    }
    .footer-container p{
      color: var(--white);
      font-weight: 200;
    }
    .footer-container .logo-column{
      display: flex;
      flex-direction: column;
      gap: 40px;
      max-width: 350px;
    }
    .footer-container .logo{
      width: 183px;
      height:26px;
    }
    .footer-container .logo-column .social-media-icons{
      display: flex;
      gap: 16px;
    }
    .footer-container .footer-columns-details{
      display: flex;
      gap: 51px;
    }
    .footer-container .column-details{
      height: 222px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .footer-container .column-details h5{
      font-weight: bold;
      color: var(--accent);
    }
    .footer-container .column-details .details{
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .footer-container .column-details .details.contact-info li{
      display: flex;
      gap: 4px;
    }
    .footer-container .column-details .details.contact-info li svg{
      width: 24px;
      height: 24px;
    }
    .footer-container .column-details .details.contact-info li a{
      width: 201px;
    }
    @media(max-width:1300px){
      .footer-container .footer-columns-details{
        gap: 30px;
      }
      
    }
    @media(max-width:1200px){
      .footer-container {
        justify-content: center;
      }
      .footer-container .footer-columns-details{
          display: grid;
          grid-template-columns: 350px 230px;
          justify-items:space-between;
        }
        .footer-container .column-details{
          height: fit-content;
          gap: 30px;
        }
    }
    @media(max-width:768px){
      .footer-container .footer-columns-details{
        gap: 40px;
      }
      .footer-container {
        justify-content: start;
      }
      .footer-container .footer-columns-details{
          display: grid;
          grid-template-columns: 1FR;
          justify-items:start;
        }
    }
/* footer end */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  font-size: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float .tooltip {
  position: absolute;
  bottom: 70px; /* above the circle */
  right: 50%;
  transform: translateX(50%);
  background: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(50%) translateY(-4px);
}

