  
    /* Base Styles */
:root {
    --primary-color: #0B1E38;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-gray: #e9ecef;
    --gold: #ffc107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}
  
  
  /* :root {
            --primary-color: #0A4A6F;
            --secondary-color: #f8f9fa;
            --text-color: #333;
            --light-gray: #e9ecef;
            --gold: #ffc107;
        } */


* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
/* 
    html {
      height: 100%;
      width: 100%;
    } */

    /* body {
      font-family: 'Inter', sans-serif;
    } */

    li{
      list-style: none;

    }
    /* navbar */
.navbar {
  position: sticky;
  top: 0; /* Needs a valid unit like px */
  z-index: 999; 
}


    /* Top Bar */
    .top-bar { 
      background-color: var(--gold);
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      align-items: center;
      height: 35px;
      padding: 0 10px;
      z-index: 1;
    }

    .top-bar div {
      font-size: 0.8rem;
      font-weight: 480px;
      margin: 5px 10px;
    }

    .top-bar div, .top-bar a {
      color: white;
      text-decoration: none;
      padding: 2px; 
      display: flex;
      align-items: center;
    }

    .cntct a:hover {
      text-decoration: underline;
      font-weight: 700;
      color: var(--primary-color);
    }

    .cntct1 a:hover {
      background-color: var(--primary-color);
      padding: 10px 20px; 
      border-radius: 24px;
      padding: 2px;
      color: aliceblue;
    }

    /* Navbar */
    nav {
      position: relative;
      background-color: var(--primary-color) ;
      padding: 10px 20px;
      width: 100%;
      justify-content: space-between;
      height: 80px;
    
    }

    .nav {
     
      top: 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .logo img {
      
      height: 70px;
      position: absolute;
      top: 0px;
    }

    .toggle {
      display: none;
      font-size: 30px;
      color: white;
      cursor: pointer;
    }

    .menu-items {
      display: flex;
      gap: 15px;
      list-style: none;
      justify-content: end;
      align-items: flex-end;
    }

    .menu-items li a {
      color: white;
      text-decoration: none;
      padding: 10px;
      display: block;
    }

    .menu-items li a:hover {
      color: var(--gold);
      font-weight: 500;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #fff;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      min-width: 180px;
      z-index: 1000;
    }

    .dropdown-menu li a {
      color: #080404;
      padding: 10px 15px;
    }

    .dropdown-menu li:hover {
      background-color: var(--primary-color);
      color: white;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    /* Mobile Styles */
    @media (max-width: 880px) {
      /* navbar  */
      .toggle {
        display: block;
      }

    @media(max-width:550px){
      .top-bar .cntct{
        display:none;

      }
      .top-bar{
        height: auto;
      }
      .top-bar .social-media-bar{
        margin: auto;
      }
    }



  .menu-items {
  position: absolute; /* Add this */
  top: 80px;      /* 35 (top-bar) + 80 (nav height) */
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  flex-direction: column;
  width: 100%;
  display: none;
  z-index: 998; /* Must be less than nav's z-index */
}
      .menu-items li{
       width: 100%;
      }
      .menu-items.active {
        display: flex; 
      }

      .dropdown:hover .dropdown-menu {
        position: static;
        display: block;
        background-color: var(--gold);
      }

      .dropdown-menu li a {
        color: black;
      }

      .left, .right {
        display: none;
      }
      /* heroimage */
      .hero-image img {
      display: none;
    }  
}



/* hero images  */ 
/* .hero_contain{
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1rem;
      position: relative;
  } */
.btn {
      background-color: white;
      color: var(--primary-color);
      font-size: 1.2rem; 
      font-weight: 600;
      padding: 1rem 1.5rem;
      border: none;
      border-radius: 15px; 
      cursor: pointer;
   }

  .btn:hover {
      background-color: var(--primary-color);
      color: white;
  }

  /* .hero{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1rem;
      position: relative;
  } */
    
  .hero_contain{
      display: inline-flex;
      /* flex-wrap: wrap; */
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1rem;
      position: relative;
      display: none;
  }

.hero_contain:first-of-type {
  display: flex;
}



  .hero-text{
      flex: 1 1 50%;
      max-width: 600px;
   }
  .hero-text h1{
      font-size: 3rem;
      font-weight: 800;
      margin: 0;
      line-height: 1.2;
  }
  .hero-text h1 span{
      color: var(--gold);
    }
  .hero-text p{
      margin-top: 2rem;
      font-size: 1rem;
    }

  .checkpoints {
      margin-top: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      font-size: 1rem;
      font-weight: 600;
    }

  .checkpoints div {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

  .checkpoints i {
      background-color: var(--gold);
      color: var(--primary-color);
      border-radius: 50%;
      padding: 0.45rem;
    }

  .hero-buttons {
      margin-top: 1.5rem;
      display: flex;
      gap: 1rem;
    }

  .hero-buttons .btn-yellow {
      background-color: var(--gold);
      color: var(--primary-color);
    }

  .hero-buttons .btn-yellow:hover {
      background-color:  var(--primary-color);
      color: white;

    }
    
  .hero-image img {
      max-width: 100%;
      height: auto;
    } 

  .left, .right {
  position: absolute;
  top: 50%;
  background-color: var(--gold);
  color: var(--primary-color);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 10;
  opacity: 0.8;
}
.left:hover, .right:hover {
  background-color: var(--primary-color);
  color: var(--gold);
}

.left {
  left: 1rem;
}

.right {
  right: 1rem;
}


/* hero 2nd target */
.fastquercontainer{
  background-color: var(--gold);
  width: 100%;
  padding: 2rem 0rem;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto; 
}

/* heroreview */
.fastgooglerev{
  display: flex;
  background-color:var(--primary-color);
  background-color: #0F202E;
  width: 70%;
  padding: 2rem 1rem; 
  justify-content: center;
  text-align: center;
  margin: auto;
  border-radius: 30px 40px;
  flex-wrap: wrap;
}


.hero-avatar-list img{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin: auto -10px ; 
  display: inline-block;
}

.faststar{
  margin-left: 20px;
  color: #fff;

}

.fastsechdule,.fastcallus{
  display: flex;
  margin: 10px 20px; 
}

.fastcallus i,.fastsechdule i{
  background-color: #fff;
  font-size: 20px;
  padding: 10px; 
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  justify-content: center;
  margin: 5px; 
}


/* about section  */

 .small-image-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    max-width: 100%;
  max-height: 100%;

    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1),
      0 4px 6px -4px rgb(0 0 0 / 0.1); /* shadow-lg */
  }

  .small-image-label {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem; /* text-xs */
    padding: 0.125rem 0.5rem; /* px-2 py-1 */
    border-radius: 0.375rem; /* rounded */
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
  }



  /* ---------------------video review-------------------- */
.videosection{
   background-color: var(--gold);
   padding: 4rem 1.5rem;
   display: flex; 
   flex-direction: column; 
   gap: 2.5rem;
   color: white;
}

.videotextcnt{
      max-width: 28rem;
      display: flex;
      flex-direction: column;
}

.videotextcnt h2{
      font-weight: 800;
      font-size: 2rem;
      line-height: 1.2;
}

.videotextcnt h2 span{
      color: var(--primary-color);
}


.videocontainer{
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 0.5rem;
}

.testimonial-card {
      background-color: white;
      border-radius: 0.75rem;
      padding: 1rem;
      position: relative;
      min-width: 320px;
      flex-shrink: 0;
      color: black;
}

 .quote-mark {
      position: absolute;
      top: -0.8rem;   
      left: 0.5rem; 
      font-size: 3.5rem; 
      font-weight: 800;
      color: var(--primary-color);
      pointer-events: none;
      user-select: none;
      line-height: 1;
}

.testimonial-card  iframe {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 0.5rem;
}

.videocontainer::-webkit-scrollbar {
      display: none;
}

.videocontainer{
      -ms-overflow-style: none;
      scrollbar-width: none;
}

.videobutton {
      margin-top: 2rem;
      display: flex;
}

.videobutton button {
      padding: 0.75rem 1.25rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s, color 0.3s;
    }

.videobutton button:first-child {
      background-color: white;
      color: var(--primary-color);
      border-right: 1px solid var(--primary-color);
  }

.videobutton button:first-child:hover {
      background-color: var(--primary-color);
      color: white;
  }

.videobutton button:last-child {
      background-color: var(--primary-color);
      color: white;
}

.videobutton button:last-child:hover {
      background-color: var(--gold);
      
}


@media (min-width: 768px) {
      .videosection {
        flex-direction: row; 
        padding-left: 3rem;
        padding-right: 3rem;
  }

   .videotextcnt h2 {
        font-size: 2rem; 
      }

      .testimonial-card {
        min-width: 300px;
      }


}

@media (min-width: 1024px) {
      .videosection {
        padding-left: 5rem;
        padding-right: 5rem;
      }
} 




/* socialmedia topbar */
.social-media-bar {
    display: flex;
    gap: 15px;
    padding: 10px;
}

.social-media-bar a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-media-bar a:hover {
    background-color: #0F202E;
}

.social-media-bar a:hover i {
    color: white !important;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    margin-bottom: 60px;
    position: relative;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

/* Testimonial Container */
.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    perspective: 1000px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px) rotateY(20deg);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0) rotateY(0);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Testimonial Content */
.testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin: 0 auto 20px;
    display: block;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    position: relative;
    z-index: 1;
}

.testimonial-name {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 15px;
}

.rating {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotateY(20deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
        max-width: 400px;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
}

/* marquee animation brand client */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.animate-marquee {
    animation: marquee 25s linear infinite;
}

/* projecttab */
.project-tab {
    position: relative;
    transition: all 0.3s ease;
}

.project-tab.active {
    color: #0F202E;
    font-weight: 600;
}

.project-tab:not(.active):hover {
    color: #0F202E;
}

.project-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FACC15;
    transition: width 0.3s ease;
}

.project-tab:not(.active):hover::after {
    width: 100%;
}

.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 640px) {
    .project-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .project-tabs::-webkit-scrollbar {
        height: 4px;
    }
    
    .project-tabs::-webkit-scrollbar-thumb {
        background-color: #FACC15;
        border-radius: 2px;
    }
}

.image-hover-container {
    position: relative;
    overflow: hidden;
    border-radius: 1rem; /* rounded-xl */
}


/* faq */
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox ss*/
}



