
       body {
    font-family: 'Times New Roman', Times, serif;
}

html, body {
  overflow-x: hidden;
}

/* HERO */
.luxury-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(
        120deg,
        #ffffff,
        #e6f4f5,
        #006d77
    );
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.banner-img{
  width:100%;
  height:auto;
}
@media (max-width:768px){
  .banner-img{
    height:250px;
  }
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Badge */
.luxury-badge {
    background: rgba(198,167,94,0.15);
    color: #c6a75e;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Heading */
.hero-left h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.gold {
    color:#2dd4bf;
}

.hero-left h3 {
    margin: 15px 0;
    font-weight: 600;
    color: #006d77;
}

.hero-left p {
    color: #444;
    margin-bottom: 30px;
}

/* Buttons */
.btn-gold {
    background: #c6a75e;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    margin-right: 10px;
    box-shadow: 0 10px 25px rgba(198,167,94,0.4);
    transition: 0.4s;
}

.btn-gold:hover {
    transform: translateY(-4px);
    background: #b8954d;
}

.btn-outline-luxury {
    border: 2px solid #006d77;
    color: #006d77;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.4s;
}

.btn-outline-luxury:hover {
    background: #006d77;
    color: white;
    transform: translateY(-4px);
}

/* Image Card */
.image-card {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: float 4s ease-in-out infinite;
}

.image-card img {
    width: 100%;
    border-radius: 15px;
}

/* Glow */
.luxury-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(198,167,94,0.2);
    filter: blur(120px);
    top: -100px;
    right: -100px;
}

/* Floating animation */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Responsive */
@media(max-width:768px){
    .hero-left h1 {
        font-size: 34px;
    }

    .hero-right {
        margin-top: 40px;
    }

    .luxury-hero {
        background: #ffffff;
    }
}

.wave-divider {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 120px;
}
.parallax-circle {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(198,167,94,0.15);
    border-radius: 50%;
    filter: blur(120px);
    transition: transform 0.2s ease-out;
}

@media (max-width: 991px) {

    .luxury-hero {
        text-align: center;
        padding: 100px 20px 140px;
    }

    .hero-left {
        margin-bottom: 40px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-gold,
    .btn-outline-luxury {
        width: 80%;
        max-width: 280px;
    }

    .image-card {
        max-width: 350px;
        margin: auto;
    }

}


@media (max-width: 576px) {

    .luxury-hero {
        padding: 80px 15px 120px;
         background: linear-gradient(
        120deg,
        #ffffff,
        #e6f4f5,
        #006d77
    );/* Remove heavy gradient on small devices */
        animation: none;
    }

    .luxury-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .image-card {
        padding: 15px;
        animation: none;
    }

    .wave-divider svg {
        height: 80px;
    }

}

@media (min-width: 1400px) {

    .luxury-hero .container {
        max-width: 1300px;
    }

    .hero-left h1 {
        font-size: 60px;
    }

}

.about-modern {
    padding: 50px 0;
    background: linear-gradient(135deg, #ffffff, #f4fbfb);
}

/* Tag */
.section-tag {
    background: rgba(0,109,119,0.1);
    color: #006d77;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Heading */
.about-left h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
}

.highlight {
    color: #c6a75e;
}

.about-left p {
    color: #555;
    margin-bottom: 30px;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 40px;
}

.about-stats h3 {
    color: #c6a75e;
    font-weight: 700;
}

.about-stats span {
    font-size: 14px;
    color: #666;
}

/* Doctor Cards */
.doctor-card {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,109,119,0.2);
}

.doctor-card img {
    width: 230px;
    height: 230px;
    object-fit: contain;   /* changed */
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #006d77;
    background: #fff;      /* prevents empty transparent gaps */
    padding: 6px;          /* optional small spacing */
}
.doctor-card h5 {
    font-weight: 700;
}

.designation {
    color: #c6a75e;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.service-hero{
    position: relative;
    height: 50vh;
    min-height: 200px;

    background: url("./img/banner-footer.jpeg") center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* Dark overlay for readability */
.hero-overlay{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    
}

/* Content */
.hero-content{
    position: relative;
    z-index: 2;
    color: white;
}

/* Title */
.service-title{
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
   color: #c6a75e;
}

/* Subtitle */
.service-subtitle{
    font-size: 20px;
    opacity: 0.9;
}


@media (max-width:576px){

.service-hero{
    height:30vh;
    min-height:200px;
    padding:0 15px;
}

.service-title{
    font-size:30px;
    line-height:1.2;
}

.service-subtitle{
    font-size:15px;
}

}


.services-modern {
    padding: 20px 0;
    background: linear-gradient(135deg, #e0f7f7, #ffffff);
}

/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #c6a75e;
    
}

/* Service Card */
.service-card {
    background: linear-gradient(135deg, #e0f7f7, #ffffff);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
   
}

/* Gradient Border Effect */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #e0f7f7, #ffffff);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Top Icon */
.service-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #6b5a5e;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.service-icon-link:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Service Image */
.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

/* Title */
.service-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: #6b5a5e;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,198,255,0.2);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #2dd4bf, #00c6ff);
}


@media(max-width:768px){
    .services-modern {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-img {
        height: 140px;
    }
}

@media(max-width:576px){
    .service-card {
        padding: 20px;
    }

    .service-img {
        height: 120px;
    }

    .service-icon-link {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .read-more-btn {
        font-size: 12px;
        padding: 6px 18px;
    }
    .section-title{
        font-size: 22px;
    }
}

.wave-divider,
.parallax-circle,
.luxury-glow {
    pointer-events: none;
}

.service-card{
    perspective:1000px;
    margin-bottom:30px;
}

.card-inner{
    position:relative;
    width:100%;
    height:320px;
    transition:transform 0.7s;
    transform-style:preserve-3d;
}

.service-card:hover .card-inner{
    transform:rotateY(180deg);
}

.card-front,
.card-back{
    position:absolute;
    width:100%;
    height:100%;
    backface-visibility:hidden;
    border:3px solid #6b5a5e;
    background:#fff;
}

.card-front img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-bottom{
    background:#6b5a5e;
    color:#fff;
    text-align:center;
    padding-top:40px;
    height:120px;
    position:relative;
}

.circle-icon{
    position:absolute;
    top:-25px;
    left:50%;
    transform:translateX(-50%);
    width:50px;
    height:50px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid #6b5a5e;
}

.circle-icon i{
    color:#6b5a5e;
}

.card-back{
    background:#6b5a5e;
    color:#fff;
    transform:rotateY(180deg);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.read-more{
    display:inline-block;
    margin-top:10px;
    padding:8px 18px;
    background:#fff;
    color:#6b5a5e;
    text-decoration:none;
    border-radius:4px;
}
/* Animation */
.about-modern {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .about-left {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-stats {
        justify-content: center;
    }

}

.about-modern {
    padding: 100px 0;
    position: relative;
   background: linear-gradient(135deg, #ffffff, #f4fbfb);
    overflow: hidden;
}

/* Subtle Background Pattern Texture */
.about-modern::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0,109,119,0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
    top: 0;
    left: 0;
    z-index: 0;
}

.about-modern .container {
    position: relative;
    z-index: 1;
}

/* Doctor Card */
.doctor-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.doctor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,109,119,0.2);
}

/* Read More Button */
.read-btn {
    margin-top: 15px;
    background: #006d77;
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    transition: 0.3s ease;
}

.read-btn:hover {
    background: #c6a75e;
    color: #fff;
    transform: translateY(-3px);
}

/* Wave Divider */
.about-wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    line-height: 0;
}

.about-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* Responsive */
@media(max-width:768px){
    .about-modern {
        padding: 70px 20px;
    }

    .about-wave svg {
        height: 80px;
    }
}

@media (max-width: 576px) {

    .about-modern {
        padding: 60px 15px;
        text-align: center;
    }

    .section-tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .about-left h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-left p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    /* Stack cards properly */
    .doctor-card {
        padding: 10px;
        border-radius: 16px;
    }

    .doctor-card img {
        width: 220px;
        height: 220px;
        margin-bottom: 15px;
    }

    .doctor-card h5 {
        font-size: 16px;
    }

    .designation {
        font-size: 13px;
    }

    .doctor-card p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    /* Button adjustment */
    .read-btn {
        font-size: 12px;
        padding: 6px 18px;
    }

    /* Reduce wave height */
    .about-wave svg {
        height: 60px;
    }

    /* Reduce pattern intensity */
    .about-modern::before {
        opacity: 0.2;
        background-size: 40px 40px;
    }

}


.services-modern {
    padding: 20px 0;
    background: linear-gradient(135deg, #e0f7f7, #ffffff);
}
/* Section Title */
.section-title {
    font-size: 42px;
    font-weight: 800;
   color: #c6a75e;
   
}

/* Service Card */
.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    height: 100%;
   
}

/* Gradient Border Effect */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #00c6ff, #2dd4bf);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Top Icon */
.service-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00c6ff, #2dd4bf);
    color: white;
    border-radius: 50%;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.service-icon-link:hover {
    transform: rotate(15deg) scale(1.1);
}

/* Service Image */
.service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

/* Title */
.service-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #00c6ff, #2dd4bf);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s ease;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,198,255,0.2);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #2dd4bf, #00c6ff);
}


@media(max-width:768px){
    .services-modern {
        padding: 70px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-img {
        height: 140px;
    }
}

@media(max-width:576px){
     .section-title {
        font-size: 13px;
    }
    .service-card {
        padding: 20px;
    }

    .service-img {
        height: 120px;
    }

    .service-icon-link {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .read-more-btn {
        font-size: 12px;
        padding: 6px 18px;
    }
}

.wave-divider,
.parallax-circle,
.luxury-glow {
    pointer-events: none;
}


.contact-premium {
    padding: 30px 0;
    background: #f8fcfc;
}

/* Title */
.section-title {
    font-size: 40px;
    font-weight: 800;
   color: #c6a75e;
}

.section-tag {
    background: rgba(0,109,119,0.1);
    color: #006d77;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* Contact Cards */
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 22px;
    border-radius: 18px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.contact-card i {
    font-size: 22px;
    color: #00c6ff;
    background: rgba(0,198,255,0.1);
    padding: 14px;
    border-radius: 50%;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,109,119,0.15);
}

.contact-card:hover i {
    background: linear-gradient(135deg, #00c6ff, #006d77);
    color: white;
}

/* Form Box */
.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.form-control {
    border-radius: 14px;
    padding: 12px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 0 3px rgba(0,198,255,0.1);
}

/* Button */
.contact-btn {
    background: linear-gradient(135deg, #00c6ff, #006d77);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: 0.4s;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,198,255,0.4);
}


.custom-btn {
    display: inline-block;
    text-decoration: none;
}

@media(max-width:576px){
     .section-title {
        font-size: 25px;
    }
     }