
html, body {
    font-family: 'Manrope', sans-serif !important;
    
}



.reveal-img {
  width: 100%;
  display: block;

  /* Start me image hidden from right side */
  clip-path: inset(0 100% 0 0);

  transition: clip-path 1.5s ease-out;
}

/* Jab show lage */
.reveal-img.show {
  clip-path: inset(0 0 0 0);
}

/*cursor*/
/* Default cursor hide */


/* Orange Dot */
.cursor-dot {
    width: 10px;
    height: 10px;
    background-color: #ff9900;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.08s ease;
}


/*header part*/

  /* RESET */
  * { margin: 0; padding: 0; box-sizing: border-box;  }

  /* HEADER */
header {
  background: transparent !important;
  border-bottom: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
}


  .container-h {
    max-width: 1400px;
    padding:  20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
  }

.navbar-toggler {
    color: #ff9900;
    background: #fff
}
  


  /* LOGO */
  .logo img { height: 50px; }

  /* NAVIGATION */

  .nav-link{
    color: #fff;
    
  }

  .nav-link:hover{
    color: #ff9900;
  }
 /* Center the navigation menu */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center; /* Center alignment */
    padding: 0;
    margin: 0;
    color: #fff;
}

/* Style links */
nav ul li a {
    position: relative; /* For the border effect */
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
}



/* Hover effect: change text and border color */
nav ul li a:hover {
    color: #ff9900;
}



  /* MOBILE */
  .mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  

/* DROPDOWN */

.dropdown-item {
    color: #fff;
}
.dropdown-item:hover {
    color: #000;
    background-color: #ff9900;
}


.dropdown-menu.show{
  background: #ff9900;
  color: #fff;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #fff;
}
/*button*/

.ms-lg-3 {
margin-left: 1rem !important;
background: none;
border: none;
 }
.ms-lg-3 i{
  color: #ff9900;
}

.ms-lg-3:hover{
  margin-left: 1rem !important;
background: none;
border: none;

}


/* ===============================
   MOBILE FULL SCREEN MENU
================================ */

@media (max-width: 991px) {

  #mainMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #ff9900;
    padding: 100px 30px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  #mainMenu.show {
    left: 0;
  }

  #mainMenu ul {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 25px;
  }

  #mainMenu .nav-link {
    font-size: 22px;
    color: #fff !important;
  }

  #mainMenu .dropdown-menu {
    background: transparent;
    border: none;
    padding-left: 15px;
  }

  #mainMenu .dropdown-item {
    color: #fff;
    font-size: 18px;
  }

  /* Close button */
@media (max-width: 991px) {

  #mainMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #ff9900;
    padding: 100px 30px;
    transition: 0.4s ease;
    z-index: 9999;
  }

  /* Close button */
  .mobile-close {
    position: fixed;   /* 👈 change absolute → fixed */
    top: 25px;
    left: 325px;
    z-index: 10000;
  }

}


  .mobile-close span {
    font-size: 30px;
    background: #fff;
    color: #ff9900;
    padding: 5px 15px;
    border-radius: 8px;
    cursor: pointer;
  }

}
@media (max-width: 991px) {

  .nav-item .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .nav-item .dropdown-toggle {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
  @media (max-width: 991px){
  .dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
  }
}


}


/*hero section 1*/


/* HERO SECTION */
.hero-section{
  position: relative;
  width:100%;
  height:100vh;
  overflow:hidden;
}


.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Video wrapper */
.video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

/* YouTube iframe + local video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Local video fallback */
.local-video {
  display: none;
}


/* VIDEO */


/* OVERLAY */
.hero-overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.45);
  z-index:2;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:3;
  color:#fff;
  max-width:1200px;
  padding:170px 120px 170px 120px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-content i{
    color: #ff9900;
}

/* TEXT */
.hero-top-text{
  font-size:18px;
  letter-spacing:1px;
  margin-bottom:15px;
}

.hero-content
 h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:30px;
  color: #fff;
}

.hero-content p{
  width: 600px;
  color: #fff;
}


.explore-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    font-weight: 600;
    border: 3px solid #ff9900;
    background: #ff9900;
    
}

/* Text Part */
.explore-btn .btn-text {
    background: #ffffff;
    color: #000;
    padding: 18px 28px;
    transition: 0.4s ease;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    

}

/* Icon Part */
.explore-btn .btn-icon {
    background: #f7931e;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

/* Icon */
.explore-btn .btn-icon i {
    color: #fff;
    font-size: 18px;
    display: inline-block;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* HOVER EFFECT */
.explore-btn:hover .btn-text {
    background: #f7931e;
    color: #fff;
}

.explore-btn:hover .btn-icon {
    background: #000;
}

.explore-btn:hover .btn-icon i {
    transform: rotate(60deg); /* half rotate */
    color: #fff;
}


.hero-section {
  position: relative;
}

.hero-features {
  position: absolute;
  bottom: 40px;           /* jitna niche chahiye utna value badha/ghata sakte ho */
  left: 84%;
  transform: translateX(-50%);
  
  display: flex;
  gap: 40px;
  text-align: center;
  width: 1300px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.feature-item i {
  font-size: 20px;
  color: #ff9900;
}

/*responsive*/

@media (max-width: 992px) {

  .hero-content {
    padding: 120px 40px;
    text-align: left;
    align-items: flex-start;   /* 🔥 important */
  }

  .hero-content h1 {
    font-size: 37px;
  }

  .hero-content p {
    width: 100%;
  }

  .hero-features {
    width: 100%;
    left: 40px;              /* left side shift */
    transform: none;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

}


@media (max-width: 768px) {

  .hero-section {
    height: auto;
    min-height: auto;
  }

  .hero-content {
    padding: 120px 20px 80px 20px;
    text-align: left;          /* 🔥 left */
    align-items: flex-start;   /* 🔥 very important */
  }

  .hero-top-text {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content p {
    width: 100%;
    font-size: 14px;
  }

  /* Features section */
  .hero-features {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-top: 40px;
    align-items: flex-start;  /* 🔥 left */
  }

  .feature-item {
    justify-content: flex-start; /* 🔥 left */
  }

}


/*footer page*/

.main-footer {
    position: relative;
    background-color:#000000e3;  
    color: #fff;
    padding: 80px 0 30px 0;
    overflow: hidden;
    z-index: 1;
}


.main-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url("images/footer-bg.svg") no-repeat left center;
    background-size: contain;

    opacity: 1.3;   
    z-index: -1;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text h2 {
    font-size: 50px;
    margin-bottom: 10px;
}

.cta-text p {
    color: #b0b0b0;
    
}

/* Circular Rotating Text Simulation */
.cta-circle {
    width: 130px;
    height: 130px;
    background: #f59e0b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Rotate everything */
.rotating-svg {
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

/* Circular Text Style */
.cta-circle text {
    fill: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Arrow Style */

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 40px;
}


/* Rotation */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


.footer-divider {
    border: 0;
    border-top: 1px solid #ccc7c7;
    margin-bottom: 50px;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-col ul {
    list-style: none;
    text-align: left;
    padding: 0px;
}

.footer-col ul li {
    margin-bottom: 16px;
}

.footer-col ul li a, .contact-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover, .contact-col a:hover {
    color: #ff9900;
}

.about-col p {
    margin: 20px 0;
    color: #fff;
    line-height: 1.6;
}

.social-icons-footer a {
    color: #ff9900;
    margin-right: 15px;
    font-size: 16px;
    transition: 0.3s;
    border: 1px solid #777;
    border-radius: 50%;
    padding: 5px;
    
}

.social-icons-footer a:hover {
    color: #fff;
     border: 1px solid #fff;
}

.contact-col p {
    margin-bottom: 15px;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #333;
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsive  */
/* ============================= */
/* 📱 Tablet Responsive (992px) */
/* ============================= */
@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;   /* 2 column layout */
        gap: 30px;
    }

    /* About column full width upar */
    .about-col {
        grid-column: 1 / -1;  /* pura row le lega */
    }

    /* Dono li wale column ek hi row me */
    .footer-grid .footer-col:nth-child(2),
    .footer-grid .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    .cta-text h2 {
        font-size: 36px;
    }
}


/* ============================= */
/* 📱 Mobile Responsive (600px) */
/* ============================= */
@media (max-width: 600px) {

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;   /* 2 column hi rakha */
        gap: 25px;
    }

    /* About column upar full width */
    .about-col {
        grid-column: 1 / -1;
    }

    /* Dono list column side by side rahenge */
    .footer-grid .footer-col:nth-child(2),
    .footer-grid .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    /* Contact neeche full width */
    .contact-col {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}


/*home page*/
/*hero section 2*/


.about-container {
    display: flex;
    max-width: 1300px;
    gap: 50px;
    padding: 50px;
    align-items: center;
    margin: 0 auto;   /* ✅ Yeh add karo */
    background-image:  url("images/footer-bg.svg");
    background-repeat: no-repeat;
    background-position: -60px bottom;   /* 👈 Ye important hai */
    background-size: 600px;           /* ya auto / 300px bhi de sakte ho */
}

/* Image Section */
.about-images {
    position: relative;
    flex: 2;
    height: 550px;
}

.img-wrapper-top {
    position: relative;   /* IMPORTANT */
    width: 320px;
    border-radius: 30px;
    overflow: hidden;     /* Shine bahar na nikle */
     transform: translate(-20px, -20px);
}

.img-wrapper-top img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

/* Shine Line */
.img-wrapper-top::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.img-wrapper-top:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;
        opacity: 1;
    }
    100% {
        width: 200%;
        opacity: 0;
    }
}

/*sine*/

.img-wrapper-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    border-radius: 40px;
    overflow: hidden;
}

.img-wrapper-bottom img {
    width: 100%;
    display: block;
    border-radius: 40px;
    border: 10px solid white;
}

/* Shine */

/* Shine Line */
.img-wrapper-bottom::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.img-wrapper-bottom:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}

.exp-badge {
    position: absolute;
    top: 50px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.exp-badge .num {
    font-size: 40px;
    font-weight: bold;
    color: #f39c12;
}

.exp-badge .txt {
    font-size: 14px;
    width: 80px;
    color: #555;
}

/* Content Section */
.about-content {
    flex: 2;
}

.sub-title {
    color: #555;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.sub-title i{
  color: #ff9900;
}

.main-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #222;
}

.main-title span {
    color: #333;
    font-weight: 800;
}

.desc {
    color: #777;
    margin-bottom: 30px;
}

.features-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list .icon i {
  color: #ff9900;
  font-size: 18px;
}

.rating-card {
  background: #f5f5f5;
  padding: 25px 30px;
  border-radius: 10px;
  text-align: center;
  min-width: 180px;
}

.rating-card h2 {
  font-size: 60px;   /* size bada rakho tab effect clear dikhega */
  margin: 0;
  font-weight: 800;

  background: url('images/about-img-1.jpg') no-repeat center center;
  background-size: cover;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  background-clip: text;
  color: transparent;
}


.rating-card .stars {
  font-size: 18px;
  margin: 8px 0;
  color: #ff9900;
}

.rating-card p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

/* Button and Rating */
.cta-section {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-learn {
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-learn .arrow {
    background: #f39c12;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}


/*responsive*/
/* Tablet */
@media (max-width: 1024px) {

.about-container{
    flex-direction: column;
    padding: 40px 25px;
    gap: 40px;
    background-position: center bottom;
}

.about-images{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-wrapper-top{
    transform: translate(0);
    width: 280px;
}

.img-wrapper-bottom{
    position: relative;
    width: 320px;
    right: 20px;
    bottom: -73px;
}

.exp-badge{
    top: 20px;
    right: 0;
}

.main-title{
    font-size: 38px;
}

}

/* Mobile */
@media (max-width: 768px) {

.about-container{
    padding: 30px 15px;
}

.main-title{
    font-size: 30px;
}

.features-wrapper{
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.cta-section{
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.rating-card{
    margin-bottom: 20px;
}

.rating-card h2{
    font-size: 45px;
}

}

/* Small Mobile */
@media (max-width: 480px) {

.img-wrapper-top{
    width: 220px;
}

.img-wrapper-bottom{
    width: 250px;
}

.main-title{
    font-size: 26px;
}

.desc{
    font-size: 14px;
}

.btn-learn{
    padding: 12px 22px;
    font-size: 14px;
}

}


/*hero section 3*/


/* Background Section */
.hero-section-h3 {
    position: relative;
    height: 70vh; /* Background image ki height */
    background: url('images/our-service-bg.jpg') no-repeat center center/cover;
    color: white;
    background-attachment: fixed;
}

.hero-overlay-h3 {
    background: rgba(0, 0, 0, 0.6); /* Image ko dark karne ke liye */
    height: 100%;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}

.container-h3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-h3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}



.sub-title-h3 {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: bold;
    color: #fff;
}

.sub-title-h3 i{
    color: #ff9900;
}

.hero-content-h3 h1 {
    font-size: 48px;
    line-height: 1.1;
    max-width: 600px;
    color: #fff;
}

.hero-content-h3 h1 span {
    font-size: 48px;
    line-height: 1.1;
    max-width: 600px;
    font-weight: 800;
    color: #fff;
}



.hero-content-h3 p {
    font-size: 16px;
    max-width: 400px;
    opacity: 0.9;
    line-height: 1.6;
    color: #fff;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: absolute;
    bottom: -100px; /* Isse card aadha upar aur aadha neeche dikhega */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
}

.service-card {
    padding: 20px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.service-card:last-child {
    border-right: none;
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
}

.arrow-btn {
    width: 40px;
    height: 35px;
    background: #f0f0f0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
}

.arrow-btn:hover {
    background: #ff9800;
    color: white;
}

/* Responsive*/

@media (max-width: 1024px) {

    .hero-content-h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .hero-content-h3 h1,
    .hero-content-h3 h1 span {
        font-size: 38px;
        max-width: 100%;
    }

    .hero-content-h3 p {
        max-width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 0px;
    
        
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid #eee;
        min-height: auto;
        padding: 10px;
    }

    .service-card:nth-child(2n) {
        border-bottom: 1px solid #eee;
    }

    .service-card:last-child {
        border-bottom: none;
    }
}



@media (max-width: 768px) {

    .hero-section-h3 {
        
        background-attachment: scroll; /* Mobile me fixed hata dete hain */
    }

    .hero-overlay-h3 {
        padding-bottom: 233px;
    }

    .hero-content-h3 h1,
    .hero-content-h3 h1 span {
        font-size: 30px;
        line-height: 1.3;
    }

    .services-grid {
        grid-template-columns: 1fr;
        position: relative;
        bottom:300px;
        margin-top: 0px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .service-card {
        border: none;
        text-align: left;
        align-items: left;
    }

    .service-card:last-child {
        border-bottom: none;
    }

    .service-card .icon {
        font-size: 35px;
    }

    .arrow-btn {
        margin-top: 0px;
    }
    .image-side .cta-circle {
    position: absolute;
    left: 121px;
    top: 2%;
    transform: translateY(-50%);
    z-index: 100;
}
}



@media (max-width: 480px) {

    .hero-content-h3 h1,
    .hero-content-h3 h1 span {
        font-size: 24px;
    }

    .sub-title {
        font-size: 12px;
    }

    .services-grid {
        padding: 2px;
    }

}


/*hero section 4*/


.container-h4 {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 30px;
}

/* Header styling */
.sub-title {
    color: #ff9900;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.text-header h1 {
    font-size: 50px;
    margin-top: 10px;
    font-weight: 300;
}

.text-header strong {
    font-weight: 900;
}

/* Layout logic */
.top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.small-images {
    display: flex;
    gap: 20px;
}

.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.img-small {
    width: 250px;
    height: 180px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* Shine Line */
.img-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.img-box:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}

/*shine*/

.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.img-big {
    width: 100%;
    height: 500px;
    border-radius: 30px;
    object-fit: cover;
}

/*shine*/
.big-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;   /* shine bahar na nikle */
}

.img-big {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* Shine */
.big-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.img-big {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
}

/* Shine Line */
.big-image-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.big-image-container:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}

/*shine*/

/* Content & Stats */
.description {
    color: #777;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 16px;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item h2 {
    color: #ff9900;
    font-weight: 900;
    font-size: 32px;
}

.stat-item p {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

/* Footer elements */
.footer-action {
    display: flex;
    align-items: center;
    gap: 30px;
}

.avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -15px;
}
.avatars{
    display: flex;
    align-items: center;
    gap: 10px; /* images ke beech space */
}

.avatars img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}


.avatars img:first-child { margin-left: 0; }

.video-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: bold;
}

.play-icon {
    width: 50px;
    height: 50px;
    border: 4px solid #ff9900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f39c12;
}

/* Responsive*/
@media (max-width: 992px) {

    .container-h4 {
        padding-top: 428px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .text-header h1 {
        font-size: 38px;
    }

    .top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .small-images {
        width: 100%;
        justify-content: space-between;
    }

    .img-small {
        width: 48%;
        height: 160px;
    }

    .bottom-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .img-big {
        height: 400px;
    }

    .stats-grid {
        flex-wrap: nowrap;
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 26px;
    }
}
@media (max-width: 576px) {

    .container-h4 {
        padding-top: 428px;
        padding-bottom: 20px;
    }

    .text-header h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .sub-title {
        font-size: 12px;
    }

    .small-images {
        flex-direction: row;
        gap: 10px;
    }

    .img-small {
        width: 100%;
        height: 180px;
    }

    .img-big {
        height: 300px;
        border-radius: 20px;
    }

    .description {
        font-size: 14px;
    }

    .stats-grid {
        flex-direction: row;
        gap: 20px;
    }

    .footer-action {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    .play-icon {
        width: 45px;
        height: 45px;
    }
    .content-stats{
        margin-top: -215px;

    }
}



/*hero section 5*/
.hero-section-h5 {
    position: relative;
    display: flex;
}

/* Dono sides ko equal width de do */
.content-side,
.image-side {
    width: 50%;
    position: relative;
}

/* CTA ko image-side se nikaal ke hero ke center me la rahe */
.image-side .cta-circle {
    position: absolute;
    left: -50px;   /* adjust karo agar size different hai */
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}


.hero-section-h5 {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;
    position: relative;
}

/* Left Side Content */
.content-side {
    flex: 1;
    padding: 80px;
    min-width: 500px;
    background: #000000d6;
}

.sub-heading {
    color: #ff8c00;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

 .title-h5 {
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 50px;
    line-height: 1.2;
    color: #fff;
}

.title-h5 span {
    color: #fff; /* Image mein text white hai, focus bold par hai */
    font-weight: 900;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: rgba(255, 255, 255, 0.05); /* Subtle grey box */
    padding: 30px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #ffffff2e;
    
}

.card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.card p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

.footer-text {
    font-size: 16px;
    color: #fff;
}

.footer-text a {
    color: #ff8c00;
    text-decoration: none;
    font-weight: bold;
}

/* Right Side Image */

.image-side {
    flex: 1;
    min-height: 500px;
    position: relative;
}

/* Wrapper full area le */
.img-wrapper {
    position: absolute;
    inset: 0;          /* top:0; left:0; right:0; bottom:0 */
    overflow: hidden;
}

/* Image pura fill kare */
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Shine Line */
.img-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover Only On Image */
.img-wrapper:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;
        opacity: 1;
    }
    100% {
        width: 200%;
        opacity: 0;
    }
}


/* Orange Contact Badge */
.contact-badge {
    background: #ff8c00;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    left: -50px; /* Half outside the image */
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/*  Responsive */
/* =========================
   TABLET (max-width: 1024px)
========================= */
@media (max-width: 1024px) {

  .hero-section-h5 {
    flex-direction: column;
  }

  .content-side,
  .image-side {
    width: 100%;
    min-width: 100%;
  }

  .content-side {
    padding: 60px 40px;
  }

  .title-h5 {
    font-size: 40px;
  }

  .grid-container {
    grid-template-columns: 1fr 1fr;
  }

  /* Badge center me le aao */
  .contact-badge {
    left: 50%;
    transform: translateX(-50%);
    top: -50px;
  }
}


/* =========================
   MOBILE (max-width: 768px)
========================= */
@media (max-width: 768px) {

  .hero-section-h5 {
    flex-direction: column;
  }

  .content-side {
    padding: 40px 20px;
  }

  .title-h5 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .grid-container {
    grid-template-columns: 1fr;  /* 2 column se 1 column */
    gap: 20px;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 18px;
  }

  .card p {
    font-size: 14px;
  }

  .footer-text {
    font-size: 14px;
  }

  .image-side {
    min-height: 350px;
  }

  /* Badge image ke andar center me */
  .contact-badge {
    width: 80px;
    height: 80px;
    font-size: 10px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .image-side .cta-circle {
    position: absolute;
    left: 124px;
    top: 1%;
    transform: translateY(-50%);
    z-index: 100;
}
  
}


/* =========================
   SMALL MOBILE (max-width: 480px)
========================= */
@media (max-width: 480px) {

  .title-h5 {
    font-size: 24px;
  }

  .sub-heading {
    font-size: 10px;
  }

  .contact-badge {
    width: 70px;
    height: 70px;
    font-size: 9px;
  }

}



/*hero section 6*/
.portfolio-section {
    padding: 40px;
    max-width: 1200px;   /* Width fix kare */
    margin: 0 auto;      /* Center me le aata hai */
}

.header {
    display: flex;
    justify-content: space-between; /* dono side push karega */
    align-items: center;
    gap: 60px; /* beech me extra space */
    padding-bottom: 30px;
}



.left-content h2{
    font-size: 50px;
    width:530px;
}
.sub-text{
    font-size: 14px;
}

.sub-text i{
    color: #ff9900;
}

.right-text {
    margin: 0;
    
}



.filters { margin-bottom: 40px; border-bottom: 1px solid #eee; padding-bottom: 10px; text-align: center; }



/* Slash add karega har button ke baad */
.filter-btn::after {
    content: "/";
    margin-left: 12px;
    color: #000;
}

/* Last button ke baad slash remove karega */
.filter-btn:last-child::after {
    content: "";
}

.filter-btn {
    border: none; background: none; cursor: pointer;
    margin-right: 20px; color: #000; font-size: 14px;
}
.filter-btn.active { color: orange; font-weight: bold; }

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.project-item {
    text-align: center;
}

.project-img {
    position: relative;
    border-radius: 30px;
    overflow: hidden;   /* sirf image ko cut kare */
}

.project-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Zoom */
.project-img:hover img {
    transform: scale(1.1);
}

/* Tag */
.project-img .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgb(109 120 126 / 76%);
    padding: 5px 15px;
    border-radius: 5px;
    color: white;
    font-size: 12px;
}

/* Paragraph */
.project-item p {
    margin-top: 15px;
    font-weight: 500;
}


/* Shine Line */
.project-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.project-img:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}




/*responsive*/
/* ============================= */
/* Tablet Responsive (992px) */
/* ============================= */
@media (max-width: 992px) {

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .left-content h2 {
        font-size: 38px;
        width: 100%;
    }

    .right-text {
        align-self: flex-start;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-item img {
        height: 280px;
    }
}


/* ============================= */
/* Mobile Responsive (768px) */
/* ============================= */
@media (max-width: 768px) {

    .portfolio-section {
        padding: 20px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .left-content h2 {
        font-size: 28px;
        width: 100%;
        line-height: 1.3;
    }

    .sub-text {
        font-size: 12px;
    }

    .right-text {
        font-size: 14px;
    }

    .filters {
        text-align: center;
    }

    .filter-btn {
        margin: 5px 10px;
        font-size: 13px;
    }

    .project-grid {
        grid-template-columns: 1fr;   /* 1 column mobile me */
        gap: 20px;
    }

    .project-item img {
        height: 220px;
        border-radius: 20px;
    }

}


/*hero section 7*/


.process-section {
    background-color: #81848a0f;  /* full width color */
    padding: 80px 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}


/* Header Styling */
.header-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.sub-header {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
}

.sub-header i{
    color: #ff9900;
}
.title-col h1 {
    font-size: 36px;
    margin-top: 10px;
    color: #444;
}

.title-col h1 span {
    display: block;
    font-weight: 800;
    color: #111;
}

.desc-col {
    max-width: 400px;
    font-size: 14px;
    color: #888;
    line-height: 1.6;
}

/* Content Layout */
.content-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Image Styling */
.image-box {
    flex: 1.2;
}

.image-box img {
    width: 100%;
    border-radius: 30px; /* Rounded corners like the image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Steps Styling */
.steps-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
    
}

/* Highlighted Step (Orange Box) */
.step.active {
    background-color: #f7941d; /* Same orange color */
    color: white;
}

.step.active .step-num, .step.active p,.step h3 {
    color: white;
}



.step-num {
    font-size: 32px;
    font-weight: 700;
    margin-right: 20px;
    color: #f7941d; /* Default orange number */
}

.step h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #000;
}


.step p {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/*Responsive */
/* ============================= */
/*        TABLET VIEW            */
/* ============================= */
@media (max-width: 992px) {

    .header-row {
        flex-direction: column;
        gap: 20px;
    }

    .desc-col {
        max-width: 100%;
    }

    .content-row {
        flex-direction: column;
        gap: 40px;
    }

    .image-box,
    .steps-box {
        flex: 1;
        width: 100%;
    }

    .title-col h1 {
        font-size: 30px;
    }
}


/* ============================= */
/*        MOBILE VIEW            */
/* ============================= */
@media (max-width: 576px) {

    .process-section {
        padding: 50px 15px;
    }

    .process-container {
        padding: 0 15px;
    }

    .title-col h1 {
        font-size: 24px;
    }

    .sub-header {
        font-size: 11px;
    }

    .desc-col {
        font-size: 13px;
    }

    .step {
        padding: 18px;
        flex-direction: column;
    }

    .step-num {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 13px;
    }

    .image-box img {
        border-radius: 20px;
    }
}



/*hero section 8*/

.pricing-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 0;
    clear: both;   /* 👈 ye important hai */
    position: relative;
}

.pricing-header{
    display: block;
    padding: 20px;
}


.subtitle {
    color: #000;
    font-size: 14px;
    padding: 20px;
}

.subtitle i{
    color: #ff9900;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}


.header-flex h1 {
    font-size: 42px;
    line-height: 1.2;
    flex: 1;

}
.header-flex span{
    font-weight: 800;
}

.header-flex .description {
    max-width: 400px;
    color: #777;
    font-size: 15px;
}

/* Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
    padding-top: 150px;
}

.card-h8 {
    background: #f4f4f4;
    border-radius: 40px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card.featured {
    background-color: #ff9800;
    color: white;
}

.card.featured i{
    color: #fff;
}

.top-right-img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px; /* Adjust size based on your images */
    opacity: 0.8;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 5px;
}

.featured .price {
    color: white;
}

.price span {
    font-size: 16px;
    font-weight: normal;
    color: #999;
}

.featured .price span {
    color: rgba(255, 255, 255, 0.8);
}

.card h3 {
    margin-bottom: 30px;
    font-size: 20px;
}

/* Features List */
.features {
    list-style: none;
    margin-bottom: 40px;
}

.features i{
    color: #ff9900;
}

.features li {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Buttons */
.btn-h8 {
    padding: 12px 25px;
    border: 1px solid #ff9900;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.btn-white {
    border: 1px solid white;
    color: white;
    
}

.btn-h8:hover {
    background: #ff9900;
    color: #fff;
}

.btn-white:hover {
    background: #000;
    color: #fff;
}

/* Footer */
.pricing-footer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    font-size: 14px;
    color: #555;
    flex-wrap: wrap;
}


.pricing-footer i{
    color: #ff9900;
}

/*responsive*/
/* ============================= */
/*          TABLET VIEW          */
/* ============================= */
@media (max-width: 992px) {

    .pricing-section {
        padding: 80px 20px;
    }

    .header-flex {
        flex-direction: column;
        gap: 20px;
    }

    .header-flex h1 {
        font-size: 34px;
    }

    .header-flex .description {
        max-width: 100%;
    }

    .pricing-container {
        padding-top: 80px;
        gap: 20px;
    }

    .card-h8 {
        padding: 40px 30px;
        border-radius: 30px;
    }

    .price {
        font-size: 40px;
    }
}


/* ============================= */
/*          MOBILE VIEW          */
/* ============================= */
@media (max-width: 576px) {

    .pricing-section {
        padding: 60px 15px;
    }

    .subtitle {
        padding: 10px 0;
        font-size: 12px;
    }

    .header-flex h1 {
        font-size: 26px;
    }

    .header-flex .description {
        font-size: 14px;
    }

    .pricing-container {
        grid-template-columns: 1fr; /* Single column */
        padding-top: 200px;
    }

    .card-h8 {
        padding: 30px 20px;
        border-radius: 25px;
    }

    .top-right-img {
        width: 60px;
        top: 15px;
        right: 15px;
    }

    .price {
        font-size: 32px;
    }

    .price span {
        font-size: 14px;
    }

    .card h3 {
        font-size: 18px;
    }

    .features li {
        font-size: 14px;
        text-align: left;
    }

    .btn {
        text-align: left;
    }

    .pricing-footer {
        flex-direction: column;
        gap: 15px;
        text-align: left;
    }
}


/*hero section 9*/


.testimonial-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;   /* 👈 ye add karo */
    padding-top: 100px;
  
    background-image: url(images/testimonial-bg.png);
    background-repeat: no-repeat;
    background-size: cover;      /* ya contain */
    background-position: center; 
    background-position: right 50px bottom -68px;
    background-size: 120%;

}




.testimonial-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: transparent;
}

/* Left Image Styling */
.content-left {
    flex: 1;
}

.content-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px; /* Jaisa image mein round corner hai */
}


/* Shine Line */
.content-left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.content-left:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}




/* Right Content Styling */
.content-right {
    flex: 1.2;
}

.badge {
    color: #444;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.badge i {
    color: #ffa500;
    margin-right: 5px;
}

h1 {
    font-size: 42px;
    color: #222;
    line-height: 1.2;
    margin-bottom: 25px;
}

h1 span {
    color: #333;
    font-weight: 800;
}

.stars {
    color: #ffa500;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Footer Section with User and Nav */
.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Image wrapper */
.img-shine {
    position: relative;     /* IMPORTANT */
    display: inline-block;  /* image jitna hi size le */
    overflow: hidden;       /* shine bahar na jaye */
    border-radius: 8px;     /* same as image */
}

/* Image */
.user-info img {
    width: 60px;
    height: 60px;
    display: block;
    border-radius: 8px;
}

/* Shine Line */
.img-shine::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.img-shine:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}

.user-info h3 {
    font-size: 18px;
    color: #222;
}

.user-info p {
    font-size: 14px;
    color: #888;
}

/* Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-buttons button {
    background: #ffa500;
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.nav-buttons button:hover {
    background: #e69500;
}

/* Responsive */
/* =========================
   TABLET (992px se niche)
========================= */
@media (max-width: 992px) {

    .testimonial-card {
        gap: 30px;
    }

    h1 {
        font-size: 34px;
    }

    .content-left img {
        height: 400px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}


/* =========================
   MOBILE (768px se niche)
========================= */
@media (max-width: 768px) {

    .testimonial-card {
        flex-direction: column;
        text-align: center;
    }

    .content-left,
    .content-right {
        flex: 100%;
        width: 100%;
        text-align: left;
    }

    .content-left img {
        height: 300px;
        border-radius: 25px;
    }

    h1 {
        font-size: 28px;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .footer-row {
        flex-direction: column;
        gap: 20px;
    }

    .nav-buttons {
        justify-content: left;
    }
}


/* =========================
   SMALL MOBILE (480px se niche)
========================= */
@media (max-width: 480px) {

    .testimonial-container {
        padding: 0 15px;
    }

    h1 {
        font-size: 24px;
    }

    .content-left img {
        height: 250px;
    }

    .user-info img {
        width: 50px;
        height: 50px;
    }

    .nav-buttons button {
        width: 45px;
        height: 45px;
    }
}
/*logo section*/


.logo-section {
    padding: 40px 0;
}

.logoSwiper {
    width: 90%;
    margin: auto;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    width: 150px;
    opacity: 0.7;
    transition: 0.3s;
}

.swiper-slide img:hover {
    opacity: 1;
}




/*hero section 10*/

.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
}


/* Header Styling */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.header-left .tagline {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-left .tagline span {
    color: #f39c12;
    font-size: 18px;
}

.header-left .tagline i{
    color: #ff9900;
}

.header-left h1 {
    font-size: 42px;
    margin-top: 10px;
    color: #1a1a1a;
}

.header-left h1 span {
    display: block;
    color: #333;
}

.header-right {
    max-width: 400px;
    margin-top: 15px;
}

.header-right p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Card Styling */
.blog-card {
    cursor: pointer;
}

.image-container {
    position: relative;   /* VERY IMPORTANT */
    overflow: hidden;
    border-radius: 30px;
}

/* Image */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Shine Layer */

/* Shine Line */
.image-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.image-container:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}

/* Card Text & Button */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 5px;
}

.card-footer h3 {
    font-size: 20px;
    color: #1a1a1a;
    width: 80%;
    line-height: 1.4;
}

.arrow-btn {
    background-color: #f39c12; /* Orange color */
    color: white;
    text-decoration: none;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 20px;
    transition: background 0.3s;
}

.arrow-btn:hover {
    background-color: #d35400;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .blog-header {
        flex-direction: column;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .header-right {
        margin-top: 20px;
    }
}



/*contact page*/
/*contact page sec 1*/


/* HERO SECTION */
.contact-hero{
    position:relative;
    width:100%;
    height:60vh;
    background: url('images/page-header-bg.jpg') no-repeat center center/cover;
    display:flex;
    align-items:center;
    padding:0 8%;
    color:#fff;
    overflow:hidden;
}

/* Dark Left Gradient Overlay */
.contact-hero .overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.7) 35%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.1) 80%,
        rgba(0,0,0,0) 100%
    );
}

/* Content */
.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size:70px;
    font-weight:300;
    margin-bottom:15px;
}

.hero-content h1 span{
    font-weight:700;
    color: #fff;
}

/* Breadcrumb */
.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:16px;
}

.breadcrumb a{
    color:#fff;
    text-decoration:none;
    opacity:0.8;
}

.breadcrumb .dot{
    width:6px;
    height:6px;
    background:#f4a100;
    border-radius:50%;
}

.breadcrumb .active{
    color:#f4a100;
}

/* Responsive */
@media (max-width:768px){

    .contact-hero{
        height:50vh;
        padding:0 5%;
    }

    .hero-content h1{
        font-size:40px;
    }

    .breadcrumb{
        font-size:14px;
    }
}


/*contact page sec 2*/


.container-c2 {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 50px;
    margin: 0 auto;
    padding: 40px;
      background-image:  url("images/footer-bg.svg");
    background-repeat: no-repeat;
    background-position: -60px bottom;  
    background-size: 600px;  
}

/* Left Section */
.contact-info-c2 {
    flex: 1;
}

.sub-title {
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.sub-title i{
    color: #ff9900;
}

.contact-info-c2 h1 {
    font-size: 50px;
    margin: 10px 0;
    
}

.contact-info-c2 h1 strong {
    color: #333;
    font-weight: 900;
}

.contact-info-c2 p {
    color: #666;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.orange-box {
    background-color: #ff9800;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 15px;
}
.orange-box i{
    color: #fff;
}
.orange-box:hover{
    background-color: #000;
}

.info-item h3 {
    margin: 0;
    font-size: 18px;
}

/* Form Section */
.contact-form-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-card h2 {
    font-size: 50px;
    margin-bottom: 30px;
    
}

.row {
    display: flex;
    gap: 15px;
    
  
}
.row input{
    flex: 1;   /* equal 50-50 width */

}


input, textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.submit-btn {
    background: white;
    border: 2px solid #ff9800;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #ff9800;
    color: white;
}

/*responsive*/
/* =========================
   RESPONSIVE PART
========================= */

/* Tablet View */
@media (max-width: 992px) {

    .container-c2 {
        gap: 30px;
        padding: 30px 20px;
        background-size: 400px;
        background-position: -80px bottom;
    }

    .contact-info-c2 h1,
    .contact-form-card h2 {
        font-size: 38px;
    }
}


/* Mobile View */
@media (max-width: 768px) {

    .container-c2 {
        flex-direction: column;   /* side by side se upar niche */
        gap: 40px;
        padding: 30px 15px;
        background-size: 300px;
        background-position: center bottom; /* mobile me center */
    }

    .contact-info-c2 h1,
    .contact-form-card h2 {
        font-size: 30px;
    }

    .contact-form-card {
        padding: 25px;
    }

    /* Name & Email row mobile me upar niche */
    .row {
        flex-direction: column;
        gap: 0;
    }

    .orange-box {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-item {
        align-items: flex-start;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .contact-info-c2 h1,
    .contact-form-card h2 {
        font-size: 24px;
    }

    .sub-title {
        font-size: 12px;
    }

    input, textarea {
        padding: 12px;
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }
}


/*contact page sec 3*/

.map-section{
    width: 100%;
    height: 500px;
    margin: 0;
    padding: 0;
}

.map-section iframe{
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/*responsive*/
/* =========================
   RESPONSIVE MAP
========================= */

/* Tablet */
@media (max-width: 992px) {
    .map-section {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .map-section {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .map-section {
        height: 220px;
    }
}

/*about page*/

/* about page sec 3*/


.container-a3 {
  max-width: 1200px;
  margin: auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-top: -150px;
}



.tabs-nav { display: flex; border-bottom: 1px solid #ddd; }

.tab-btn {
  flex: 1;
  padding: 35px;
  border: none;
  background: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tab-btn.active {
  background: #ff9800; /* Orange Color from your image */
  color: white;
}

.tab-content { display: none; padding: 40px; animation: fadeIn 0.5s; }
.active-content { display: block; }

.content-flex { display: flex; gap: 30px; align-items: center; }
.text-side { flex: 1; color: #555; line-height: 1.6; }
.image-side-a3 {
    position: relative;
    display: inline-block;
    overflow: hidden;   /* Shine image ke bahar na jaye */
    border-radius: 15px;
}
.image-side-a3 img { width: 100%; border-radius: 15px; }



/* Shine Line */
.image-side-a3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.image-side-a3:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}

.list { list-style: none; padding: 0; margin-top: 20px; }

.list li { margin-bottom: 10px; font-weight: 500; }

.list li i{color: #ff9900;}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/*responsive*/
/* ============================= */
/* Tablet Responsive (992px) */
/* ============================= */
@media (max-width: 992px) {

  .container-a3 {
    margin-top: -100px;
  }

  .tab-btn {
    padding: 25px;
    font-size: 15px;
  }

  .tab-content {
    padding: 30px;
  }

}


/* ============================= */
/* Mobile Responsive (768px) */
/* ============================= */
@media (max-width: 768px) {

  .container-a3 {
    margin-top: -260px;
    border-radius: 40px;
 
  }

  /* Tabs vertical ho jayenge */
  .tabs-nav {
    flex-direction:row;
  }

  .tab-btn {
    padding: 18px;
    font-size: 14px;
    justify-content: flex-start;
  }

  /* Content column ho jayega */
  .content-flex {
    flex-direction: column;
    gap: 20px;
  }

  /* Image automatically last rahegi */
  .image-side-a3 {
    width: 100%;
  }

  .tab-content {
    padding: 20px;
  }

}


/* ============================= */
/* Small Mobile (480px) */
/* ============================= */
@media (max-width: 480px) {

  .tab-btn {
    padding: 15px;
    font-size: 13px;
  }

  .tab-content {
    padding: 15px;
  }

  .text-side {
    font-size: 14px;
  }

}


/* about page sec 4*/


.history-section {
    padding: 80px 8%;
}

/* Header */
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.history-header h1 {
    font-size: 48px;
    font-weight: 300;
}

.history-header h1 strong {
    font-weight: 700;
}

.history-header .right {
    max-width: 500px;
    color: #777;
    line-height: 1.6;
}

.mini-title {
    color: #ff9900;
    font-weight: bold;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

/* Main Layout */
.history-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Timeline */
.timeline {
    width: 280px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.tab {
    padding: 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
    color: #000;
}

.tab:hover {
    background: #f5f5f5;
}

.tab.active {
    background: #ff9900;
    color: #fff;
    font-weight: bold;
}

/* Content */
.tab-content-a4 {
    flex: 1;

}

.content-a4 {
    display: none;
    color: #000;
}

.content-a4.active {
    display: block;
}

.content-a4 h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.content-a4 ul {
    list-style: none;
    margin-top: 20px;
    margin-left: -60px;
}

.content-a4 ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}


.content-a4 ul li i{
    color: #ff9900;
    margin-right: 5px;
}


.history-image {
  position: relative;
  display: inline-block;
  overflow: hidden;
}


/* Image styling */
.history-image img {
  width: 400px;
  border-radius: 30px;
  display: block;
}


/* Shine Line */
.history-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.history-image:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}

/* Responsive */
@media(max-width: 992px) {
    .history-content {
        flex-direction: column;
    }

    .timeline {
        width: 100%;
    }

    .history-image img {
        width: 100%;
    }
    .tab{
        padding: 10px;
    }
     
}


/* about page sec 5*/

/* about page sec 6*/


.feature-section {
    padding: 80px 20px;
}

.container-a6 {
    max-width: 1200px;
    margin: auto;
}

/* Header */
.feature-header {
    display: flex;
    justify-content: space-between;
    gap: 40px;

}

.sub-title {
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
    display: inline-block;
    margin-bottom: 15px;
}

.feature-header h2 {
    font-size: 48px;
    font-weight: 300;
    color: #000;
}

.feature-header h2 span {
    font-weight: 700;
}

.feature-header .right {
    max-width: 500px;
    color: #777;
    line-height: 1.6;
}

/* Grid Layout */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card {
    padding: 50px;
    border-bottom: 1px solid #eee;
}

.feature-card:hover{
    background-color: #ff9900;
    color: #fff;
}

.feature-card:hover {
    background-color: #ff9900;
}

.feature-card:hover h3,
.feature-card:hover p,
.feature-card:hover .icon {
    color: #fff;
}

.border-left {
    border-left: 1px solid #eee;
}

.feature-card h3 {
    margin: 20px 0;
    font-size: 20px;
    color: #000;
}

.feature-card p {
    color: #777;
    line-height: 1.6;
}

.icon {
    font-size: 28px;
    color: #f7931e;
}

/* Image */
/* Parent Position */
.image-card {
    position: relative;
    overflow: hidden;
}

/* Image */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Shine Line */
.image-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.image-card:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;
        opacity: 1;
    }
    100% {
        width: 200%;
        opacity: 0;
    }
}

/* Responsive */
/* ============================= */
/*        Responsive Part        */
/* ============================= */

@media (max-width: 992px) {

    /* Header ko column me lao */
    .feature-header {
        flex-direction: column;
        gap: 20px;
    }

    .feature-header h2 {
        font-size: 36px;
    }

    .feature-header .right {
        max-width: 100%;
    }

    /* Grid ko 1 column karo */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    /* Border left hata do mobile me */
    .border-left {
        border-left: none;
    }

    .feature-card {
        padding: 35px 25px;
    }
}


/* Extra Small Devices */
@media (max-width: 576px) {

    .feature-section {
        padding: 50px 15px;
    }

    .feature-header h2 {
        font-size: 28px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }
}


/* about page sec 7*/

/* about page sec 8*/


.team-section {
    padding: 100px 5%;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.sub-title {
    color: #ff9900;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.team-header h2 {
    font-size: 48px;
    font-weight: 300;
    color: #222;
}

.team-header h2 span {
    font-weight: 700;
}

.all-btn {
    background: #ff9900;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.all-btn:hover {
    background: #e88700;
}

.team-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.image-box img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* Social Icons Hidden Initially */
.social-icons {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px 20px;
    border: none;
    transition: 0.4s ease;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff9900;
}

/* Hover Effect */
.image-box:hover .social-icons {
    bottom: 20px;
}

.team-card h3 {
    margin-top: 20px;
    font-size: 20px;
    color: #222;
}

.team-card p {
    color: #777;
    font-size: 14px;
}
/*responsive*/
/* Tablet View */
@media (max-width: 992px) {

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .team-header h2 {
        font-size: 36px;
    }

    .team-wrapper {
        gap: 20px;
    }
}


/* Mobile View - Sab ek ke niche ek */
@media (max-width: 768px) {

    .team-section {
        padding: 60px 5%;
    }

    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    .team-header h2 {
        font-size: 28px;
    }

    .all-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .team-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .team-card {
        width: 100%;
        flex: none;
    }

    .image-box img {
        height: auto;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .team-card p {
        font-size: 13px;
    }

}

/* about page sec 9*/


/* about page sec 10*/


.team-header-a10 {
  max-width: 1200px;   /* container jaisa width */
  margin: 0 auto 60px auto;  /* center karega */
  padding: 0 20px;     /* 🔥 left-right space dega */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.team-header-a10 h2 {
    font-size: 48px;
    font-weight: 300;
    color: #222;
}

.team-header-a10 h2 span {
    font-weight: 700;
}
.faq-section {
  padding: 80px 0;
  margin: 0 auto;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* Left Image */
/* Left Image */
.faq-left {
  position: relative;
  flex: 1;

  /* ye 3 line add karo 👇 */
  overflow: hidden;       /* shine bahar na jaye */
  border-radius: 25px;    /* same as image */
}

/* Image */
.faq-left img {
  width: 100%;
  display: block;
  border-radius: 25px;
}



/* Shine Line */
.faq-left::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}

/* Hover */
.faq-left:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;   /* center me visible */
        opacity: 1;
    }
    100% {
        width: 200%;   /* dono side expand */
        opacity: 0;
    }
}
.contact-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  display: flex;
  gap: 20px;
  font-weight: bold;
}
.contact-info i{
    color: #ff9900;
}

/* Right FAQ */
.faq-right {
  flex: 1;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #eee;
}

.faq-question {
  width: 100%;
  padding: 18px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between; /* 🔥 text left, icon right */
  align-items: center;
}

.faq-question i {
  font-size: 18px;
  transition: 0.3s;
}
.faq-item.active .faq-question {
  color: #fff;
}

.faq-item.active .faq-question i {
  color: #fff;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 18px;
}
.faq-answer p{
    color: #fff;
}

.faq-item.active {
  background: #ff9900;
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 18px;
}

/*reaponsive*/
/* Tablet View */
@media (max-width: 992px) {

  .team-header-a10 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .team-header-a10 h2 {
    font-size: 36px;
  }

  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

}


/* Mobile View */
@media (max-width: 768px) {

  .team-header-a10 {
    padding: 0 15px;
  }

  .team-header-a10 h2 {
    font-size: 28px;
  }

  .faq-section {
    padding: 50px 0;
  }

  .faq-container {
    flex-direction: column;
    gap: 25px;
    padding: 0 15px;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }

  .contact-info {
    position: static;      /* 🔥 absolute remove */
    margin-top: -70px;
    flex-direction: column;
    gap: 10px;
    margin-left: 20px;
  }

  .faq-question {
    font-size: 16px;
    padding: 15px;
    text-align: left;
  }

  .faq-answer {
    font-size: 14px;
  }

}

/*product page*/

/*product page section 2*/


.services-section {
  padding: 80px 20px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.service-icon {
  width: 50px;
  height: 50px;
  stroke: #ff9900;
  stroke-width: 1.5;
  margin-bottom: 20px;
}

.service-card-pd2 {
  background: #fff;
  padding: 20px;
  border-radius: 25px;
  border: 1px solid #e0e0e0;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.service-card-pd2 h3 {
  font-size: 20px;
  font-weight: 800;
  color: #333;
  line-height: 1.4;
}

.arrow-btn {
  width: 45px;
  height: 45px;
  background: #e6e6e6;
  color: #000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s ease;
}

.service-card-pd2:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card-pd2:hover .arrow-btn {
  background: #ff9900;
  color: #fff;
}

/*responsive*/
/* ====== Responsive ====== */

/* Large Laptop */
@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-pd2 {
    padding: 35px 25px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .services-container {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 60px 15px;
  }

  .service-card-pd2 {
    padding: 30px 20px;
    min-height: auto;
  }

  .service-card-pd2 h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .arrow-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}


/*product-detail page*/

/*product-detail page section 2*/

.service-section {
    padding: 60px 0;
}

.container-pd2 {
    width: 1300px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* LEFT SIDEBAR */
.left-sidebar {
    width: 30%;
    position: sticky;
    top: 40px;   /* scroll me yahin rukega */
    height: fit-content;
}

.services-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.services-box h3 {
    background: #ff9800;
    color: #fff;
    padding: 20px;
    margin: 0;

}

.services-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-box ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #81848a;
    transition: 0.3s ease;
}
.services-box ul li a i {
    transition: transform 0.3s ease;
    color: #000;
    font-weight: 900;
}

.services-box ul li a:hover {
    color: #ff9900;
}

.services-box ul li a:hover i {
    transform: rotate(45deg);
    color: #ff9900;
}

.help-box {
    margin-top: 30px;
    padding: 25px;
    border-radius: 15px;
    color: #fff;

    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url(images/sidebar.jpg);

    background-size: cover;
    background-position: center;
}

.help-box p{
    color: #fff;
}

/* RIGHT CONTENT */
.right-content {
    width: 70%;
}


.image-box {
    position: relative;
    overflow: hidden;
    display: inline-block;
    border-radius: 20px;
}

.image-box img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

/* First Shine */
.image-box::before,
.image-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.7) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
}

/* Second Shine opposite direction */
.image-box::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* Hover Animation */
.image-box:hover::before,
.image-box:hover::after {
    animation: crossShine 0.6s ease forwards;
}

@keyframes crossShine {
    100% {
        width: 100%;
        opacity: 1;
    }
    50% {
        width: 40px;
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0;
    }
}


.content {
    margin-top: 20px;
}

.content p{
    color: #81848a;
}
p{
    color: #81848a;
}

h2 {
    margin-top: 40px;
    font-size: 50px;
}
h2 span {
    color: #111;        /* Thoda soft dark */
    font-weight: 800;   /* Extra bold */
}
.features {
    display: flex;
    flex-wrap: wrap;      /* 🔥 important */
    gap: 30px;
    margin-top: 20px;
}

.feature {
    flex: 0 0 calc(50% - 15px);  /* 2 column */
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}



.feature .icon {
    font-size: 40px;
    color: #ff9900;
    margin-bottom: 15px;
}


.extra-content {
    margin-top: 50px;
}


.tags-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 1 row me 3 */
    gap: 15px;
    margin-top: 30px;
}

.tag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
    cursor: pointer;
}

.tag-item i {
    color: #ff9900;
    font-size: 16px;
}

.extra-images {
    display: flex;
    gap: 20px;
    width: 100%;
}

.img-box {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}



/* Shine Line → Image box par */
.img-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 200%;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0;
    pointer-events: none;
}

/* Hover → Image box par */
.img-box:hover::before {
    animation: centerShine 0.8s ease forwards;
}

@keyframes centerShine {
    0% {
        width: 0;
        opacity: 0;
    }
    20% {
        width: 60px;
        opacity: 1;
    }
    100% {
        width: 200%;
        opacity: 0;
    }
}



/*responsive*/

@media (max-width: 992px) {

    .container-pd2 {
        width: 100%;
        padding: 0 20px;
        gap: 30px;
    }

    .left-sidebar {
        width: 35%;
    }

    .right-content {
        width: 65%;
    }

    h2 {
        font-size: 36px;
    }

    .tags-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .container-pd2 {
        flex-direction: column;
    }

    .left-sidebar,
    .right-content {
        width: 100%;
    }

    .left-sidebar {
        position: relative;   /* sticky remove */
        top: 0;
    }

    h2 {
        font-size: 28px;
    }

    .features {
        flex-direction: column;
    }

    .feature {
        flex: 0 0 100%;
    }

    .tags-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .extra-images {
        flex-direction: column;
    }

}

