@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&display=swap');

.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.alexandria-pno {
  font-family: "Alexandria", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --letter-spacing: 0.2rem;
  --gap: 2rem;
  --animation-speed: 120s;
  --background-color: #121212;
    --text-color: #ffffff;
    --subtle-text-color: #a0a0a0;
     --primary-color: #0A2463;
    --text-color-light: #E0E0E0;
    --text-color-white: #FFFFFF;
    --footer-font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --marquee-duration: 25s;
    --bg: #f3f4f6;
      --card: #ffffff;
      --primary:#022271;
      --muted: #6b7280;
        --text-color-bg: #666666;
  --text-color-fg: #ffffff;
  --circle-size: 4vmax;
}

body {
  font-family: "Alexandria", sans-serif;
  color: #fff;
  background: #012273;
  font-weight: 300;
}
html {
    scroll-behavior: smooth;
}

/* .container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
} */
a{
  text-decoration: none;
}
/* Navbar */

/* Navbar */
.navbar {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
      height: 80px;
}

.navbar.scrolled {
  background-color: rgba(17, 17, 17, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 0 30px;
  position: relative; 
}
.nav-left .nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-left .nav-links li a {
  position: relative;
  color: #D1D1D1E5;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 24px;
  padding-bottom: 5px; 
}

.nav-left .nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-left .nav-links li a:hover {
  color: #fff;
}

.nav-left .nav-links li a:hover::after {
  width: 100%;
}

.nav-left .nav-links li a.active {
  color: #fff;
}

.nav-left .nav-links li a.active::after {
  width: 100%;
}
/* 
.nav-left .nav-links { 
  display: flex; 
  list-style: none; 
      gap: 30px;
    margin: 0; padding:0;
}
.nav-left .nav-links li a { 
color: #D1D1D1E5; 
  text-decoration: none; 
  transition: color 0.3s;font-size: 24px;
}
.nav-left .nav-links li a:hover { color: #fff; }
.nav-left .nav-links li a.active { 
  color: #fff; 
} */
.logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* Right Contact */
/* .nav-right .btn-contact { 
  color: #D1D1D1E5; 
  text-decoration: none; 
      padding: 0;
    border-radius: 0;
}
.nav-right .btn-contact.active{
  color: #fff; 
} */
.menu-toggle { 
  display: none; 
  cursor: pointer; 
  color: #D1D1D1E5; 
  font-size: 28px; 
  padding: 5px;
}

.mobile-contact { display: none; }

.nav-right .btn-contact {
  position: relative;
  color: #D1D1D1E5;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 24px;
  padding-bottom: 5px; 
}

.nav-right .btn-contact::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-right .btn-contact:hover {
  color: #fff;
}

.nav-right .btn-contact:hover::after {
  width: 100%;
}

.nav-right .btn-contact.active {
  color: #fff;
}

.nav-right .btn-contact.active::after {
  width: 100%;
}

/* Close button inside mobile menu */
.close-btn {
  font-size: 32px;
  color: #fff;
  text-align: right;
  padding: 15px 20px;
  cursor: pointer;
  display: none; /* hidden by default on desktop */
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}


/* Responsive */
@media(max-width: 768px){
  .nav-left .nav-links { 
     flex-direction: column; 
    background: #000; 
    position: fixed; 
    top: 0; 
    left: -100%;  /* hide off-screen */
    width: 250px; 
    height: 100vh; 
    padding-top: 0; 
    transition: left 0.4s ease; /* smooth slide */
    z-index: 1100;
  }
  .nav-left .nav-links li { margin: 0;
    text-align: left;
    padding-left: 20px;}
  .menu-toggle { display: block; }
  /* .logo { flex: 1; } */
   .logo { 
    position: static; 
    transform: none; 
    flex: 1; 
    text-align: center; 
  }
  .nav-right { display: none; } 
  .mobile-contact { display: block; margin-top: 15px; }
  .mobile-contact .btn-contact {
    display: inline-block;
    background: #012273;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff !important;
  }
  .nav-left .nav-links.active {
    left: 0; /* slide in */
  }
   .nav-left .nav-links.active {
    display: flex;  /* Show menu when active */
    justify-content: center;
        align-items: center;
        width: 100%;
  }
   .close-btn { display: block;
        position: absolute;
        top: 0;
        right: 0;
        color: red;
        font-size: 36px; }

         .nav-left {
    flex: 0 0 auto;
  }
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-right { display: none; }
}
/* Overlay background when menu is open */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
  display: none;
}
.overlay.active { display: block; }
/* --- End Header --- */
/* Hero */
.hero {
  background: url("../img/hero-banner.png") center/cover no-repeat;
  position: relative;
  height: 150vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  
}

/* Overlay layer */
.hero::before,
.turning-plan::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 34, 115, 0.9); /* black with 60% opacity */
  z-index: 1;
}
.turning-plan{
  position: relative;    overflow: hidden;
}
.turning-plan::before{
  z-index: -1;
}
.turning-plans-swiper-button-1,
.turning-plans-swiper-button-2 {
  display: flex;
    align-items: end;
    justify-content: end;
    gap: 20px;
    padding-right: 50px;
}
.turning-plans-swiper-button-1 > span,
.turning-plans-swiper-button-2 > span {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: rgba(1, 34, 115, 0.9);
  font-size: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
/* Content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: 72px;
  line-height: 0.9;
  margin: 180px 0 0;
  font-family: "Bebas Neue", sans-serif;
}
.hero-content p {
  padding: 20px 0;font-weight: 300;
}
.hero-content h1{
   font-family: "Bebas Neue", sans-serif;    font-size: 72px;
    line-height: 1;
}



.hero .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff5e00;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

/* Sections */
section {
  padding: 80px 0;
  text-align: center;
}
.about-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service-card {
  background: #1b263b;
  padding: 30px;
  border-radius: 10px;
}

/* Stats */
.stats {
  background: #111;
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
}
.stat {
  font-size: 28px;
  font-weight: bold;
}
.stat span {
  display: block;
  font-size: 14px;
  color: #ccc;
}

/* Testimonials */
.testimonials {
  background: #1b263b;
  position: relative;
}
.slider {
  overflow: hidden;
}
.slide {
  display: none;
  font-size: 18px;
  padding: 20px;
}
.slide.active {
  display: block;
}
.prev,
.next {
  background: #ff5e00;
  border: none;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* Contact */
.contact form {
  display: grid;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}
.contact input,
.contact button {
  padding: 12px;
  border: none;
  border-radius: 5px;
}
.contact button {
  background: #ff5e00;
  color: #fff;
  font-weight: bold;
}


/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
  }
  .nav-links li {
    margin: 15px 0;
  }
  .menu-toggle {
    display: block;
            position: absolute;
        right: 5%;
        top: -25px;
  }
}

/* Slide Images */
.swiper-main {
  display: flex;
  min-height: calc(80vh - 10px);
  overflow: hidden;
}
.swiper-home-banner {
  min-height: calc(50vh - 10px) !important;
}


.swiper-main:has(.turning-plans-swiper-2 ) {
  overflow: visible;
  min-height: unset;
  margin-block: 50px;
}
.hero-swiper .swiper-slide > img,
.turning-plans-swiper-1 .swiper-slide > img,
.turning-plans-swiper-2 .swiper-slide > img {
  /*width: 100%;*/
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.7s ease-in-out; /* smooth zoom */
  filter: grayscale(100%);
   
    /* box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2); */
       
}

.turning-plans-swiper-1 .swiper-slide > img{
  width: 100%;
    height: 250px;
}

/* Center Mode Slider Container */
.hero-swiper.swiper-container,
.turning-plans-swiper-1.swiper-container,
.turning-plans-swiper-2.swiper-container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  overflow: visible; /* allow scale outside bounds */
 padding-top: 60px;
    padding-bottom: 80px;

}
.turning-plans-swiper-1.swiper-container{
      padding-bottom: 70px;
}
/* Default Slide Style */
.hero-swiper .swiper-slide,
.turning-plans-swiper-1 .swiper-slide,
.turning-plans-swiper-2 .swiper-slide {
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
  opacity: 0.5; /* faded for side slides */
  
}
.turning-plans-swiper-2 .swiper-slide {
  height: unset;
}

/* Active (Center) Slide */
.hero-swiper .swiper-slide-active,
.turning-plans-swiper-1 .swiper-slide-active{
  transform: scale(1.5) !important; /* bigger */
  z-index: 10;
  opacity: 1; /* fully visible */
  
}
.turning-plans-swiper-2 .swiper-slide-active {
  transform: scale(1.2) !important; 
  z-index: 10;
  opacity: 1; /* fully visible */
}
.hero-swiper .swiper-slide-active img,
.turning-plans-swiper-1 .swiper-slide-active img{
  filter: none; box-shadow: 0 0 5px rgba(149, 157, 165, 0.2), 0 0 5px rgba(149, 157, 165, 0.2), 0 0 30px rgba(149, 157, 165, 0.2);
}
/* Prev + Next Slides */
.hero-swiper .swiper-slide-prev,
.turning-plans-swiper-1 .swiper-slide-prev,
.hero-swiper .swiper-slide-next,
.turning-plans-swiper-1 .swiper-slide-next{
  transform: scale(1.1) !important; /* slightly zoomed */
  z-index: 5;
  opacity: 0.8;
}
.turning-plans-swiper-2 .swiper-slide-prev,
.turning-plans-swiper-2 .swiper-slide-next {
  transform: scale(1.1) !important; 
  z-index: 5;
  opacity: 1;
}


 .turning-plans-swiper-2  .testimonial-card {
  background-color: #fff;
  color: #000;
  padding: 15px;
  border-radius: 12px;
  box-shadow:3px 2px 20px 6px rgba(0, 0, 0, 0.1);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  text-align: left;
}

.turning-plans-swiper-2  .testimonial-card p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #333;
}

/* Flex Layout for Avatar and Text */
.turning-plans-swiper-2  .testimonial-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.turning-plans-swiper-2  .testimonial-info img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccc;
  flex-shrink: 0;
}

.turning-plans-swiper-2  .testimonial-info .info-text h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
}

.turning-plans-swiper-2  .testimonial-info .info-text span {
  font-size: 14px;
  color: #666;
}

/* Mobile Responsive */
@media screen and (max-width: 796px) {
  .hero-swiper .swiper-slide > img,
  .turning-plans-swiper-1 .swiper-slide > img,
  .turning-plans-swiper-2 .swiper-slide > img {
    height: 140px; /* adjust smaller */
  }
  .hero-swiper .swiper-slide-active,
  .turning-plans-swiper-1 .swiper-slide-active,
  .turning-plans-swiper-2 .swiper-slide-active {
    transform: scale(1.15) !important; /* less zoom for mobile */
  }
  .hero {
    height: 100vh;
  }
  .hero h1 {
    font-size: 42px;
  }
  .swiper-main {
    min-height: calc(32vh - 10px);
  }
}

.scroll-down-banner {
  position: relative;
  /* bottom: 10%;   */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-size: 18px;
  z-index: 5;
  animation: bounce 2s infinite;
  font-weight: 300;
    letter-spacing: 2px;
}

.scroll-down-banner span {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.scroll-down-banner i {
  font-size: 22px;
}

/* Bounce arrow animation */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

/* Bottom Marquee */

/* wrapper */
.marquee {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  background: #111;
  padding: 3rem 0rem;
}

/* track holds two copies of content to loop seamlessly */
.marquee__track {
  display: flex;
  gap: 2rem;
  align-items: center;
  /* start with content off-screen to the left; animation moves to the right */
  transform: translateX(-50%);
  animation: marquee-loop-left-to-right var(--marquee-duration) linear infinite;
}

/* each repeated item */
.marquee__item {
  white-space: nowrap;
      font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
}
.marquee__item  img{
  padding:0 0 0 20px; display: inline-block;
}
/* animation moves track from -50% to 0% (one full cycle) */
@keyframes marquee-loop-left-to-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0%); }
}

/* pause on hover/focus */
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    transform: none;
  }
}

@media screen and (max-width: 640px) {
  .hero {
    height: 125vh;
  }
  .scroll-down-banner {
    bottom: 20%;
  }
}
@media screen and (min-width: 1680px) {
  .scroll-down-banner {
    bottom: 20%;
  }
}

.hero-btn {
  background: #fff;
  border-radius: 50px;
  padding: 12px 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}



.about-section {
  position: relative;
  background-color: #111;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.about-bg-text {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Bebas Neue", sans-serif;
  font-size: 8vw;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.05);
  white-space: normal;
  line-height: 1.1;
  z-index: 1;
  user-select: none;
  width: 100%;
}
.about-bg-text h1{
color: rgba(255, 255, 255, 0.05);
}

.about-content {
  position: relative;
  z-index: 2; top:50px
}

.about-breadcrumb {
     font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 150px;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.about-breadcrumb strong {
  color: #fff;
  font-weight: normal; /* Bebas Neue is already bold-like */
}

.about-grid {
    display: flex;
    gap: 40px;
    width: 100%;
    margin: 80px auto;
    justify-content: end;
    align-items: end;
    padding: 0;
}

.about-grid p {
  font-size: 16px;
  line-height: 1.7;
  color: #D1D1D1E5;
  text-align: left;
  margin:0
}

.about-grid img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.about-headline {
 font-family: "Bebas Neue", sans-serif;
    font-size: 72px;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 50px;

}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.about-home-text {
color: #34343440;
    font-size: 92px;
    height: calc(75px + 0rem);
    overflow: hidden;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
}
.about-home-text img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 150px;
}
.about-home-text .track{
text-align: center;
    font-family: "Bebas Neue", sans-serif;
    width: 100%;
}

.track {
  height: 100%;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
   
}
.track .text {
  align-items: center;
  display: inline-flex;
  will-change: transform;font-family: "Bebas Neue", sans-serif;
}
.track .text.-r {
  -webkit-animation-name: marquee-r;
          animation-name: marquee-r;
}



.track:hover .-green {
  color: #BEB9A3;
}

.-green {
  color: #C1FF1D;
  font-weight: 900;
}





/* Stats Section */
.countdonw-experence h1 {
  font-family: "Bebas Neue", sans-serif;
        font-size: 72px;
    line-height: 1;
    margin-bottom: 5rem;
}
.stats-section-main{
  background: #111;overflow: hidden;
}
.stats-section-main .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem 5rem;
    margin-bottom: 6rem;
}

.stats-section-main  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-section-main  .stat-number-wrapper {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: clamp(4rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10+ */
    user-select: none;
    font-family: "Bebas Neue", sans-serif;
    background: linear-gradient(to bottom, #ffffff 40%, #181818 50%, #a1a1a13b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-section-main .stat-number-wrapper::before {
    content: attr(data-target);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    color: var(--stat-background-number);
    z-index: -1;
    font-weight: 900;
}

.stats-section-main .stat-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;font-weight: 300;
}

.stats-section-main .stat-description {
    font-size: 0.9rem;
    color: var(--subtle-text-color);
       line-height: 1.5;
    max-width: 220px;
    font-weight: 300;
}
.stats-section-main .stats-section-main{
  background: #111; overflow: hidden;
}
/* Logos Section */

/* Logos Section */
.logos-container {
    width: 100%;
    overflow: hidden;
    margin-top: 5rem;
    -webkit-mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    margin: 0 auto;
}

.logos {
    /* display: flex; */
    /* flex-wrap: nowrap;  */
    width: max-content;
    align-items: center;
    gap: 4rem;
    /* opacity: 0.7; */
    filter: grayscale(1);
    animation: scroll 40s linear infinite;
}

.logos:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0; /* Prevent logos from shrinking */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
}
.logo-item img{
  height: 60px;
}

.logo-masterplace {
    font-style: italic;
}

.logo-eazydiner {
    font-family: serif;
    font-weight: bold;
}

.asterisk {
    color: #ff5722;
}

.logo-prestige {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prestige-logo-svg {
    width: 50px;
    height: 50px;
}

.prestige-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-transform: none;
}

.prestige-main {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: -1px;
}

.prestige-group {
    font-size: 0.7rem;
    letter-spacing: 2px;
    align-self: flex-end;
    margin-top: -5px;
}
.prestige-sub {
    font-size: 0.6rem;
    color: var(--subtle-text-color);
}

.logo-toyota {
    font-family: sans-serif;
    font-weight: 900;
    letter-spacing: -1px;
}

.logo-red {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fedora-hat {
    width: 60px;
    fill: white;
    margin-bottom: -10px;
}


/* Responsive Styles */
@media (max-width: 900px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 500px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .countdonw-experence h1 {
        margin-bottom: 0;        font-size: 32px;
    }
}



.voice-our-work{
  background: #012273;
}

.voice-our-work .swiper-slide{
background: #fff;
}

.voice-our-work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 34, 115, 0.9); /* black with 60% opacity */
  z-index: 1;
}
.voice-our-work{
  position: relative;    overflow: hidden;
}
.voice-our-work::before{
  z-index: -1;
}
.voice-our-works-swiper-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.voice-our-works-swiper-button > span{
  display: flex;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: rgba(1, 34, 115, 0.9);
  font-size: 20px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.voice-our-works-swiper .swiper-main {
  min-height: calc(50vh - 10px);
}
.voice-our-works-swiper .swiper-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.7s ease-in-out; /* smooth zoom */
  filter: grayscale(100%);
}

/* Center Mode Slider Container */
.voice-our-works-swiper.swiper-container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  overflow: visible; /* allow scale outside bounds */
}

/* Default Slide Style */
.voice-our-works-swiper .swiper-slide {
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
  opacity: 0.5; /* faded for side slides */
}

/* Active (Center) Slide */
.voice-our-works-swiper .swiper-slide-active {
  transform: scale(1.5) !important; /* bigger */
  z-index: 10;
  opacity: 1; /* fully visible */
}
.voice-our-works-swiper .swiper-slide-active img {
  filter: none;
}

/* Prev + Next Slides */
.voice-our-works-swiper .swiper-slide-prev,
.voice-our-works-swiper .swiper-slide-next {
  transform: scale(1.1) !important; /* slightly zoomed */
  z-index: 5;
  opacity: 0.8;
}

/* Mobile Responsive */
@media screen and (max-width: 796px) {
  .voice-our-works-swiper .swiper-slide img {
    height: 140px; /* adjust smaller */
  }
  .hero-swiper .swiper-slide-active,
  .voice-our-works-swiper .swiper-slide-active {
    transform: scale(1.15) !important; /* less zoom for mobile */
  }
  .hero {
    height: 100vh;padding-top: 200px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .swiper-main {
    min-height: calc(32vh - 10px);
  }
}





.testimonial-card {
    background-color: #ffffff;
    padding: 32px;
    max-width: 480px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f0f0f0;
}

.author-info h3 {
    font-size: 1rem;
    color: #1c1e21;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.author-info p {
    font-size: 0.95rem;
    color: #65676b;
    line-height: 1.3;
}


/* Footer styles */
.footer {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    line-height: 1.7; padding:80px 0 0;
   
}


.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 2fr;
    gap: 0;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 20px;
}
.footer-column ul{
  margin: 0;
    padding: 0;
}
.footer-column p, .footer-column li {
    font-size: 0.95rem;
    color: var(--text-color-light);
}
.footer-column li a, .footer-column p a, .footer-column a {
    color: var(--text-color-light);
    transition: color 0.3s;    font-weight: 300;
}

/* Column specific styles */
.company-info .logo {
      display: block;
    margin: 0;
    padding: 0;
    text-align: left;
}

.company-info .logo svg {
    width: 45px;
    height: 35px;
}

.company-info .follow-us {
    font-weight: 300;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--text-color-white);
    transition: transform 0.2s ease-in-out;
}

.social-icon:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-color);
}

.quick-links li {
    margin-bottom: 0.7rem; list-style: none;margin: 0; padding:0;    line-height: 39px;
}

.office-info p {
    margin: 0 0 0.7rem 0;    font-weight: 300;
}

.map-container img {
    width: 100%;
    /* max-width: 280px; */
    height: auto;
    border-radius: 12px;

}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-color-light);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}
.legal-links a{
  color: var(--text-color-light);  font-weight: 300;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px 20px 20px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .company-info .logo,
    .social-links {
        justify-content: left;
    }

    .quick-links ul, .office-info {
        margin: 0 ;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.8rem;
    }

    .legal-links {
        order: -1;
    }
}




/* Contact Section styles */
.contact-section {
    position: relative;
    padding: 80px 20px;
    background-image: url('../img/home-form-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color-white);
    text-align: center;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 72px;
    margin-top: 0;
    margin-bottom: 1.5rem;
     font-family: "Bebas Neue", sans-serif;
}

.contact-section p {
        line-height: 1.6;
    max-width: 100%;
    margin: 0 auto 3rem auto;
    color: var(--text-color-light);
}

.contact-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    margin-bottom: 2.5rem;
}

.form-group input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--text-color-white);
    padding: 0.75rem 0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus {
    outline: none;
    border-bottom-color: var(--text-color-white);
}

.connect-button {
    background-color: transparent;
    border: 2px solid var(--text-color-white);
    color: var(--text-color-white);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
        width: 260px;
    margin: 0 auto;
}

.connect-button:hover {
    background-color: var(--text-color-white);
    color: #000;
    text-decoration: none;
}



@media (max-width: 768px) {
  .marquee {
      bottom: -5px;
  }
  .about-breadcrumb{
    margin-bottom: 50px;
  }
  .about-grid {
    display: block;
    width: 100%;
    margin: 80px auto;
}
.about-headline{
  font-size: 32px;
}
.about-section{
      padding: 60px 0;
}
.hero-content h1 {
    font-size: 42px;
}
.stats-section-main .stats{
  margin-bottom: 0;
}
.contact-section h2{
  font-size: 36px;
}
}





    .sidebar-menu {
      padding: 60px 20px;
      align-self: center;
    }

    .sidebar-menu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .sidebar-menu li {
      padding-bottom: 15px;
      cursor: pointer;
      opacity: 0.6;
    }

    .sidebar-menu li:hover {
      opacity: 1;
    }

    .sidebar-menu h6 {
      /* font-weight: bold; */
      text-transform: uppercase;
      margin: 0;
      padding: 10px 10px 0;
      border-radius: 4px;
      transition: background 1s ease;
    }

    .sidebar-menu p {
      font-size: 14px;
      line-height: 1.5;
      color: #ddd;
      margin: 0;
      padding: 10px;
      display: none;
    }

    .cards-container {
      height: 100vh;
      overflow: auto;
      position: relative;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .cards-container::-webkit-scrollbar {
      width: 0;
      height: 0;
    }

    .card-item {
      transition: transform 1s ease, z-index 1s ease;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
         height: 160px;
    width: 400px;
      transform-origin: center center;
      position: relative;
      z-index: 1;
      transform: scale(0.8);
      margin-inline: auto;
      filter: grayscale(100%);
     
    }
.card-item img {
      width: 130%;
      height: 200%;
      object-fit: cover;
      border-radius: 10px;
}
    .card-item.active {
      transform: scale(1.2);
      z-index: 10;
          box-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 90px rgba(255, 255, 255, 0.4);
          filter: none;
    }

    .card-item.near-active {
      transform: scale(1.1);
      z-index: 5;
    }


    .about-card{
      padding:10px 20px;
      border-radius: 12px;
      display: flex;
      text-align:left;
      height: 100%;
      background:#fff;
      gap:20px;
      align-items: center;
    }
        .about-card img{
width: 42px;
height:42px
        }
         .about-card h3{
           font-size: 26px;
           margin: 10px 0 5px 0;
           color:#072776;
             font-family: "Bebas Neue", sans-serif;
         }
         .about-card p{
           font-size: 14px;
           color: #181818;
           line-height: 1.4;
           margin: 0;
         }

         
    /* --- Top Section --- */
    .top-section {
         display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: 100px;
        width: 100%;
    justify-content: space-between;
    }

    .top-section p {
      flex: 1;
      font-size: 16px;
      max-width: 450px;
    }

    .top-section img {
      flex: 1;
      max-width: 420px;
      border-radius: 15px;
      object-fit: cover;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    }

    /* --- Headline --- */
    .headline {
      text-align: center;
      margin: 0;
       font-family: "Bebas Neue", sans-serif;
          font-size: 4.4em;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      line-height: 70px;
    }

    .headline span {
      display: inline-block;
      background: #fff;
      color: #000;
      padding: 8px 18px;
      margin-top: 8px;
      
      border-radius: 4px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    /* --- Bottom Section --- */
    .bottom-section {
      display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: left;
    margin-top: -100px;
        width: 100%;
    justify-content: space-between;
    }

    .bottom-section img {
      flex: 1;
      max-width: 420px;
      border-radius: 15px;
      object-fit: cover;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    }

    .bottom-section p {
      flex: 1;
      font-size: 16px;
      max-width: 450px;
    }

    /* --- Responsive --- */
    @media(max-width: 768px) {
      .top-section, .bottom-section {
        flex-direction: column;
        text-align: center;
                margin: 50px 0 0;
      }

      .top-section p, .bottom-section p {
        margin: 15px auto;
      }
      .headline{
        position: inherit;transform:none;font-size: 3em;      margin: 50px 0 0;
      }
    }


    .blog-card{
     color: #fff;
    display: block;
    width: 100%; margin:20px 0 
    }
    .blog-card img{
      border-radius: 20px;
    }
    .blog-card h3{
      color:#fff;
      padding: 20px; font-size: 2rem;
      font-family: "Bebas Neue", sans-serif;
    }

    .blog-overview{
      background: #181818;
      
    }
    .blog-overview h4{
  font-family: "Bebas Neue", sans-serif;
    }
    .blog-overview p, .blog-overview h4{
      text-align: justify;
    }
        .blog-overview ul{
          margin: 0 0 20px; padding: 0;
        }
    .blog-overview ul li{
      text-align: left; list-style: none;
    }

    .marquee-home {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    background: none;
    padding: 1rem 0rem 0;
    z-index: 9;
    position: relative;
    border-top: 3px solid #000;
    margin-top: 1rem;
}



.connect-section{
  padding: 80px 20px;
  text-align: left;
}
.connect-section h3{
  font-family: "Bebas Neue", sans-serif;
  padding: 0 0 20px;
  font-size: 2.75rem;
}
.connect-section ul{
  margin:0;
  padding:0
}
.connect-section ul li{
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
}
.connect-section ul li label{
  color: rgba(234, 234, 234, 0.8);
}
.connect-section ul li a{
  text-decoration: none;
  color: #fff;
} 
.connect-section ul li a:hover{
  color: rgba(234, 234, 234, 0.8);
} 
.form-wrapper{max-width:100%;margin:0;padding:0;position:relative}

#contact_form{
  height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    padding-top: 50px;
}
.card{background:var(--card);border-radius:16px;padding:24px;box-shadow:0 8px 30px rgba(0,0,0,0.06); height: 450px;}

    .progress-wrapper{position:relative;    margin-top: 30px;}
    .progress-bar{height:6px;background:#e5e7eb;border-radius:4px;overflow:hidden}
    .progress-fill{height:100%;width:0;background:var(--primary);transition:width .3s ease}

    .steps{position:absolute;top:-16px;left:0;right:0;display:flex;justify-content:space-between;}
    .circle{width:36px;height:36px;border-radius:50%;background:#e5e7eb;display:flex;align-items:center;justify-content:center;font-weight:600;z-index:1}
    .active .circle{background:var(--primary);color:#fff}
    .completed .circle{background:var(--primary);color:#fff}

    .step{display:none}
    .step.active{display:block}

    .step input {
      margin-bottom: 20px; border:0; border-bottom:1px solid rgba(69, 69, 69, 1); border-radius:0
    }
    .step input:focus-visible{
      outline: none;
    }
    textarea:focus, input:focus{
    outline: none;
}

   
    input,textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #d1d5db;font-size:16px}
    textarea{resize:vertical}

  
    .card .actions{margin-top:16px}
    .card .btn{padding:12px 16px;border-radius:50px;border:2px solid #000;cursor:pointer;font-weight:600;width:100%;background:#fff;color:#111827}
    .card .btn.solid{background:var(--primary);color:#fff;border-color:var(--primary);border-radius:8px}
    .card .btn[disabled]{opacity:.5;cursor:not-allowed}
    .card .btn:hover{border-color:var(--primary);}

    .card .thanks{text-align:center;padding:20px}
    .card .thanks svg{width:64px;height:64px;margin-bottom:12px}
    .card .thanks p{color:var(--muted);font-size:14px;margin-top:8px}

    .swiper-caption-wrapper {
      z-index: 10;
      width: 100%;
      pointer-events: none;
    }

    .slide-caption {
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.6s ease;
      pointer-events: none;
      margin-bottom: 60px;
      max-width: 300px;
      margin-inline: auto;
    }

    .slide-caption.visible {
      opacity: 1;
      pointer-events: auto;
    }

    .small-heading {
      font-size: 20px;
      text-transform: uppercase;
      font-weight: 600;
      color: #fff;
    }

    .slide-caption p {
      color: #eee;
      font-size: 14px;
      text-align: center;
    }







    
    .submit-btn {
            grid-column: span 2;
            margin-top: 20px;
            padding: 12px 20px;
            border: 2px solid #fff;
            border-radius: 30px;
            background: transparent;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #fff;
            color: #000;
        }

        .thank-you {
            display: none;
            text-align: center;
            margin-top: 30px;
        }

        .error {
            color: #ff5555;
            font-size: 13px;
            margin-top: 3px;
        }



        
 .text-container {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

/* .text {
      font-family: "Bebas Neue", sans-serif;
     font-size: 82px; line-height: 80px;white-space: nowrap;
        color: rgb(24, 24, 24);
    }

    .highlight {
      position: absolute;
      inset: 0;
      color: #fff; 
      pointer-events: none;
      clip-path: circle(0px at 0 0);
      transition: clip-path 0.2s ease-out;
    } */
     .home-highlight{
      position: absolute; width: 100%;
     }
.text {
  font-size: clamp(1.5rem, 6.5vw, 6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
  padding: 1rem 0;
  white-space: nowrap;
  font-family: "Bebas Neue", sans-serif;
}

.background-text {
  color: rgba(52, 52, 52, 0.25);
}

.foreground-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  font-family: "Bebas Neue", sans-serif;
   /* Use a mask for a smooth, feathered edge */
  -webkit-mask-image: radial-gradient(circle 10vmax at 50% 50%, black 60%, transparent 100%);
  mask-image: radial-gradient(circle 10vmax at 50% 50%, black 60%, transparent 100%);
  pointer-events: none;
}


@media(min-width: 1441px){
.swiper-main {
    display: flex;
    min-height: calc(50vh - 10px);
    overflow: hidden;
}
}


.service-card-img {
 filter: grayscale(100%);
}
