/* Custom styles */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

 
:root {
      --primary: #ffffff;
    --secondary: #121a2b;
    --dark: #000000;
    /* Add these for footer */
    --secondary-color: #000000;
    --primary-color: white;
    --accent-color: #4ecca3;
    --text-color: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --font-sans: 'DM Sans', sans-serif;
  --font-serif: 'DM Serif Display', serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-thin :200;
}


  
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



body, html {
  
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #000000;
    color: white;
    scroll-behavior: smooth;

    /* Existing styles... */
    width: 100vw;  /* Force full viewport width, ignoring scrollbar */
    overflow-x: hidden;
    /* Optional: Hide scrollbar visually but keep functionality */
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */

            
}

body::-webkit-scrollbar {
    display: none;             /* Chrome/Safari */
}




 .main-heading {
            font-size: 3.5rem;
            font-weight: 600;
            color: var(--accent-color);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .main-heading {
                font-size: 2rem;
            }
        }






/* Video background container */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

 /* Navbar */
        .navbar {
    position: fixed; /* Changed from fixed to absolute */
    position: fixed; /* Changed from fixed to absolute */
    top: -9px;
    left: -9px;
    width: 100%;
    z-index: 1022;
    background: transparent !important; /* Always transparent */
     padding-left:5%;
    padding-right: 5%;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: none; /* Remove transition effects */
    
    padding-bottom: 0px;
}


        

        .navbar-logo {
            height: 75px;
            width: 115px;
            margin-left: 9px;
            vertical-align: middle;
            filter: none; /* Default: logo assumed dark */
            transition: filter 0.3s ease;
        }

/* Navbar */


/* Hamburger Container - Added wrapper */
.hamburger-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Hamburger Icon */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
      pointer-events: auto;                  /* enable when active */
  z-index: 2001;
    margin-left: 5px;
    margin-top: 4px;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: rgb(0, 0, 0);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    top: 18px;
}

.hamburger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
     background-color: black;
}

.hamburger.active span:nth-child(2) {
    top: 9px;
    transform: rotate(-135deg);
    background-color: black;
}



.navbar a,
.menu-list li a,
.social-links a {
    cursor: pointer; /* ensure links look clickable */
}






/* Modal Menu - Positioned at top right */
.menu-modal {
  position: fixed;
    top: 30px;
    right: 4%;

    
    z-index: 2000;
    display: flex
;
    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    pointer-events: none;  

      background: white;    
    border-radius: 18px 18px 12px 12px;
    width: 320px;
    max-width: 100%;
    box-shadow: 0 12px 40px rgba(22,14,52,0.25);
    padding: 28px 0px 0;
    color: #111;


    transition:
      opacity 0.35s cubic-bezier(0.4,0,0.2,1),
      transform 0.35s cubic-bezier(0.4,0,0.2,1);
   
}

.menu-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
      pointer-events: auto;                  /* enable when active */
  z-index: 1002;
}

/* Arrow pointing to hamburger */
.menu-modal::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    z-index: 998;
}

.modal-content {
   width: 100%;
    height: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
   
}

/* Menu Grid Layout */
/* Menu Grid Layout */
.menu-list li {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
  color: #222;
  position: relative;
  transition: color 0.3s ease;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  list-style-type: none;
  
}
.menu-list li { cursor: default; }      /* remove pointer from the li */
.menu-list li a {
  display: inline-block;
  cursor: pointer;                       /* hand cursor on the text itself */
  pointer-events: auto;
  padding: 6px 4px;                      /* small hit area to make clicking easier */
  text-decoration: none;
  color: inherit;
}


.menu-list li a:hover {
  opacity: 0.8;
}

.menu-list li:last-child {
  margin-bottom: 0;
}

.menu-list li:hover,
.menu-list li:focus {
  opacity: 0.8;
  outline: none;
}

.menu-list li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #28282b;
  transition: width 0.3s ease;
}

.menu-list li:hover::after,
.menu-list li:focus::after {
  width: 80%;
}


.menu-list li a {
  text-decoration: none;
  color: inherit;
}

/* Divider */
.divider {
  border-top: 1px solid #ddd;
  margin: 0 -28px 18px;
}

/* Footer nav */
.footer-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 8px;
  padding: 0 2px;
  flex-wrap: wrap;
  background: #f3f3f3;
}

.footer-nav div {

  padding-left: 12px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-nav div:hover,
.footer-nav div:focus {
  color: #464547;
  opacity: 0.8;
  outline: none;
}

.footer-nav div::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #424244;
  transition: width 0.3s ease;
}

.footer-nav div:hover::after,
.footer-nav div:focus::after {
  width: 100%;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 20px;
}

.footer-right svg {
  width: 20px;
  height: 20px;
  stroke: #5e5a5a;
  stroke-width: 2;
  transition: stroke 0.3s ease;
  transform: rotate(325deg);
}

.footer-right:hover svg,
.footer-right:focus svg {
  stroke: #777;
   transform: rotate(360deg);
   scale: 1.2;
}

/* Footer container styling */
.footer-container {
  background: #f3f3f3;
  border-radius: 0 0 18px 18px;
  padding: 8px 8px 10px;
  color: #777;
  font-size: 13px;
  user-select: none;
}

/* Social links */
.social-links {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: #302e2e;
  user-select: none;
  justify-content: space-evenly;
  align-items: stretch;
}

.social-links span {
  cursor: pointer;
  transition: color 0.3s ease;
  padding-left: 8px;
}


.social-links span a {
 text-decoration: none;
  color: inherit;
}

.social-links span:hover,
.social-links span:focus {
  color: rgba(0, 0, 0, 0.5); /* Dimmed color (semi-transparent black) */
  opacity: 0.6; /* Further reduces visibility for a dimmed effect */
  transition: color 0.4s, opacity 0.4s; /* Smooth transition for color and opacity */
}


  /* Accessibility: Focus outline */
  [tabindex="0"]:focus {
    outline: 2px solid #777;
    outline-offset: 3px;
  }

  /* Responsive adjustments */
  @media (max-width: 480px) {
    .modal {
      width: 90vw;
      padding: 24px 24px 0;
    }
    .footer-container {
      padding: 16px 24px 24px;
      font-size: 12px;
    }
   
  }

  



/* Hamburger Icon and Menu Text */
.hamburger-container h5,
.hamburger span {
     /* Default black on light */
    color: black; /* Default black for h5 */
}

/* Dark Background Mode */
.navbar.dark-bg .navbar-logo {
    filter: invert(1); /* Makes logo white on dark backgrounds */
}

.navbar.dark-bg .hamburger-container h5
 {
     /* Hamburger lines white on dark */
    color: white !important; /* Menu text white on dark */
}
.navbar.dark-bg .hamburger span{
    background-color: white !important; /* Hamburger lines white on dark */
}
/* Active Hamburger (when menu open, white modal bg) */
.navbar .hamburger.active span {
    background-color: black !important; /* Black hamburger lines when modal open */
}

.navbar .hamburger.active ~ h5 {
    color: black !important; /* Black menu text when modal open */
}

/* Default (for light backgrounds) */
.navbar-brand,
.nav-link {
    color: black !important;
}

/* Ensure Menu text is hidden when modal is open (hamburger active) */
.navbar .hamburger.active ~ h5 {
    display: none !important;
}


  




 




/* Main Container */
.stats-section {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  overflow: hidden;
  background-color: #000000; /* Dark background to ensure white logo/hamburger */
}


/* Intro Text */
.intro-text {
  position: relative;
  z-index: 2;
  max-width: 500px;
  text-align: center;
  font-family: 'Plus Jakarta Sans';
  font-weight: var(--font-weight-regular);
  text-align: left;
  margin-left: 43vw;
}

.intro-text h3 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

/* Stats Grid */
.stats-grid {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
    justify-content: space-around;
    margin-left: 40px;
    margin-right: 40px;
    font-family: 'Plus Jakarta Sans';
    font-weight: var(--font-weight-thin);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center numbers & captions */
    text-align: center;
}

.stat-item .number {
      font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 0px;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    position: relative;
    display: inline-block;
     font-variant-numeric: tabular-nums; /* Ensures numbers have equal width */
            transition: all 0.5s ease-out;
}

 .stat-item .number.scoreboard {
            font-family: 'Arial', sans-serif;
            background-color: rgba(0, 0, 0, 0.2);
            padding: 5px 15px;
            border-radius: 8px;
            
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        }


.stat-item .number:after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #dfdcdc;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.stat-item:hover .number:after {
  transform: scaleX(1);
  transform-origin: left;
}

.stat-item h4 {
    font-size: 12px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-align-last: left;
    margin: 0px;
}

/* Awards Section */
.awards-section {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.awards-title {
  font-size: 14px;
  color: #ff3a3a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.awards-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #ff3a3a;
}

.logos-grid {
    display: flex;
    justify-content: space-evenly; /* Distributes logos evenly */
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    position: relative;
    z-index: 2;
    padding: 10px 30px; /* Adjusted padding to match margins */
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    align-content: space-evenly;
    flex-direction: row;
    margin-left: 30px;
    margin-right: 30px;
    max-width: calc(100% - 60px); /* Account for left and right margins */
    box-sizing: border-box;
}

.logo-item {
    opacity: 1;
    animation-fill-mode: forwards;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item img {
    height: 20vh;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: filter 0.3s ease;
    scale:1.3;
}

.logo-item img:hover {
    filter: brightness(0) invert(1) opacity(1);
}
/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}



@media (max-width: 1920px) {

    .intro-text h3{
        font-size: 2.2rem;
    }
    .stats-grid {
        gap: 60px;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .stat-item .number {
        font-size: 4.5rem;
    }

     .stats_caption h4 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
}




@media (max-width: 1024px) {
    .stats-grid {
        gap: 60px;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .stat-item .number {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .stats-grid {
        gap: 50px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 80px;
    }
    
    .stat-item {
        align-items: center; /* Center align on mobile */
        text-align: center;
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
    
    .stats_caption {
        align-items: center;
    }
    
    .stats_caption h4 {
        text-align: center;
    }
    
    .stat-item .number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 50px;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 70px;
    }
    
    .stat-item .number {
        font-size: 3rem;
    }
    
    .stats_caption h4 {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        gap: 40px;
    }
    
    .stat-item .number {
        font-size: 2.8rem;
    }
}
























@media (max-width: 1024px) {
  .logo-item img {
      height: 8vh;
      scale:2;
  }
}



/* Responsive */
@media (max-width: 767px) {
  .stats-section {
      padding: 0px 20px;
  }
  
  .stats-grid {
      flex-direction: column;
      gap: 60px;
      align-items: center;
  }
  .intro-text {
      margin-left:12vw;
  }
  
  .intro-text h3 {
      font-size: 24px;
  }
  
  .stat-item .number {
      font-size: 50px;
  }
  
  .logos-grid {
      gap: 30px;
      padding: 30px 0;
      align-items: center;
  }
  .logo-item img {
      height: 10vh;
      scale:2;
  }
  
  
}




@media (max-width: 600px) {
  .stats-section {
      padding: 40px 10px;
  }
  
  .logo-item img {
      height: 9vh;
      scale:1.5;
  }
}

/*stats-13/8/25*/

.stats_caption {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center captions under numbers */
    gap: 2px;
}
@media (max-width: 600px) {
  .stats_caption h4 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
}


@media (max-width: 1920px) {

    .intro-text h3{
        font-size: 2.2rem;
    }
    .stats-grid {
        gap: 60px;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .stat-item .number {
        font-size: 4.5rem;
    }

     .stats_caption h4 {
    font-size: 1.3rem;
    line-height: 1.3;
  }
}




@media (max-width: 1024px) {

      .intro-text h3{
        font-size: 1.6rem;
    }
    .stats-grid {
        gap: 60px;
        margin-left: 30px;
        margin-right: 30px;
    }
    
    .stat-item .number {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {

         .intro-text h3{
        font-size: 1.4rem;
    }

    .stats-grid {
        gap: 50px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) {
         .intro-text h3{
        font-size: 1.2rem;
    }
    .stats-grid {
        flex-direction: column;
        gap: 60px;
        align-items: center;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 80px;
    }
    
    .stat-item {
        align-items: center; /* Center align on mobile */
        text-align: center;
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
    
    .stats_caption {
        align-items: center;
    }
    
    .stats_caption h4 {
        text-align: center;
    }
    
    .stat-item .number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
         .intro-text h3{
        font-size: 1rem;
    }
    .stats-grid {
        gap: 50px;
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 70px;
    }
    
    .stat-item .number {
        font-size: 3rem;
    }
    
    .stats_caption h4 {
        font-size: 1rem;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        gap: 40px;
    }
    
    .stat-item .number {
        font-size: 2.8rem;
    }
}



.footer-wrapper {
  background-color: var(--dark);
  color: var(--primary-color);
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.main-footer {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  filter:  invert(1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo:hover img {
  transform: rotate(25deg);
}

.lets-talk-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.lets-talk {
  font-size: 4.5vw;
  font-weight: 500;
  line-height: 1;
  position: relative;
  z-index: 2;
  display: inline-block;
}

@media (min-width: 1200px) {
  .lets-talk {
      font-size: 3.5rem;
  }
}

.lets-talk a {
  color: var(--primary-color);
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.lets-talk-circle {
  position: absolute;
  width: 0;
  height: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lets-talk-wrapper:hover .lets-talk-circle {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.lets-talk-arrow {
  display: inline-block;
  margin-left: 0em;
  transition: transform 0.3s ease;
}

.lets-talk-wrapper:hover .lets-talk-arrow {
  transform: translateX(2px);
}

/* Rest of your existing footer styles... */
.footer-contact h3, 
.footer-social h3, 
.footer-nav1 h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-color);
  opacity: 0.8;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.nav-links1 {
  display: flex;
  flex-direction: column;
  gap: 12px;

}
.footer-social .social-links {
    display: flex;
    flex-direction:column;
    gap: 10px;
    font-size: 13px;
    color: #302e2e;
    user-select: none;
  }

.footer-contact a,
.social-links a,
.nav-links1 a,
.footer-legal a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.footer-contact a:hover,
.social-links a:hover,
.nav-links1 a:hover,
.footer-legal a:hover {
  color: rgba(0, 0, 0, 0.3);
  -webkit-text-fill-color: #161616; /* Override WebKit transparency */
}

.footer-social {
  display: flex;
  flex-direction: column;
}








.footer-col .footer-nav1 {
  display: flex;
  flex-direction: column;
}



.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;  /* Stack items vertically */
  justify-content: center;
  align-items: center;      /* Center align horizontally */
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 2rem;
  gap: 1rem; /* spacing between blocks */
}


.copyright {
  font-size: 0.85rem;
  color: var(--text-color);
  opacity: 0.7;
}

.footer-legal a {
  color: var(--text-color);
  margin-left: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-legal a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .main-footer {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }
  
  .footer-legal {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }
  
  .footer-legal a {
      margin: 0;
  }

  .lets-talk {
      font-size: 10vw;
  }
}

/* Animation for footer elements */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.footer-col {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.footer-col:nth-child(1) { animation-delay: 0.1s; }
.footer-col:nth-child(2) { animation-delay: 0.2s; }
.footer-col:nth-child(3) { animation-delay: 0.3s; }
.footer-col:nth-child(4) { animation-delay: 0.4s; }


/* navbar menu modal  */





/* Logo styling - always white/visible on background */
.logo {
    font-size: 22px;
    font-weight: 700;
    color: white !important; /* Always white for visibility on background */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for better readability */
}

/* Hamburger styling - always white for visibility */
/* .hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white !important; 
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); 
} */

/* Ensure navbar stays on background image layer */






/* Selected Work Section */
        .selected-work-section {
            padding: 40px 0;
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }
        
        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 10px;
            max-height: 70%;
        }
        
        .section-header {
            text-align: left; /* Change from center to left */
        margin-bottom: 50px;
      padding-left: 10px;
        }
        
        .section-title {
            font-size: 1.2rem;
            font-family: Plus Jakarta Sans;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: white;
            font-family: 'Plus Jakarta Sans';
            font-weight: 400;
             
         
             
            text-align: left;
            
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        /* Work Swiper Styles */
        .work-swiper {
            min-height: 30vw;
            padding: 10px 0 30px;
            overflow: hidden;
            width: 100%;
        }
        
        .work-swiper .swiper-slide {
            width: calc(100% / 3 - 20px);
            height: auto;
            transition: transform 0.3s ease;
        }
        
        .work-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            aspect-ratio: 16/9;
      
        }
        
        .work-card {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .work-image {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .work-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        
        .work-category {
            display: block;
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Plus Jakarta Sans';
        }
        
        .work-title {
            color: white;
            font-size: 1.8rem;
            font-weight: 500;
            margin: 0;
            line-height: 1.2;
            font-family: 'Plus Jakarta Sans';
        }
        
      .work-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-meta {
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.work-link {
    display: inline-flex;
    align-items: center;
    color: white;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 500;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

        .work-link svg {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

      .work-item:hover .work-overlay {
    opacity: 1;
    transform: translateY(0);
}

.work-item:hover .work-meta {
    transform: translateY(0);
}

.work-item:hover .work-link {
    transform: translateY(0);
    opacity: 1;
}
        
        .work-item:hover .work-image img {
            transform: scale(1.1);
        }
        
        .work-link:hover svg {
            transform: translateX(5px);
        }
        
        /* Navigation buttons */
        .work-swiper .swiper-button-next,
        .work-swiper .swiper-button-prev {
            color: var(--primary);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }
        
        .work-swiper .swiper-button-next:hover,
        .work-swiper .swiper-button-prev:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.1);
        }
        
        .work-swiper .swiper-button-next::after,
        .work-swiper .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        /* Pagination */
        .work-swiper .swiper-pagination {
            position: relative;
            bottom: 0;
            margin-top: 30px;
        }
        
        .work-swiper .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }
        
        .work-swiper .swiper-pagination-bullet-active {
            background: var(--primary);
            width: 30px;
            border-radius: 5px;
        }
        
        /* View All */
        .view-all {
            text-align: center;
            margin-top: 20px;
            font-family: 'Plus Jakarta Sans';
        }
        
       .view-all-link {
   display: inline-flex; /* Use flex to align text and SVG */
    align-items: center;
    gap: 8px; /* Space between text and SVG */
    padding: 10px 20px;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    cursor: pointer; /* Clickable cursor */
    pointer-events: auto; /* Explicitly enables click events */
    z-index: 10; /* Above any overlays */
}
        
        .view-all-link svg {
            margin-left: 10px;
            transition: transform 0.3s ease;
            transform: rotate(325deg);
        }
        
       .view-all-link:hover {
  
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
    transform: translateY(-2px); /* Lift effect */
    color: rgba(255, 255, 255, 0.5); /* Optional: Change text color on hover */
}
        .view-all-link:hover svg {
            transform: translateX(5px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .work-swiper .swiper-slide {
                width: calc(100% / 2 - 15px);
            }
            .section-title{
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .selected-work-section {
                padding: 40px 0;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .work-swiper .swiper-slide {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .work-swiper .swiper-button-next,
            .work-swiper .swiper-button-prev {
                display: none;
            }
        }
        @media (max-width: 576px) {
            .section-title {
                font-size: 1.2rem;
            }
            
        }

/* Project Page Styles */
.project-hero {
    padding: 100px 0;
    background-color: var(--dark);
    color: white;
}

.project-meta {
    margin-bottom: 40px;
}

.project-category {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-serif);
    font-style: italic;
}

.project-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.project-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details {
    padding: 80px 0;
    background-color: #121a2b;
}

.project-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-serif);
    font-style: italic;
}

.project-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: white;
}

.project-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.project-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tech-tag {
    background: rgba(78, 204, 163, 0.2);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.project-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
}

.project-info h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.project-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.project-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.project-info strong {
    color: white;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3aa789;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-gallery {
    padding: 80px 0;
    background-color: var(--dark);
}

.project-gallery h2 {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    font-family: var(--font-serif);
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.project-footer {
    padding: 60px 0;
    background-color: #121a2b;
}

.project-navigation {
    display: flex;
    justify-content: space-between;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        padding: 60px 0;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-excerpt {
        font-size: 1.1rem;
    }
    
    .project-content h2 {
        font-size: 1.8rem;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.8rem;
    }
    
    .project-content h2 {
        font-size: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
}
/* Iframe Video Styles */


.hero-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* For Vimeo - add this class to the container */
.vimeo-container {
    padding-bottom: 56.25%;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-hero-image {
        margin-top: 30px;
    }
}




/* Brand Story Section */
.brand-story-section {
  padding: 100px 0;
  background-color: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}


.rotating-words {
  display: inline-block;
  position: relative;
  height: 1.2em;
  color: var(--primary);
}


.rotating-words .word {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  white-space: nowrap;
}

.rotating-words .word.active {
  position: relative;
  opacity: 1;
}

.rotating-words .word span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.rotating-words .word.active span {
  animation: letterReveal 0.6s forwards;
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  .brand-story-section {
    padding: 60px 0;
  }
}




.content-section {
            margin: 100px 0;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            align-items: start;
            background-color: #e3e2e2;
        }
        
     


        /* Anish Autoamtion */

        * Project Page Styles */
.project-hero {
    padding: 100px 0;
    background-color: var(--dark);
    color: white;
}

.project-meta {
    margin-bottom: 40px;
}

.project-category {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--font-serif);
    font-style: italic;
}

.project-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 30px;
}

.project-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-details {
    padding: 80px 0;
    background-color: #121a2b;
}

.project-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    font-family: var(--font-serif);
    font-style: italic;
}

.project-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: white;
}

.project-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.project-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tech-tag {
    background: rgba(78, 204, 163, 0.2);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.project-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
}

.project-info h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.project-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.project-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.project-info strong {
    color: white;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3aa789;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.project-gallery {
    padding: 80px 0;
    background-color: var(--dark);
}

.project-gallery h2 {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    font-family: var(--font-serif);
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.project-footer {
    padding: 60px 0;
    background-color: #121a2b;
}

.project-navigation {
    display: flex;
    justify-content: space-between;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        padding: 60px 0;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-excerpt {
        font-size: 1.1rem;
    }
    
    .project-content h2 {
        font-size: 1.8rem;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 1.8rem;
    }
    
    .project-content h2 {
        font-size: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
}
/* Iframe Video Styles */


.hero-video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* For Vimeo - add this class to the container */
.vimeo-container {
    padding-bottom: 56.25%;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-hero-image {
        margin-top: 30px;
    }
}

/* Project Page Styles */
.project-hero {
    padding: 150px 0 80px;
    background-color: var(--dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.project-meta {
    margin-bottom: 60px;
    max-width: 800px;
}

.project-category {
    display: block;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: var(--font-serif);
    font-style: italic;
}

.project-excerpt {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
}

.project-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-top: 60px;
}

.project-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-content {
    padding: 100px 0;
    background-color: var(--dark);
    color: white;
}

.project-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: var(--font-serif);
    font-style: italic;
}

.project-content h3 {
    font-size: 1.8rem;
    margin: 50px 0 20px;
    font-weight: 500;
}

.project-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.tech-tag {
    background: rgba(78, 204, 163, 0.2);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.project-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    position: sticky;
    top: 120px;
}

.project-info h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
}

.project-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.project-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-info strong {
    color: white;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3aa789;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.full-width-image {
    width: 100%;
    margin: 60px 0;
}

.full-width-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-gallery {
    padding: 100px 0;
    background-color: var(--dark);
}

.project-gallery h2 {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.project-footer {
    padding: 80px 0;
    background-color: #121a2b;
}

.project-navigation {
    display: flex;
    justify-content: space-between;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 10px;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .project-title {
        font-size: 3rem;
    }
    
    .project-content h2 {
        font-size: 2rem;
    }
    
    .project-navigation {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .project-hero {
        padding: 120px 0 60px;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-content h2 {
        font-size: 1.8rem;
    }
    
    .project-content h3 {
        font-size: 1.5rem;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .project-sidebar {
        margin-top: 60px;
        position: static;
    }
}

@media (max-width: 576px) {
    .project-title {
        font-size: 2rem;
    }
    
    .project-content h2 {
        font-size: 1.6rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Gallery Swiper Styles */
.gallery-swiper {
    width: 100%;
    height: 500px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Swiper Navigation */
.swiper-button-next, 
.swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: rgba(0,0,0,0.6);
}

.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007bff;
}

/* Full Width Video Styles */
.full-width-video {
  position: relative;
  width: 100%;
  min-height: 100vh; /* Ensure section takes at least full viewport height */
  overflow: hidden;
  display: flex; /* Use flex to manage content layout */
  flex-direction: column;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.video-container video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    max-width: none;
    max-height: none;
    background: #000;
    z-index: 1;
    pointer-events: none;
}


.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.5);
    z-index: 2;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 3;
    width: 80%;
    max-width: 1200px;
}

.video-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .video-content h2 {
        font-size: 3rem;
    }
    
    .video-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .video-content h2 {
        font-size: 2.5rem;
    }
    
    .video-content p {
        font-size: 1rem;
    }
    
    .full-width-video {
        height: 80vh;
    }
}

@media (max-width: 576px) {
    .video-content h2 {
        font-size: 2rem;
    }
    
    .full-width-video {
        height: 60vh;
    }
}



@media (max-width: 768px) {
    .video-container,
    .video-container video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        max-width: none;
        max-height: none;
        aspect-ratio: 9/16;
    }
}

@media (max-width: 480px) {
    .video-container,
    .video-container video {
        width: 100vw;
        height: 100vh;
        min-width: 100vw;
        min-height: 100vh;
        max-width: none;
        max-height: none;
         aspect-ratio: 9/16;
         object-fit: cover;
    }
}


/* what we do  section */



/* What We Do Section */
    .what-we-do {
      width: 100%;
      background-color: white;
      padding: 4rem 0;
    }

    .what-we-do__container {
      display: flex;
      max-width: 100%;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .what-we-do__title {
      flex: 0 0 25%;
      padding-right: 2rem;
    }

    .what-we-do__title h2 {
      font-size: 1.2rem;
      font-weight: 400;
      color: #333;
      letter-spacing: 0.02em;
      position: sticky;
      top: 2rem;
    }

    .what-we-do__content {
      flex: 0 0 75%;
      display: flex;
      flex-direction: column;
    }

    .reveal-text p {
      color: rgb(78, 78, 78);
      font-size: 4.5rem;
      line-height: 1.2;
      margin-bottom: 2rem;
    }

    .word {
      display: inline-block;
      opacity: 0.2;
      will-change: opacity;
      transition: opacity 0.5s ease-out;
    FONT-FAMILY: 'Plus Jakarta Sans';
    FONT-WEIGHT: 400;
}
    

    .word.active {
      opacity: 1;
      font-weight: 500;
    }

    .highlight {
      color: #5f5f5f;
        font-weight: 500;
    }

    .what-we-do__button {
      margin-top: auto;
      padding-top: 1rem;
    }

    .about-button {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: none;
      border: none;
      font-size: 1rem;
      font-weight: 400;
      color: #333;
      cursor: pointer;
      padding: 0.5rem 0;
      transition: all 0.3s ease;
    }

    .about-button:hover {
      color: #050505;
      transform: translateX(4px);
      scale: 1.25;
     font-weight: 500;
    }

    .arrow-icon {
      transition: transform 0.3s ease;
      transform: rotate(-45deg);
    }

    .about-button:hover .arrow-icon {
      transform: rotate(0deg) translateX(4px);
    }




    /* Responsive Design */

    /* Responsive Design */
 @media (max-width: 2400px) {
            .reveal-text p {
                font-size: 4.5rem;
            }
            
        
            .what-we-do__container,
            .capabilities__container {
                gap: 50px;
            }
        }    
 @media (max-width: 1920px) {
            .reveal-text p {
                font-size: 4rem;
            }
            
        
            .what-we-do__container,
            .capabilities__container {
                gap: 50px;
            }
        }

        @media(max-width: 1440px) {
            .reveal-text p {
                font-size: 3.5rem;
            }
            
          
            .what-we-do__container,
            .capabilities__container {
                gap: 50px;
            }
        }
    @media (max-width: 1024px) {
            .reveal-text p {
                font-size: 3rem;
            }
            
       
            .what-we-do__container,
            .capabilities__container {
                gap: 40px;
            }
        }

    @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .what-we-do__container,
            .capabilities__container {
                flex-direction: column;
                gap: 30px;
            }
            
            .what-we-do__title,
            .capabilities__title {
                flex: 1;
            }
            
            .what-we-do__content,
            .capabilities__content {
                flex: 1;
            }
            
            .reveal-text p {
                font-size: 2.3rem;
            }
            
          
        }
    @media (max-width: 576px) {
          .capabilities__content {
                padding-left: 8%;
            }
            .reveal-text p {
                font-size: 2rem;
                line-height: 1.3;
            }
            
            .capability-item p {
                font-size: 1.6rem;
            }
            
            .section-title {
                font-size: 1.1rem;
            }
        }
    
        @media (max-width: 400px) {
            .reveal-text p {
                font-size: 1.7rem;
            }
            
            .capability-item p {
                font-size: 1.4rem;
            }
        }

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
.center-content {
    position: absolute;
   top: 40%;
   left: 5%;
    width: 90%;
    text-align: left;
    z-index: 3;
    perspective: 1000px; /* Adds 3D depth */
}

.contentrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    
}



.headline-container {
            max-width: 100%;
            display:flex;
            flex-direction: column;
            align-items: flex-start;
            flex-wrap: wrap;
        } 
        .headline {
            font-size: 3.5rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: var(--font-weight-thin);
            color: white;
            line-height: 1.3;
            position: relative;
            text-align: left;
            max-width: 28ch;
            white-space: normal;
            display: inline;
        }
        .static-text {
            display: inline;
        }
        .dynamic-text {
            color: white;
           position: relative;
            white-space: nowrap;
            animation: blink-caret 0.75s step-end infinite;
            display: inline-block;
            vertical-align: bottom;
            line-height: inherit;
            display: inline;      /* Ensure the animating span stays inline with "Through" */
            white-space: nowrap;  /* Critical: No wrapping inside the animating text */
            font-size: inherit;animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;transform-style: preserve-3d;
        }

        /* Individual letter styling */
.dynamic-text .letter {
   display: inline-block;
    opacity: 0;
    transform: rotateY(180deg) scale(0.3);
    transform-origin: center center;
    transition: all 0.4s ease-out;
    position: relative;
    font-weight: 400;
}

/* Typing state - letter appears with rotation */
.dynamic-text .letter.typing {
    opacity: 1;
    transform: rotateY(360deg) scale(1) translateY(0);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Original typewriter keyframes */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ffffff; }
}

/* Enhanced rotation keyframes for typed letters */
@keyframes rotateTypewriter {
    0% {
        opacity: 0;
        transform: rotateY(180deg) scale(0.3) translateZ(-10px);
        filter: blur(2px);
    }
    50% {
        opacity: 0.7;
        transform: rotateY(90deg) scale(0.7) translateZ(-5px);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg) scale(1) translateZ(0);
        filter: blur(0);
    }
}

.dynamic-text .letter.typed {
    animation: rotateTypewriter 0.6s ease-out forwards;
}

/* Deleting animation */
@keyframes rotateBackspace {
    0% {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
    100% {
        opacity: 0;
        transform: rotateY(180deg) scale(0.5);
        filter: blur(3px);
    }
}

.dynamic-text .letter.deleting {
    animation: rotateBackspace 0.3s ease-in forwards;
}
     
        /* Responsiveness for line breaks and font size */
        
        @media (max-width: 2400px) {

            .center-content{
                top: 50%;
            }
            .headline {
                font-size: 5.5rem;
                max-width: 85%;
            }
        }

        @media (max-width: 1920px) {

            .center-content{
                top: 52%;
            }
            .headline {
                font-size: 5rem;
                max-width: 80%;
            }
        }


        @media (max-width: 1400px) {

                 .center-content{
                top: 52%;
            }
            .headline {
                font-size: 4.5rem;
                max-width: 85%;
            }
        }


        @media (max-width: 1024px) {

                 .center-content{
                top: 50%;
            }
            .headline {
                font-size: 4.0rem;
                max-width: 22ch;
            }
        }


        @media (max-width: 904px) {

            .center-content{
                top: 50%;
            }
            .headline {
                font-size: 3.2rem;
                max-width: 22ch;
            }

             }
        @media (max-width: 768px) {
                .center-content{
                top: 54%;
            }

            .headline {
                font-size: 3rem;
                max-width: 18ch;
            }
        }
        @media (max-width: 480px) {
            .center-content{
                top: 53%;
            }
            .headline {
                font-size: 2.2rem;
            }
        }
         @media (max-width: 360px) {
            .center-content{
                top: 55%;
            }
            .headline {
                font-size: 2.1rem;
            }
        }


         /* Add this to your CSS file */
.subheadline {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1.5rem;
    font-weight: var(--font-weight-thin);
    max-width: 28ch;
    line-height: 1.6;
    animation: fadeIn 1s ease-in-out 0.5s both;
}

/* Responsive adjustments for the subheadline */

@media (max-width: 2400px) {
    .subheadline {
        font-size: 2.5rem;
        max-width: 60%;
    }
}



@media (max-width: 1920px) {
    .subheadline {
        font-size: 2rem;
        max-width: 60%;
    }
}


@media (max-width: 1400px) {
    .subheadline {
        font-size: 1.5rem;
        max-width:80%;
    }
}

@media (max-width: 1080px) {
    .subheadline {
        font-size: 1.5rem;
        max-width: 60%;
    }
}


@media (max-width: 768px) {
    .subheadline {
        font-size: 1.2rem;
        max-width: 100%;
    }
}

 @media (max-width: 480px) {
            .subheadline {
        font-size: 1rem;
        max-width: 100%;
            }
          }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}



/* Social Sidebar Video Section */


.social-sidebar-video {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 10;
  padding: 10px;
}

.social-sidebar-video a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  line-height: 40px;
  text-align: center;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-sidebar-video a i {
  font-size: 1.5rem; /* Ensures all icons use the same size */
}

/* Optional: Specific adjustment for YouTube if needed */
.social-sidebar-video a .fa-youtube {
  transform: scale(0.95); /* Slight reduction if it still appears larger */
}

.social-sidebar-video a:hover {
  color: #ccc;
}

.lets-footer {
  background: #f7f6f2;
  color: #181818;
  font-family: 'Inter', Arial, sans-serif;
  padding: 48px 0 24px 0;
  margin-top: 0px;
}
.lets-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5vw;
  gap: 0;
}
.lets-footer-talk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.lets-footer-logo img {
  height: 75px;
  width: 115px;
  margin-bottom: 8px;
}

.lets-footer-social {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    
}
.lets-footer-talk h2 {
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.lets-footer-talk .arrow {
  font-size: 2.2rem;
  font-weight: 400;
  margin-left: 8px;
  font-size: 2.2rem;
    font-weight: 100;
    margin-left: 0px;
 display: inline-block;
    transform: scale(1.3);
    transform: rotate(325deg);
}

.lets-footer-talk .arrow svg {
    width: 100%;
    height: 100%;
  }


.lets-footer-divider {
  border: none;
  border-top: 1px solid #181818;
  margin-left:5vw;
  margin-right: 5vw; 
  margin-top: 2vw;
  margin-bottom: 2vw;
  width: 90%;
}
.lets-footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5rem;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 4vw;
}
.lets-footer-links a {
  color: #181818;
  text-decoration: none;
  font-size: 1.1rem;
  margin-right: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.lets-footer-links a:last-child {
  margin-right: 0;
}
.lets-footer-links a:hover {
  color: #888;
}
.lets-footer-social a {
  color: #181818;
  font-size: 1.1rem;
  margin-right: 18px;
  transition: color 0.2s;
}
.lets-footer-social a:last-child {
  margin-right: 0;
}
.lets-footer-social a:hover {
  color: #888;
}
.lets-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 32px 5vw 0 5vw;
  font-size: 1rem;
  flex-wrap: wrap;
  gap: 16px;
}
.lets-footer-copy {
  color: #181818;
}
.lets-footer-address {
  color: #181818;
  text-align: center;
  font-size: 1rem;
}
.lets-footer-policy a {
  color: #181818;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.lets-footer-policy a:hover {
  color: #888;
}


@media (max-width: 900px) {
  .lets-footer-top, .lets-footer-links-row, .lets-footer-bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
   
  }

  .lets-footer-links-row{
    padding-left: 0px;
  }
 
  .lets-footer-divider, .lets-footer-bottom {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0vw;
  }
  .lets-footer-links {
    margin-bottom: 12px;
  }
   .lets-footer-social{
    margin-top: 30px;
  }

   .navbar-logo {
    height: 75px;
    width: 100px;
  }

  .lets-footer-top {
    padding:0 4vw;
}

.lets-footer-logo img {
       height: 75px;
    width: 100px;
  }

}

@media (max-width: 768px) {
  .lets-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 18px 5vw 0 5vw;
  }
  .lets-footer-copy,
  .lets-footer-address,
  .lets-footer-policy {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 0.90rem;
  }
  .lets-footer-policy {
    margin-bottom: 6px;
  }
}
@media (max-width: 468px) {
    .lets-footer-links a {
        font-size: 0.8rem;
    }
}


/*responsive*/
@media (max-width: 600px) {
  .lets-footer {
    padding: 32px 0 16px 0;
  }
.lets-footer-top {
    padding:0 4vw;
}
  .lets-footer-logo img {
    height: 65px;
    width: 90px;
  }

  .navbar-logo {
    height: 65px;
    width: 90px;
  }
  .lets-footer-talk h2 {
    font-size: 1.5rem;
  }
  .lets-footer-talk .arrow {
    font-size: 1.3rem;
  }
  .lets-footer-divider {
    margin: 24px 0 16px 0;
    width: 100%;
  }
  .lets-footer-links a {
    font-size: 1rem;
  }
  .lets-footer-bottom {
    font-size: 0.95rem;
    gap: 10px;
    padding-top: 18px;
  }
  .lets-footer-address {
    font-size: 0.95rem;
  }
  .lets-footer-social{
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .social-sidebar-video {
    display: none !important;
  }
}

/* Capabilities Section */
/* Capabilities Section */
.capabilities {
    width: 100%;
    background-color: white;
    padding: 4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.capabilities__container {
    display: flex;
    flex-direction: row; /* Title and content in same row on desktop */
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem; /* Consistent padding to avoid overflow */
}

.capabilities__title {
    flex: 0 0 auto;
    align-self: flex-start; /* Align title to top-left */
    padding-right: 2rem;
}

.capabilities__title h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.02em;
    position: -webkit-sticky; /* Safari compatibility */
    position: sticky;
    top: 0; /* Stick to top of viewport */
    margin: 0;
}

.capabilities__content {
    flex:   1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    padding-left: 8vw;
      width: 100%;
      
}

.capability-item p {
      font-family: Plus Jakarta Sans, sans-serif;
        font-weight: 300;
  
   font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: #666;
    letter-spacing: -0.02em;
    margin: 0;
    max-width:80%;     /* all paragraphs take same width */
  min-height: 80px; 
      letter-spacing: 0.3px;
    transition: transform 0.5s ease, font-weight 0.5s ease, color 0.5s ease, opacity 0.5s ease;
    transform-origin: center;
     transform: translateY(40px);
     text-align: center;
}

.capability-item.dim p {
    opacity: 0.5;
    color: #999;
    font-weight: 300;
}

.capability-item.active p {
    color: #111; /* Darker for clear highlight */
    font-weight: 700;
}

.capability-item p:hover {
     font-weight: 700;
    transform: scale(2);
    color: #111;
}

.capability-item.highlight p {
    color: #333;
    font-weight: 400;
}

.capability-item.highlight.dim p {
    opacity: 0.5;
    color: #999;
    font-weight: 300;
}

.capability-item.highlight.active p {
    color: #111;
    font-weight: 700;
}

.capability-item.highlight p:hover {
    font-weight: 700; /* Ensure highlight items get bold on hover */
}

.word {
    display: inline-block;
    opacity: 0.3;
    will-change: opacity;
    transition: opacity 0.3s ease-out;
}

.word.active {
    opacity: 1;
}

/* Button Styles (if uncommented) */
.capabilities__button {
    margin-top: 2rem;
}

.capabilities-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.capabilities-button:hover {
    color: #666;
    transform: translateX(4px);
}

.arrow-icon {
    transition: transform 0.3s ease;
    transform: rotate(-45deg);
}

.capabilities-button:hover .arrow-icon {
    transform: rotate(-45deg) translateX(4px);
}


@media(max-width: 1800px) {
    .capability-item p {
        font-size: 3rem;
        max-width: 85%; /* Adjust for wrapping */
    }
}
/* Responsive Design */
@media (max-width: 1400px) {
  
    .capability-item p {
      
        font-size: 2.5rem;
        max-width: 85%; /* Adjust for wrapping */
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
  
    .capability-item p {
      
        font-size: 2rem;
        max-width: 85%; /* Adjust for wrapping */
    }
}

@media (max-width: 900px) {
  
    .capability-item p {
      
        font-size: 1.9rem;
        max-width: 80%; /* Adjust for wrapping */
    }
}


@media (max-width: 768px) {
    .capabilities__container {
        flex-direction: column; /* Stack title above content */
        padding: 0 1.5rem;
        display: flex;
        justify-content: center; /* Center title and content vertically */
        align-items: center; /* Center title and content horizontally */
        width: 100%; /* Use available width */
        gap:2rem;
    }

    .capabilities__title {
        flex: 1;
        align-self: left; /* Center title */
        padding-right: 0;
        padding-bottom: 1.5rem;
        position: static; /* Disable sticky on mobile */
    }

    .capabilities__title h2 {
        text-align: center; /* Center title text */
    }

    .capabilities__content {
        flex: 1;
        width: 100%; /* Ensure content uses available width */
    }

    .capability-item p {
        font-size: 1.8rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .capabilities {
        padding: 3rem 0;
    }
    .capabilities__container{
     flex-direction:column; 
     gap:2rem;
    }

    .capability-item p {
        font-size: 1.4rem;
        line-height: 1.2;
        max-width: 90%;
    }
    .capabilities__title h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .capability-item p {
        font-size: 1.4rem;
        max-width: 95%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 1440px) {
    .logos-grid {
        gap: 50px;
        padding: 10px 25px;
    }
    
    .logo-item img {
        height: 18vh;
        max-height: 110px;
    }
}

@media (max-width: 1200px) {
    .logos-grid {
        gap: 40px;
        padding: 10px 20px;
    }
    
    .logo-item img {
        height: 16vh;
        max-height: 100px;
        scale: 1.2;
    }
}

@media (max-width: 1024px) {
    .logos-grid {
        gap: 35px;
        margin-left: 20px;
        margin-right: 20px;
        max-width: calc(100% - 40px);
        padding: 10px 15px;
    }
    
    .logo-item img {
        height: 14vh;
        max-height: 90px;
        scale: 1.1;
    }
}

@media (max-width: 900px) {
    .logos-grid {
        gap: 30px;
        padding: 10px 10px;
    }
    
    .logo-item img {
        height: 12vh;
        max-height: 80px;
        scale: 1;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        gap: 25px;
        margin-left: 15px;
        margin-right: 15px;
        max-width: calc(100% - 30px);
        padding: 10px 5px;
        justify-content: space-between; /* Better spacing on mobile */
    }
    
    .logo-item img {
        height: 10vh;
        max-height: 70px;
        scale: 0.9;
    }
}

@media (max-width: 640px) {
    .logos-grid {
        gap: 20px;
        padding: 10px 0;
    }
    
    .logo-item img {
        height: 9vh;
        max-height: 60px;
        scale: 0.8;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        gap: 15px;
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100% - 20px);
    }
    
    .logo-item img {
        height: 8vh;
        max-height: 50px;
        scale: 0.7;
    }
}

/* For very small screens, allow wrapping as last resort */
@media (max-width: 360px) {
    .logos-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .logo-item {
        flex: 0 0 calc(33.333% - 20px); /* 3 items per row */
        text-align: center;
    }
    
    .logo-item img {
        height: 7vh;
        max-height: 45px;
        scale: 0.6;
        margin: 0 auto;
    }
}


/* Logo Slider Section */
.logo-slider-section {
    padding: 0px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
}

.logo-slider-container {
    position: relative;
    padding: 40px 0;
}

.logo-slider {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.logo-slide img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1) opacity(0.8);
    transition: all 0.3s ease;
    transform: scale(2);
}




.logo-slide:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(3.05);
}

/* Navigation buttons */
.logo-slider-next,
.logo-slider-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.logo-slider-next:hover,
.logo-slider-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.logo-slider-next::after,
.logo-slider-prev::after {
    font-size: 1rem;
    font-weight: bold;
}

/* Pagination */
.logo-slider-pagination {
    position: relative;
    bottom: 0;
    margin-top: 30px;
}

.logo-slider-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.logo-slider-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 20px;
    border-radius: 5px;
}

/* Responsive adjustments */

@media (max-width: 1024px) {
    .logo-slider {
        height: 100px;
    }
    
    .logo-slide img {
        max-height: 100px;
    }
}
@media (max-width: 768px) {
    .logo-slider {
        height: 120px;
    }
    
    .logo-slide img {
        max-height: 60px;
    }
    
    .logo-slider-next,
    .logo-slider-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-slider {
        height: 100px;
    }
    
    .logo-slide img {
        max-height: 100px;
    }
}

/* Universal Fix for Mobile Devices in Landscape Mode */
@media screen and (max-height: 480px) and (orientation: landscape) {
  html, body {
    overflow-y: auto; /* Allow vertical scroll */
    overflow-x: hidden;
    height: 100%;
  }

  /* Video scaling fix */
  .video-container video {
    width: 100vw;
    height: 100vh;
    object-fit: cover !important; /* Prevent black bars */
  }

  
    .center-content{
        top: 40%;
        
    }

  /* Headline adjustments */
  .headline-container h1 {
    font-size: 3rem;
    line-height: 1.2;
    padding: 0 10px;
    text-align: center;
  }

  .subheadline {
    font-size: 1rem;
    line-height: 1.3;
    padding: 0 15px;
    text-align: center;
    max-width: 40ch;
  }



  /* Hide cluttered sidebar icons */
  .social-sidebar-video {
    display: none;
  }

  /* Fix swiper carousel slides for better fit */
  .work-swiper .swiper-slide {
    width: 75% !important;
  }

  /* Reduce footer clutter */
  .footer-wrapper {
    padding: 1.5rem 1rem;
  }

  /* Adjust stats section spacing */
  .stats-grid {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-height: 480px) and (orientation: landscape) {
  .work-swiper .swiper-slide {
    width: 90% !important;
    margin: 0 auto;
  }

  .work-swiper .swiper-button-next,
  .work-swiper .swiper-button-prev {
    display: none; /* Hide arrows to avoid clutter */
  }

  .intro-text{
    font-size: 1rem;
    max-width: 30ch;
    
    margin: 0 auto;
    text-align: center;
  }
}

@media screen and (max-height: 880px) and (orientation: landscape) {
    .center-content{
            top: 40%;
            
        }
        .headline {
            font-size: 3.5rem;
            max-width: 28ch;
        }
}


/* iOS-specific fix for arrow (optional, if needed) */
@supports (-webkit-touch-callout: none) {
  .lets-footer-talk .arrow svg {
    -webkit-transform: rotate(325deg); /* Ensure iOS respects the rotation */
    transform: rotate(325deg);
  }
}