    * {
    margin: 0px;
    padding: 0px;
     box-sizing: border-box; 
}

body {
    padding: 0;
    overflow-x: hidden;
     margin:0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
height: 140px;
width: 140px;

}



/* ===== MENU ===== */
.menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #0077b6;
    padding: 5px 0;
    transition: 0.3s;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    transition: 0.3s;
}

.menu a:hover {
    color: #27AE60;
}

.menu a:hover::after {
    width: 100%;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #0077B6;
    border-radius: 3px;
    transition: 0.3s;
}


.hero-carousel {
    position: relative;
    overflow: hidden;
    height: 600px;
    width: 100%;
    padding: 0;
  
margin-top: 30px;
    font-family: Arial, sans-serif;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 80px 100px;
}

.hero-slide::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
  pointer-events: none;   
}

.hero-slide.active {
    left: 0;
    opacity: 1;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.5);
}

.hero-buttons .btn {
    padding: 12px 30px;
    text-decoration: none;
    background-color: #4a90e2;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.hero-buttons .btn:hover {
    background-color: #357ab8;
}

/* Navigation arrows */
.carousel-nav .prev,
.carousel-nav .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    user-select: none;
}

.carousel-nav .prev { left: 20px; }
.carousel-nav .next { right: 20px; }








.lab-intro {
    
    background: #f9fcff;
    
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* IMAGE STYLE */
.intro-image img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}


/* TEXT STYLE */
.intro-text h2 {
    font-size: 18px;
    color: #0077B6;
    letter-spacing: 2px;
    text-transform: uppercase;
   
}

.intro-text h3 {
    font-size: 36px;
    margin: 10px 0;
    color: #023E8A;
}

.intro-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}


.experience {
    font-weight: bold;
    color: #27AE60;
    font-size: 15px;
}








.gallery-section {
    padding: 60px 8%;
    background: #ffffff;
    text-align: center;
}

.gallery-heading {
    font-size: 36px;
    color: #023E8A;
    margin-bottom: 40px;
    position: relative;
}

.gallery-heading::after {
    content: "";
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    display: block;
    margin: 15px auto 0;
    border-radius: 5px;
}


/* ================================
   GRID LAYOUT (3 TOP + 2 CENTER)
================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Top 3 cards */
.gallery-item:nth-child(1),
.gallery-item:nth-child(2),
.gallery-item:nth-child(3) {
    grid-column: span 2;
}

/* Bottom 2 cards centered */
.gallery-item:nth-child(4) {
    grid-column: 2 / span 2;
}

.gallery-item:nth-child(5) {
    grid-column: 4 / span 2;
}


/* ================================
   CARD DESIGN
================================ */

.gallery-item {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
    text-align: center;
    padding-bottom: 15px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.08);
}

.gallery-item h4 {
    margin: 15px 0 8px 0;
    font-size: 18px;
    color: #0077B6;
}

.gallery-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    padding: 0 15px 10px 15px;
}

.lab-address a {
    font-weight: 600;
    
    margin-top: 25px;
}
/* ================================
   LOCATION BUTTON
================================ */

/*.lab-address a {
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.lab-address a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}*/


/* ================================
   RESPONSIVE DESIGN
================================ */

/* Tablet (1024px - 768px) */
@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        grid-column: span 1 !important;
    }
}
@media (max-width: 576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-heading {
        font-size: 28px;
    }

    .gallery-item img {
        height: 180px;
    }
}










.lab-gallery {
    padding: 60px 8%;
    background: #ffffff;
    text-align: center;
}

.lab-gallery-container {
    width: 100%;
}

/* =================================
   GRID LAYOUT (3 TOP + 2 CENTER)
================================= */

.lab-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 30px;
}

/* Top 3 */
.lab-card:nth-child(1),
.lab-card:nth-child(2),
.lab-card:nth-child(3) {
    grid-column: span 2;
}

/* Bottom 2 centered */
.lab-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.lab-card:nth-child(5) {
    grid-column: 4 / span 2;
}


/* =================================
   CARD DESIGN
================================= */

.lab-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: 0.3s ease;
    text-align: center;
    padding-bottom: 15px;
}

.lab-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.lab-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.4s ease;
}

.lab-card img:hover {
    transform: scale(1.08);
}

.lab-card h4 {
    margin: 15px 0 8px 0;
    font-size: 18px;
    color: #0077B6;
}

.lab-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    padding: 0 15px 10px 15px;
}


.lab-location a {
    font-weight: 600;
    
    margin-top: 25px;
}
/* =================================
   LOCATION BUTTON
================================= */

/*.lab-location a {
    display: inline-block;
    margin-top: 25px;
    text-decoration: none;
    background: linear-gradient(90deg, #0077B6, #00B4D8);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.lab-location a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}*/


/* =================================
   RESPONSIVE DESIGN
================================= */

/* Tablet */
@media (max-width: 992px) {
    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lab-card {
        grid-column: span 1 !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .lab-grid {
        grid-template-columns: 1fr;
    }

    .lab-card img {
        height: 180px;
    }
}












.lab-growth{
    padding:80px 20px;
    background:#f8fbff;
   
}

.lab-title{
    text-align:center;
    font-size:40px;
    color:#0077B6;
    margin-bottom:60px;
    font-weight:bold;
}

.lab-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}



/* RIGHT IMAGE AREA */
.lab-images{
    width:40%;
    position:relative;
    height:420px;
    margin-top: 70px;
    
    
}

/* BLUE BACKGROUND BOX */
.lab-blue-box{
    width:320px;
    height:300px;
    background:#0077B6;
    position:absolute;
    right:110px;
    top:10px;
    border-radius:12px;
}

/* MAIN IMAGE */
.lab-img-main{
    width:350px;
    height:270px;
    object-fit:cover;
    border-radius:15px;
    position:absolute;
    top:-60px;
    right:20px;
    z-index:2;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);

    
}

/* SMALL IMAGE */
.lab-img-small{
    width:200px;
    height:170px;
    object-fit:cover;
    border-radius:15px;
    position:absolute;
    bottom:70px;
    left:-10px;
    z-index:3;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}






/* LEFT TEXT */
.lab-text{
    width:55%;
    
     
}

.lab-point {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.lab-point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 20px;
    color: black; /* blue color, change if needed */
    font-weight: bold;
}

.lab-point h3{
    color: black;
    font-size:22px;
    margin-bottom:8px;
}

.lab-point p{
    color:#555;
    font-size:17px;
    line-height:1.6;
}











/*.key-services {
    padding: 60px 20px;
    background-color: #f7f9fc;
    text-align: center;
    font-family: Arial, sans-serif;
}

.key-services h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.key-services p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 50px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}*/










.services-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #023E8A;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.service-card {
    background: #fff;
    width: 250px;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 50px;
    color:#023E8A ;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #0077B6;
}

.service-btn {
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(90deg, #4CAF50, #2e7d32);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.service-btn:hover {
    opacity: 0.9;
}








/* Franchise Section */

.franchise-marquee {
    padding: 70px 0;
    
    text-align: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.franchise-marquee h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #222;
}

/* Marquee Wrapper */
.marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Moving Content */
.marquee-content {
    display: flex;
    align-items: stretch;
    gap: 50px;
    width: max-content;
    animation: marqueeScroll 25s linear infinite;
}

/* Individual Card */
.franchise-item {
    background: #fbfafa;
    min-width: 280px;
    max-width: 280px;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* LOGO FIX — sab equal height me */
.franchise-item img {
    height: 90px;           /* 👈 fixed same height */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto 15px auto;
}

/* Heading */
.franchise-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

/* Description */
.franchise-item p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* Hover Effect */
.franchise-item:hover {
    transform: translateY(-6px);
}

/* Continuous Scroll Animation */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}








/* Footer Main */
.footer {
    background: linear-gradient(to bottom, #8bc8d2, #0077B6);
    color: #fff;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

/* Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Footer Logo */
.footer-logo {
    width: 150px;
    display: block;
    margin-bottom: 15px;
}

/* Headings */
.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}

/* Paragraphs */
.footer-col p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: linear-gradient(90deg, #4CAF50, #2e7d32);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* Bottom Footer */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
    color: #ccc;
}
.footer-bottom h5{
    font-size:12px;
    margin-top:5px;
    color:#ccc;
    letter-spacing:1px;

}
.footer-bottom a {
    text-decoration: none;
    color: inherit;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #4a90e2;
}

















@media (max-width: 1024px) {

    /* NAVBAR */

    
    .navbar {
        padding:15px 60px;
        
    }

    .menu {
        gap: 20px;
    }

    .logo img {
        width: 130px;
        height: auto;
    }

    /* HERO */
    .hero-carousel {
        min-height: 500px;
        overflow-x: hidden;
        
    }

    .hero-content h2 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 17px;
    }

    /* LAB INTRO */

    /*.intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .intro-image img {
        height: 350px;
    }


.experience {
    overflow-x: hidden;
}*/




    .lab-blue-box{
        display: none;
    }

    .lab-text{
        overflow-x: hidden;
    }
    .lab-point{
        overflow-x: hidden;
    }

    /* LAB GROWTH */
    .lab-container {
        gap: 30px;
    }

    .lab-title {
        font-size: 30px;
    }






    /* SERVICES */
    .service-card {
        width: 220px;
    }
.footer-container {
        gap: 20px;
    }

}

    


   
















@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding:12px 20px;
        
    }

    .hamburger {
        display: flex;
    }

    .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin: 12px 0;
    }

    /* HERO */
    .hero-slide{
        padding: 0 !important;
    }
    .hero-carousel {
        height: 420px;
                overflow-x: hidden;
    }

    .hero-content h2 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 15px;
    }

    /* LAB INTRO */
    
    /*.lab-intro {
        /* % hata diya */
       /* text-align: center;
    }

    /*.intro-grid {
        grid-template-columns: 1fr;  /* 2 column → 1 column */
        /*gap: 40px;
        padding: 60px 20px;   
    }

    .intro-image {
        display: flex;
        justify-content: center;
    }

    .intro-image img {
        width: 100%;
        max-width: 320px;
        height: auto;   /* FIX important */
    /*}*/

    .intro-text h3 {
        font-size: 26px;
    }

    .intro-description {
        font-size: 15px;
    }




    /* GALLERY */
    .gallery-grid,
    .lab-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item,
    .lab-card {
        grid-column: span 1 !important;
    }

    /* LAB GROWTH */
    .lab-container {
        flex-direction: column;
        align-items: center;
    }

    .lab-images {
        width: 100%;
        position: static;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .lab-img-main{
        position: static;
        width: 85%;
        height: auto;
    }
    .lab-img-small {


      position: static;
    width: 70%;
     height: auto;
    }

    
    

    .lab-text {
        width: 100%;
        margin-left: 0;
        text-align: center;
                overflow-x: hidden;
    }
    .lab-point{
        overflow-x: hidden;
    }

    /* SERVICES */
    .services-container {
        flex-wrap: wrap;
    }

    .service-card {
        width: 45%;
    }







    .franchise-item {
        min-width: 240px;
        max-width: 240px;
        padding: 20px;
    }

    .franchise-item img {
        height: 60px;
    }



    /* FOOTER */
    
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-col {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 10px;
    }

    .whatsapp-btn {
        width: 100%;
        padding: 12px 0;
    }


    }





@media (max-width: 480px) {

    /* NAVBAR */
    .navbar {
        padding: 10px 15px;
        height: 70px;
    }

    .logo img {
        width: 140px;
        height: auto;
        
        
    }

    /* HERO */
    .hero-carousel {
        height: 350px;
        width:100%;
        overflow-x: hidden;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 8px 18px;
    }

    /* LAB INTRO */
    
        
    /*.lab-intro {
        /* % hata diya */
       /* text-align: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;  /* 2 column → 1 column */
       /* gap: 40px;
    }

    .intro-image {
        display: flex;
        justify-content: center;
    }

    .intro-image img {
        width: 100%;
        max-width: 320px;
        height: auto;   /* FIX important */
    /*}

    .intro-text h3 {
        font-size: 26px;
    }

    .intro-description {
        font-size: 15px;
    }*/





    


    /* GALLERY */
    .gallery-grid,
    .lab-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img,
    .lab-card img {
        height: 180px;
    }

    /* SERVICES */
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%;
    }

    /* LAB GROWTH */
    .lab-title {
        font-size: 22px;
    }

.lab-text{
            overflow-x: hidden;
}
    .lab-point{
        overflow-x: hidden;
    }





    .franchise-marquee h2 {
        font-size: 22px;
    }

    .franchise-item {
        min-width: 200px;
        max-width: 200px;
    }

    .franchise-item img {
        height: 55px;
    }

    .franchise-item p {
        font-size: 12px;
    }





    /* FOOTER */
      .footer {
        padding: 30px 15px 15px;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 13px;
    }

    .whatsapp-btn {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
    }
    .footer-bottom h5{
  text-align: center;

    
}


}