

/* nav + banar section start */


   * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #050505;
  color: #fff;
  overflow-x: hidden;
}

/* header and navigation bar style  */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 90px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.custom-brand-logo {
  height: 100px; 
  width: auto;
  object-fit: contain;
}

/* 2. hover animation  */
.nav-links-container {
  display: flex;
  align-items: center;
  gap: 42px;
  transform: translateX(50px);
}

.nav-item {
  position: relative;
  text-decoration: none;
  height: 20px;
  overflow: hidden;
  display: inline-block;
}

.nav-text-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}

.nav-text {
  font-size: 14px;
  font-weight: 400 !important;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 20px;
  white-space: nowrap;
}

.nav-text.hover-text {
  color: #00a8ff;
}

.nav-item:hover .nav-text-wrapper {
  transform: translateY(-20px);
}

/* 3. RIGHT SECTION (PHONE) */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.phone-contact {
  color: #00a8ff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.phone-contact:hover {
  color: #ffffff;
}

/* 4. HAMBURGER TOGGLE BUTTON */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  z-index: 102;
}

/* mobile navigation  */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #0a0a0a;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 160;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-drawer.active {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

.drawer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.drawer-nav-item {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.drawer-nav-item:hover {
  color: #00a8ff;
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}



/* banar section start  */

.hero-section {
  position: relative;
  width: 100vw;
  min-height: calc(100vh - 90px);
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  padding-bottom: 20px;
}

.hero-container {
  position: relative;
  width: 85%;
  height: 80vh;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* BACKGROUND IMAGES */
.hero-image-01,
.hero-image-02,
.hero-image-03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.hero-image-01.active,
.hero-image-02.active,
.hero-image-03.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* HEADING & ANIMATION */
.hero-flex {
  position: absolute;
  top: 50%;
  left: 0.5%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.hero-text {
  font-size: 8rem;
  font-weight: 900;
  line-height: 0.85;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* OVERLAY PATTI ANIMATION */
.transition {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 5;
  pointer-events: none;
}

.blur-wrapper { flex: 1; height: 100%; overflow: hidden; }

.blur {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px) contrast(1.15);
  -webkit-backdrop-filter: blur(25px) contrast(1.15);
  transform: translateY(-100%);
}
      
.transition.animating .blur {   

  animation: pattiSlide 1.2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.transition.animating .blur-wrapper:nth-child(1) .blur { animation-delay: 0.03s; }
.transition.animating .blur-wrapper:nth-child(2) .blur { animation-delay: 0.07s; }
.transition.animating .blur-wrapper:nth-child(3) .blur { animation-delay: 0.11s; }
.transition.animating .blur-wrapper:nth-child(4) .blur { animation-delay: 0.15s; }
.transition.animating .blur-wrapper:nth-child(5) .blur { animation-delay: 0.19s; }
.transition.animating .blur-wrapper:nth-child(6) .blur { animation-delay: 0.23s; }
.transition.animating .blur-wrapper:nth-child(7) .blur { animation-delay: 0.27s; }
.transition.animating .blur-wrapper:nth-child(8) .blur { animation-delay: 0.31s; }
.transition.animating .blur-wrapper:nth-child(9) .blur { animation-delay: 0.35s; }
.transition.animating .blur-wrapper:nth-child(10) .blur { animation-delay: 0.39s; }

@keyframes pattiSlide {
  0% { transform: translateY(-100%); }
  45%, 55% { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}

/* THUMBNAIL BOXES */

.hero-trigger-flex {
  position: absolute;
  bottom: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
  background: #000000;
  padding: 16px 20px;
  border-top-left-radius: 18px;
}

.hero-image-wrapper {
  position: relative;
  width: 140px;
  height: 85px;
  border-radius: 10px;
  padding: 4px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.hero-thumb-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.hero-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-wrapper:hover .hero-thumb { transform: scale(1.08); }

.hero-image-wrapper.active {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

/* RIGHT SIDE SHAPE & SOCIAL ICONS */
.socials-wrapper-container {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 230px;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-shape-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
}

.socials-icons {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-left: 8px;
}

.hero-social-icon {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease;
}

.hero-social-icon.yt:hover { color: #ff0000; transform: scale(1.25); }
.hero-social-icon.insta:hover { color: #e1306c; transform: scale(1.25); }
.hero-social-icon.wa:hover { color: #25d366; transform: scale(1.25); }



@media (max-width: 992px) {
  .nav-links-container { display: none; } 
  .header-right { display: none; } 
  .mobile-toggle-btn { display: block; }
  
  .hero-container { width: 90%; }
  .hero-text { font-size: 5.5rem; }
  .custom-brand-logo { height: 70px; }
}

@media (max-width: 768px) {
  .site-header {
     padding: 0 5%;
     height: 85px; 
    }

  .hero-section {
     margin-top: 75px; 
    }

  .hero-container { height: 75vh; width: 93%; }
  .hero-text { font-size: 3.8rem; }
  
  .socials-wrapper-container {
     display: none !important; 
    }


  .hero-trigger-flex {
    bottom: 0;
    right: 0;
    border-top-left-radius: 12px;
    padding: 10px;
    gap: 10px;
  }

  
  .hero-image-wrapper {
     width: 85px;
      height: 65px; 
      
    }
}

@media (max-width: 768px) {
  .hero-trigger-flex {
  
    padding-bottom: 30px !important; 

    bottom: -25px !important; 
  
  }


}
/* nav + banar section End*/




/* Language section start */

#language-switcher {
  position: absolute;
  top: -25px;
  right: 40px;
  background: rgb(65, 65, 65);    
  color: #ffffff;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 600;
  z-index: 9999;
  cursor: pointer;
  user-select: none;
  border-radius: 2px;
  width: 110px;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 1px;
  transition: background 0.3s, transform 0.2s;
}


#language-switcher:hover {
  background: #046099;
  transform: translateY(-2px);
}


/* Dropdown Language Options */
#language-options {
  margin-top: 5px;
  background: #fff;            
  border: 1px solid #ddd;       
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}


#language-options .lang {
  padding: 8px 20px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  background: #ffffff;
}


#language-options .lang:hover {
  background: #139af5;   
  color: #fff;
}


.hidden {
  display: none;
}


#language-switcher {
  opacity: 0;
  transform: translateY(-15px);
}

/* Jab page load ho jaye */
#language-switcher.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.dropdown-icon {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

#language-switcher, 
#language-switcher * {
  box-sizing: border-box;
}

@media (max-width: 768px) {
  #language-switcher {
    width: 100px;       
    right: 10px;       
    font-size: 12px;   
  }

  #language-options .lang {
    font-size: 11px;  
    padding: 6px 10px;
  }
}

/* Text */
#current-language {
  flex: 1;
}

/* Arrow */
#language-switcher::after {
  content: "▼";
  font-size: 12px;
  transition: transform 0.3s ease;
}

/* Rotate when open */
#language-switcher.active::after {
  transform: rotate(180deg);
}

@media (max-width: 480px) {
  #language-switcher {
    top: 0px;       
    width: 100px;
    right: 10px; 
    font-size: 12px;
    padding: 0.4rem 0.7rem;
    max-width: calc(100vw - 20px); 
  } 
}
/* Language section End*/




/* top intro section start */

  .section-header h2 {
  font-size: 52px;
  text-align: center;
  line-height: 1.3;
  margin-top: 60px;
}

.section-header h2 span {
  display: block;
  font-size: 28px;
  font-weight: 400;
  margin-top: 10px;
  text-transform: none;
  letter-spacing: 1px;
}



@media (max-width: 768px) {
  .section-header h2 {
    font-size: 30px;
    margin-top: 30px;
  }

  .section-header h2 span {
    font-size: 18px;
  }
}


@media (max-width: 480px) {
  .section-header h2 {
    padding: 10px;
    font-size: 27px;
    margin-top: 40px;
  }

  .section-header h2 span {
    font-size: 22px;
    margin-bottom: 40px;
  }
}


/* top intro section End */





/* Intro  img section start */

.intro {
  width: 100%;
  padding: 80px 5%;
 
  display: flex;
  justify-content: center;
}

.intro-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Content Styling */
.intro-text {
  flex: 1;
  text-align: left;
}

.intro-text h2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #139af5; 
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.intro-text h2 span {
  display: block;
  font-weight: 400;
  color: #acacac;
  text-transform: none;
  margin-top: 6px;
  font-size: 3.2rem;
}

.intro-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.intro-desc:last-child {
  margin-bottom: 0;
}

/* Image Styling */
.intro-image {
  flex: 1;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.intro-image img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}


@media (max-width: 992px) {
  .intro-container {
    gap: 30px;
  }
  .intro-text h2 {
    font-size: 2.2rem;
  }
  .intro-text h2 span {
    font-size: 1.8rem;
  }
}

/* Mobile View (Max Width: 768px) - Strictly Left Aligned */
@media (max-width: 768px) {
  .intro {
    padding: 50px 20px !important;
  }

  .intro-container {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 35px;
  }

  .intro-text {
    width: 100% !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .intro-text h2 {
    font-size: 1.8rem !important;
    text-align: left !important;
    margin-bottom: 16px;
  }

  .intro-text h2 span {
    font-size: 1.4rem !important;
    text-align: left !important;
  }

  .intro-desc {
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }

  .intro-image {
    width: 100% !important;
    border-radius: 12px;
  }

  .intro-image img {
    height: 280px; /* Mobile par crisp aspect ratio ke liye */
  }
}
 /* intro section End */






/* patti section start */


.info-strip{
  width: 100%;
  background: rgb(6, 21, 68);
  padding: 0px 0px;
  color: #fff;
 margin-top: -200px;
}

.info-strip .container{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.info-strip .box{
  flex: 1;
  text-align: center;
  padding: 40px;
}

.info-strip .icon i{
  font-size: 45px;
  margin-bottom: 10px;
  display: inline-block;
}

.info-strip h3{
  margin: 10px 0;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.info-strip p{
  font-size: 15px;
  line-height: 1.5;
}


@media (max-width: 992px) {
  .info-strip {
    padding: 40px 20px;
  }

  .info-strip .container {
    flex-wrap: wrap; 
    gap: 15px;
  }

  .info-strip .box {
    flex: 1 1 45%; 
    padding: 15px;
  }

  .info-strip h3 {
    font-size: 22px;
  }

  .info-strip .icon i {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .info-strip {
    padding: 35px 15px;
  }

  .info-strip .container {
    flex-direction: column; 
    gap: 20px;
  }

  .info-strip .box {
    flex: 1 1 100%;
    padding: 15px;
  }

  .info-strip h3 {
    font-size: 20px;
  }

  .info-strip .icon i {
    font-size: 32px;
  }

  .info-strip p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .info-strip {
    padding: 30px 10px;
  }

  .info-strip h3 {
    font-size: 18px;
  }

  .info-strip .icon i {
    font-size: 28px;
  }

  .info-strip p {
    font-size: 13px;
    line-height: 1.4;
  }
}









/* static section start*/

.fixed-bg-section {
  position: relative;
  min-height: 600px;

  display: flex;
  align-items: center;

  justify-content: center;
  text-align: center;
  padding: 2em;

  background-size: cover;

  background-position: center;
  background-attachment: fixed;

  color: #fff;
  font-family: 'Poppins', sans-serif;

  overflow: hidden;
}


/* Overlay */

.fixed-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.content-center {
  position: relative;
  z-index: 2;
}
.content-center h2 {
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 5px;
  max-width: 1000px;

  /* animation (same as box) */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;

  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
 
  padding: 0.2em 0.4em;
  border-radius: 4px;  
}


/* SHOW CLASS (triggered by JS) */
.content-center h2.show {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  .content-center h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .fixed-bg-section {
    min-height: 350px;
    padding: 1.5em;
  }

  .content-center h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
}


/* static image section End */




/* All Category Section */

.all-category {
    padding: 100px 20px;
    background: #313131;
}

.all-category-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* Section Header */

.all-category-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 70px;
}

.all-category-header h2 {
    font-size: 52px;
    color: #0099ff;
    margin-bottom: 10px;
    font-weight: 500;
}

.all-category-header p {
    font-size: 25px;
    color: #ffffff;
    line-height: 1.6;
}


/* Box */

.all-box {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #dedede;
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: 0.6s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);

    opacity: 0;
    transform: translateY(50px);
}

.all-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image */

.all-img-wrap {
    position: relative;
    overflow: hidden;
     height: 250px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.all-img-wrap img {
    width: 100%;
    transition: 0.6s;
}

/* Shine Effect */

.shine {
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(0,255,255,0.2) 20%,
        rgba(255,0,255,0.3) 50%,
        rgba(255,255,0,0.2) 80%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    filter: blur(5px);
}

/* Hover */

.all-box:hover {
    transform: translateY(-8px);
    border-color: #ff0000;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.all-box:hover img {
    transform: scale(1.08);
}

.all-box:hover .shine {
    left: 150%;
    transition: 0.8s;
}

/* Title */

.all-title {
    font-size: 22px;
    color: #02afff;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Text */

.all-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #000;
}

/* Button */

.all-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #0099ff;
    color: #fff;
    border-radius: 15px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s;
}

.all-btn:hover {
    background: #747474;
}


@media (max-width: 992px) {
    .all-box {
        min-width: 45%;
    }
}

@media (max-width: 600px) {
    .all-category-container {
        flex-direction: column;
        align-items: center;
    }

    .all-box {
        min-width: 100%;
    }
}

@media (max-width: 992px) {
  .all-category-header {
    margin-bottom: 50px;
  }

  .all-category-header h2 {
    font-size: 40px;
  }

  .all-category-header p {
    font-size: 18px;
  }
}


@media (max-width: 768px) {
  .all-category-header {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .all-category-header h2 {
    font-size: 30px;
  }

  .all-category-header p {
    font-size: 16px;
  }
}


@media (max-width: 480px) {
  .all-category-header h2 {
    font-size: 24px;
  }

  .all-category-header p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* All service section End */






/* counter section start
*/
.section-heading {
  width: 100%;
  text-align: center;
  font-size: 55px;
  color:#0099ff;
  font-weight: 500;
  padding-top: 20px;
  margin-bottom: 0px;
  letter-spacing: 4px;
 
}
@media (max-width: 576px) {
  .section-heading {
    padding-top: 30px;
    font-size: 20px;
  }
}

.image-section {
  background-color:rgb(23, 23, 23);
  padding: 120px 20px;
  margin-bottom: 200px;
}

.container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.image-box {
  width: 300px;
  overflow: hidden;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;


}

.image-box:hover {
  transform: translateY(-10px) scale(1.03);
}

.image-box img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.image-box:hover img {
  transform: scale(1.1);
  filter: brightness(80%);
}

.image-box.show {
  opacity: 1;
  transform: translateY(0);
}

.image-box:nth-child(1).show { transition-delay: 0.2s; }
.image-box:nth-child(2).show { transition-delay: 0.4s; }
.image-box:nth-child(3).show { transition-delay: 0.6s; }

@media (max-width: 992px) {
  .container {
    gap: 30px;
  }

  .image-box {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .container {
    gap: 20px;
  }

  .image-box {
    width: 45%;
  }
}
@media (max-width: 480px) {

  .image-section {
    padding: 60px 10px;  
  }

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;   
  }

  .image-box {
    width: 55%;
    max-width: 200px;

    margin: 0 auto;        
    display: block;        
  }

  .image-box img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* bottom paragragraph section*/
.image-bottom-text {
  max-width: 800px;
  margin: 80px auto 0;
  text-align: center;
  padding: 0 20px;
}

.image-bottom-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #d1d5db;
}

@media (max-width: 768px) {
  .image-bottom-text {
    margin: 50px auto 0;
  }

  .image-bottom-text p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .image-bottom-text p {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* counter section End*/







/* testomonial section start */

.testimonials {
  padding: 120px 20px;
  background: rgb(6, 21, 68);
  position: relative;
  overflow: hidden; 
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 250px;
  background: radial-gradient(circle, rgba(152, 11, 11, 0.06), transparent);
  filter: blur(90px);
  pointer-events: none;
}

.wrap {
  max-width: 1200px;
  margin: auto;
  position: relative;
  width: 100%;
}

.wrap h2 {
  font-size: 50px;
  margin-bottom: 70px;
  color: #f5f5f5;
  letter-spacing: -0.6px;
  font-weight: 500;
}

/* CAROUSEL */
.carousel {
  display: flex;
  gap: 30px;

  overflow-x: auto; 
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Scrollbar hide karne ke liye */
  scrollbar-width: none; 
}

.carousel::-webkit-scrollbar {
  display: none;
}

/* CARD */
.t-card {
  flex: 0 0 420px;
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
  border: 0.1px solid rgb(237, 237, 237);
  box-sizing: border-box; 
  scroll-snap-align: start;
}

/* TEXT */
.t-card p {
  font-size: 16px;
  line-height: 1.85;
  color: #262626;
  margin-bottom: 28px;
}

.meta strong {
  display: block;
  font-size: 15px;
  color: #262626;
  font-weight: 600;
}

.meta span {
  font-size: 13px;
  color: #a3a3a3;
}


@media (max-width: 992px) {
  .testimonials {
    padding: 100px 20px;
  }

  .wrap h2 {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .carousel {
    gap: 20px;
  }

  .t-card {
    flex: 0 0 300px;
    padding: 24px;
  }
}


@media (max-width: 768px) {
  .testimonials {
    padding: 80px 15px; 
  }

  .testimonials::before {
    width: 280px;
    height: 180px;
  }

  .wrap h2 {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: center;
  }

  .carousel {
    gap: 16px;
  }


  .t-card {
    flex: 0 0 100%; 
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 60px 15px;
  }

  .wrap h2 {
    font-size: 22px;
  }

  .t-card {
    flex: 0 0 100%;
    padding: 18px;
  }

  .t-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .meta strong {
    font-size: 14px;
  }

  .meta span {
    font-size: 12px;
  }
}

/* testomonial section End */





/* our client section start*/

.ourclient {
 padding: 100px 20px 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.ourclient h2 {
  font-size: 40px;
  color: #0099ff;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
}

.ourclient p {
  font-size: 26px;
  color: #555;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .ourclient {
    padding: 80px 15px 50px 15px;
  }

  .ourclient h2 {
    font-size: 30px;
  }

  .ourclient p {
    font-size: 20px;
  }
}


@media (max-width: 576px) {
  .ourclient {
    padding: 60px 15px 40px 15px;
  }

  .ourclient h2 {
    font-size: 24px;
  }

  .ourclient p {
    font-size: 16px;
  }
}

/* our client section End*/


  
.logo-slider {
  overflow: hidden;
  background: #ffffff;
  padding: 0 0 80px 0;
}


/* track */
.logo-track {
  display: flex;
  width: max-content; 
  animation: scroll 25s linear infinite;
}


/* logos */
.logo-track img {
  width: 180px;
  margin: 0 30px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 992px) {
  .logo-slider {
    padding: 60px 0;
  }

  .logo-track img {
    width: 140px;
    margin: 0 20px;
  }
}

@media (max-width: 600px) {
  .logo-slider {
    padding: 40px 0;
  }

  .logo-track img {
    width: 110px;
    margin: 0 15px;
  }
}

@media (max-width: 400px) {
  .logo-track img {
    width: 90px;
    margin: 0 10px;
  }
}

/* our client section End */


 
.footer-map {
  width: 100%;
}


/* Map iframe */
.footer-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}


@media (max-width: 768px) {
  .footer-map iframe {
    height: 300px; 
  }
}


/* back to top section start */


#scrollTopBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;

  width: 60px;
  height: 60px;

  border: 1px solid rgba(255,255,255,0.15);
  outline: none;
  cursor: pointer;

  border-radius: 50%;

  /* Better visibility on black background */
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.16),
    rgba(255,255,255,0.05)
  );

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #ff0000;
  font-size: 24px;
  font-weight: 900;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Premium Glow */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 10px 35px rgba(0,0,0,0.55),
    0 0 20px rgba(255,255,255,0.08);

  z-index: 9999;

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px) scale(0.9);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Show */

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Arrow */

#scrollTopBtn span {
  transition: transform 0.3s ease;
}

/* Hover */

#scrollTopBtn:hover {

  background: linear-gradient(
    145deg,
    #0d6efd,
    #0056d6
  );

  transform: translateY(-6px) scale(1.06);

  box-shadow:
    0 15px 40px rgba(13,110,253,0.45),
    0 0 25px rgba(13,110,253,0.35);
}

#scrollTopBtn:hover span {
  transform: translateY(-3px);
}

/* Click */

#scrollTopBtn:active {
  transform: scale(0.96);
}



@media (max-width: 576px) {

  #scrollTopBtn {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 20px;
    font-size: 20px;
  }
}




/* footer section start */

.footer {
  background: #000;
  color: #fff;
  padding: 10px 40px 30px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}



.footer-container {
  width: 100%;
  max-width: 1320px;
  margin: auto;
}

/*
   TOP SECTION logo start
 */


.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    height: 125px;
    width: auto;
    display: block;
}
.footer-paragraph{
  letter-spacing: 2.5px;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 65px; 
    }

    .footer-paragraph{
     font-size: 12px !important;
     margin-top: -20px;
       }

    .footer-right {
        justify-content: flex-start; 
        flex-wrap: wrap;             
        margin-top: 20px;
    } 
}




.footer-divider {
  margin-top: 10px;
}

.footer-divider .line1,
.footer-divider .line2 {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.footer-divider .line2 {
  margin-top: 6px;
}



.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  padding: 60px 0;
}



.footer-col {
  width: 100%;
}

.footer-col h6 {
  margin-bottom: 22px;
  color: #888;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: #ddd;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #0d6efd;
  padding-left: 6px;
}


.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.35s ease;
  font-size: 15px;
}

.social-icons a:hover {
  background: #0d6efd;
  color: #fff;
  transform: translateY(-5px);
}


.footer-bottom {
  padding-top: 22px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* hr section */
.custom-thin-hr {
  height: 1px;
  border: none;
  background-color: #ccc;
  margin: 10px 0;
  opacity: 1; 
}

@media (min-width: 1600px) {

  .footer-container {
    max-width: 1500px;
  }

  .footer-grid {
    gap: 70px;
  }

  .footer-left h1 {
    font-size: 3.8rem;
  }

  .footer-left h1 span {
    font-size: 27px;
  }

  .footer-left p {
    font-size: 19px;
    max-width: 720px;
  }
}



@media (max-width: 992px) {

  .footer {
    padding: 55px 28px 25px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left {
    width: 100%;
  }

  .footer-left p {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}



@media (max-width: 576px) {

  .footer {
    padding: 10px 18px 22px;
  }

  .footer-top {
    gap: 22px;
  }

  .footer-left {
    min-width: 100%;
  }

  .footer-left h1 {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .footer-left h1 span {
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.4;
  }

  .footer-left p {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 1.2px;
    margin-top: 10px;
  }

  .footer-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }

  .footer-col h6 {
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 14px;
    margin-bottom: 11px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .footer-bottom {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 380px) {

  .footer-left h1 {
    font-size: 1.7rem;
  }

  .footer-left h1 span {
    font-size: 13px;
  }

  .footer-left p {
    font-size: 12px;
  }

  .footer-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}















