/* =========================================================
CSS VARIABLES & RESET
========================================================= */

:root {
    --primary: #005A9C;
    --primary-light: #E6F3FF;
    --secondary: #10B981;
    --dark: #1E293B;
    --gray: #64748B;
    --light-gray: #F8FAFC;
    --white: #FFFFFF;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    --transition: all 0.3s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}
/* =========================================
INNER PAGE TOP SPACING
========================================= */

.about-page,
.specialities-page,
.innovation-page,
.contact-page{
    padding-top:120px;
}

body{
    font-family:'Outfit',sans-serif;
    color:var(--dark);
    background:var(--white);
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    height:auto;
    display:block;
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 2rem;
}

/* =========================================================
BUTTONS
========================================================= */

.btn{
    display:inline-block;
    padding:0.8rem 2rem;
    border-radius:50px;
    font-weight:600;
    cursor:pointer;
    transition:var(--transition);
    border:none;
    font-size:1rem;
}

.btn-primary{
    background:var(--primary);
    color:var(--white);
    box-shadow:0 4px 14px rgba(0,90,156,0.39);
}

.btn-primary:hover{
    background:#004A80;
    transform:translateY(-2px);
}

.btn-secondary{
    background:transparent;
    border:2px solid var(--primary);
    color:var(--primary);
}

.btn-secondary:hover{
    background:var(--primary-light);
}

/* =========================================================
SECTION TITLES
========================================================= */

.section-title{
    text-align:center;
    margin-bottom:3rem;
}

.section-title h2{
    font-size:2.5rem;
    color:var(--dark);
    margin-bottom:1rem;
    font-weight:700;
}

.section-title p{
    color:var(--gray);
    font-size:1.1rem;
    max-width:700px;
    margin:auto;
}

.title-highlight{
    color:var(--primary);
}

/* =========================================================
HEADER
========================================================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(255,255,255,0.95);
    backdrop-filter:blur(10px);
    z-index:1000;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:80px;
}

.logo{
    font-size:1.5rem;
    font-weight:700;
    color:var(--primary);
    display:flex;
    align-items:center;
    gap:10px;
}

.logo i{
    color:var(--secondary);
    font-size:1.8rem;
}

.nav-links{
    display:flex;
    gap:2rem;
    align-items:center;
}

.nav-links a{
    font-weight:500;
    transition:var(--transition);
}

.nav-links a:hover{
    color:var(--primary);
}

.mobile-menu-btn{
    display:none;
    font-size:1.5rem;
    cursor:pointer;
}

/* =========================================================
NEW HERO SECTION
========================================================= */

.new-hero-section{
    background:linear-gradient(to right,#eef6ff,#f7fbff);
     padding:150px 0 110px;
    overflow:hidden;
    position:relative;
}

.new-hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.new-hero-left{
    flex:1;
    min-width:320px;
}

.new-top-badge{
    display:inline-block;
    background:#dff6ea;
    color:#08a34b;
    padding:10px 20px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.new-hero-left h1{
    font-size:52px;
    line-height:1.08;
    font-weight:800;
    color:#102542;
    margin-bottom:14px;
}

.new-hero-left h1 span{
    color:#0b67c2;
}

.new-hero-left h3{
    font-size:20px;
    color:#556;
    margin-bottom:16px;
    font-weight:500;
}

.new-special-badge{
    background:#e8f2ff;
    border:1px solid #b6d4ff;
    color:#0b67c2;
    padding:12px 18px;
    border-radius:50px;
    display:inline-block;
    font-weight:600;
    margin-bottom:18px;
    font-size:14px;
}

.new-hero-points{
    margin-bottom:35px;
}

.new-hero-points li{
    margin-bottom:10px;
    font-size:15px;
    color:#334;
    position:relative;
    padding-left:32px;
}

.new-hero-points li::before{
    content:'✔';
    position:absolute;
    left:0;
    color:#10b981;
    font-weight:bold;
}

.new-hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.hero-btn{
    padding:16px 28px;
    border-radius:50px;
    font-weight:600;
    transition:0.3s;
    display:inline-block;
}

.hero-btn-call{
    background:#0057b8;
    color:#fff;
}

.hero-btn-whatsapp{
    background:#1db954;
    color:#fff;
}

.hero-btn-book{
    border:2px solid #0057b8;
    color:#0057b8;
    background:#fff;
}

.hero-btn:hover{
    transform:translateY(-3px);
}

.new-locations{
    font-size:17px;
    color:#666;
    font-weight:500;
}

.new-hero-right{
    flex:1;
    min-width:320px;
    position:relative;
}

.new-doctor-image-box{
    position:relative;
    text-align:center;
}

.new-doctor-image{
    width:100%;
    max-width:430px;
    border-radius:30px;
}

.new-floating-box{
    position:absolute;
    background:#fff;
    padding:14px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    width:150px;
}

.new-floating-box h4{
    font-size:15px;
    color:#0057b8;
    margin-bottom:5px;
}

.new-floating-box p{
    color:#555;
    font-size:12px;
}

.new-box1{
    top:30px;
    left:-50px;
}

.new-box2{
    top:180px;
    left:-70px;
}

.new-box3{
    bottom:140px;
    right:-40px;
}

.new-box4{
    bottom:20px;
    right:-20px;
}

.new-bottom-features{
    margin-top:35px;
    background:#fff;
    border-radius:30px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.new-feature-box{
    text-align:center;
}

.new-feature-box h4{
    color:#0b67c2;
    font-size:18px;
    margin-bottom:10px;
}

.new-feature-box p{
    color:#555;
    font-size:13px;
}

/* =========================================================
STATS SECTION
========================================================= */

.stats-section{
    background:var(--white);
    padding:3rem 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:2rem;
    background:var(--white);
    padding:3rem;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
}

.stat-item{
    text-align:center;
    border-right:1px solid #E2E8F0;
}

.stat-item:last-child{
    border-right:none;
}

.stat-item h3{
    font-size:2.5rem;
    font-weight:800;
    color:var(--primary);
    margin-bottom:0.5rem;
}

.stat-item p{
    color:var(--gray);
    font-weight:500;
    font-size:1.1rem;
}

/* =========================================================
ABOUT SECTION
========================================================= */

.new-about-section{
   padding:100px 0;
    background:linear-gradient(to bottom,#f5f9ff,#ffffff);
}

.new-about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.new-about-image{
    flex:1;
    position:relative;
    min-width:320px;
}

.new-about-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
    object-fit:cover;
}

.new-experience-badge{
    position:absolute;
    bottom:20px;
    left:-20px;
    background:#0B6BCE;
    color:#fff;
    padding:20px;
    border-radius:20px;
}

.new-about-content{
    flex:1;
    min-width:320px;
}

.new-about-tag{
    display:inline-block;
    background:#e8f3ff;
    color:#0B6BCE;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.new-about-content h2{
    font-size:42px;
    color:#0D1B2A;
    margin-bottom:10px;
}

.new-about-content h3{
    font-size:22px;
    color:#0B6BCE;
    margin-bottom:25px;
}

.new-about-content p{
    font-size:15px;
    line-height:1.7;
    color:#555;
    margin-bottom:20px;
}

/* =========================================================
SERVICES
========================================================= */

.services-section{
    padding:6rem 0;
    background:var(--white);
}

.services-grid{
    display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:2.5rem;
}

.service-card{
    background:var(--white);
    padding:2.5rem;
    border-radius:20px;
    box-shadow:var(--shadow-md);
    transition:var(--transition);
    border:1px solid #F1F5F9;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,0.06);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}

.service-icon{
    width:70px;
    height:70px;
    background:var(--primary-light);
    color:var(--primary);
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    margin-bottom:1.5rem;
}

.service-card h3{
    font-size:1.5rem;
    margin-bottom:1rem;
}

.service-card p{
    color:var(--gray);
}

/* =========================================================
INNOVATION SECTION
========================================================= */
.highlight-content{
    max-width:950px;
}

.highlight-section{
    padding:100px 0;
    background:
    linear-gradient(to bottom,#f8fbff,#ffffff);
}

.invention-btn{
    min-width:220px;
    text-align:center;
}

.invention-right img{
    max-width:460px;
    margin:auto;
}
/* =========================================
BLOG CARD
========================================= */

.about-blog-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    margin-top:50px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    text-align:left;
}

.blog-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#e7fff6;
    color:#10b981;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.about-blog-card h3{
    font-size:42px;
    line-height:1.2;
    color:#082c4e;
    margin-bottom:25px;
    font-weight:800;
}

.about-blog-card .highlight{
    color:#0B6BCE;
}

.about-blog-card p{
    font-size:17px;
    line-height:1.9;
    color:#5b6777;
    margin-bottom:22px;
}

.blog-feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:40px 0;
}

.blog-feature{
    background:#f7fbff;
    padding:20px;
    border-radius:18px;
    display:flex;
    gap:14px;
    align-items:flex-start;
}

.blog-feature i{
    color:#10b981;
    margin-top:4px;
}

.blog-feature span{
    color:#334155;
    line-height:1.7;
    font-weight:500;
}

.blog-cta{
    margin-top:40px;
    padding:35px;
    background:linear-gradient(135deg,#0B6BCE,#082c4e);
    border-radius:24px;
    color:#fff;
    text-align:center;
}

.blog-cta h4{
    font-size:28px;
    margin-bottom:15px;
}

.blog-cta p{
    color:rgba(255,255,255,0.85);
}

@media(max-width:768px){

    .about-blog-card{
        padding:30px;
    }

    .about-blog-card h3{
        font-size:30px;
    }

    .blog-feature-grid{
        grid-template-columns:1fr;
    }

    .blog-cta{
        padding:25px;
    }
}

.invention-section{
    min-height:auto;
    display:flex;
    align-items:center;
    position:relative;
    padding:90px 0;
    overflow:hidden;
    background:radial-gradient(circle at top right,#123a75,#020817 60%);
}

.invention-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to right, rgba(2,8,23,0.95), rgba(2,8,23,0.55));
}

.invention-container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.invention-left{
    color:#fff;
}

.invention-tag{
    color:#38bdf8;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
}

.invention-left h2{
    font-size:56px;
    line-height:1.1;
    margin:20px 0;
    font-weight:800;
}
.innovation-divider{
    height:120px;
    background:linear-gradient(to bottom,#ffffff,#1E293B);
}
.invention-left p{
    font-size:18px;
    line-height:1.8;
    color:#cbd5e1;
}

.invention-buttons{
    display:flex;
    gap:20px;
    margin-top:35px;
}

.invention-btn{
    padding:16px 32px;
    border-radius:14px;
    font-weight:600;
    transition:0.3s;
}

.invention-primary{
    background:#0ea5e9;
    color:#fff;
}

.invention-secondary{
    border:1px solid #38bdf8;
    color:#38bdf8;
}

.invention-right img{
    width:100%;
    max-width:520px;
    border-radius:30px;
}

/* =========================================================
CONTACT
========================================================= */

.contact-section{
    padding:6rem 0;
    background:var(--light-gray);
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
}

.contact-info-card{
    background:var(--white);
    padding:2rem;
    border-radius:15px;
    box-shadow:var(--shadow-md);
    margin-bottom:1.5rem;
    display:flex;
    gap:1.5rem;
}

.contact-icon{
    width:60px;
    height:60px;
    background:var(--primary-light);
    color:var(--primary);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:1.5rem;
    flex-shrink:0;
}

.contact-form{
    background:var(--white);
    padding:3rem;
    border-radius:20px;
    box-shadow:var(--shadow-lg);
}

.form-group{
    margin-bottom:1.5rem;
}

.form-control{
    width:100%;
    padding:1rem 1.5rem;
    border:1px solid #E2E8F0;
    border-radius:10px;
    font-family:inherit;
    font-size:1rem;
    background:var(--light-gray);
}

.form-control:focus{
    outline:none;
    border-color:var(--primary);
    background:#fff;
}

textarea.form-control{
    resize:vertical;
    min-height:150px;
}

/* =========================================================
FOOTER
========================================================= */
.footer-grid{
    align-items:flex-start;
}

footer{
    background:var(--dark);
    color:var(--white);
    padding:5rem 0 2rem;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:3rem;
    margin-bottom:3rem;
}

.footer-about p{
    color:#94A3B8;
}

.footer-links h4{
    margin-bottom:1rem;
}

.footer-links ul li{
    margin-bottom:1rem;
}

.footer-links ul li a{
    color:#94A3B8;
    transition:0.3s;
}

.footer-links ul li a:hover{
    color:#fff;
}

.footer-bottom{
    text-align:center;
    padding-top:2rem;
    border-top:1px solid rgba(255,255,255,0.1);
    color:#94A3B8;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .invention-container{
        grid-template-columns:1fr;
        text-align:center;
    }
}

@media(max-width:768px){

    .nav-links{
        display:none;
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:2rem;
        box-shadow:var(--shadow-md);
    }

    .nav-links.active{
        display:flex;
    }

    .mobile-menu-btn{
        display:block;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .new-bottom-features{
        grid-template-columns:1fr 1fr;
    }

    .new-hero-left h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:2rem;
    }
}

@media(max-width:600px){

    .new-bottom-features{
        grid-template-columns:1fr;
    }

    .new-hero-buttons{
        flex-direction:column;
    }

    .hero-btn{
        width:100%;
        text-align:center;
    }

    .new-hero-left h1{
        font-size:34px;
    }

    .invention-left h2{
        font-size:36px;
    }

    .contact-form{
        padding:2rem;
    }
}

/* =========================================
FEATURED TREATMENT CARD
========================================= */

.featured-treatment-card{
    position:relative;
    background:linear-gradient(135deg,#0B6BCE,#082c4e);
    color:#fff !important;
    overflow:hidden;
    border:none;
}

.featured-treatment-card::before{
    content:'';
    position:absolute;
    top:-60px;
    right:-60px;
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
}

.featured-treatment-card .service-icon{
    background:rgba(255,255,255,0.15);
    color:#fff;
}

.featured-treatment-card h3{
    color:#fff;
}

.featured-treatment-card p{
    color:rgba(255,255,255,0.85);
}

.featured-badge{
    display:inline-block;
    background:#10b981;
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.featured-treatment-footer{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-top:20px;
}

.featured-treatment-footer span{
    background:rgba(255,255,255,0.12);
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.featured-link{
    margin-top:25px;
    font-weight:700;
    color:#fff;
    font-size:15px;
}

.social-links { display: flex; gap: 1rem; }
        .social-links a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); display: flex; justify-content: center; align-items: center; border-radius: 50%; color: var(--white); transition: var(--transition); }
        .social-links a:hover { background: var(--primary); transform: translateY(-3px); }
       

        .home-innovation-preview{
    padding:90px 0;
    background:#fff;
}

.home-innovation-preview .section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.section-badge{
    display:inline-block;
    background:#E8FFF4;
    color:#10B981;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:16px;
}

.home-innovation-preview .invention-container{
    background:#081B3A;
    border-radius:30px;
    overflow:hidden;
    padding:60px;
}

.home-innovation-preview .invention-left h2{
    color:#fff;
}

.home-innovation-preview .invention-left p{
    color:rgba(255,255,255,.8);
}

.home-innovation-preview .invention-features div{
    color:#fff;
}

.home-innovation-preview .invention-right img{
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

@media(max-width:768px){

    .home-innovation-preview .invention-container{
        padding:30px;
    }

}


/*===================================seo pages=============================== */

.speciality-hero{
    padding-bottom:80px;
}

.hero-desc{
    font-size:18px;
    color:var(--gray);
    line-height:1.8;
    margin:20px 0;
}

.info-card{
    background:#fff;
    padding:60px;
    border-radius:30px;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.about-piles-section{
    padding:30px 0 80px;
}

.laser-benefits-section{
    padding:80px 0;
}

.laser-benefits-box{
    background:#031a47;
    border-radius:30px;
    padding:60px;
    color:#fff;
}

.laser-left h2{
    color:#fff;
    margin-bottom:20px;
}

.laser-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:40px;
}

.laser-card{
    background:rgba(255,255,255,.08);
    padding:25px;
    border-radius:16px;
    font-weight:600;
}

.doctor-section{
    padding:80px 0;
}

.doctor-card{
    background:#fff;
    border-radius:30px;
    padding:60px;
    box-shadow:0 15px 50px rgba(0,0,0,.05);
}

.doctor-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.timeline-section{
    padding:80px 0;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.timeline-item{
    background:#fff;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.faq-section{
    padding:80px 0;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.final-cta{
    padding:80px 0;
}

.cta-box{
    background:linear-gradient(135deg,#031a47,#0b4db3);
    color:#fff;
    text-align:center;
    padding:70px;
    border-radius:30px;
}

.cta-box h2{
    color:#fff;
}

.cta-buttons{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:20px;
}

@media(max-width:768px){

    .info-card,
    .doctor-card,
    .laser-benefits-box,
    .cta-box{
        padding:30px;
    }

    .laser-grid,
    .doctor-features,
    .timeline{
        grid-template-columns:1fr;
    }

    .cta-buttons{
        flex-direction:column;
    }

}