/*
Theme Name: Dr Akanksha Clinic
Author: Custom Theme
Version: 1.0
*/

body{
    margin:0;
    font-family: 'Trustindex Poppins' !important;
    background:#f4f8ff;
    color:#333;
}

/* ===== EXACT BANNER DESIGN ===== */

.hero-banner {
    width: 100%;
    height: 650px;
    background: url("https://rrmedia.co.in/Demo/wp-content/uploads/2026/04/1st-banner-1-scaled.png") no-repeat center right;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1c3c7d;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: #444;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-book {
    background: #ff5c7d;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-contact {
    background: #1a73e8;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn-book:hover,
.btn-contact:hover {
    opacity: 0.9;
}

/* Responsive */

@media(max-width: 992px){
    .hero-banner {
        height: auto;
        padding: 100px 20px;
        background-position: center;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}
.main-header{
    background:#eaf3ff;
    padding:18px 0;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#1c4a8c;
}

.main-nav ul{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}

.main-nav a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

/* Hamburger */
.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

/* ===== MOBILE ===== */
@media(max-width:992px){

    .menu-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#ffffff;
        display:none;
        box-shadow:0 5px 15px rgba(0,0,0,0.1);
    }

    .main-nav ul{
        flex-direction:column;
        padding:20px;
    }

    .main-nav ul li{
        margin-bottom:15px;
    }

    .main-nav.active{
        display:block;
    }
}
.hero-left h1{
    font-size:46px;
    font-weight:700;
    color:#1c3c7d;
    line-height:1.2;
    margin-bottom:15px;
}

.hero-left p{
    font-size:18px;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.btn-book{
    background:#ff5c7d;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.btn-contact{
    background:#1a73e8;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.hero-right{
    width:50%;
    text-align:right;
}

.hero-right img{
    max-width:100%;
    height:auto;
}

/* Responsive */
@media(max-width:992px){
    .hero-inner{
        flex-direction:column;
        text-align:center;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-right{
        margin-top:40px;
    }
}
.container{
    width:1200px;
    margin:auto;
}

header{
    background:#eaf3ff;
    padding:18px 0;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:24px;
    font-weight:700;
    color:#1c4a8c;
}

nav ul{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}

nav a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

.hero{
    background:linear-gradient(90deg,#d7ecff 60%, #ffdce7 40%);
    padding:120px 0;
}

.hero-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.hero-text h1{
    font-size:42px;
    color:#1c4a8c;
    margin-bottom:15px;
}

.hero-text p{
    font-size:18px;
    margin-bottom:25px;
}

.btn{
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    color:#fff;
    margin-right:10px;
    font-weight:600;
}

.btn-pink{ background:#ff5c8a; }
.btn-blue{ background:#1a73e8; }

.hero-image img{
    width:420px;
    border-radius:20px;
}

.section{
    padding:80px 0;
    text-align:center;
}

.section h2{
    color:#1c4a8c;
    margin-bottom:40px;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.testimonial{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

footer{
    background:#1c4a8c;
    color:#fff;
    padding:0px 0;
    text-align:center;
}

@media(max-width:992px){
    .container{width:90%;}
    .hero-flex{flex-direction:column;}
    .card-grid{grid-template-columns:repeat(2,1fr);}
    .why-grid{grid-template-columns:repeat(2,1fr);}
}
/* ===== SECOND BANNER SECTION ===== */

.about-banner{
    padding:60px 0;
    background:#f4f8ff;
}

.about-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:url("https://rrmedia.co.in/Demo/wp-content/uploads/2026/04/2nd-banner-1-scaled.png") no-repeat center;
    background-size:cover;
    border-radius:20px;
    padding:50px;
    position:relative;
}

.about-left{
    width:35%;
}

.about-left img{
    width:100%;
    border-radius:15px;
}

.about-right{
    width:39%;
	padding-bottom:30px;
}

.about-right h2{
    color:#1c3c7d;
    font-size:28px;
    margin-bottom:20px;
}

.about-list{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.about-list li{
    margin-bottom:12px;
    font-size:16px;
    position:relative;
    padding-left:28px;
}

.about-list li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:#2bb673;
    font-weight:bold;
}

.read-more-btn{
    background:#ff5c7d;
    color:#fff;
    padding:12px 24px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

/* Responsive */
@media(max-width:992px){

    .about-inner{
        flex-direction:column;
        text-align:center;
        padding:30px;
    }

    .about-left,
    .about-right{
        width:100%;
    }

    .about-left{
        margin-bottom:30px;
    }
}
/* ===== SERVICES SECTION ===== */

.services-section{
    padding:70px 0;
    background:#f4f8ff;
    text-align:center;
}

.section-title{
    font-size:28px;
    color:#1c3c7d;
    margin-bottom:40px;
    position:relative;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.service-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-decoration:none;
    color:#1c3c7d;
    box-shadow:0 6px 15px rgba(0,0,0,0.05);
    transition:0.3s ease;
    display:block;
}

.service-card img{
    width:174px;
    margin-bottom:0px;
}

.service-card h4{
    font-size:16px;
    margin:0;
}

.service-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 25px rgba(0,0,0,0.1);
}

/* Responsive */
@media(max-width:992px){
    .services-grid{
        grid-template-columns:repeat(1,1fr);
    }
}
.full-width-image{
    width:100%;
    margin:0;
    padding:0;
}

.full-width-image img{
    width:100%;
    height:auto;
    display:block;
}
@media (max-width: 768px){

    .section-title:before,
    .section-title:after{
        display: none;
    }

}