body {
  scroll-behavior: smooth;
}



/* Navbar */
.navbar-brand {
  font-size: 1.5rem;
}

* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;

}
h1,h2,h3{
  font-family: "Oswald", sans-serif;
  font-weight: 700; /* Bold */
}
.section-headers{
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 32px;
  opacity: .8;
  margin-bottom:75px;
}
.main-navbar{
 background-color: #fdfdfd6e;
}
.custom-link{
  color:#2c2b2b;
  font-weight:bold;
}
.logo-img{
  width:175px;
}
.hero-section{
  margin-top:100px;
}
.hero-section-img{
  width:100%;
}
.marketing-banner-img{
  height:375px;
  
}
.main-slider-section{
  /* background: #0f1720; */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 24px;
}
.main-slider {
  width: 70%;
  max-width: 100%;
  position: relative;
  text-align: center;
  
}

.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 700; /* your image's natural ratio */
  overflow: hidden;
}


/* small piece block (positioned by JS) */
.piece {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover; /* overwritten by JS to precise px size for seamless seams */
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* controls overlay */
.controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  display: flex;
  gap: 10px;
  z-index: 40;
}

.controls button {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  font-size: 16px;
  transition: transform .12s ease, background .12s ease;
}
.controls button:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }

/* small instruction */
.credit {
  margin-top: 12px;
  font-size: 13px;
  color: #9aa6b2;
}
.main-slider {
  position: relative;
}

.headline {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* adjustable darkness */
  z-index: 1;
  pointer-events: none;
  opacity: 0; /* start invisible */
}

.headline {
  position: absolute;
  /* top: 50%;
  left: 50%; */
  top:65%;
  left:27%;
  transform: translate(-50%, -50%);
  font-size: 4.5rem;
  font-weight: bold;
  color: white;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  display: flex;
  gap: 2px; /* small space between letters */
}

.headline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}



/* service card animation */




.partner{
  background-color: #fff;
}
.logo-carousel {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: calc(250px * 14); /* adjust based on number of logos */
  animation: scroll 40s linear infinite;
}

.logo-slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
background-color: #fff;
  margin: 0px 10px;
}

.logo-slide img {
  max-height: 40px;
  max-width: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s;
}

.logo-slide img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* testimonial css */
    body {
      font-family: Arial, sans-serif;
     
    }
 .profile-card {
      display:flex;
      flex-direction: column;
      background: #dedede;
        background: #ebeaea;
      width: 250px;
      border-radius: 120px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      border:1px solid rgb(195, 195, 195);
      margin: auto;
      min-height:465px;
      align-items: center;
     
    }

    .profile-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 5px solid #eaeaea;
    }

    .profile-card h3 {
      font-size: 18px;
      margin: 10px 0 5px;
      font-weight: bold;
      color: #333;
    }

    .profile-card p {
      font-size: 14px;
      color: #1f1e1e;
      margin-bottom: 20px;
    }

    .profile-card .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
    }

    .profile-card .social-icons a {
      color: #333;
      font-size: 18px;
      transition: 0.3s;
    }

    .profile-card .social-icons a:hover {
      color: #007bff;
    }
.swiper {
  padding-bottom: 60px; /* space for dots */
}

.swiper-pagination {
  bottom: 15px !important; /* keep dots away from cards */
}

.swiper-pagination-bullet {
  background: #f39c12; /* golden-like dot color */
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  background: #e67e22; /* darker orange for active */
  opacity: 1;
}

/* contact us */
 .contact-section {
      min-height: 100vh;
      display: flex;
    }
    .form-side {
      flex: 1;
      background: #fff;
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .form-side h2 {
      font-weight: 700;
      margin-bottom: 10px;
    }
    .form-side p {
      color: #666;
      margin-bottom: 30px;
    }
    .image-side {
      flex: 1;
      background: url('../images/contact-us-img.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      position: relative;
    }
    .image-side::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 50%; height: 100%;
      background: rgba(0,0,0,0.5); /* dark overlay */
    }
    .tagline {
      position: relative;
      z-index: 2;
      font-size: 1.8rem;
      font-weight: 600;
      max-width: 80%;
    }
    .btn-custom {
      background-color: #111;
      color: #fff;
      border: none;
      padding: 10px 20px;
    }
    .btn-custom:hover {
      background-color: #333;
      color:#fff;
    }

/* service-card section css */
.service-card {
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px,
              rgba(0, 0, 0, 0.23) 0px 6px 6px;
  transition: all 0.4s ease-in-out;

  /* for scroll reveal animation */
  opacity: 0;
  transform: translateY(40px);
}

/* reveal when scrolled into view */
.service-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* hover animation */
.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 15px 30px,
              rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

/* image hover effect */
.service-card img {
  width: 75px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1) rotate(3deg);
}

.service-card h5 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.service-card p {
  margin-bottom: 7px;
}

.btn-view {
  border-radius: 30px;
  padding: 10px 25px;
  font-size: 14px;
  background-color: #000;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.btn-view:hover {
  background-color: #333;
  transform: scale(1.05);
}


    .explore-btn {
    top: 79%;
    right: 33%;
    font-weight: 600;
    font-size: 24px;
    background-color: #e98e54;
    color: #fff;
    border-radius: 31px;
   border: none;
    padding: 7px 45px;
    text-decoration: none;
    position:absolute;
}
.explore-btn:hover{
  background-color: #e08248;
  color:#fff;
}
.explore-btn:focus-visible{
  outline:none;
     background-color: #e98e54;
    color: #fff;
}
 footer {
        background: #0f172a;
        color: #fff;
        padding: 40px 0;
      }
      footer a {
        color: #adb5bd;
        text-decoration: none;
      }
      footer a:hover {
        color: #fff;
      }
      .social-icons a {
        font-size: 20px;
        margin: 0 10px;
        display: inline-block;
        transition: 0.3s;
      }
      .social-icons a:hover {
        color: #0d6efd;
        transform: scale(1.2);
      }
      .social-icons-img{
        width:35px;
      }
      footer{
         font-family: "Oswald", sans-serif;
      }
      footer .logo-img{
            filter: brightness(0) invert(1);
    margin-bottom: 12px;
      }
      .copy-right{
        background-color: #4e4b4b;
      }



      /* hero-vedio-section css */





    .hero-text {
      font-size: 8vw;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: transparent;
      -webkit-text-stroke: 4px #040404;
      -webkit-background-clip: text;
      background-clip: text;
      background-image: url('videos/Agentic AI.mp4'); 
      background-size: cover;
      background-position: center;
      display: inline-block;
      opacity: 0;
      background-color:#ffffff40
    }
        /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }
    video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      object-fit: cover;
      transform: translate(-50%, -50%);
      z-index: -1;
    }

    /* Typography container */
    .text-container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      width: 100%;
    }

    .hero-text {
      font-size: 8vw;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 4px;
      color: transparent;
      -webkit-text-stroke: 4px #040404;
         -webkit-background-clip: text;
      background-clip: text;
      background-image: url('videos/Agentic AI.mp4'); 
      background-size: cover;
      background-position: center;
      display: inline-block;
      opacity: 0;
      background-color:#ffffff40
    }

    .about-section {
      padding: 60px 0;
    }
    .counter-box {
      background: #f8f9fa;
      border-radius: 15px;
      padding: 30px;
      text-align: center;
      box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
    .counter-box h2 {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #0d6efd;
    }
    .counter-box p {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 500;
    }
    .about-content h3 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .about-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #555;
    }
    .img-box {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    }
    .img-box img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

.abt-us-bg{
  background-color: #ffdc70;
}
.abt-us-btn{
  background-color: #ff8c00;
    border: none;
    padding: 8px 20px;
}
.service-dtl-section img{
  border-radius:20px;
}
.whatsapp-btn{
      background-color: #25d366;
    color: #fff;
    outline: 3px solid white;
    outline-offset: -4px;
    padding: 10px;
    border:none;
}
.whatsapp-btn img{
  width:30px;
  margin-right:5px;
}
.eml-phn a{
color:rgb(42, 41, 41);
text-decoration: none;
}
.eml-phn p{
  margin:0;
}
/* blog page css */
 .blog-card { transition: 0.3s; }
  
    .blog-card:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
    .search-box { max-width: 400px; margin: auto; }
    .blog-card {
  display: flex;
  flex-direction: column;
  height: 100%; /* ensures all cards stretch equally */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.blog-card img {
  height: 200px; /* fixed image height */
  object-fit: cover; /* crop image to fit */
  width: 100%;
}

.blog-card .card-body {
  flex-grow: 1; /* make body stretch evenly */
}

.blog-card .card-footer {
  background: #fff;
  border-top: 1px solid #eee;
}


/* blog details page css */
#blog-content h2 {
  font-weight: bold;
  margin-bottom: 15px;
}
#blog-content h3, 
#blog-content h4 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #2c3e50;
}
#blog-content p {
  line-height: 1.7;
  color: #444;
}
#blog-content ul {
  margin-left: 20px;
  list-style: disc;
}
#blog-content img {
  border-radius: 10px;
  margin: 20px 0;
  max-width:1000px;
  margin: auto;
  max-height:400px;
}
.blog-dtl-section .container{
  background-color: #e9e9e9;
}
@media  (max-width:600px){
  .marketing-banner-img{
    height:100%;
    
  }
  .explore-btn{
    position:static;
  }
  .contact-section{
    flex-direction: column-reverse;
  }
  .swiper-slide{
    justify-self:center;
  }

.service-card{
  width:280px;
  margin:auto;
}
.eml-phn{
  flex-direction:column;
}
.mar-0{
  margin:0 !important;
}
.about-content p{
  font-size:1rem;
  padding:0px 15px;
}
.form-side{
  padding:30px;
}
#blog-content img {
  border-radius: 10px;
  margin: 20px 0;
  max-width:100%;
  margin: auto;
  max-height:400px;

}
}