:root {
    --black: #111;
    --gray: #666;
    --red: #1150f0;
    --orange: #ed6a22;
    --light: #f8f8f8;
    --line: #ddd;
    --gradient: linear-gradient(90deg, #2c25bf 0%, #1150f0 100%);
    --gradient-hover: linear-gradient(90deg, #1150f0 0%, #2c25bf 100%);
    --shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Poppins, "Segoe UI", Arial, sans-serif;
    color: var(--black);
    font-size: 16px;
    line-height: 1.75;
    background: #fff;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}

a {
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}
.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}
.section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.section-top {
    padding-top: 135px;
}
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1 {
    font-size: clamp(34px, 4.3vw, 58px);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 18px;
}
h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    font-weight: 300;
    margin-bottom: 20px;
}
h3 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 500;
}
p {
    color: var(--black);
}
.center {
    text-align: center;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    min-height: 52px;
    padding: 11px 26px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--gradient);
    cursor: pointer;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}
.btn::after {
    content: "›";
    font-size: 26px;
    margin-left: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: 0.25s;
}
.btn:hover {
    background: var(--gradient-hover);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.btn:hover::after {
    margin-left: 10px;
    opacity: 1;
    transform: translateX(0);
}
.btn-light {
    background: #fff;
    color: var(--red);
}

.site-header {
    padding: 5px 0;
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    background: rgba(187, 215, 255, 0.96);
    transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
    box-shadow: 0 2px 12px rgba(54, 54, 54, 0.17);
}
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: height 0.3s ease;
}
.site-header.scrolled .nav {
    height: 74px;
}
.brand img {
    width: 150px;
    margin-left: 30px;
    transition: width 0.3s ease;
}
.site-header.scrolled .brand img {
    width: 120px;
}
.nav-links {
    list-style: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 auto;
    padding: 0;
}
.nav-links > li > a {
    display: block;
    margin-right: 10px;
    padding: 5px 20px 0;
    font-size: 15px;
    font-weight: 700;
    transition: color 0.2s;
}
.site-header.scrolled .nav-links > li > a {
    padding-block: 24px;
}
.nav-links a:hover,
.has-menu:hover > a {
    color: var(--red);
}
.has-menu {
    position: relative;
}
.drop-menu,
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 14px 18px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 20;
}
.mega-menu {
    left: 50%;
    transform: translateX(-50%);
    width: min(880px, 90vw);
    grid-template-columns: repeat(3, 1fr);
}
.has-menu:hover .drop-menu {
    display: block;
}
.has-menu:hover .mega-menu {
    display: grid;
}
.drop-menu a,
.mega-menu a {
    padding: 7px 28px;
    font-size: 14px;
    line-height: 1.45;
    transition:
        padding 0.2s,
        color 0.2s;
}
.drop-menu a:hover,
.mega-menu a:hover {
    padding-left: 24px;
    color: var(--red);
}
.round-menu,
.nav-toggle {
    border: 0;
    background: var(--gradient);
    border-radius: 999px;
    width: 64px;
    height: 42px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    cursor: pointer;
}
.round-menu span,
.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    transition: width 0.25s;
}
.round-menu span:first-child,
.nav-toggle span:first-child {
    width: 16px;
}
.round-menu:hover span:first-child,
.nav-toggle:hover span:first-child {
    width: 25px;
}
.nav-toggle {
    display: none;
}
.side-panel {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: #fff;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
    padding: 24px;
    transform: translateX(105%);
    transition: transform 0.35s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.side-panel.open {
    transform: translateX(0);
}
.side-panel img {
    width: 160px;
    margin: 10px auto 20px;
}
.side-panel a {
    padding: 8px 4px;
    border-bottom: 1px solid #eee;
}
.panel-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: 0;
    background: none;
    font-size: 34px;
    cursor: pointer;
}



.hero-text {
    animation: textIn 0.8s ease both;
    
}
.hero-text span {
    color: var(--red);
}
.hero-text p {
    font-size: 18px;
    margin-bottom: 28px;
}

.hero-text h1 {
    margin-top: 60px;
    font-size: 75px;
}


.hero-img-1 {
    width: 100%;
    position: relative;
}

.hero-posi {
    position: absolute;
    top: 170px;
    left: 50px;
}


.slider-arrow,
.mini-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: #fff;
    color: var(--red);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}
.slider-arrow.prev {
    left: -65px;
}

/* =========================
   1400px
========================= */
@media (max-width:1400px){

    .hero{
        padding:80px 0;
    }

    .hero-text h1{
        font-size:70px;
    }

    .hero-img-1 img{
        max-width:100%;
    }

    .oval-image img{
        max-width:420px;
        width:100%;
    }

}

/* =========================
   1200px
========================= */
@media (max-width:1200px){

    .hero{
        padding:70px 0;
    }

    .hero-text h1{
        font-size:60px;
    }

    .oval-image img{
        max-width:360px;
    }

}

/* =========================
   992px
========================= */
@media (max-width:992px){

    .hero{
        padding:60px 0;
        text-align:center;
    }

    .hero-posi{
        position:static !important;
    }

    .row{
        flex-direction:column-reverse;
        align-items:center;
    }

    .hero-media{
        margin-bottom:30px;
    }

    .hero-text h1{
        font-size:52px;
    }

    .oval-image img{
        max-width:320px;
    }

}

/* =========================
   768px
========================= */
@media (max-width:768px){

    .hero{
        padding:50px 15px;
    }

    .hero-text h1{
        font-size:42px;
        line-height:1.2;
    }

    .hero-text .btn{
        padding:12px 30px;
    }

    .oval-image img{
        max-width:280px;
    }

}

/* =========================
   576px
========================= */
@media (max-width:576px){

    .hero{
        padding:40px 15px;
    }

    .hero-img-1{
        display:none;
    }


    .hero-text h1{
        font-size:34px;
        margin-top: 0;
    }

    .hero-text .btn{
        width:100%;
        text-align:center;
    }

    .oval-image img{
        margin-top: 65px;
        max-width:230px;
        margin-left: 70px;
    }

}

/* =========================
   400px
========================= */
@media (max-width:400px){

    .hero{
        padding:35px 10px;
    }

    .hero-text h1{
        font-size:28px;
    }

    .hero-text .btn{
        font-size:14px;
        padding:10px 20px;
    }

    .oval-image img{
        max-width:190px;
    }

}







.doctor-section{
    padding:50px 30px;
}

.doctor-container{
    display:flex;
    justify-content:space-between;
    gap:70px;
    background:#c5d9ff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.doctor-content{
    flex:1;
    padding:70px;
    background:linear-gradient(135deg,#78c1ef,#a2b9fe);
    color:#fff;
}

.sub-title{
    display:inline-block;
    margin-bottom:14px;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
}

.sub-title i{
    margin-right:8px;
}

.doctor-content h2{
    font-size:42px;
    margin-bottom:5px;
    line-height:1.2;
}

.doctor-content h4{
    font-size:20px;
    font-weight:500;
    margin-bottom:10px;
    color:#d9ffff;
}

.doctor-content p{
    font-size:17px;
    line-height:1.6;
    color:#eefefe;
}



.doctor-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.image-box{
    position:relative;
}

.image-box::before{
    content:"";
    position:absolute;
    width:330px;
    height:330px;
    border-radius:50%;
    background:#0b9f9b;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:0;
}

.image-box img{
    width:100%;
    max-width:430px;
    position:relative;
    z-index:2;
    border-radius:15px;
}

/* Responsive */

@media(max-width:992px){

.doctor-container{
    flex-direction:column-reverse;
}

.doctor-content{
    padding:45px;
}

.doctor-content h2{
    font-size:34px;
}

.doctor-info{
    flex-direction:column;
}

.image-box::before{
    width:250px;
    height:250px;
}

}

@media(max-width:576px){

.doctor-section{
    padding:25px;
}

.doctor-content{
    padding:30px;
}

.doctor-content h2{
    font-size:28px;
}

.doctor-image  {
    padding-bottom: 0;
}

.doctor-content h4{
    font-size:16px;
}

.doctor-content p{
    font-size:15px;
}

.btn{
    width:100%;
    text-align:center;
}

}





.stats-section{
    padding:30px 20px;
    background:linear-gradient(135deg,#86ddff,#86baff);
}


.stat-box{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:35px 25px;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    border:1px solid #e9ecef;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.icon img{
    width:75px;
    height:75px;
    margin:auto;
    border-radius:50%;
    background:#3299f4;
    padding: 10px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:20px;
}

.stat-box h1{
    font-size:42px;
    color:#003d63;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box h4{
    color:#00337b;
    font-size:17px;
    font-weight: 900;
    text-transform:uppercase;
    line-height:28px;
    letter-spacing:.5px;
}

/* =================================
   1200px
================================= */
@media (max-width:1200px){

    .stats-section{
        padding:70px 0;
    }

    .stat-box{
        padding:30px 20px;
    }

    .stat-box h1{
        font-size:42px;
    }

    .stat-box h4{
        font-size:18px;
    }

    .icon img{
        max-width:70px;
    }

}

/* =================================
   992px
================================= */
@media (max-width:992px){

    .stats-section{
        padding:60px 0;
    }

    .stats-section .row{
        row-gap:30px;
    }

    .stats-section .col-lg-3{
        width:50%;
        flex:0 0 50%;
        max-width:50%;
    }

    .stat-box{
        padding:30px 20px;
        text-align:center;
    }

    .stat-box h1{
        font-size:38px;
    }

    .stat-box h4{
        font-size:17px;
    }

}

/* =================================
   768px
================================= */
@media (max-width:768px){

    .stats-section{
        padding:50px 0;
    }

    .stats-section .row{
        row-gap:25px;
    }

    .stats-section .col-lg-3{
        width:50%;
        flex:0 0 50%;
        max-width:50%;
    }

    .stat-box{
        padding:25px 15px;
    }

    .icon img{
        max-width:60px;
    }

    .stat-box h1{
        font-size:34px;
    }

    .stat-box h4{
        font-size:16px;
    }

}

/* =================================
   576px
================================= */
@media (max-width:576px){

    .stats-section{
        padding:40px 15px;
    }

    .stats-section .col-lg-3{
        width:100%;
        flex:0 0 100%;
        max-width:100%;
    }

    .stat-box{
        padding:25px 20px;
        margin-bottom:20px;
    }

    .icon img{
        max-width:73px;
    }

    .stat-box h1{
        font-size:32px;
    }

    .stat-box h4{
        font-size:16px;
    }

}

/* =================================
   400px
================================= */
@media (max-width:400px){

    .stats-section{
        padding:35px 10px;
    }

    .stat-box{
        padding:20px 15px;
    }

    .icon img{
        max-width:50px;
    }

    .stat-box h1{
        font-size:28px;
    }

    .stat-box h4{
        font-size:15px;
    }

}




.services-2 {
    padding: 70px 0;
}

.title{
    text-align:center;
    font-size:46px;
    font-weight:800;
    color:#101828;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.service-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.service-img{
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:360px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.service-card:hover .service-img img{
    transform:scale(1.08);
}

/* =================================
   1200px
================================= */
@media (max-width:1200px){

    .services-2{
        padding:70px 0;
    }

    .services-2 .title{
        font-size:38px;
        margin-bottom:40px;
        text-align:center;
    }

    .service-card{
        margin-bottom:30px;
    }

    .service-img img{
        width:100%;
        height:auto;
        display:block;
    }

}

/* =================================
   992px
================================= */
@media (max-width:992px){

    .services-2{
        padding:60px 0;
    }

    .services-2 .row{
        row-gap:30px;
        justify-content:center;
    }

    .services-2 .col-lg-4{
        width:50%;
        flex:0 0 50%;
        max-width:50%;
    }

    .services-2 .title{
        font-size:34px;
        margin-bottom:35px;
        text-align:center;
    }

}

/* =================================
   768px
================================= */
@media (max-width:768px){

    .services-2{
        padding:50px 0;
    }

    .services-2 .col-lg-4{
        width:100%;
        flex:0 0 100%;
        max-width:100%;
    }

    .services-2 .title{
        font-size:30px;
        margin-bottom:30px;
    }

    .service-card{
        margin-bottom:25px;
    }

    .service-img img{
        width:100%;
        border-radius:10px;
    }

}

/* =================================
   576px
================================= */
@media (max-width:576px){

    .services-2{
        padding:40px 15px;
    }

    .services-2 .title{
        font-size:26px;
        line-height:1.4;
        margin-bottom:25px;
    }

    .service-card{
        margin-bottom:20px;
    }

    .service-img img{
        width:100%;
        height:auto;
    }

}

/* =================================
   400px
================================= */
@media (max-width:400px){

    .services-2{
        padding:35px 10px;
    }

    .services-2 .title{
        font-size:22px;
    }

    .service-card{
        margin-bottom:15px;
    }

}


.location-section{
    background:linear-gradient(135deg,#86ddff,#86baff);
    padding:80px 0;
}

.loca-text h2 {
   text-align: center;
   padding-bottom: 30px;
   font-weight: 700;
}

.location-list{
    background:#fff;
    border-radius:15px;
    width: fit-content;
    margin-top: 20px;
    box-shadow:0 10px 30px rgba(0, 0, 0, 0.229);
}

.location-list h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
}

.location-btn{
    background:#f3f3f3;
    padding:18px 20px;
    margin-bottom:15px;
    border-radius:10px;
    cursor:pointer;
    transition:.4s;
    font-size:22px;
    font-weight:600;
    border-left:5px solid transparent;
}

.location-btn:hover{
    background:#0d6efd;
    color:#fff;
    transform:translateX(8px);
}

.location-btn.active{
    background:#0d6efd;
    color:#fff;
    border-left:5px solid #ffc107;
}

.map-box{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.map-box-2 iframe{
    margin-top: 60px;
    width: 550px;
    height: 400px;
    border:0;
}

/* =====================================
   1200px
===================================== */
@media (max-width:1200px){

    .location-section{
        padding:70px 0;
    }

    .location-section h2{
        font-size:38px;
        margin-bottom:40px;
        text-align:center;
    }

    .location-btn{
        font-size:16px;
        padding:15px;
    }

    .map-box-2 iframe{
        width:100%;
        height:550px;
    }

}

/* =====================================
   992px (Tablet)
===================================== */
@media (max-width:992px){

    .location-section{
        padding:60px 0;
    }

    .location-section .row{
        row-gap:30px;
    }

    .location-section .col-lg-3,
    .location-section .col-lg-6{
        width:100%;
        max-width:100%;
        flex:0 0 100%;
    }

    .location-section h2{
        font-size:34px;
        text-align:center;
        margin-bottom:30px;
    }

    .location-list{
        margin-bottom:15px;
    }

    .location-btn{
        font-size:16px;
        text-align:center;
        padding:15px;
    }

   
    .map-box-2 iframe{
        width:100%;
        height:450px;
    }

}

/* =====================================
   768px (Small Tablet)
===================================== */
@media (max-width:768px){

    .location-section{
        padding:50px 15px;
    }

    .location-section h2{
        font-size:30px;
        margin-bottom:25px;
    }

    .location-btn{
        font-size:15px;
        padding:14px;
    }

    .map-box-2 iframe{
        width:100%;
        height:350px;
    }

}

/* =====================================
   576px (Mobile)
===================================== */
@media (max-width:576px){

    .location-section{
        padding:40px 15px;
    }

    .location-section h2{
        font-size:26px;
        margin-bottom:20px;
    }

    .location-list{
        margin-bottom:12px;
    }

    .location-btn{
        font-size:14px;
        padding:12px;
        line-height:1.5;
    }

    .map-box-2 iframe{
        width:100%;
        height:280px;
        border-radius:10px;
    }

}

/* =====================================
   400px (Small Mobile)
===================================== */
@media (max-width:400px){

    .location-section{
        padding:35px 10px;
    }

    .location-section h2{
        font-size:22px;
    }

    .location-btn{
        font-size:13px;
        padding:10px;
    }

    .map-box-2 iframe{
        height:240px;
    }

}











.grid-two {
    display: grid;
    grid-template-columns: 0.95fr 1.7fr;
    gap: 56px;
    align-items: center;
}
.video-card {
    position: relative;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    height: 341px;
    padding: 0;
    cursor: pointer;
    background: #000;
}
.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.video-card:hover img {
    transform: scale(1.08);
}
.play-waves {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}
.play-waves i,
.play-waves b {
    grid-area: 1 / 1;
    width: 88px;
    height: 88px;
    border-radius: 50%;
}
.play-waves i {
    border: 1px solid rgba(255, 255, 255, 0.65);
    animation: wave 2.2s linear infinite;
}
.play-waves i:nth-child(2) {
    animation-delay: 0.7s;
}
.play-waves b {
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--red);
    font-size: 16px;
    font-weight: 500;
}

.treat {
    background: #fff;
}
.card-slider {
    position: relative;
    margin-top: 30px;
    overflow: hidden;
}
.cards-track {
    display: flex;
    transition: transform 0.45s ease;
}
.treat-card {
    flex: 0 0 33.333%;
    padding: 0 20px;
    text-align: center;
}
.treat-card img {
    width: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.35s;
}
.treat-card:hover img {
    transform: scale(1.06);
}
.treat-card h3 {
    margin: 18px 0 8px;
    transition: color 0.2s;
}
.treat-card:hover h3 {
    color: var(--red);
}
.treat-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.card-slider .prev {
    left: 4px;
}

.image-round img {
    width: 100%;
    aspect-ratio: 1 / 1.14;
    object-fit: cover;
    object-position: left top;
    border-radius: 20px;
    animation: zoomout 10s ease-in-out infinite;
}
.accordion {
    margin: 22px 0;
}
.accordion button {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    margin-top: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-weight: 500;
}
.accordion button::after {
    content: "+";
    float: right;
    color: var(--red);
}
.accordion button.active::after {
    content: "−";
}
.accordion div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.accordion div p {
    margin: 12px 24px 4px;
}

.stats-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 20px;
}
.stats-box div {
    text-align: center;
    padding: 0 18px;
    border-left: 1px solid var(--line);
}
.stats-box div:first-child {
    border-left: 0;
}
.stats-box img {
    height: 56px;
    margin: 0 auto 14px;
    object-fit: contain;
}
.stats-box strong {
    display: block;
    color: var(--red);
    font-size: 31px;
    font-weight: 300;
    line-height: 1.1;
}
.stats-box strong::after {
    content: "+";
}
.stats-box p {
    margin-bottom: 0;
}

.specialties {
    background: #e8e8e8;
}
.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.special-grid article {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    min-height: 275px;
}
.special-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1.25;
    object-fit: cover;
    opacity: 0.9;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}
.special-grid article::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 65%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
}
.special-grid div {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: -36px;
    text-align: center;
    transition: bottom 0.45s ease;
}
.special-grid h3,
.special-grid span {
    color: #fff;
}
.special-grid h3 {
    margin-bottom: 30px;
}
.special-grid article:hover div {
    bottom: 48px;
}
.special-grid article:hover img {
    transform: scale(1.12);
    opacity: 0.7;
}

.latest .grid-two {
    grid-template-columns: 1fr 1fr;
}
.news-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
}
.news-card img {
    width: 100%;
    aspect-ratio: 1.55;
    object-fit: cover;
}
.news-card div {
    padding: 24px;
}
.news-card time {
    color: var(--red);
}
.news-card h3 {
    font-size: 18px;
}
.empty-blog {
    border: 1px dashed #d2d2d2;
    border-radius: 20px;
    min-height: 365px;
    background: linear-gradient(135deg, #fff, #fafafa);
}

.testimonials {
    background: var(--gradient);
    padding-bottom: 95px;
}
.testimonials h2 {
    color: #fff;
}
.story-slider {
    position: relative;
}
.story-track {
    min-height: 410px;
    position: relative;
}
.story {
    position: absolute;
    inset: 0;
    width: min(880px, 88%);
    margin: 0 auto;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 28px;
    align-items: start;
    background: #fff;
    border-radius: 20px;
    padding: 34px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    pointer-events: none;
    transition: 0.45s ease;
}
.story.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.story img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}
.story p {
    margin-bottom: 12px;
}
.story h3 {
    margin: 16px 0 0;
}
.story i {
    color: var(--gray);
}
.story-slider .prev {
    left: 8px;
}


.inquiry {
    background: #f6f6f6;
}
.inquiry-box {
    display: grid;
    grid-template-columns: 0.75fr 1.55fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}
.inquiry-box > img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: 14px;
}
.form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.form input,
.form select,
.form textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 10px 14px;
    background: #fff;
    outline: none;
}
.form textarea,
.form .btn,
.form-note {
    grid-column: 1 / -1;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--red);
}
.form .btn {
    width: fit-content;
    margin: 4px auto 0;
}
.form-note {
    text-align: center;
    color: var(--red);
    margin: 0;
}

.site-footer {
    background: #111;
    color: #fff;
    padding: 54px 0 24px;
}
.site-footer a,
.site-footer p,
.site-footer li {
    color: #fff;
}
.footer-contact {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 42px;
}
.footer-contact div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(4, 1fr);
    gap: 24px;
}
.footer-grid img {
    width: 160px;
    align-self: center;
}
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-grid li {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    margin-top: 28px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}
.pay-btn {
    position: fixed;
    right: 18px;
    bottom: 154px;
    z-index: 30;
    width: 125px;
    padding: 10px;
    text-align: center;
    border-radius: 999px;
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow);
}
.float-btn {
    position: fixed;
    right: 26px;
    z-index: 30;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: var(--shadow);
    animation: pulse 2s infinite;
}
.float-btn.call {
    bottom: 86px;
    background: var(--red);
    font-size: 27px;
}
.float-btn.whatsapp {
    bottom: 22px;
    background: #28c76f;
}
.float-btn img {
    width: 30px;
}
.modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    place-items: center;
    background: rgba(0, 0, 0, 0.78);
    padding: 24px;
}
.modal.open {
    display: grid;
}
.modal iframe {
    width: min(1000px, 92vw);
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}
.modal-close {
    position: absolute;
    top: 24px;
    right: 34px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
}

.left-reveal,
.right-reveal,
.bottom-reveal {
    transition:
        transform 1.1s ease,
        opacity 1.1s ease;
}


.bottom-reveal {
    transform: translateY(30px);
}
.reveal.visible .left-reveal,
.reveal.visible .right-reveal,
.reveal.visible .bottom-reveal {
    opacity: 1;
    transform: translate(0);
}

@keyframes zoomout {
    0%,
    100% {
        transform: scale(1.18);
    }
    50% {
        transform: scale(1);
    }
}
@keyframes textIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes wave {
    from {
        transform: scale(0.7);
        opacity: 0.9;
    }
    to {
        transform: scale(1.9);
        opacity: 0;
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 49, 0.35);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(225, 29, 49, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 49, 0);
    }
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: inline-grid;
        margin-left: auto;
    }
    .round-menu {
        width: 54px;
    }
    .hero-slide {
        gap: 26px;
    }
    .treat-card {
        flex-basis: 50%;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 15px;
    }
    .section {
        padding: 34px 0;
    }
    .section-top {
        padding-top: 108px;
    }
    .nav {
        height: 88px;
    }
    .brand img {
        width: 130px;
    }

    .hero-media {
        order: -1;
    }
    .hero-text {
        max-width: none;
    }
    .slider-arrow.prev {
        left: 2px;
    }
  
    .grid-two,
    .latest .grid-two,
    .inquiry-box {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .video-card {
        height: 296px;
    }
    .treat-card {
        flex-basis: 100%;
        padding: 0 10px;
    }
    .stats-box {
        grid-template-columns: 1fr;
        padding: 8px 20px;
    }
    .stats-box div {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 22px 0;
    }
    .stats-box div:first-child {
        border-top: 0;
    }
    .special-grid {
        grid-template-columns: 1fr;
    }
    .story-track {
        min-height: 620px;
    }
    .story {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 22px;
        text-align: center;
    }
    .story img {
        margin: 0 auto;
    }
    .story-slider .mini-arrow {
        top: 92px;
    }
    .form {
        grid-template-columns: 1fr;
    }
    .inquiry-box {
        padding: 16px;
    }
    .inquiry-box > img {
        min-height: 260px;
    }
    .footer-contact,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid img {
        display: none;
    }
    .copyright {
        flex-direction: column;
        text-align: center;
    }
}

/* blogs */

.blog-section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    color: #0a2c5e;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #00a3ff;
    font-size: 14px;
    font-weight: 600;
}

.blog-content h3 {
    margin: 15px 0;
    color: #0a2c5e;
    font-size: 22px;
}

.blog-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-btn {
    display: inline-block;
    text-decoration: none;
    background: #00a3ff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.read-btn:hover {
    background: #0a2c5e;
}

/* whatsapp form  */

.whatsapp-form {
    width: 100%;
    max-width: 700px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.whatsapp-form h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #0f766e;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0f766e;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    background: #25d366;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #1ebe5d;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* About us section */

.about-section {
    margin-top: 10%;
    margin-bottom: 6%;
}
.about-container {
    max-width: 1200px;
    margin: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-image {
    flex: 1;
    position: relative;
    animation: floatImage 4s ease-in-out infinite;
}

.about-image img {
    width: 100%;
    height: 85vh;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-content {
    flex: 1;
}

.about-subtitle {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-title {
    font-size: 42px;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    animation: slideLeft 1.5s ease;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}

.contact-info h4 {
    color: #222;
    margin-bottom: 5px;
}

.contact-info p {
    color: #666;
}

.about-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    animation: pulseBtn 2s infinite;
}

.about-btn:hover {
    background: #084298;
    transform: translateY(-5px);
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseBtn {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

@media (max-width: 991px) {
    .about-container {
        flex-direction: column;
    }

    .about-title {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .about-image img {
        width: 100%;
        height: 53vh;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
}

/* services section  */

.services-section {
    padding: 90px 8%;
    margin-top: 5%;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 42px;
    color: #222;
    margin-top: 10px;
}

.section-heading p {
    max-width: 700px;
    margin: 15px auto 0;
    color: #666;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    animation: fadeUp 1s ease forwards;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.service-card:hover .service-image img {
    transform: scale(1.15);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #222;
    margin-bottom: 12px;
    font-size: 24px;
}

.service-content p {
    color: #666;
    line-height: 1.7;
}

.view-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 25px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.view-btn:hover {
    background: #084298;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}
/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Image Effect */
.service-image img {
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}
/* ======================================
   1200px
====================================== */
@media (max-width:1200px){

   

    .grid-two{
        gap:40px;
    }

    .right-reveal h2{
        font-size:38px;
    }

    .right-reveal p{
        font-size:16px;
    }

    .video-card img{
        width:100%;
        height:auto;
    }

    .treat-card img{
        width:100%;
        height:auto;
    }

}

/* ======================================
   992px
====================================== */
@media (max-width:992px){

    .grid-two{
        display:flex;
        flex-direction:column;
        gap:35px;
        text-align:center;
    }

    .left-reveal,
    .right-reveal{
        width:100%;
    }

    .right-reveal h2{
        font-size:34px;
    }

    .right-reveal p{
        font-size:15px;
        line-height:1.8;
    }

    .video-card{
        width:100%;
    }

    .video-card img{
        width:100%;
        border-radius:12px;
    }

    .cards-track{
        gap:20px;
    }

    .treat-card{
        min-width:calc(50% - 10px);
    }

}

/* ======================================
   768px
====================================== */
@media (max-width:768px){

    .section{
        padding:60px 15px;
    }

    .right-reveal h2,
    .treat h2{
        font-size:30px;
    }

    .right-reveal p{
        font-size:15px;
    }

    .treat-card{
        min-width:100%;
    }

    .treat-card h3{
        font-size:20px;
    }

    .treat-card p{
        font-size:14px;
    }

    .mini-arrow{
        width:40px;
        height:40px;
        font-size:18px;
    }

}

/* ======================================
   576px
====================================== */
@media (max-width:576px){

    .section{
        padding:50px 15px;
    }

    .right-reveal h2,
    .treat h2{
        font-size:26px;
    }

    .right-reveal p{
        font-size:14px;
        line-height:1.7;
    }

    .video-card img{
        border-radius:10px;
    }

    .play-waves{
        transform:scale(.85);
    }

    .treat-card{
        padding:15px;
    }

    .treat-card h3{
        font-size:18px;
    }

    .treat-card p{
        font-size:14px;
    }

    .mini-arrow{
        display:none;
    }

    .btn{
        width:100%;
        text-align:center;
    }

}

/* ======================================
   400px
====================================== */
@media (max-width:400px){

    .section{
        padding:40px 10px;
    }

    .right-reveal h2,
    .treat h2{
        font-size:22px;
    }

    .right-reveal p{
        font-size:13px;
    }

    .treat-card h3{
        font-size:17px;
    }

    .treat-card p{
        font-size:13px;
    }

    .play-waves{
        transform:scale(.7);
    }

}
/* our Branches  */

.branches-section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    color: #222;
    margin: 12px 0;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

/* Branch Grid */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Card */
.branch-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    animation: fadeUp 1s ease forwards;
}

.branch-card:hover {
    transform: translateY(-10px);
}

/* Image */
.branch-img {
    overflow: hidden;
    height: 240px;
}

.branch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s;
    animation: floatImage 4s ease-in-out infinite;
}

.branch-card:hover .branch-img img {
    transform: scale(1.12);
}

/* Content */
.branch-content {
    padding: 25px;
}

.branch-content h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
}

.branch-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.branch-info {
    margin-top: 15px;
}

.branch-info p {
    margin-bottom: 8px;
}

/* Button */
.branch-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
}

.branch-btn:hover {
    background: #084298;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }

    .branch-grid {
        grid-template-columns: 1fr;
    }
}

/* 
Gallery section  */

.gallery-section {
    padding: 80px 8%;
    background: #f8fafc;
    margin-top: 5%;
}

.gallery-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-heading span {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-heading h2 {
    font-size: 42px;
    margin-top: 10px;
    color: #222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: fadeUp 1s ease forwards;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: 0.7s ease;
    animation: floatImage 4s ease-in-out infinite;
}

.gallery-item:hover img {
    transform: scale(1.12);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-heading h2 {
        font-size: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }
}

/* Contact Section */
.contact-section {
    margin-top: 5%;
    padding: 80px 8%;
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
}

.contact-heading span {
    color: #0d6efd;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-heading h2 {
    font-size: 42px;
    color: #222;
    margin-top: 10px;
}

/* Contact Info */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
    animation: fadeUp 1s ease;
}

.info-box:hover {
    transform: translateY(-8px);
}

.info-box h3 {
    color: #0d6efd;
    margin-bottom: 10px;
    font-size: 22px;
}

.info-box p,
.info-box a {
    color: #555;
    text-decoration: none;
    line-height: 1.8;
}

/* Map */
.map-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: fadeUp 1.2s ease;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .map-box iframe {
        min-height: 350px;
    }
}
