=========================================
     PROFESSIONAL GLOBAL CSS
========================================= 



:root{
    --primary:#0389c6;
    --primary-dark:#036b99;
    --secondary:#292b2c;
    --text:#64748b;
    --white:#ffffff;
    --light:#f8fbff;
    --border:#e7eef7;
    --radius:22px;
    --shadow:0 10px 35px rgba(15,23,42,0.06);
    --transition:.35s ease;
}

body{
    overflow-x:hidden;
}

/* =========================================
   COMMON SECTION SPACING
========================================= */

.section-space{
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

@media(max-width:991px){

    .section-space{
        padding:65px 0;
    }
}

@media(max-width:576px){

    .section-space{
        padding:50px 0;
    }
}

/* =========================================
   COMMON HEADING
========================================= */

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading span{
    display:inline-block;
    background:#eaf6ff;
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:14px;
}

.section-heading h2{
    font-size:42px;
    font-weight:800;
    color:#000000;
    margin-bottom:14px;
    line-height:1.2;
}

.section-heading p{
    max-width:820px;
    margin:auto;
    color:var(--text);
    line-height:1.8;
    font-size:16px;
}

@media(max-width:768px){

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:15px;
    }
}

/* =========================================
   COMMON CARD
========================================= */

.modern-card{
    background:var(--white);
    border-radius:var(--radius);
    padding:28px;
    height:100%;
    transition:var(--transition);
    border:1px solid rgba(0,0,0,0.04);
    box-shadow:var(--shadow);
    position:relative;
    overflow:hidden;
}

.modern-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(3,137,198,0.12);
}

/* =========================================
   BUTTON
========================================= */

.theme-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:linear-gradient(135deg,var(--primary),#0ea5e9);
    color:#fff !important;
    padding:13px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    text-decoration:none;
    border:none;
    transition:var(--transition);
    box-shadow:0 12px 30px rgba(3,137,198,0.18);
}

.theme-btn:hover{
    transform:translateY(-3px);
}

/* =========================================
   MARQUEE
========================================= */

.top-marquee{
    background:#f3f8fc;
    padding:10px 0;
    color:#0f172a;
    font-weight:600;
    font-size:14px;
}

/* =========================================
   WHY CHOOSE SECTION
========================================= */

.why-section{
    background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:22px;
}

.why-card{
    padding:30px 24px;
}

.why-card::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--primary),#00c6ff);
}

.why-icon{
    width:68px;
    height:68px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--primary),#0ea5e9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    margin-bottom:18px;
}

.why-card h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
    color:#000000;
}

.why-card p{
    margin:0;
    color:var(--text);
    line-height:1.7;
    font-size:14px;
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section{
    background:#fff;
}

.about-content{
    padding-right:25px;
}

.about-tag{
    display:inline-block;
    background:#eaf6ff;
    color:var(--primary);
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.about-content h1{
    font-size:42px;
    font-weight:800;
    line-height:1.25;
    color:#000000;
    margin-bottom:16px;
}

.about-content h2{
    font-size:22px;
    color:var(--primary);
    margin-bottom:18px;
    font-weight:700;
}

.about-content p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:28px;
}

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.stat-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:24px;
    text-align:center;
    box-shadow:var(--shadow);
}

.stat-box h3{
    font-size:36px;
    color:var(--primary);
    margin-bottom:6px;
    font-weight:800;
}

.stat-box h6{
    margin:0;
    font-size:15px;
    color: #343a40;
}

.about-media{
    position:relative;
}

.about-img{
    width:100%;
    border-radius:28px;
    box-shadow:0 20px 55px rgba(15,23,42,0.1);
}

.floating-badge{
    position:absolute;
    top:20px;
    right:20px;
    background:linear-gradient(135deg,var(--primary),#0ea5e9);
    color:#fff;
    padding:14px 18px;
    border-radius:16px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 15px 35px rgba(3,137,198,0.2);
}

.video-card{
    position:absolute;
    left:20px;
    bottom:-30px;
    width:78%;
    border-radius:22px;
    overflow:hidden;
    border:6px solid #fff;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.video-card iframe{
    width:100%;
    height:260px;
    display:block;
}

@media(max-width:991px){

    .about-content{
        padding-right:0;
        margin-bottom:40px;
    }

    .video-card{
        position:relative;
        width:100%;
        left:0;
        bottom:0;
        margin-top:20px;
    }
}

@media(max-width:576px){

    .about-content h1{
        font-size:30px;
        color: #000000;
    }

    .about-stats{
        grid-template-columns:1fr;
    }

    .video-card iframe{
        height:220px;
    }
}

/* =========================================
   NEWS & EVENTS
========================================= */

.news-section{
    background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
}

.info-card{
    padding:30px;
}

.card-top{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:24px;
    padding-bottom:18px;
    border-bottom:1px solid var(--border);
}

.card-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--primary),#0ea5e9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.card-top h3{
    font-size:28px;
    margin-bottom:5px;
    color:#000000;
    font-weight:800;
}

.card-top p{
    margin:0;
    color:var(--text);
    font-size:14px;
}

.scroll-box{
    max-height:560px;
    overflow-y:auto;
    padding-right:5px;
}

.scroll-box::-webkit-scrollbar{
    width:5px;
}

.scroll-box::-webkit-scrollbar-thumb{
    background:rgba(3,137,198,.3);
    border-radius:20px;
}

.news-box,
.event-box{
    border:1px solid var(--border);
    border-radius:20px;
    padding:22px;
    margin-bottom:18px;
    transition:var(--transition);
    background:#fff;
}

.news-box:hover,
.event-box:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 35px rgba(3,137,198,0.08);
}

.news-title,
.event-content h5{
    font-size:18px;
    line-height:1.6;
    font-weight:700;
    color:#000000;
    margin-bottom:12px;
}

.news-title a,
.event-content h5 a{
    color:inherit;
    text-decoration:none;
}

.news-title a:hover,
.event-content h5 a:hover{
    color:var(--primary);
}

.news-meta{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    color:var(--text);
    font-size:14px;
}

.news-meta span{
    display:flex;
    align-items:center;
    gap:6px;
}

.event-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
}

.event-date{
    min-width:85px;
    height:90px;
    border-radius:18px;
    background:linear-gradient(135deg,var(--primary),#0ea5e9);
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.event-date h4{
    font-size:34px;
    margin:0;
    line-height:1;
}

.event-date span{
    font-size:14px;
}

.event-time{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#eef7ff;
    color:var(--primary);
    padding:10px 16px;
    border-radius:40px;
    font-size:13px;
    font-weight:700;
}

.button-wrap{
    margin-top:10px;
    text-align:right;
}

@media(max-width:576px){

    .info-card{
        padding:22px;
    }

    .card-top h3{
        font-size:22px;
    }

    .event-box{
        flex-direction:column;
    }

    .button-wrap{
        text-align:center;
    }
}

/* =========================================
   PREMIUM FACILITIES SECTION
========================================= */

.facilities-section{
    position:relative;
    padding:70px 0;
    overflow:hidden;
    background:
    linear-gradient(
        135deg,
        #022c3c 0%,
        #0f172a 55%,
        #042f45 100%
    );
}

/* Decorative Glow */

.facilities-section::before{
    content:'';
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(14,165,233,0.06);
    top:-120px;
    left:-100px;
    filter:blur(35px);
}

.facilities-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(3,137,198,0.05);
    bottom:-120px;
    right:-100px;
    filter:blur(35px);
}

/* =========================================
   SECTION CONTENT
========================================= */

.facilities-section .container{
    position:relative;
    z-index:2;
}

.facility-top-text{
    color:#38bdf8;
    font-size:18px;
    font-weight:700;
    line-height:1.5;
    margin-top:10px;
    margin-bottom:14px;
}

.facility-sub-text{
    max-width:850px;
    margin:auto;
    color:rgba(255,255,255,0.80);
    line-height:1.8;
    font-size:14px;
}

/* =========================================
   GRID
========================================= */

.facility-grid{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

/* =========================================
   CARD DESIGN
========================================= */

.facility-card{
    position:relative;
    background:rgba(255,255,255,0.98);
    border-radius:20px;
    padding:22px 18px;
    height:100%;
    overflow:hidden;
    transition:all .35s ease;
    border:1px solid rgba(255,255,255,0.14);

    box-shadow:
    0 8px 24px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.04);

    text-align:center;
}

/* Hover */

.facility-card:hover{
    transform:translateY(-6px);
    box-shadow:
    0 16px 35px rgba(3,137,198,0.15),
    0 8px 20px rgba(0,0,0,0.08);
}

/* Top Border */

.facility-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(
        90deg,
        #0389c6,
        #0ea5e9,
        #38bdf8
    );
}

/* Background Overlay */

.facility-card::after{
    content:'';
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0) 0%,
        rgba(3,137,198,0.02) 100%
    );
    pointer-events:none;
}

/* =========================================
   ICON
========================================= */

.facility-icon{
    width:58px;
    height:58px;
    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        #0389c6,
        #0ea5e9
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
    color:#fff;

    margin:0 auto 16px;

    box-shadow:
    0 10px 22px rgba(3,137,198,0.20);

    transition:all .3s ease;
}

.facility-card:hover .facility-icon{
    transform:scale(1.05);
}

/* =========================================
   TITLE
========================================= */

.facility-card h4{
    font-size:17px;
    font-weight:700;
    line-height:1.4;
    color:#0f172a;
    margin-bottom:10px;
    letter-spacing:-0.2px;
}

/* =========================================
   DESCRIPTION
========================================= */

.facility-card p{
    color:#64748b;
    line-height:1.7;
    font-size:13px;
    margin:0;
}

/* =========================================
   LAST CARD
========================================= */

.last-card{
    grid-column:span 5;
    text-align:center;
    padding:30px 25px;
}

.last-card .facility-icon{
    margin:auto auto 18px;
}

.last-card h4{
    font-size:24px;
}

.last-card p{
    max-width:750px;
    margin:auto;
    font-size:14px;
}

/* =========================================
   SECTION HEADING
========================================= */

.facilities-section .heading_s1 h2{
    color:#ffffff;
    font-size:38px;
    font-weight:800;
    margin-bottom:10px;
    letter-spacing:-1px;
}

.facilities-section .small_divider{
    background:#38bdf8;
    width:70px;
    height:4px;
    margin:20px auto 0;
    border-radius:50px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1199px){

    .facility-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .last-card{
        grid-column:span 4;
    }
}

@media(max-width:991px){

    .facilities-section{
        padding:60px 0;
    }

    .facility-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .last-card{
        grid-column:span 3;
    }

    .facilities-section .heading_s1 h2{
        font-size:32px;
    }
}

@media(max-width:768px){

    .facility-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .last-card{
        grid-column:span 2;
    }

    .facility-card{
        padding:20px 16px;
    }

    .facility-icon{
        width:52px;
        height:52px;
        font-size:22px;
    }

    .facility-card h4{
        font-size:16px;
    }
}

@media(max-width:576px){

    .facilities-section{
        padding:50px 0;
    }

    .facility-grid{
        grid-template-columns:1fr;
    }

    .last-card{
        grid-column:span 1;
    }

    .facilities-section .heading_s1 h2{
        font-size:26px;
    }

    .facility-card{
        padding:20px;
    }

    .facility-card p{
        font-size:13px;
    }
}

/* =========================================
   BLOG SECTION
========================================= */

.blog-section{
    background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
    position:relative;
}

/* =========================================
   BLOG CARD
========================================= */

.blog-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 10px 35px rgba(15,23,42,0.06);
    transition:0.35s ease;
    display:flex;
    flex-direction:column;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(3,137,198,0.12);
}

/* =========================================
   IMAGE
========================================= */

.blog-img{
    position:relative;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.4s ease;
}

.blog-card:hover .blog-img img{
    transform:scale(1.06);
}

/* =========================================
   DATE BADGE
========================================= */

.blog-date{
    position:absolute;
    top:18px;
    left:18px;
    width:75px;
    height:78px;
    background:linear-gradient(135deg,#0389c6,#0ea5e9);
    border-radius:18px;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(3,137,198,0.25);
}

.blog-date h5{
    margin:0;
    font-size:28px;
    font-weight:800;
    line-height:1;
    color:#fff;
}

.blog-date span{
    font-size:13px;
    font-weight:600;
}

/* =========================================
   CONTENT
========================================= */

.blog-content{
    padding:28px;
    flex:1;
}

/* Meta */

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:16px;
    font-size:13px;
    color:#64748b;
}

.blog-meta span{
    display:flex;
    align-items:center;
    gap:7px;
}

/* Title */

.blog-content h4{
    font-size:22px;
    line-height:1.5;
    font-weight:700;
    margin-bottom:14px;
}

.blog-content h4 a{
    text-decoration:none;
    color:#0f172a;
    transition:0.3s ease;
}

.blog-content h4 a:hover{
    color:#0389c6;
}

/* Description */

.blog-content p{
    color:#64748b;
    line-height:1.8;
    font-size:15px;
    margin-bottom:24px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .blog-img img{
        height:230px;
    }

    .blog-content{
        padding:22px;
    }

    .blog-content h4{
        font-size:20px;
    }
}

@media(max-width:576px){

    .blog-img img{
        height:210px;
    }

    .blog-meta{
        gap:12px;
        font-size:12px;
    }

    .blog-content h4{
        font-size:18px;
    }

    .blog-content p{
        font-size:14px;
    }
}

/* =========================================
   MODERN ENQUIRY SECTION
========================================= */

.modern-enquiry-section{
    position:relative;
    padding:60px 0;
    overflow:hidden;
    background:linear-gradient(135deg,#032b3a 0%,#0f172a 100%);
}

/* Background Shapes */

.shape{
    position:absolute;
    border-radius:50%;
    opacity:.06;
}

.shape-one{
    width:240px;
    height:240px;
    background:#0ea5e9;
    top:-70px;
    left:-70px;
}

.shape-two{
    width:220px;
    height:220px;
    background:#ffffff;
    bottom:-80px;
    right:-80px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.enquiry-content{
    position:relative;
    z-index:2;
}

.mini-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(255,255,255,0.12);
    color:#fff;
    font-size:12px;
    font-weight:700;
    margin-bottom:16px;
}

.enquiry-content h2{
    font-size:40px;
    line-height:1.25;
    font-weight:800;
    color:#fff;
    margin-bottom:14px;
}

.enquiry-content h2 span{
    color:#38bdf8;
}

.enquiry-content p{
    color:rgba(255,255,255,0.78);
    line-height:1.7;
    margin-bottom:22px;
    font-size:15px;
}

/* =========================================
   FEATURES
========================================= */

.feature-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:24px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    font-size:14px;
    font-weight:600;
}

.feature-item i{
    color:#38bdf8;
    font-size:16px;
}

/* =========================================
   FORM CARD
========================================= */

.enquiry-form-card{
    background:#fff;
    border-radius:22px;
    padding:26px;
    box-shadow:0 18px 45px rgba(0,0,0,0.16);
}

/* Inputs */

.modern-input{
    height:52px;
    border-radius:14px;
    border:1px solid #dbe7f3;
    padding:0 16px;
    font-size:14px;
    box-shadow:none !important;
    transition:0.3s ease;
}

textarea.modern-input{
    height:auto;
    padding-top:14px;
}

.modern-input:focus{
    border-color:#0389c6;
    box-shadow:0 0 0 4px rgba(3,137,198,0.10) !important;
}

/* Button */

.submit-btn{
    width:100%;
    height:52px;
    border-radius:14px;
    font-size:15px;
}

/* =========================================
   RIGHT IMAGE
========================================= */

.enquiry-image{
    position:relative;
    text-align:center;
}

.enquiry-image img{
    max-width:82%;
    animation:floatY 4s ease-in-out infinite;
}

/* Floating Card */

.floating-card{
    position:absolute;
    right:10px;
    bottom:20px;
    background:#fff;
    padding:16px 18px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,0.18);
    max-width:220px;
    text-align:left;
}

.floating-card h4{
    font-size:28px;
    font-weight:800;
    color:#0389c6;
    margin-bottom:4px;
}

.floating-card p{
    margin:0;
    color:#64748b;
    line-height:1.5;
    font-size:13px;
}

/* =========================================
   FLOATING ANIMATION
========================================= */

@keyframes floatY{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .modern-enquiry-section{
        padding:50px 0;
    }

    .enquiry-content h2{
        font-size:34px;
    }

    .enquiry-image{
        margin-top:25px;
    }

    .enquiry-image img{
        max-width:70%;
    }

    .floating-card{
        right:0;
        bottom:0;
    }
}

@media(max-width:576px){

    .modern-enquiry-section{
        padding:40px 0;
    }

    .enquiry-content h2{
        font-size:28px;
    }

    .feature-list{
        grid-template-columns:1fr;
        gap:10px;
    }

    .enquiry-form-card{
        padding:20px;
        border-radius:18px;
    }

    .modern-input{
        height:50px;
        font-size:14px;
    }

    .enquiry-image img{
        max-width:100%;
    }

    .floating-card{
        position:relative;
        margin:18px auto 0;
        max-width:100%;
    }
}

/* =========================================
   MODERN GALLERY SECTION
========================================= */

.modern-gallery-section{
    padding:60px 0;
    background:#f8fbff;
}

/* =========================================
   GALLERY CARD
========================================= */

.gallery-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    transition:0.35s ease;
    height:100%;
    box-shadow:0 10px 35px rgba(15,23,42,0.06);
    border:1px solid rgba(0,0,0,0.04);
}

.gallery-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(3,137,198,0.12);
}

/* =========================================
   IMAGE
========================================= */

.gallery-img{
    position:relative;
    overflow:hidden;
}

.gallery-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.4s ease;
}

.gallery-card:hover .gallery-img img{
    transform:scale(1.08);
}

/* =========================================
   OVERLAY
========================================= */

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(3,137,198,0.72);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.35s ease;
}

.gallery-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff;
    color:#0389c6;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    text-decoration:none;
    transform:scale(0.8);
    transition:0.3s ease;
}

.gallery-card:hover .gallery-icon{
    transform:scale(1);
}

/* =========================================
   CONTENT
========================================= */

.gallery-content{
    padding:18px;
    text-align:center;
}

.gallery-content h5{
    font-size:17px;
    font-weight:700;
    color:#0f172a;
    margin:0;
    line-height:1.5;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .gallery-img img{
        height:220px;
    }
}

@media(max-width:576px){

    .modern-gallery-section{
        padding:45px 0;
    }

    .gallery-img img{
        height:200px;
    }

    .gallery-content{
        padding:15px;
    }

    .gallery-content h5{
        font-size:15px;
    }
}

/* =========================================
   MODERN TESTIMONIAL SECTION
========================================= */

.modern-testimonial-section{
    padding:65px 0;
    background:linear-gradient(180deg,#f8fbff 0%,#eef5ff 100%);
    position:relative;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card{
    background:#fff;
    border-radius:26px;
    padding:30px;
    box-shadow:0 10px 35px rgba(15,23,42,0.06);
    border:1px solid rgba(0,0,0,0.04);
    transition:0.35s ease;
    height:100%;
    position:relative;
    overflow:hidden;
}

.testimonial-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0389c6,#0ea5e9);
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(3,137,198,0.12);
}

/* =========================================
   TOP AREA
========================================= */

.testimonial-top{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
}

/* Image */

.testimonial-img img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #eef7ff;
}

/* User */

.testimonial-user h4{
    font-size:20px;
    font-weight:700;
    margin-bottom:5px;
    color:#0f172a;
}

.testimonial-user span{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    background:#eef7ff;
    color:#0389c6;
    font-size:12px;
    font-weight:700;
}

/* =========================================
   CONTENT
========================================= */

.testimonial-content p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
    margin:0;
}

/* =========================================
   OWL DOTS
========================================= */

.owl-dots{
    text-align:center;
    margin-top:35px;
}

.owl-dots .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:#cbd5e1 !important;
    border-radius:50%;
    display:block;
    transition:0.3s ease;
}

.owl-dots .owl-dot.active span{
    width:34px;
    border-radius:30px;
    background:#0389c6 !important;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .modern-testimonial-section{
        padding:55px 0;
    }

    .testimonial-card{
        padding:25px;
    }
}

@media(max-width:576px){

    .modern-testimonial-section{
        padding:42px 0;
    }

    .testimonial-top{
        flex-direction:column;
        text-align:center;
    }

    .testimonial-user h4{
        font-size:18px;
    }

    .testimonial-content p{
        font-size:14px;
        line-height:1.8;
    }

    .testimonial-card{
        padding:22px;
        border-radius:22px;
    }
}