body {
  margin: 0;
  padding: 0;
  font-family: 'Gilroy-Bold', sans-serif;
  

}
.main-div{
  width: 100%;
  max-width: 1160px;
  margin: 0px auto;

}
a {
  color: var(--accent-color);
  text-decoration: none;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}



.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding-top: 30px;
height: 100px;
  z-index: 997;
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu */
.mobile-nav-toggle {
  color: var(--nav-color);
  font-size: 32px;
  line-height: 0;
  cursor: pointer;
  display: block !important;
  z-index: 998;
  transition: 0.3s;
}

.mobile-nav-toggle:hover {
  color: var(--nav-hover-color);
}

.navmenu {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -300px;
  z-index: 997;
  transition: 0.3s;
  width: 300px;
  overflow: hidden;
}

.navmenu ul {
  display: block;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  overflow-y: auto;
  transition: 0.3s;
  z-index: 998;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-dropdown-color);
  padding: 10px 20px;
  font-family: var(--nav-font);
  font-size: 17px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a i:hover,
.navmenu a:focus i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .active i,
.navmenu .active:focus i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 10px 0;
  margin: 10px 20px;
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--nav-dropdown-color), transparent 90%);
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
  right: 310px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.mobile-nav-active .navmenu {
  position: fixed;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: var(--nav-mobile-background-color);
  transition: 0.3s;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 120px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*banner */
.hero-banner {
  position: relative;
  width: 90%;
  max-width: 1300px!important;
  margin: 40px auto;
  height: 80vh;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.hero-banner.scrolled {
  max-width: 1400px!important;
  width: 100%;
  border-radius: 0;
  margin: 0;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

.hero-content.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.cta-button {
  padding: 12px 24px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
  font-weight: bold;
}

.cta-button:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}






/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
  font-family: 'Gilroy-Heavy', sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}
  ------------*/
.map {
width: 40%;
}
.location {
  font-size: 14px;
  gap: 10px;
  font-weight: normal;
}
.flag {
  width: 20px;
  height: 14px;
  border-radius: 2px;
}



 :root {
  --brand-color: #00e5ff;
  --headline-font: 'Gilroy-Heavy', sans-serif;
  --text-font: 'Gilroy-Heavy', sans-serif;
  --max-width: 1160px;
  --gap: 60px;
}


.about-section {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  max-width: var(--max-width);
  margin: 100px auto;
}

/* giant outlined background text */
.about-section::before {
  content: "BOOPIN.";
  position: absolute;
  top: 70%;
  left: 60%;
  transform: translate(-50%, -58%);
  font-family: var(--headline-font);
  font-size: 220px;
  letter-spacing: -4px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(8, 8, 8, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.about-container {
  display: flex;
  align-items: flex-start;
  gap: var(--gap);
  position: relative;  /* sit above the ::before */
  z-index: 1;
  
}

/* TEXT SIDE */
.about-text {
  flex: 1;
  max-width: 50%;
}

.about-text h2 {
  font-family: var(--headline-font);
  font-size: 3rem;        /* 48px */
  line-height: 1.1;
  margin-bottom: 45px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  
}
.about-text h2 .dot {
  width: 19px;
  height: 19px;
  background: var(--brand-color);
  border-radius: 50%;
  margin-left: 12px;
}

.about-text p {
  font-size: 1.4vw;
  max-width: 600px;
  line-height: 1.75;
  font-family: 'Gilroy-Regular', sans-serif;
  color:#4b4b4b ;
}

/* IMAGE SIDE */
.about-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: flex-end;
}
.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

/* STACK AT MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    gap: 40px;
  }
  .about-text, .about-image {
    max-width: 100%;
  }
  .about-text h2 {
    font-size: 2.25rem;  /* 36px */
  }
  .about-image img {
    max-width: 100%;
  }
 .about-text p{
    font-size: 14px!important;
  }
}

.services-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--outer-padding) 0;
}

.services-heading {
  display: flex;
  align-items: center;
  font-family: var(--headline-font);
  font-size: 3rem;           /* 48px */
  /*margin-left: var(--outer-padding);*/
  margin-bottom: 60px;

}
.services-heading .dot {
  width: 16px;
  height: 16px;
  background: var(--brand-color);
  border-radius: 50%;
  margin-left: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--col-gap);
  margin-left: var(--outer-padding);
  margin-right: var(--outer-padding);
}

.service-column h3 {
  font-family: Gilroy-Bold;
  font-size: 1.25rem;       /* 20px */
  margin-bottom: 20px;
  color: #23211d;
  margin-bottom: 2.4rem;
}

.service-column ul {
  list-style: none;
}
.service-column li {
  margin-bottom: var(--item-gap);
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #4b4b4b;
  padding: 8px 0px 8px;
}

@media (max-width: 768px) {
  :root {
    --outer-padding: 24px;
    --heading-bottom: 40px;
    --col-gap: 32px;
  }
  .services-heading {
    font-size: 2.25rem;      /* 36px */
  }
  .services-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
ol, ul {
  padding-left: 0px!important;
}

.clients-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.clients-section h2 {
  font-family: var(--headline-font);
  font-size: 2.5rem; /* 40px */
  margin:80px 0px 80px 0px;
}
.swiper {
  position: relative;

}
.swiper-slide img {
  width: 90%;
  margin: 0px auto;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}
/* Override Swiper arrows positioning */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--brand-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  --swiper-navigation-size: 20px;
}
.swiper-button-prev {
  left: 0px; /* half the width to sit flush */
}
.swiper-button-next {
  right: 0px;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px; /* arrow icon size */
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .clients-section {
    padding: 40px 12px;
  }
  .clients-section h2 {
    font-size: 2rem; /* 32px */
    margin-bottom: 24px;
  }
  .swiper-button-prev {
    left: 8px!important;
  }
  .swiper-button-next {
    right: 8px!important;
  }
}


.case-studies {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.section-title {
  font-family: var(--headline-font);
  font-size: 3rem; 
  text-align: left;
}

.blue-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 10px;
}

.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  position: relative;
  width: 100%;
  max-width: 1160px;
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}
.card img{
  width: 100%;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.3s ease;
}

.card-content {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: white;
  text-align: left;
}

.card-content .tag {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.card-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0;
}

.card-content .read-more {
  font-weight: bold;
  font-size: 0.85rem;
  text-decoration: none;
  color: white;
}

.custom-next {
  background-color: #00eaff;
  width: 60px;
  height: 60px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}

.custom-next::after {
  content: "→";
  color: #000;
  font-size: 2rem;
  line-height: 60px;
  display: block;
  text-align: center;
}

.read-more-wrapper {
  margin-top: 20px;
}

.read-more-button {
  padding: 10px 25px;
  border-radius: 30px;
  background: black;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 768px) {
  .card {
    height: 300px;
  }

  .card-content h3 {
    font-size: 1.5rem;
  }
}

.custom-nav {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00E3FF;
  color: black;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-nav::after {
  font-size: 20px;
}

.custom-nav:hover {
  background: black;
  color: white;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}
}
.tech-partners{
 padding: 60px 0; 
 font-family: sans-serif;
}
.tech-div{
 max-width: 1200px; 
 margin: auto; 
 padding: 0 15px;
}
.tech-div h2{
 font-size: 36px; 
 font-weight: 800; 
 line-height: 1.2; 
 margin-bottom: 40px;
 font-family: var(--headline-font);
}
.tech-row{
 display: flex; 
 gap: 40px; 
 align-items: center; 
 flex-wrap: wrap;
}
.tech-content{
 flex: 1; 
min-width: 300px;
}
.tech-content h3{
font-size: 28px; 
font-weight: 700; 
margin-bottom: 15px;
}
.tech-content p{
font-size: 16px; 
line-height: 1.6;
}
 
@media (max-width: 768px) {
 
  .tech-slider,
  .tech-content {
    min-width: 100%;
  }

  .tech-content h3 {
    font-size: 24px;
  }

  .tech-content p {
    font-size: 15px;
  }

  .custom-nav {
    width: 40px;
    height: 40px;
  }

  h2 {
    font-size: 28px !important;
    text-align: left;
  }
  .tech-content {
    text-align: center;
  }
  
}

/* Footer base styles */
.footer {
  background-color: #000;
  color: #fff;
  padding: 50px 30px;
  font-family: Arial, sans-serif;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1160px;
  margin: auto;
  width: 100%!important;
}

.footer-column {
  flex: 1 1 220px;
  margin: 10px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
  font-size: 13px;
  color: #ccc;
}

/* Location Swiper container */
.footer-location-swiper-container {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.footer-swiper {
  position: relative;
  padding: 20px 0;
}

.swiper-slide {
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  color: #fff;
}

/* Navigation arrows */
.footer-button-prev,
.footer-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #00e6ff;
  border-radius: 50%;
  z-index: 10;
}

.footer-button-prev {
  left: 0;
}

.footer-button-next {
  right: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    max-width: 100%;
    text-align: center;
  }

  .footer-location-swiper-container {
    max-width: 100%;
    padding: 0 50px;
  }

  .footer-button-prev,
  .footer-button-next {
    width: 25px;
    height: 25px;
  }
}

/* sub-footer */

.footer-2{
  Padding:0px;
  background-color: black;
  }

.sub-footer {
  background-color: #141414;
  color: #ccc;
  padding: 20px 15px;
  font-size: 13px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-bottom: 3.5rem;
  }

.sub-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 40px;
  
  
}

.sub-footer-left {
  flex: 1;
}

.sub-footer-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.sub-footer-right span {
  font-weight: bold;
  color: #fff;
  margin-right: 10px;
}

.sub-footer-right a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.sub-footer-right a:hover {
  background: #fff;
  color: #000;
}

@media (max-width: 768px) {
  .sub-footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sub-footer-right {
    margin-top: 10px;
  }
}

/*videos section */
.video-section {
      padding: 60px 20px;
      background-color: #fff;
      text-align: center;
    }

    .video-section h2 {
      font-size: 28px;
      font-weight: bold;
      color: #000;
      margin-bottom: 10px;
    }

    .video-section p {
      font-size: 16px;
      color: #555;
      margin-bottom: 40px;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .video-card {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .video-card iframe {
      width: 100%;
      height: 200px;
      border-radius: 8px;
      border: none;
    }

    .video-card p {
      margin-top: 10px;
      font-weight: 500;
      color: #333;
    }

    @media (max-width: 768px) {
      .video-card iframe {
        height: 180px;
      }
    }

    @media (max-width: 480px) {
      .video-card iframe {
        height: 160px;
      }
    }

