/* ==========================================
   Clinic Digital Marketing
   Main Stylesheet
   Version: 1.0
   Developer: Rumman Ahmed Siddiqui
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#ffffff;
    color:#1f2937;
    overflow-x:hidden;
}
/* ==========================================
   Global Variables
========================================== */

:root{

    /* Colors */
    --primary-color:#0F4C81;
    --secondary-color:#00B4D8;
    --accent-color:#22C55E;
    --dark-color:#1F2937;
    --light-color:#F8FAFC;
    --white-color:#FFFFFF;
    --text-color:#4B5563;
    --border-color:#E5E7EB;

    /* Border Radius */
    --border-radius:12px;

    /* Transition */
    --transition:0.3s ease;

}
/* ==========================================
   Header
========================================== */

.main-header{
    background: var(--white-color);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);

    top: 0;
    z-index: 999;
}

.navbar-brand{
    display:flex;
    align-items:center;
    text-decoration:none;
    transition:var(--transition);
}


.header-logo{
    width:260px;
    height:auto;
    display:block;
    transition:var(--transition);
}

.navbar-brand:hover .header-logo{
    transform:scale(1.02);
}

/* Navigation Menu */

.nav-link{
    font-size:16px;
    font-weight:500;
    color:var(--dark-color);
    margin-left:25px;
    transition:var(--transition);
}

.nav-link:hover{
    color:var(--primary-color);
}

.nav-link.active{
    color:var(--primary-color);
    font-weight:600;
}
/* ==========================================
   Consultation Button
========================================== */

.consultation-btn{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 15px;
    font-weight: 600;
    margin-left: 30px;
    transition: var(--transition);
    white-space: nowrap;
}

.consultation-btn:hover{
    background: var(--secondary-color);
    color: var(--white-color);
}
/* ==========================================
   Hero Section
========================================== */

[data-aos=fade-right] {
    /* transform: translate3d(-100px, 0, 0); */
    margin-top: -100px !important;
}

.hero-section{
    padding:100px 0;
    min-height:100vh;
    display:flex;

    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at 80% 25%, rgba(0,180,216,.18), transparent 220px),
    radial-gradient(circle at 15% 70%, rgba(15,76,129,.08), transparent 280px),
    #F8FAFC;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:rgba(230,244,255,.85);
    color:var(--primary-color);

    position:relative;
    overflow:hidden;

    padding:12px 22px;
    border-radius:50px;

    font-size:15px;
    font-weight:600;

    margin-bottom:25px;

    border:1px solid rgba(15,76,129,.15);

    box-shadow:0 10px 30px rgba(15,76,129,.10);

    transition:.4s;
}

.hero-tag::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );

    animation:tagShine 3.5s linear infinite;

}

.hero-tag:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(15,76,129,.18);
}

.hero-tag i{

    font-size:18px;

    color:#0F4C81;

    animation:shieldPulse 2.5s ease-in-out infinite;
    filter:drop-shadow(0 0 6px rgba(0,180,216,.35));

}

.hero-title{
    font-size:56px;
    font-weight:800;
    line-height:1.2;
    color:var(--dark-color);
    margin-bottom:20px;
}

.gradient-text{

    display:inline-block;

    background:linear-gradient(90deg,#0F4C81,#00B4D8);

    background-size:200% auto;
    
    animation:gradientMove 6s linear infinite;

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    background-clip:text;

}

.gradient-text2 {
    display: inline-block;
    background: linear-gradient(90deg, #80bdf3, #ffffff);
    background-size: 200% auto;
    animation: gradientMove 6s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description{
    font-size:18px;
    line-height:1.8;
    color:var(--text-color);
    max-width:550px;
}
/* ==========================================
   Hero Buttons
========================================== */

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    background:var(--primary-color);
    color:var(--white-color);
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:all .35s ease;
}

.hero-btn-primary:hover{
    background:var(--secondary-color);
    color:var(--white-color);
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(15,76,129,.25);
}

.hero-btn-secondary{
    background:transparent;
    color:var(--primary-color);
    border:2px solid var(--primary-color);
    padding:16px 32px;
    border-radius:50px;
    font-weight:600;
    transition:all .35s ease;
}

.hero-btn-secondary:hover{
    background:var(--primary-color);
    color:var(--white-color);
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(15,76,129,.25);
}
/* ==========================================
   Hero Right Side
========================================== */

.hero-image-wrapper{
    position:relative;
    min-height:600px;
    overflow: visible;
}

/* ==========================
   Blue Background Circle
========================== */

.hero-circle{

    position:absolute;

    width:380px;
    height:380px;

    right:35px;
    top:85px;

    border-radius:50%;
    background:linear-gradient(135deg,#5FA8FF,#0F4C81);

    z-index:1;

    box-shadow:
0 25px 60px rgba(15,76,129,.18),
0 0 60px rgba(95,168,255,.25);
}

/* Heart icon hide */

.hero-circle i{
    display:none;
}

/* ==========================
   Doctor Image
========================== */

.hero-doctor{

    position:absolute;

    width:460px;
    height:auto;

    right:0px;
    bottom:20px;

    z-index:3;

    animation: doctorFloat 5s ease-in-out infinite;
}

/* ==========================
   Floating Cards
========================== */

.hero-card{

    position:absolute;

    width:250px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);
    
    border:1px solid rgba(255,255,255,.6);

    border-radius:22px;

    padding:28px;

    text-align:center;

    box-shadow:0 18px 45px rgba(15,76,129,.12);

    transition:all .35s ease;

    z-index:5;
}

.hero-card:hover{

    transform:translateY(-10px) scale(1.03);

}

.hero-card i{

    font-size:38px;
    color:#0F4C81;
    margin-bottom:15px;

}

.hero-card h4{

    font-size:32px;
    font-weight:700;

}

.hero-card p{

    margin:0;
    color:#666;

}

/* Card Positions */

.card-one{

    top:60px;
    left: 10px;

}

.card-two{

    top:170px;
    right:-10px;

}

.card-three{

    bottom:60px;
    left: 30px;

}

/* ==========================
   Hero Background Dots
========================== */

.hero-section::before{

    content:"";

    position:absolute;

    width:220px;
    height:220px;

    top:120px;
    right:180px;

    background-image:
    radial-gradient(#B7D9F7 2px, transparent 2px);

    background-size:22px 22px;

    opacity:.45;

    z-index:0;

}

.hero-section::after{

    content:"";

    position:absolute;

    width:160px;
    height:160px;

    bottom:100px;
    left:120px;

    background-image:
    radial-gradient(#D8ECFF 2px, transparent 2px);

    background-size:20px 20px;

    opacity:.35;

    z-index:0;

}

.hero-section .container{
    position:relative;
    z-index:2;
}

/* ==========================================
   Trust Section
========================================== */

.trust-section{
    padding:80px 0;
    background:#fff;
    position:relative;
}

.trust-box{

    position:relative;
    overflow:hidden;

    background:#fff;

    border:1px solid #E8EEF5;

    border-radius:22px;

    padding:35px 20px;

    text-align:center;

    height:100%;

    transition:all .4s ease;

    box-shadow:0 10px 35px rgba(15,76,129,.08);

}

.trust-box::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );

    transition:.8s;

}

.trust-box:hover::before{

    left:150%;

}

.trust-box:hover{

    transform:translateY(-10px);

    border-color:#00B4D8;

    box-shadow:
    0 25px 50px rgba(15,76,129,.15);

}

.trust-box i{

    width:75px;
    height:75px;

    margin:auto;
    margin-bottom:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:32px;

    color:#0F4C81;

    background:linear-gradient(135deg,#EAF7FF,#D7F3FF);

    box-shadow:0 12px 30px rgba(0,180,216,.18);

    transition:.4s;

    animation:trustIconFloat 4s ease-in-out infinite;

}

.trust-box:hover i{

    background:linear-gradient(135deg,#00B4D8,#0F4C81);

    color:#fff;

    transform:rotateY(180deg);

}

.trust-box h5{

    font-size:22px;

    font-weight:700;

    color:#1F2937;

    margin-bottom:8px;

}

.trust-box p{

    margin:0;

    color:#6B7280;

    font-size:15px;

    line-height:1.6;

}

/*==================================================
            ABOUT SECTION
==================================================*/

.about-section{

    position:relative;

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;

}

/*==================================================
        BACKGROUND SHAPES
==================================================*/

.about-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-180px;
    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.10),
    transparent 70%);

}

.about-section::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-180px;
    bottom:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 70%);

}

.about-section .container{

    position:relative;

    z-index:5;

}

/*==================================================
            IMAGE AREA
==================================================*/

.about-image-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:700px;

}

/*==================================================
            PREMIUM GLOW
==================================================*/

.about-image-wrapper::before{

    content:"";

    position:absolute;

    width:430px;
    height:430px;

    border-radius:50%;

    background:

    radial-gradient(circle,
    rgba(0,180,216,.20),
    transparent 72%);

    animation:aboutGlow 6s ease-in-out infinite;

    z-index:1;

}

/*==================================================
            DOCTOR IMAGE
==================================================*/

.about-image{

    position:relative;
    z-index:3;

    display:block;

    width:100%;
    max-width:420px;

    margin:0 auto;

    animation:doctorFloat 5s ease-in-out infinite;

    filter:
    drop-shadow(0 35px 70px rgba(15,76,129,.18));

}

.about-image:hover{

    transform:translateY(-10px);

}

/*==================================================
            EXPERIENCE CARD
==================================================*/

.experience-card{

    position:absolute;

    top:70px;
    left:-35px;

    width:220px;

    background:#fff;

    border-radius:22px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:16px;

    box-shadow:0 20px 50px rgba(15,76,129,.12);

    border:1px solid rgba(15,76,129,.08);

    z-index:10;

    animation:cardFloat 5s ease-in-out infinite;

}
.experience-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 28px 65px rgba(15,76,129,.18);

}

.exp-icon{

    width:62px;

    height:62px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:
    linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:26px;

    flex-shrink:0;

}

.exp-content h2{

    margin:0;

    font-size:38px;

    font-weight:800;

    color:#0F4C81;

    line-height:1;

}

.exp-content p{

    margin-top:6px;

    font-size:14px;

    color:#6B7280;

}

/*==================================================
                REVIEW CARD
==================================================*/

.review-card{

    position:absolute;

    left:-10px;

    bottom:130px;

    width:235px;

    padding:22px;

    background:#ffffff;

    border-radius:22px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 20px 55px rgba(15,76,129,.12);

    z-index:11;

    animation:cardFloat 5s ease-in-out infinite;

    animation-delay:.8s;

    transition:.35s;

}

.review-card:hover{

    transform:translateY(-8px);

}

.review-stars{

    display:flex;

    gap:4px;

    margin-bottom:12px;

}

.review-stars i{

    color:#FFC107;

    font-size:15px;

}

.review-card h4{

    margin:0;

    font-size:24px;

    font-weight:700;

    color:#1F2937;

}

.review-card p{

    margin-top:8px;

    color:#6B7280;

    font-size:14px;

    line-height:1.6;

}

/*==================================================
                SUCCESS CARD
==================================================*/

.success-card{

    position:absolute;

    right:-5px;

    bottom:60px;

    display:flex;

    align-items:center;

    gap:16px;

    width:265px;

    padding:20px 22px;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.55);

    border-radius:22px;

    box-shadow:
    0 20px 55px rgba(15,76,129,.14);

    z-index:12;

    animation:cardFloat 5s ease-in-out infinite;

    animation-delay:1.5s;

    transition:.35s;

}

.success-card:hover{

    transform:translateY(-8px);

}

.success-card>i{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:
    linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:28px;

    flex-shrink:0;

}

.success-content h4{

    margin:0;

    font-size:34px;

    font-weight:800;

    color:#0F4C81;

}

.success-content p{

    margin-top:5px;

    color:#6B7280;

    font-size:14px;

}

/*==================================================
            ABOUT CONTENT
==================================================*/

.about-content{

    padding-left:55px;

}

/*==================================================
            ABOUT TAG
==================================================*/

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:14px 24px;

    border-radius:60px;

    background:#EAF8FF;

    color:#0F4C81;

    font-size:15px;

    font-weight:700;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 12px 30px rgba(15,76,129,.08);

    margin-bottom:28px;

}

.section-tag i{

    width:38px;

    height:38px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:
    linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:17px;

}

/*==================================================
            TITLE
==================================================*/

.section-title{

    font-size:52px;

    font-weight:800;

    line-height:1.18;

    color:#1F2937;

    margin-bottom:28px;

    letter-spacing:-.5px;

}

/*==================================================
            DESCRIPTION
==================================================*/

.section-description{

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

    margin-bottom:22px;

}

/*==================================================
        LEFT BORDER EFFECT
==================================================*/

.about-content{

    position:relative;

}

.about-content::before{

    content:"";

    position:absolute;

    left:0;

    top:18px;

    width:4px;

    height:90px;

    border-radius:20px;

    background:
    linear-gradient(
    #00B4D8,
    #0F4C81);

}

/*==================================================
            ABOUT FEATURES
==================================================*/

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-top:45px;

    margin-bottom:55px;

}

/*==================================================
            FEATURE CARD
==================================================*/

.feature-item{

    display:flex;

    align-items:center;

    gap:18px;

    background:#ffffff;

    padding:18px 22px;

    border-radius:22px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 15px 40px rgba(15,76,129,.08);

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.feature-item::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.85),
        transparent
    );

    transition:.8s;

}

.feature-item:hover::before{

    left:140%;

}

.feature-item:hover{

    transform:translateY(-8px);

    border-color:#00B4D8;

    box-shadow:
    0 25px 60px rgba(15,76,129,.14);

}

/*==================================================
            FEATURE ICON
==================================================*/

.feature-icon{

    width:58px;

    height:58px;

    min-width:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:
    linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#ffffff;

    box-shadow:
    0 15px 35px rgba(15,76,129,.20);

    transition:.35s;

}

.feature-item:hover .feature-icon{

    transform:rotate(-10deg) scale(1.08);

}

.feature-icon i{

    font-size:22px;

}

/*==================================================
            FEATURE TEXT
==================================================*/

.feature-item span{

    font-size:16px;

    font-weight:700;

    color:#1F2937;

    line-height:1.6;

}

/*==================================================
            ABOUT STATS
==================================================*/

.about-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;

    margin-bottom:55px;

}

.about-stat-box{

    position:relative;

    padding:34px 22px;

    text-align:center;

    background:#ffffff;

    border-radius:24px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 18px 45px rgba(15,76,129,.10);

    overflow:hidden;

    transition:.35s ease;

}

.about-stat-box::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition:.8s;

}

.about-stat-box:hover::before{

    left:100%;

}

.about-stat-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 28px 65px rgba(15,76,129,.18);

}

.about-stat-box h3{

    margin:0 0 10px;

    font-size:46px;

    font-weight:800;

    color:#0F4C81;

    line-height:1;

}

.about-stat-box p{

    margin:0;

    color:#6B7280;

    font-size:15px;

    font-weight:600;

}

/*==================================================
            BUTTON AREA
==================================================*/

.about-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

/*==================================================
            PRIMARY BUTTON
==================================================*/

.about-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:18px 36px;

    border-radius:60px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #0F4C81,
        #00B4D8
    );

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    box-shadow:
    0 20px 45px rgba(15,76,129,.22);

    transition:.35s;

}

.about-btn:hover{

    color:#ffffff;

    transform:translateY(-6px);

    box-shadow:
    0 28px 60px rgba(15,76,129,.28);

}

.about-btn i{

    transition:.35s;

}

.about-btn:hover i{

    transform:translateX(6px);

}

/*==================================================
            OUTLINE BUTTON
==================================================*/

.about-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border-radius:60px;

    text-decoration:none;

    border:2px solid #0F4C81;

    color:#0F4C81;

    font-size:16px;

    font-weight:700;

    transition:.35s;

}

.about-btn-outline:hover{

    background:#0F4C81;

    color:#ffffff;

}

/*==================================================
        SMOOTH TRANSITIONS
==================================================*/

.about-section *{

    transition:
    color .3s,
    background .3s,
    border-color .3s,
    transform .35s,
    box-shadow .35s;

}

/*==================================================
                SERVICES SECTION
==================================================*/

.services-section{

    position:relative;

    padding:120px 0;

    background:#F8FAFC;

    overflow:hidden;

}

.services-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-220px;
    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.08),
    transparent 70%);

}

.services-section::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    bottom:-180px;
    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 70%);

}

.services-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
                SERVICES SECTION
==================================================*/

.services-section{

    position:relative;

    padding:120px 0;

    background:#F8FAFC;

    overflow:hidden;

}

.services-section::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-220px;
    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.08),
    transparent 70%);

}

.services-section::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    bottom:-180px;
    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 70%);

}

.services-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
            SECTION HEADING
==================================================*/

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

}

.section-heading .section-title{

    margin-top:18px;

    margin-bottom:22px;

}

.section-heading .section-description{

    max-width:680px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

}

/*==================================================
                SERVICE CARD
==================================================*/

.service-card{

    position:relative;

    background:#ffffff;

    padding:40px 32px;

    border-radius:26px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 18px 45px rgba(15,76,129,.08);

    overflow:hidden;

    height:100%;

    transition:.4s ease;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.85),
        transparent
    );

    transition:.8s;

}

.service-card:hover::before{

    left:140%;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#00B4D8;

    box-shadow:
    0 28px 65px rgba(15,76,129,.15);

}

/*==================================================
                SERVICE ICON
==================================================*/

.service-icon{

    width:78px;

    height:78px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:22px;

    background:
    linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#ffffff;

    font-size:32px;

    margin-bottom:28px;

    box-shadow:
    0 18px 40px rgba(15,76,129,.18);

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-10deg) scale(1.08);

}

/*==================================================
                SERVICE CONTENT
==================================================*/

.service-card h4{

    font-size:26px;

    font-weight:700;

    color:#1F2937;

    margin-bottom:18px;

    transition:.35s;

}

.service-card:hover h4{

    color:#0F4C81;

}

.service-card p{

    font-size:16px;

    line-height:1.8;

    color:#6B7280;

    margin-bottom:28px;

}

/*==================================================
                SERVICE LINK
==================================================*/

.service-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:#0F4C81;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.35s ease;

}

.service-link i{

    transition:.35s ease;

}

.service-card:hover .service-link{

    color:#00B4D8;

}

.service-card:hover .service-link i{

    transform:translateX(8px);

}

/*==================================================
            SERVICE TOP BORDER EFFECT
==================================================*/

.service-card::after{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
        90deg,
        #0F4C81,
        #00B4D8
    );

    transition:.45s ease;

}

.service-card:hover::after{

    width:100%;

}

/*==================================================
            SERVICE CARD BACKGROUND
==================================================*/

.service-card{

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #fbfdff 100%
    );

}

/*==================================================
            ICON GLOW
==================================================*/

.service-icon{

    position:relative;

    overflow:hidden;

}

.service-icon::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    background:linear-gradient(
        135deg,
        rgba(255,255,255,.35),
        transparent
    );

}

.service-card:hover .service-icon{

    box-shadow:
    0 22px 45px rgba(0,180,216,.30);

}

/*==================================================
            SERVICES FINAL POLISH
==================================================*/

.service-card{

    display:flex;

    flex-direction:column;

}

.service-card p{

    flex-grow:1;

}

/*==================================================
            BUTTON SPACING
==================================================*/

.service-link{

    margin-top:auto;

}

/*==================================================
            SMOOTH TRANSITIONS
==================================================*/

.services-section *{

    transition:
    color .3s,
    background .3s,
    border-color .3s,
    transform .35s,
    box-shadow .35s;

}

/*==================================================
            CARD ACTIVE STATE
==================================================*/

.service-card:hover{

    cursor:pointer;

}

/*==================================================
            ICON ANIMATION
==================================================*/

.service-card:hover .service-icon i{

    transform:scale(1.1);

    transition:.35s;

}

/*==================================================
            SECTION FINISH
==================================================*/

.services-section{

    border-top:1px solid rgba(15,76,129,.05);

    border-bottom:1px solid rgba(15,76,129,.05);

}

/*==================================================
            WHY CHOOSE US SECTION
==================================================*/

.why-section{

    position:relative;

    padding:120px 0;

    background:#ffffff;

    overflow:hidden;

}

.why-section::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    top:-220px;
    right:-220px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.08),
    transparent 70%);

}

.why-section::after{

    content:"";

    position:absolute;

    width:430px;
    height:430px;

    left:-180px;
    bottom:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 70%);

}

.why-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
            CONTENT
==================================================*/

.why-section .section-title{

    margin-top:18px;

    margin-bottom:24px;

}

.why-section .section-description{

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

    margin-bottom:45px;

}

/*==================================================
                WHY LIST
==================================================*/

.why-list{

    display:flex;

    flex-direction:column;

    gap:24px;

}

/*==================================================
                WHY ITEM
==================================================*/

.why-item{

    display:flex;

    align-items:flex-start;

    gap:22px;

    padding:24px;

    background:#ffffff;

    border:1px solid rgba(15,76,129,.08);

    border-radius:24px;

    box-shadow:
    0 15px 40px rgba(15,76,129,.08);

    transition:.4s ease;

}

.why-item:hover{

    transform:translateY(-8px);

    border-color:#00B4D8;

    box-shadow:
    0 25px 55px rgba(15,76,129,.14);

}

/*==================================================
                WHY ICON
==================================================*/

.why-icon{

    width:70px;

    height:70px;

    min-width:70px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#ffffff;

    font-size:28px;

    box-shadow:
    0 18px 40px rgba(15,76,129,.18);

    transition:.35s;

}

.why-item:hover .why-icon{

    transform:rotate(-10deg) scale(1.08);

}

/*==================================================
                WHY TEXT
==================================================*/

.why-item h5{

    font-size:22px;

    font-weight:700;

    color:#1F2937;

    margin-bottom:10px;

}

.why-item p{

    margin:0;

    color:#6B7280;

    line-height:1.8;

}

/*==================================================
                WHY IMAGE AREA
==================================================*/

/*==================================================
                WHY IMAGE AREA
==================================================*/

.why-image-wrapper{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    min-height:700px;

    overflow:visible;

}

.why-image-wrapper::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(0,180,216,.18),
    transparent 70%);

    animation:aboutGlow 6s ease-in-out infinite;

    z-index:1;

}

.why-image{

    position:relative;

    z-index:2;

    width:100%;

    max-width:620px;

    height:auto;

    display:block;

    object-fit:contain;

    filter:drop-shadow(0 35px 70px rgba(15,76,129,.18));

    animation:doctorFloat 5s ease-in-out infinite;

}

/*==================================================
            FLOATING GROWTH CARD
==================================================*/

.why-floating-card{

    position:absolute;

    top:90px;

    left: -30px;

    display:flex;

    align-items:center;

    gap:16px;

    padding:20px 24px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    border:1px solid rgba(15,76,129,.08);

    border-radius:22px;

    box-shadow:0 20px 50px rgba(15,76,129,.14);

    z-index:5;

    animation:cardFloat 5s ease-in-out infinite;

}

.why-floating-card i{

    font-size:34px;

    color:#00B4D8;

}

.why-floating-card h4{

    margin:0;

    font-size:30px;

    font-weight:800;

    color:#0F4C81;

}

.why-floating-card span{

    font-size:14px;

    color:#6B7280;

}

/*==================================================
                WHY BADGE
==================================================*/

.why-badge{

    position:absolute;

    right:20px;

    bottom:70px;

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 24px;

    background:#ffffff;

    border-radius:50px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 18px 45px rgba(15,76,129,.12);

    z-index:5;

    font-size:15px;

    font-weight:600;

    color:#1F2937;

    animation:cardFloat 5s ease-in-out infinite;

    animation-delay:1s;

}

.why-badge i{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#ffffff;

    font-size:22px;

}

/*==================================================
            FINAL HOVER EFFECTS
==================================================*/

.why-floating-card:hover,
.why-badge:hover{

    transform:translateY(-8px);

    box-shadow:
    0 28px 60px rgba(15,76,129,.18);

}

.why-item:hover h5{

    color:#0F4C81;

}

.why-section *{

    transition:
    color .3s,
    background .3s,
    border-color .3s,
    transform .35s,
    box-shadow .35s;

}

/*==================================================
                CASE STUDIES SECTION
==================================================*/

.case-section{

    position:relative;

    padding:130px 0;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );

}

/*========== Background Glow ==========*/

.case-section::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    top:-320px;
    left:-260px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.10),
    transparent 72%);

}

.case-section::after{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    bottom:-250px;
    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 72%);

}

/*========== Container ==========*/

.case-section .container{

    position:relative;

    z-index:2;

}

/*========== Heading ==========*/

.case-section .section-heading{

    max-width:760px;

    margin:0 auto 80px;

}

.case-section .section-description{

    margin-top:18px;

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

}

/*==================================================
                    CARD
==================================================*/

.case-card{

    position:relative;

    height:100%;

    min-height:730px;

    display:flex;

    flex-direction:column;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 18px 45px rgba(15,76,129,.08);

    transition:.45s ease;

}

/* Premium Top Border */

.case-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:
    linear-gradient(
        90deg,
        #0F4C81,
        #00B4D8
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.case-card:hover::before{

    transform:scaleX(1);

}

.case-card:hover{

    transform:translateY(-15px);

    border-color:#00B4D8;

    box-shadow:
    0 35px 80px rgba(15,76,129,.18);

}

/*==================================================
                IMAGE AREA
==================================================*/

.case-image{

    position:relative;

    height:300px;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    overflow:hidden;

    padding:30px 25px 0;

    background:
    linear-gradient(
        180deg,
        #EAF9FF 0%,
        #FFFFFF 100%
    );

    border-bottom:1px solid rgba(15,76,129,.05);

}

/* Blue Circle */

.case-image::before{

    content:"";

    position:absolute;

    width:330px;

    height:330px;

    left:50%;

    bottom:-145px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.18),
    transparent 72%);

}

/* Image */

.case-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:320px;

    height:100%;

    object-fit:contain;

    object-position:bottom;

    transition:.45s ease;

    filter:
    drop-shadow(
    0 22px 38px rgba(15,76,129,.15));

}

/* Hover */

.case-card:hover .case-image img{

    transform:
    translateY(-8px)
    scale(1.05);

}

/*==================================================
                RESULT BADGE
==================================================*/

.case-badge{

    position:absolute;

    top:22px;

    right:22px;

    z-index:5;

    padding:12px 20px;

    border-radius:50px;

    background:#fff;

    color:#0F4C81;

    font-size:18px;

    font-weight:800;

    box-shadow:
    0 18px 35px rgba(15,76,129,.12);

    transition:.35s;

}

.case-card:hover .case-badge{

    transform:translateY(-6px);

}

/*==================================================
                CASE CONTENT
==================================================*/

.case-content{

    flex:1;

    display:flex;

    flex-direction:column;

    padding:34px;

}

/*==================================================
                CATEGORY
==================================================*/

.case-category{

    display:inline-flex;

    align-items:center;

    gap:10px;

    width:fit-content;

    padding:10px 18px;

    margin-bottom:22px;

    border-radius:50px;

    background:#EAF8FF;

    color:#0F4C81;

    font-size:13px;

    font-weight:700;

}

.case-category i{

    width:30px;

    height:30px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #0F4C81,
        #00B4D8
    );

    color:#fff;

    font-size:14px;

}

/*==================================================
                TITLE
==================================================*/

.case-content h4{

    font-size:30px;

    font-weight:800;

    line-height:1.25;

    color:#1E293B;

    margin-bottom:16px;

}

/*==================================================
                DESCRIPTION
==================================================*/

.case-content p{

    font-size:16px;

    line-height:1.9;

    color:#6B7280;

    margin-bottom:28px;

}

/*==================================================
                STATS
==================================================*/

.case-stats{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:30px;

}

/*==================================================
                STAT BOX
==================================================*/

.case-stat-box{

    display:flex;

    align-items:center;

    gap:16px;

    padding:16px 18px;

    border-radius:18px;

    background:#F8FBFF;

    border:1px solid rgba(15,76,129,.08);

    transition:.35s ease;

}

.case-stat-box:hover{

    background:#ffffff;

    transform:translateX(8px);

    box-shadow:

    0 14px 28px rgba(15,76,129,.10);

}

/*==================================================
                ICON
==================================================*/

.case-stat-box i{

    width:48px;

    height:48px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #0F4C81,
        #00B4D8
    );

    color:#fff;

    font-size:18px;

    flex-shrink:0;

}

/*==================================================
                NUMBER
==================================================*/

.case-stat-box h5{

    margin:0;

    font-size:24px;

    font-weight:800;

    color:#0F4C81;

    line-height:1;

}

/*==================================================
                LABEL
==================================================*/

.case-stat-box span{

    display:block;

    margin-top:5px;

    font-size:13px;

    font-weight:600;

    color:#6B7280;

}

/*==================================================
                BUTTON
==================================================*/

.case-btn{

    margin-top:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    padding:17px 28px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #0F4C81,
        #00B4D8
    );

    color:#fff;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.case-btn i{

    transition:.35s;

}

.case-btn:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:

    0 22px 45px rgba(15,76,129,.22);

}

.case-btn:hover i{

    transform:translateX(6px);

}

/*==================================================
            PREMIUM HOVER EFFECTS
==================================================*/

.case-card::after{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:70%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transition:.9s ease;

    pointer-events:none;

    z-index:10;

}

.case-card:hover::after{

    left:150%;

}

/*==================================================
            IMAGE AREA HOVER
==================================================*/

.case-card:hover .case-image{

    background:linear-gradient(

        180deg,

        #DDF6FF 0%,

        #FFFFFF 100%

    );

}

/*==================================================
            CATEGORY HOVER
==================================================*/

.case-card:hover .case-category{

    background:#0F4C81;

    color:#fff;

}

.case-card:hover .case-category i{

    background:#fff;

    color:#0F4C81;

}

/*==================================================
            STAT BOX HOVER
==================================================*/

.case-card:hover .stat-box{

    border-color:rgba(0,180,216,.18);

}

.case-card:hover .stat-box i{

    transform:rotate(-8deg) scale(1.08);

}

/*==================================================
            BUTTON
==================================================*/

.case-btn{

    position:relative;

    overflow:hidden;

}

.case-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.30),

        transparent

    );

    transition:.6s;

}

.case-btn:hover::before{

    left:100%;

}

/*==================================================
            IMAGE TRANSITION
==================================================*/

.case-image,

.case-image img,

.case-badge,

.case-category,

.case-btn,

.stat-box,

.stat-box i{

    transition:.4s ease;

}

/*==================================================
            CARD BORDER GLOW
==================================================*/

.case-card:hover{

    border-color:rgba(0,180,216,.35);

}

/*==================================================
            BADGE
==================================================*/

.case-badge{

    backdrop-filter:blur(12px);

}

.case-card:hover .case-badge{

    background:#0F4C81;

    color:#fff;

}

/*==================================================
            PREMIUM SHADOW
==================================================*/

.case-card{

    isolation:isolate;

}

.case-card:hover{

    box-shadow:

    0 35px 80px rgba(15,76,129,.16),

    0 0 0 1px rgba(0,180,216,.10);

}

/*==================================================
            IMAGE GLOW
==================================================*/

.case-image img{

    will-change:transform;

}

/*==================================================
            SMOOTH GPU
==================================================*/

.case-card,

.case-image,

.case-btn,

.stat-box{

    transform:translateZ(0);

}
/*==================================================
                CASE STUDIES SECTION END
==================================================*/

/*==================================================
            TESTIMONIAL SECTION
==================================================*/

.testimonial-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );

}

.testimonial-section::before{

    content:"";

    position:absolute;

    width:620px;
    height:620px;

    top:-280px;
    left:-240px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.08),
    transparent 72%);

}

.testimonial-section::after{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    bottom:-220px;
    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 72%);

}

.testimonial-section .container{

    position:relative;

    z-index:2;

}

.testimonial-section .section-heading{

    max-width:760px;

    margin:0 auto 75px;

}

.testimonial-section .section-description{

    margin-top:18px;

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

}

/*==================================================
                TESTIMONIAL CARD
==================================================*/

.testimonial-card{

    position:relative;

    height:100%;

    min-height:670px;

    display:flex;

    flex-direction:column;

    overflow:hidden;

    border-radius:30px;

    background:#ffffff;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 18px 45px rgba(15,76,129,.08);

    transition:.45s ease;

}

.testimonial-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        #0F4C81,
        #00B4D8
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.testimonial-card:hover::before{

    transform:scaleX(1);

}

.testimonial-card:hover{

    transform:translateY(-15px);

    border-color:#00B4D8;

    box-shadow:
    0 35px 80px rgba(15,76,129,.18);

}

/*==================================================
                IMAGE AREA
==================================================*/

.testimonial-image{

    position:relative;

    height:310px;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    overflow:hidden;

    padding:30px 25px 0;

    background:linear-gradient(
        180deg,
        #EAF9FF 0%,
        #FFFFFF 100%
    );

    border-bottom:1px solid rgba(15,76,129,.05);

}

.testimonial-image::before{

    content:"";

    position:absolute;

    width:330px;

    height:330px;

    left:50%;

    bottom:-145px;

    transform:translateX(-50%);

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.18),
    transparent 72%);

}

.testimonial-image img{

    position:relative;

    z-index:2;

    width:100%;

    max-width:320px;

    height:100%;

    object-fit:contain;

    object-position:bottom;

    filter:
    drop-shadow(0 22px 40px rgba(15,76,129,.15));

    transition:.45s ease;

}

.testimonial-card:hover .testimonial-image img{

    transform:translateY(-8px) scale(1.05);

}

/*==================================================
                QUOTE ICON
==================================================*/

.quote-icon{

    position:absolute;

    top:24px;

    right:24px;

    z-index:5;

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ffffff;

    box-shadow:
    0 18px 35px rgba(15,76,129,.12);

}

.quote-icon i{

    font-size:34px;

    color:#00B4D8;

}

.testimonial-card:hover .quote-icon{

    background:#0F4C81;

}

.testimonial-card:hover .quote-icon i{

    color:#ffffff;

}

/*==================================================
            TESTIMONIAL CONTENT
==================================================*/

.testimonial-content{

    flex:1;

    display:flex;

    flex-direction:column;

    padding:35px 32px;

}

/*==================================================
                STARS
==================================================*/

.testimonial-stars{

    display:flex;

    align-items:center;

    gap:6px;

    margin-bottom:22px;

}

.testimonial-stars i{

    font-size:18px;

    color:#FFC107;

    filter:drop-shadow(0 2px 6px rgba(255,193,7,.35));

}

/*==================================================
                REVIEW TEXT
==================================================*/

.testimonial-content p{

    font-size:16px;

    line-height:1.9;

    color:#6B7280;

    margin-bottom:30px;

    flex:1;

    position:relative;

}

/*==================================================
                USER AREA
==================================================*/

.testimonial-user{

    margin-top:auto;

    padding-top:22px;

    border-top:1px solid rgba(15,76,129,.08);

}

/*==================================================
                NAME
==================================================*/

.testimonial-user h5{

    margin:0;

    font-size:22px;

    font-weight:800;

    color:#1E293B;

    line-height:1.2;

}

/*==================================================
                DESIGNATION
==================================================*/

.testimonial-user span{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:10px;

    padding:8px 16px;

    border-radius:50px;

    background:#EAF8FF;

    color:#0F4C81;

    font-size:13px;

    font-weight:700;

}

/*==================================================
                VERIFIED ICON
==================================================*/

.testimonial-user span::before{

    content:"✓";

    width:22px;

    height:22px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        #0F4C81,
        #00B4D8
    );

    color:#fff;

    font-size:12px;

    font-weight:700;

    flex-shrink:0;

}

/*==================================================
            PREMIUM HOVER EFFECTS
==================================================*/

.testimonial-card::after{

    content:"";

    position:absolute;

    top:0;

    left:-130%;

    width:70%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transition:.9s ease;

    pointer-events:none;

    z-index:10;

}

.testimonial-card:hover::after{

    left:150%;

}

/*==================================================
            IMAGE AREA HOVER
==================================================*/

.testimonial-card:hover .testimonial-image{

    background:linear-gradient(

        180deg,

        #DDF6FF 0%,

        #FFFFFF 100%

    );

}

/*==================================================
            REVIEW TEXT
==================================================*/

.testimonial-card:hover .testimonial-content p{

    color:#4B5563;

}

/*==================================================
            VERIFIED BADGE
==================================================*/

.testimonial-card:hover .testimonial-user span{

    background:#0F4C81;

    color:#ffffff;

}

.testimonial-card:hover .testimonial-user span::before{

    background:#ffffff;

    color:#0F4C81;

}

/*==================================================
            STAR EFFECT
==================================================*/

.testimonial-stars i{

    transition:.35s ease;

}

.testimonial-card:hover .testimonial-stars i{

    transform:scale(1.15);

    filter:drop-shadow(

        0 4px 10px

        rgba(255,193,7,.45)

    );

}

/*==================================================
            IMAGE GLOW
==================================================*/

.testimonial-image img{

    will-change:transform;

}

.testimonial-card:hover .testimonial-image img{

    filter:

    drop-shadow(

        0 28px 45px

        rgba(15,76,129,.18)

    );

}

/*==================================================
            QUOTE ICON
==================================================*/

.quote-icon{

    transition:.35s ease;

}

.testimonial-card:hover .quote-icon{

    transform:rotate(-12deg) scale(1.08);

}

/*==================================================
            PREMIUM BORDER
==================================================*/

.testimonial-card:hover{

    border-color:

    rgba(0,180,216,.35);

}

/*==================================================
            GPU SMOOTH
==================================================*/

.testimonial-card,

.testimonial-image,

.testimonial-image img,

.quote-icon,

.testimonial-stars i{

    transform:translateZ(0);

}

/*==================================================
            PREMIUM SHADOW
==================================================*/

.testimonial-card:hover{

    box-shadow:

    0 35px 80px rgba(15,76,129,.16),

    0 0 0 1px rgba(0,180,216,.10);

}

/*==================================================
                FAQ SECTION
==================================================*/

.faq-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );

}

.faq-section::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    top:-250px;

    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.08),
    transparent 72%);

}

.faq-section::after{

    content:"";

    position:absolute;

    width:480px;

    height:480px;

    right:-180px;

    bottom:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 72%);

}

.faq-section .container{

    position:relative;

    z-index:2;

}

.faq-section .section-heading{

    max-width:760px;

    margin:0 auto 70px;

}

.faq-section .section-description{

    margin-top:18px;

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

}

/*==================================================
            ACCORDION
==================================================*/

.faq-accordion{

    display:flex;

    flex-direction:column;

    gap:22px;

}

.faq-accordion .accordion-item{

    border:none;

    overflow:hidden;

    border-radius:24px;

    background:#ffffff;

    box-shadow:
    0 18px 45px rgba(15,76,129,.08);

    border:1px solid rgba(15,76,129,.08);

    transition:.4s ease;

}

.faq-accordion .accordion-item:hover{

    transform:translateY(-6px);

    border-color:#00B4D8;

    box-shadow:
    0 28px 65px rgba(15,76,129,.15);

}

/*==================================================
            HEADER
==================================================*/

.faq-accordion .accordion-header{

    margin:0;

}

.faq-accordion .accordion-button{

    position:relative;

    padding:28px 75px 28px 32px;

    background:#ffffff;

    color:#1E293B;

    font-size:21px;

    font-weight:700;

    line-height:1.5;

    border:none;

    box-shadow:none;

}

/*==================================================
            ACCORDION OPEN STATE
==================================================*/

.faq-accordion .accordion-button:not(.collapsed){

    background:#ffffff;

    color:#0F4C81;

    box-shadow:none;

}

.faq-accordion .accordion-button:focus{

    box-shadow:none;

    border:none;

}

/*==================================================
            CUSTOM ICON
==================================================*/

.faq-accordion .accordion-button::after{

    width:48px;

    height:48px;

    border-radius:50%;

    background:none;

    content:"+";

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:700;

    color:#0F4C81;

    background:#EAF8FF;

    transition:.4s ease;

}

.faq-accordion .accordion-button:not(.collapsed)::after{

    content:"−";

    color:#ffffff;

    background:linear-gradient(
        135deg,
        #0F4C81,
        #00B4D8
    );

    transform:rotate(180deg);

}

/*==================================================
            ACCORDION BODY
==================================================*/

.faq-accordion .accordion-body{

    padding:0 32px 30px;

    font-size:16px;

    line-height:1.9;

    color:#6B7280;

    border-top:1px solid rgba(15,76,129,.06);

}

/*==================================================
            OPEN ITEM
==================================================*/

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)){

    border-color:#00B4D8;

    box-shadow:
    0 30px 70px rgba(15,76,129,.14);

}

/*==================================================
            BODY PARAGRAPH
==================================================*/

.faq-accordion .accordion-body p{

    margin:0;

}

/*==================================================
            TRANSITIONS
==================================================*/

.faq-accordion .accordion-item,

.faq-accordion .accordion-button,

.faq-accordion .accordion-body,

.faq-accordion .accordion-button::after{

    transition:.35s ease;

}

/*==================================================
            PREMIUM HOVER EFFECTS
==================================================*/

.faq-accordion .accordion-item{

    position:relative;

}

.faq-accordion .accordion-item::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #0F4C81,
        #00B4D8
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s ease;

}

.faq-accordion .accordion-item:hover::before{

    transform:scaleX(1);

}

/*==================================================
            BUTTON HOVER
==================================================*/

.faq-accordion .accordion-button:hover{

    color:#0F4C81;

    padding-left:40px;

}

/*==================================================
            ICON HOVER
==================================================*/

.faq-accordion .accordion-item:hover .accordion-button::after{

    transform:scale(1.12);

}

/*==================================================
            OPEN ICON
==================================================*/

.faq-accordion .accordion-button:not(.collapsed)::after{

    box-shadow:

    0 12px 25px rgba(15,76,129,.22);

}

/*==================================================
            BODY EFFECT
==================================================*/

.faq-accordion .accordion-body{

    background:linear-gradient(

        180deg,

        #ffffff,

        #FCFEFF

    );

}

/*==================================================
            ACTIVE CARD
==================================================*/

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)){

    transform:translateY(-4px);

}

/*==================================================
            SHINE EFFECT
==================================================*/

.faq-accordion .accordion-item::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transition:1s;

    pointer-events:none;

}

.faq-accordion .accordion-item:hover::after{

    left:150%;

}

/*==================================================
            PREMIUM SHADOW
==================================================*/

.faq-accordion .accordion-item:hover{

    box-shadow:

    0 30px 75px rgba(15,76,129,.16),

    0 0 0 1px rgba(0,180,216,.10);

}

/*==================================================
            GPU FIX
==================================================*/

.faq-accordion .accordion-item,

.faq-accordion .accordion-button,

.faq-accordion .accordion-button::after{

    transform:translateZ(0);

    backface-visibility:hidden;

}

/*==================================================
                CTA SECTION
==================================================*/

.cta-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:#F8FBFF;

}

.cta-section::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-280px;

    left:-260px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.08),
    transparent 72%);

}

.cta-section::after{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    bottom:-220px;

    right:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 72%);

}

.cta-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
                CTA WRAPPER
==================================================*/

.cta-wrapper{

    position:relative;

    overflow:hidden;

    padding:70px;

    border-radius:35px;

    background:linear-gradient(
        135deg,
        #0F4C81,
        #00B4D8
    );

    box-shadow:
    0 35px 80px rgba(15,76,129,.20);

}

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-180px;

    right:-120px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    bottom:-120px;

    left:-120px;

    border-radius:50%;

    background:
    rgba(255,255,255,.06);

}

/*==================================================
                LEFT CONTENT
==================================================*/

.cta-wrapper .row{

    position:relative;

    z-index:2;

}

.cta-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:14px;

    font-weight:700;

    margin-bottom:24px;

}

.cta-tag i{

    color:#FFD54A;

}

.cta-wrapper h2{

    font-size:52px;

    font-weight:800;

    line-height:1.2;

    color:#fff;

    margin-bottom:22px;

}

.cta-wrapper h2 .gradient-text{

    color:#FFD54A;

}

.cta-wrapper p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.92);

    margin-bottom:35px;

    max-width:620px;

}

/*==================================================
                CTA BUTTONS
==================================================*/

.cta-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.btn-primary-custom{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    border-radius:60px;

    background:#ffffff;

    color:#0F4C81;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.35s ease;

}

.btn-primary-custom:hover{

    color:#0F4C81;

    transform:translateY(-5px);

    box-shadow:
    0 20px 45px rgba(255,255,255,.25);

}

.btn-primary-custom i{

    transition:.35s;

}

.btn-primary-custom:hover i{

    transform:translateX(6px);

}

/*==================================================
            OUTLINE BUTTON
==================================================*/

.btn-outline-custom{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 34px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,.35);

    color:#ffffff;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    backdrop-filter:blur(12px);

    transition:.35s ease;

}

.btn-outline-custom:hover{

    background:#ffffff;

    color:#0F4C81;

    border-color:#ffffff;

    transform:translateY(-5px);

}

.btn-outline-custom i{

    font-size:18px;

}

/*==================================================
                CTA CARD
==================================================*/

.cta-card{

    position:relative;

    padding:42px 35px;

    border-radius:30px;

    text-align:center;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.20);

    box-shadow:
    0 25px 55px rgba(0,0,0,.10);

}

.cta-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ffffff;

    box-shadow:
    0 18px 40px rgba(15,76,129,.20);

}

.cta-icon i{

    font-size:42px;

    color:#00B4D8;

}

/*==================================================
                CARD CONTENT
==================================================*/

.cta-card h3{

    font-size:30px;

    font-weight:800;

    color:#ffffff;

    margin-bottom:22px;

}

.cta-card p{

    margin:12px 0;

    color:#ffffff;

    font-size:17px;

    font-weight:500;

}

.cta-price{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    margin-top:28px;

    padding:14px 34px;

    border-radius:60px;

    background:#ffffff;

    color:#0F4C81;

    font-size:28px;

    font-weight:800;

    letter-spacing:1px;

}

/*==================================================
            PREMIUM HOVER EFFECTS
==================================================*/

.cta-wrapper{

    transition:.45s ease;

}

.cta-wrapper:hover{

    transform:translateY(-8px);

    box-shadow:
    0 45px 90px rgba(15,76,129,.28);

}

/*==================================================
            SHINE EFFECT
==================================================*/

.cta-wrapper::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.18),

        transparent

    );

    transition:1.2s;

    pointer-events:none;

}

.cta-wrapper:hover::after{

    left:150%;

}

/*==================================================
            CARD HOVER
==================================================*/

.cta-card{

    transition:.4s ease;

}

.cta-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.18);

    border-color:rgba(255,255,255,.35);

    box-shadow:
    0 30px 60px rgba(0,0,0,.18);

}

/*==================================================
            ICON HOVER
==================================================*/

.cta-card:hover .cta-icon{

    transform:rotate(-10deg) scale(1.08);

    background:#FFD54A;

}

.cta-card:hover .cta-icon i{

    color:#0F4C81;

}

/*==================================================
            PRIMARY BUTTON
==================================================*/

.btn-primary-custom{

    position:relative;

    overflow:hidden;

}

.btn-primary-custom::before{

    content:"";

    position:absolute;

    top:0;

    left:-100%;

    width:100%;

    height:100%;

    background:linear-gradient(

        120deg,

        transparent,

        rgba(255,255,255,.45),

        transparent

    );

    transition:.8s;

}

.btn-primary-custom:hover::before{

    left:100%;

}

/*==================================================
            OUTLINE BUTTON
==================================================*/

.btn-outline-custom{

    position:relative;

    overflow:hidden;

}

.btn-outline-custom:hover{

    box-shadow:
    0 18px 40px rgba(255,255,255,.20);

}

/*==================================================
            PRICE BADGE
==================================================*/

.cta-price{

    transition:.35s ease;

}

.cta-card:hover .cta-price{

    transform:scale(1.08);

    background:#FFD54A;

    color:#0F4C81;

}

/*==================================================
            TEXT
==================================================*/

.cta-card p{

    transition:.3s ease;

}

.cta-card:hover p{

    color:#ffffff;

}

/*==================================================
            GPU SMOOTH
==================================================*/

.cta-wrapper,

.cta-card,

.cta-icon,

.btn-primary-custom,

.btn-outline-custom,

.cta-price{

    transform:translateZ(0);

    backface-visibility:hidden;

    will-change:transform;

}

/*==================================================
                CONTACT SECTION
==================================================*/

.contact-section{

    position:relative;

    padding:120px 0;

    background:#F8FBFF;

    overflow:hidden;

}

.contact-section::before{

    content:"";

    position:absolute;

    width:520px;
    height:520px;

    top:-220px;
    left:-220px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.08),
    transparent 70%);

}

.contact-section::after{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-180px;
    bottom:-180px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.08),
    transparent 70%);

}

.contact-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
            LEFT CONTENT
==================================================*/

.contact-content{

    padding-right:35px;

}

.contact-content .section-title{

    margin:20px 0;

}

.contact-content .section-description{

    font-size:17px;

    line-height:1.9;

    color:#6B7280;

    margin-bottom:35px;

}

/*==================================================
            CONTACT INFO
==================================================*/

.contact-info{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:30px;

}

.contact-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

    background:#ffffff;

    border-radius:22px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:
    0 15px 35px rgba(15,76,129,.08);

    transition:.35s ease;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:#00B4D8;

    box-shadow:
    0 25px 55px rgba(15,76,129,.16);

}

.contact-icon{

    width:62px;

    height:62px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:24px;

    flex-shrink:0;

}

.contact-text small{

    display:block;

    color:#6B7280;

    font-size:13px;

    margin-bottom:4px;

}

.contact-text h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#1E293B;

}

/*==================================================
            WORKING HOURS
==================================================*/

.working-hours{

    display:flex;

    align-items:center;

    gap:14px;

    margin:30px 0;

    padding:18px 22px;

    background:#ffffff;

    border-radius:18px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:0 12px 30px rgba(15,76,129,.08);

}

.working-hours i{

    width:52px;

    height:52px;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:22px;

    flex-shrink:0;

}

.working-hours span{

    font-size:15px;

    font-weight:600;

    color:#4B5563;

}

/*==================================================
                SOCIAL ICONS
==================================================*/

.contact-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.contact-social a{

    width:52px;

    height:52px;

    border-radius:16px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    background:#ffffff;

    color:#0F4C81;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:0 10px 25px rgba(15,76,129,.08);

    transition:.35s ease;

}

.contact-social a:hover{

    transform:translateY(-6px);

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    border-color:transparent;

    box-shadow:0 20px 45px rgba(15,76,129,.18);

}

/*==================================================
            CONTACT FORM
==================================================*/

.contact-form-wrapper{

    position:relative;

    padding:45px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(12px);

    border-radius:30px;

    border:1px solid rgba(15,76,129,.08);

    box-shadow:

    0 25px 70px rgba(15,76,129,.12);

}

.contact-form .form-group{

    display:flex;

    flex-direction:column;

}

.contact-form label{

    font-size:14px;

    font-weight:700;

    color:#0F4C81;

    margin-bottom:10px;

}

.contact-form .form-control,

.contact-form .form-select{

    height:58px;

    border-radius:16px;

    border:1px solid #D8EAF7;

    background:#F9FCFF;

    padding:0 18px;

    font-size:15px;

    color:#374151;

    transition:.35s ease;

}

.contact-form textarea.form-control{

    height:170px;

    resize:none;

    padding-top:16px;

}

.contact-form .form-control:focus,

.contact-form .form-select:focus{

    border-color:#00B4D8;

    background:#fff;

    box-shadow:

    0 0 0 .25rem rgba(0,180,216,.12);

}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
    align-content: center;
}

/*==================================================
            SUBMIT BUTTON
==================================================*/

.contact-btn{

    position:relative;

    width:100%;

    height:62px;

    border:none;

    outline:none;

    border-radius:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:17px;

    font-weight:700;

    overflow:hidden;

    cursor:pointer;

    transition:.4s ease;

}

.contact-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:120%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.35),

        transparent

    );

    transition:.8s;

}

.contact-btn:hover::before{

    left:120%;

}

.contact-btn:hover{

    transform:translateY(-5px);

    box-shadow:

    0 22px 50px rgba(15,76,129,.25);

}

.contact-btn i{

    transition:.35s;

}

.contact-btn:hover i{

    transform:translateX(6px);

}

/*==================================================
        SUCCESS MESSAGE PREMIUM
==================================================*/

#formMessage{
    margin-top:30px;
}

.success-message{

    position:relative;

    overflow:hidden;

    padding:45px 35px;

    border-radius:24px;

    text-align:center;

    background:linear-gradient(135deg,#F8FFFC,#ECFDF5);

    border:1px solid rgba(34,197,94,.25);

    box-shadow:
    0 25px 60px rgba(15,76,129,.08),
    0 10px 25px rgba(34,197,94,.12);

    animation:successFade .6s ease;

}

.success-message::before{

    content:"";

    position:absolute;

    top:-120px;

    left:-120px;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(34,197,94,.08);

}

.success-message::after{

    content:"";

    position:absolute;

    right:-80px;

    bottom:-80px;

    width:180px;

    height:180px;

    border-radius:50%;

    background:rgba(0,180,216,.08);

}

.success-icon{

    position:relative;

    z-index:2;

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#22C55E,#16A34A);

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:
    0 20px 40px rgba(34,197,94,.35);

}

.success-icon i{

    color:#fff;

    font-size:48px;

}

.success-message h3{

    position:relative;

    z-index:2;

    font-size:36px;

    font-weight:800;

    color:#0F4C81;

    margin-bottom:15px;

}

.success-message p{

    position:relative;

    z-index:2;

    max-width:520px;

    margin:auto;

    font-size:17px;

    line-height:1.8;

    color:#64748B;

}

/*==================================================
        ERROR
==================================================*/

.error-message{

    margin-top:25px;

    padding:22px;

    border-radius:18px;

    background:#FFF5F5;

    border-left:6px solid #EF4444;

    color:#B91C1C;

    font-size:16px;

    font-weight:600;

    animation:successFade .4s ease;

}

/*==================================================
        ANIMATION
==================================================*/

@keyframes successFade{

    from{

        opacity:0;

        transform:translateY(35px) scale(.95);

    }

    to{

        opacity:1;

        transform:translateY(0) scale(1);

    }

}

/*==================================================
        MOBILE
==================================================*/

@media(max-width:767px){

.success-message{

    padding:30px 20px;

}

.success-icon{

    width:70px;

    height:70px;

}

.success-icon i{

    font-size:36px;

}

.success-message h3{

    font-size:26px;

}

.success-message p{

    font-size:15px;

}

}

/*==================================================
            FORM HOVER EFFECTS
==================================================*/

.contact-card,

.contact-form-wrapper,

.contact-btn,

.contact-social a,

.form-control,

.form-select{

    will-change:transform;

}

.contact-form-wrapper:hover{

    transform:translateY(-8px);

    box-shadow:

    0 35px 90px rgba(15,76,129,.16);

}

/*==================================================
                FOOTER SECTION
==================================================*/

.footer-section{

    position:relative;

    padding:110px 0 0;

    background:#081C33;

    overflow:hidden;

}

.footer-section::before{

    content:"";

    position:absolute;

    top:-250px;

    left:-250px;

    width:550px;

    height:550px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(0,180,216,.10),
    transparent 72%);

}

.footer-section::after{

    content:"";

    position:absolute;

    right:-220px;

    bottom:-220px;

    width:480px;

    height:480px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(15,76,129,.12),
    transparent 72%);

}

.footer-section .container{

    position:relative;

    z-index:2;

}

/*==================================================
                FOOTER ABOUT
==================================================*/

.footer-about{

    padding-right:35px;

}

.footer-logo{

    display:inline-block;

    margin-bottom:28px;

}

.footer-logo img{

    max-width:220px;

    height:auto;

}

.footer-about p{

    color:rgba(255,255,255,.72);

    font-size:16px;

    line-height:1.9;

    margin-bottom:32px;

}

/*==================================================
                SOCIAL ICONS
==================================================*/

.footer-social{

    display:flex;

    align-items:center;

    gap:14px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#ffffff;

    text-decoration:none;

    font-size:18px;

    transition:.35s ease;

}

.footer-social a:hover{

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    border-color:transparent;

    color:#fff;

    transform:translateY(-5px);

    box-shadow:

    0 18px 40px rgba(0,180,216,.25);

}

/*==================================================
                FOOTER LINKS
==================================================*/

.footer-links{

    padding-left:20px;

}

.footer-links h4{

    position:relative;

    display:inline-block;

    color:#ffffff;

    font-size:22px;

    font-weight:700;

    margin-bottom:32px;

    padding-bottom:12px;

}

.footer-links h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:55px;

    height:3px;

    border-radius:30px;

    background:linear-gradient(90deg,#00B4D8,#0F4C81);

}

.footer-links ul{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-links ul li{

    margin-bottom:18px;

}

.footer-links ul li:last-child{

    margin-bottom:0;

}

.footer-links ul li a{

    display:flex;

    align-items:center;

    gap:12px;

    color:rgba(255,255,255,.72);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    transition:.35s ease;

}

.footer-links ul li a i{

    color:#00B4D8;

    font-size:13px;

    transition:.35s;

}

.footer-links ul li a:hover{

    color:#ffffff;

    padding-left:10px;

}

.footer-links ul li a:hover i{

    transform:translateX(5px);

    color:#ffffff;

}

/*==================================================
            FOOTER CONTACT
==================================================*/

.footer-contact{

    margin:0;

    padding:0;

    list-style:none;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:22px;

}

.footer-contact li:last-child{

    margin-bottom:0;

}

.footer-contact i{

    width:46px;

    height:46px;

    flex-shrink:0;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:14px;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#00B4D8;

    font-size:18px;

    transition:.35s ease;

}

.footer-contact span{

    color:rgba(255,255,255,.72);

    font-size:16px;

    line-height:1.8;

}

.footer-contact li:hover i{

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#ffffff;

    border-color:transparent;

    transform:rotate(-8deg);

}

.footer-contact li:hover span{

    color:#ffffff;

}

/*==================================================
            FOOTER BOTTOM
==================================================*/

.footer-bottom{

    margin-top:70px;

    padding:28px 0;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.65);

    font-size:15px;

    font-weight:500;

}

/*==================================================
        FOOTER BOTTOM LINKS
==================================================*/

.footer-bottom-links{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:28px;

}

.footer-bottom-links a{

    position:relative;

    color:rgba(255,255,255,.65);

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    transition:.35s ease;

}

.footer-bottom-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    border-radius:30px;

    background:#00B4D8;

    transition:.35s;

}

.footer-bottom-links a:hover{

    color:#ffffff;

}

.footer-bottom-links a:hover::after{

    width:100%;

}

/*==================================================
        EXTRA PREMIUM EFFECT
==================================================*/

.footer-section::selection{

    background:#00B4D8;

    color:#ffffff;

}

.footer-about,

.footer-links{

    position:relative;

    z-index:2;

}

.footer-section *{

    transition:color .3s ease,
               background .3s ease,
               border-color .3s ease,
               transform .3s ease;

}

.footer-section hr{

    border-color:rgba(255,255,255,.08);

}

.footer-section a{

    -webkit-tap-highlight-color:transparent;

}

/*==================================================
            BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:18px;

    background:linear-gradient(135deg,#0F4C81,#00B4D8);

    color:#fff;

    font-size:22px;

    text-decoration:none;

    box-shadow:

    0 20px 45px rgba(15,76,129,.25);

    z-index:999;

    opacity:0;

    visibility:hidden;

    transform:translateY(25px);

    transition:.35s ease;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.back-to-top:hover{

    color:#fff;

    transform:translateY(-8px);

    box-shadow:

    0 30px 60px rgba(15,76,129,.35);

}

.back-to-top i{

    transition:.35s;

}

.back-to-top:hover i{

    transform:translateY(-3px);

}

/*=========================================
        Performance Optimization
=========================================*/

img,
.testimonial-card,
.case-card,
.contact-card,
.cta-card,
.faq-accordion .accordion-item,
.footer-social a,
.contact-social a,
.btn-primary-custom,
.btn-outline-custom,
.contact-btn{

    will-change:transform;

    backface-visibility:hidden;

    transform:translateZ(0);

}