.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-692 .elementor-element.elementor-element-dcc812e img{border-radius:25px 25px 25px 25px;}.elementor-692 .elementor-element.elementor-element-042f758 img{border-radius:15px 15px 15px 15px;}.elementor-692 .elementor-element.elementor-element-d197dd2 img{border-radius:15px 15px 15px 15px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f3d800b *//* ===================================
   GOOGLE FONT
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ===================================
   ROOT COLORS
=================================== */

:root{
    --maroon-dark:#33000D;
    --maroon:#5E0B15;
    --maroon-light:#7A1122;

    --gold:#D4AF37;
    --gold-light:#F4D06F;

    --white:#ffffff;

    --text:#3f3f3f;
    --text-light:#666666;
}

/* ===================================
   GLOBAL
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Outfit',sans-serif;
    background:#fafafa;
    color:var(--text);
    overflow-x:hidden;
}

/* ===================================
   SECTION
=================================== */

.service-section{
    position:relative;
    padding:90px 8%;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.08),
    transparent 25%),

    radial-gradient(circle at bottom left,
    rgba(94,11,21,.06),
    transparent 30%),

    #fafafa;
}

/* ===================================
   MAIN CONTAINER
=================================== */

.service-container{

    position:relative;

    max-width:1200px;

    margin:auto;

    padding:65px;

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    border:1px solid rgba(212,175,55,.12);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

/* Top Accent */

.service-container::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:
    linear-gradient(
    90deg,
    var(--maroon-dark),
    var(--maroon),
    var(--gold),
    var(--gold-light));
}

/* Decorative Circle */

.service-container::after{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    top:-100px;
    right:-100px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(212,175,55,.10),
    transparent 70%);
}

.service-container:hover{

    transform:translateY(-8px);

    transition:.4s ease;

    box-shadow:
    0 25px 60px rgba(94,11,21,.08);
}

/* ===================================
   HEADER
=================================== */

.service-header{

    display:flex;

    align-items:center;

    gap:25px;

    margin-bottom:35px;
}

/* Number Box */

.service-header span{

    width:80px;
    height:80px;

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

    border-radius:20px;

    background:
    linear-gradient(
    135deg,
    var(--maroon-dark),
    var(--maroon));

    color:#fff;

    font-size:26px;
    font-weight:700;

    box-shadow:
    0 15px 30px rgba(94,11,21,.18);
}

/* Heading */

.service-header h2{

    font-size:52px;

    line-height:1.1;

    font-weight:800;

    background:
    linear-gradient(
    90deg,
    var(--maroon-dark),
    var(--maroon),
    var(--gold));

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ===================================
   CONTENT
=================================== */

.service-content p{

    font-size:19px;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:20px;
}

/* ===================================
   LIST
=================================== */

.service-content ul{

    list-style:none;

    margin:30px 0;
}

.service-content ul li{

    position:relative;

    padding-left:32px;

    margin-bottom:16px;

    font-size:18px;

    color:var(--text);
}

/* Gold Bullet */

.service-content ul li::before{

    content:'';

    position:absolute;

    left:0;
    top:9px;

    width:12px;
    height:12px;

    border-radius:50%;

    background:var(--gold);

    box-shadow:
    0 0 12px rgba(212,175,55,.8);
}

/* ===================================
   COMPARISON GRID
=================================== */

.comparison-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

    margin-top:30px;
}

/* ===================================
   COMPARISON CARDS
=================================== */

.compare-card{

    padding:35px;

    border-radius:24px;

    transition:.4s ease;
}

.compare-card:hover{

    transform:
    translateY(-8px);
}

/* Positive Card */

.with-service{

    background:
    linear-gradient(
    135deg,
    rgba(212,175,55,.08),
    rgba(212,175,55,.20));

    border-left:6px solid var(--gold);
}

/* Negative Card */

.without-service{

    background:
    linear-gradient(
    135deg,
    rgba(94,11,21,.05),
    rgba(94,11,21,.12));

    border-left:6px solid var(--maroon);
}

.compare-card h3{

    color:var(--maroon);

    font-size:28px;

    margin-bottom:20px;
}

/* ===================================
   BUTTON
=================================== */

.service-btn{

    display:inline-block;

    margin-top:20px;

    padding:18px 40px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    background:
    linear-gradient(
    135deg,
    var(--maroon),
    var(--maroon-light));

    transition:.4s ease;
}

.service-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 15px 30px rgba(94,11,21,.25);
}

/* ===================================
   HERO TAGLINE
=================================== */

.hero-tagline{

    font-size:22px;

    color:var(--gold);

    font-weight:600;

    margin-top:15px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

    .service-container{
        padding:45px;
    }

    .service-header h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .service-section{
        padding:70px 6%;
    }

    .service-container{
        padding:30px;
        border-radius:24px;
    }

    .service-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .service-header span{
        width:65px;
        height:65px;
        font-size:20px;
    }

    .service-header h2{
        font-size:32px;
    }

    .service-content p{
        font-size:16px;
    }

    .service-content ul li{
        font-size:16px;
    }

    .comparison-grid{
        grid-template-columns:1fr;
    }

    .hero-tagline{
        font-size:18px;
    }
}/* End custom CSS */