.elementor-597 .elementor-element.elementor-element-64b0bfc{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}/* Start custom CSS for html, class: .elementor-element-64b0bfc *//*==============================
 HERO SECTION - PART 1
 SV DIGITAL ADS
==============================*/

.sv-hero{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:linear-gradient(135deg,#06142E 0%,#0A4D9C 50%,#00AEEF 100%);
}

.sv-hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    z-index:1;
}

.sv-hero-container{
    width:100%;
    max-width:1300px;
    margin:0 auto;
    padding:90px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
    position:relative;
    z-index:2;
}

.sv-hero-content{
    color:#fff;
}

.sv-badge{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    backdrop-filter:blur(10px);
    font-size:15px;
    font-weight:600;
    margin-bottom:25px;
}

.sv-hero-content h1{
    font-size:64px;
    line-height:1.15;
    font-weight:800;
    margin:0 0 25px;
    color:#ffffff;
}

.sv-hero-content h1 span{
    color:#00E5FF;
}

.sv-hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#E8F4FF;
    max-width:620px;
    margin-bottom:35px;
}

.sv-hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}
/*==============================
 HERO SECTION - PART 2
 SV DIGITAL ADS
==============================*/

/* Hero Image */
.sv-hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.sv-hero-image img{
    width:100%;
    max-width:580px;
    height:auto;
    display:block;
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.35);
    transition:all .4s ease;
    animation:heroFloat 4s ease-in-out infinite;
}

.sv-hero-image img:hover{
    transform:scale(1.03);
}

/* Buttons */
.sv-btn-primary,
.sv-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:12px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:all .35s ease;
}

.sv-btn-primary{
    background:#00B7FF;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,183,255,.35);
}

.sv-btn-primary:hover{
    background:#0099E6;
    transform:translateY(-4px);
    box-shadow:0 16px 35px rgba(0,183,255,.45);
}

.sv-btn-secondary{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
}

.sv-btn-secondary:hover{
    background:#fff;
    color:#0A4D9C;
    transform:translateY(-4px);
}

/* Statistics */
.sv-hero-stats{
    display:flex;
    gap:20px;
    margin-top:60px;
    flex-wrap:wrap;
}

.sv-stat-box{
    min-width:170px;
    padding:25px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    transition:.35s ease;
}

.sv-stat-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.14);
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.sv-stat-box h2{
    margin:0;
    font-size:34px;
    font-weight:800;
    color:#00E5FF;
}

.sv-stat-box p{
    margin:10px 0 0;
    font-size:15px;
    color:#fff;
}

/* Floating Animation */
@keyframes heroFloat{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}
/*========================================
 HERO RESPONSIVE CSS
 SV DIGITAL ADS
========================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-hero-container{
        max-width:1100px;
        gap:50px;
    }

    .sv-hero-content h1{
        font-size:54px;
    }

    .sv-hero-content p{
        font-size:18px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-hero{
        min-height:auto;
        padding:80px 0;
    }

    .sv-hero-container{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .sv-hero-content{
        order:2;
    }

    .sv-hero-image{
        order:1;
    }

    .sv-hero-content h1{
        font-size:46px;
    }

    .sv-hero-content p{
        margin:0 auto 35px;
        max-width:700px;
    }

    .sv-hero-buttons{
        justify-content:center;
    }

    .sv-hero-stats{
        justify-content:center;
    }

    .sv-hero-image img{
        max-width:500px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-hero{
        padding:70px 0;
    }

    .sv-hero-container{
        padding:40px 20px;
        gap:40px;
    }

    .sv-badge{
        font-size:13px;
        padding:8px 18px;
    }

    .sv-hero-content h1{
        font-size:34px;
        line-height:1.3;
    }

    .sv-hero-content p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .sv-btn-primary,
    .sv-btn-secondary{
        width:100%;
    }

    .sv-hero-stats{
        flex-direction:column;
        gap:15px;
    }

    .sv-stat-box{
        width:100%;
        min-width:100%;
    }

    .sv-stat-box h2{
        font-size:28px;
    }

    .sv-hero-image img{
        max-width:100%;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-hero-content h1{
        font-size:28px;
    }

    .sv-hero-content p{
        font-size:15px;
    }

    .sv-btn-primary,
    .sv-btn-secondary{
        font-size:15px;
        padding:14px 24px;
    }

    .sv-stat-box{
        padding:20px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e6ed460 *//*======================================
 ABOUT SECTION - PART 1
 SV DIGITAL ADS
======================================*/

.sv-about{
    position:relative;
    padding:100px 20px;
    background:#ffffff;
    overflow:hidden;
}

.sv-about-container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/* Left Image */

.sv-about-image{
    position:relative;
}

.sv-about-image img{
    width:100%;
    display:block;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* Experience Box */

.sv-exp-box{
    position:absolute;
    bottom:-220px;
    right:180px;
    background:#00B7FF;
    color:#fff;
    padding:25px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,183,255,.30);
}

.sv-exp-box h2{
    font-size:42px;
    margin:0;
    font-weight:800;
}

.sv-exp-box p{
    margin:8px 0 0;
    font-size:15px;
    font-weight:500;
}

/* Right Content */

.sv-about-content{
    color:#222;
}

.sv-section-tag{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:#EAF8FF;
    color:#0099E6;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

.sv-about-content h2{
    font-size:48px;
    line-height:1.25;
    font-weight:800;
    margin-bottom:25px;
    color:#0B1F3A;
}

.sv-about-content h2 span{
    color:#00B7FF;
}

.sv-about-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}
/*======================================
 ABOUT SECTION - PART 2
 SV DIGITAL ADS
======================================*/

/* Features */

.sv-about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0 40px;
}

.sv-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:18px 20px;
    background:#F8FBFF;
    border:1px solid #E4F2FF;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    color:#0B1F3A;
    transition:all .35s ease;
}

.sv-feature:hover{
    background:#00B7FF;
    color:#ffffff;
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,183,255,.25);
}

/* Button */

.sv-about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 36px;
    background:#00B7FF;
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    border-radius:12px;
    transition:all .35s ease;
    box-shadow:0 15px 35px rgba(0,183,255,.30);
}

.sv-about-btn:hover{
    background:#008FD6;
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,183,255,.40);
}

/* Image Hover */

.sv-about-image img{
    transition:transform .4s ease;
}

.sv-about-image:hover img{
    transform:scale(1.03);
}

/* Experience Box Animation */

.sv-exp-box{
    animation:floatBox 4s ease-in-out infinite;
}

@keyframes floatBox{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Decorative Background */

.sv-about::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(0,183,255,.06);
    top:-120px;
    left:-120px;
}

.sv-about::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(10,77,156,.05);
    bottom:-100px;
    right:-100px;
}

/* Keep Content Above Decorations */

.sv-about-container{
    position:relative;
    z-index:2;
}
/*======================================
 ABOUT SECTION - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-about-container{
        gap:60px;
    }

    .sv-about-content h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-about{
        padding:80px 20px;
    }

    .sv-about-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .sv-about-image{
        max-width:600px;
        margin:0 auto;
    }

    .sv-about-content{
        text-align:center;
    }

    .sv-about-content p{
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }

    .sv-about-features{
        justify-content:center;
    }

    .sv-about-btn{
        margin:0 auto;
    }

    .sv-exp-box{
        right:20px;
        bottom:20px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-about{
        padding:70px 20px;
    }

    .sv-about-content h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-about-content p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-about-features{
        grid-template-columns:1fr;
        gap:15px;
    }

    .sv-feature{
        padding:16px 18px;
        font-size:15px;
    }

    .sv-about-btn{
        width:100%;
        padding:16px;
    }

    .sv-exp-box{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        width:220px;
        margin-left:auto;
        margin-right:auto;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-about-content h2{
        font-size:28px;
    }

    .sv-section-tag{
        font-size:13px;
        padding:8px 16px;
    }

    .sv-about-content p{
        font-size:15px;
    }

    .sv-exp-box{
        width:190px;
        padding:18px;
    }

    .sv-exp-box h2{
        font-size:34px;
    }

    .sv-exp-box p{
        font-size:14px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-321d175 *//*======================================
 OUR SERVICES - PART 1
 SV DIGITAL ADS
======================================*/

.sv-services{
    position:relative;
    padding:100px 20px;
    background:#F8FBFF;
    overflow:hidden;
}

.sv-services-container{
    max-width:1300px;
    margin:0 auto;
}

/* Section Heading */

.sv-services-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 70px;
}

.sv-services-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-services-heading h2 span{
    color:#00B7FF;
}

.sv-services-heading p{
    font-size:18px;
    line-height:1.8;
    color:#666;
}

/* Services Grid */

.sv-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Service Card */

.sv-service-card{
    background:#ffffff;
    padding:40px 30px;
    border-radius:22px;
    border:1px solid #E7EEF8;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* Top Border Animation */

.sv-service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:5px;
    background:#00B7FF;
    transition:.4s;
}

.sv-service-card:hover::before{
    width:100%;
}

/* Service Icon */

.sv-service-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:#EAF8FF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:25px;
}
/*======================================
 OUR SERVICES - PART 2
 SV DIGITAL ADS
======================================*/

/* Card Heading */

.sv-service-card h3{
    font-size:24px;
    font-weight:700;
    color:#0B1F3A;
    margin:0 0 18px;
    transition:.35s ease;
}

/* Card Description */

.sv-service-card p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin:0;
    transition:.35s ease;
}

/* Hover Effect */

.sv-service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    border-color:#00B7FF;
}

/* Icon Animation */

.sv-service-card:hover .sv-service-icon{
    background:#00B7FF;
    color:#ffffff;
    transform:rotate(10deg) scale(1.08);
}

.sv-service-icon{
    transition:all .35s ease;
}

/* Heading Hover */

.sv-service-card:hover h3{
    color:#00B7FF;
}

/* Read More Button */

.sv-service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:25px;
    color:#00B7FF;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
}

.sv-service-btn::after{
    content:"➜";
    transition:.35s ease;
}

.sv-service-btn:hover{
    color:#0A4D9C;
}

.sv-service-btn:hover::after{
    transform:translateX(6px);
}

/* Glow Background */

.sv-service-card::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(0,183,255,.08);
    border-radius:50%;
    top:-100px;
    right:-100px;
    transition:.4s ease;
}

.sv-service-card:hover::after{
    transform:scale(1.4);
}

/* Card Content */

.sv-service-card>*{
    position:relative;
    z-index:2;
}

/* Smooth Animation */

.sv-service-card{
    animation:serviceFade .8s ease;
}

@keyframes serviceFade{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/*======================================
 OUR SERVICES - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Large Laptop */
@media (max-width:1200px){

    .sv-services-container{
        max-width:1100px;
    }

    .sv-services-grid{
        gap:25px;
    }

    .sv-services-heading h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-services{
        padding:80px 20px;
    }

    .sv-services-heading{
        margin-bottom:50px;
    }

    .sv-services-heading h2{
        font-size:38px;
    }

    .sv-services-heading p{
        font-size:17px;
    }

    .sv-services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .sv-service-card{
        padding:35px 25px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-services{
        padding:70px 20px;
    }

    .sv-services-heading{
        margin-bottom:40px;
    }

    .sv-services-heading h2{
        font-size:30px;
        line-height:1.4;
    }

    .sv-services-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .sv-service-card{
        padding:30px 22px;
        text-align:center;
    }

    .sv-service-icon{
        margin:0 auto 20px;
    }

    .sv-service-btn{
        justify-content:center;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-services-heading h2{
        font-size:26px;
    }

    .sv-services-heading p{
        font-size:15px;
    }

    .sv-service-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .sv-service-icon{
        width:70px;
        height:70px;
        font-size:32px;
        border-radius:16px;
    }

    .sv-service-card h3{
        font-size:21px;
    }

    .sv-service-card p{
        font-size:15px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6be6f63 *//*======================================
 WHY CHOOSE US - PART 1
 SV DIGITAL ADS
======================================*/

.sv-why{
    position:relative;
    padding:100px 20px;
    background:#F8FBFF;
    overflow:hidden;
}

.sv-why-container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/* Left Image */

.sv-why-image{
    position:relative;
}

.sv-why-image img{
    width:100%;
    display:block;
    border-radius:25px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* Right Content */

.sv-why-content{
    color:#222;
}

.sv-why-content h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin-bottom:25px;
}

.sv-why-content h2 span{
    color:#00B7FF;
}

.sv-why-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
}

/* Features Grid */

.sv-why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:35px;
}
/*======================================
 WHY CHOOSE US - PART 2
 SV DIGITAL ADS
======================================*/

/* Why Box */

.sv-why-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px;
    background:#ffffff;
    border:1px solid #E8EEF7;
    border-radius:18px;
    transition:all .35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sv-why-box:hover{
    transform:translateY(-8px);
    border-color:#00B7FF;
    box-shadow:0 20px 45px rgba(0,183,255,.18);
}

/* Icon */

.sv-why-icon{
    width:65px;
    height:65px;
    min-width:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    color:#ffffff;
    font-size:28px;
    border-radius:18px;
    transition:.35s ease;
}

.sv-why-box:hover .sv-why-icon{
    transform:rotate(-10deg) scale(1.08);
}

/* Text */

.sv-why-box h4{
    margin:0 0 8px;
    font-size:20px;
    font-weight:700;
    color:#0B1F3A;
}

.sv-why-box p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#666;
}

/* Button */

.sv-why-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:40px;
    padding:16px 36px;
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    color:#ffffff;
    text-decoration:none;
    border-radius:12px;
    font-size:16px;
    font-weight:700;
    transition:all .35s ease;
    box-shadow:0 15px 35px rgba(0,183,255,.30);
}

.sv-why-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 45px rgba(0,183,255,.40);
}

/* Image Hover */

.sv-why-image img{
    transition:all .4s ease;
}

.sv-why-image:hover img{
    transform:scale(1.03);
}

/* Decorative Background */

.sv-why::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(0,183,255,.05);
    top:-140px;
    right:-140px;
}

.sv-why::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(10,77,156,.05);
    left:-100px;
    bottom:-100px;
}

.sv-why-container{
    position:relative;
    z-index:2;
}
/*======================================
 WHY CHOOSE US - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-why-container{
        gap:60px;
    }

    .sv-why-content h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-why{
        padding:80px 20px;
    }

    .sv-why-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .sv-why-image{
        max-width:600px;
        margin:0 auto;
    }

    .sv-why-content{
        text-align:center;
    }

    .sv-why-content p{
        max-width:700px;
        margin-left:auto;
        margin-right:auto;
    }

    .sv-why-grid{
        grid-template-columns:1fr 1fr;
    }

    .sv-why-btn{
        margin:40px auto 0;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-why{
        padding:70px 20px;
    }

    .sv-why-content h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-why-content p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-why-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .sv-why-box{
        padding:18px;
        text-align:left;
    }

    .sv-why-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:24px;
        border-radius:14px;
    }

    .sv-why-box h4{
        font-size:18px;
    }

    .sv-why-box p{
        font-size:14px;
    }

    .sv-why-btn{
        width:100%;
        padding:16px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-why-content h2{
        font-size:28px;
    }

    .sv-why-content p{
        font-size:15px;
    }

    .sv-section-tag{
        font-size:13px;
        padding:8px 16px;
    }

    .sv-why-box{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .sv-why-icon{
        margin-bottom:10px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-147ecd7 *//*======================================
 OUR PROCESS - PART 1
 SV DIGITAL ADS
======================================*/

.sv-process{
    position:relative;
    padding:100px 20px;
    background:#ffffff;
    overflow:hidden;
}

.sv-process-container{
    max-width:1300px;
    margin:0 auto;
}

/* Heading */

.sv-process-heading{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.sv-process-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-process-heading h2 span{
    color:#00B7FF;
}

.sv-process-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/* Grid */

.sv-process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.sv-process-card{
    position:relative;
    background:#ffffff;
    border:1px solid #E8EEF7;
    border-radius:22px;
    padding:40px 30px;
    overflow:hidden;
    transition:all .35s ease;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

/* Step Number */

.sv-process-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:48px;
    font-weight:800;
    color:rgba(0,183,255,.10);
    line-height:1;
}

/* Icon */

.sv-process-icon{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    border-radius:20px;
    margin-bottom:25px;
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    color:#ffffff;
    box-shadow:0 15px 35px rgba(0,183,255,.25);
}

/* Text */

.sv-process-card h3{
    font-size:24px;
    font-weight:700;
    color:#0B1F3A;
    margin-bottom:15px;
}

.sv-process-card p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin:0;
}
/*======================================
 OUR PROCESS - PART 2
 SV DIGITAL ADS
======================================*/

/* Card Hover */

.sv-process-card:hover{
    transform:translateY(-10px);
    border-color:#00B7FF;
    box-shadow:0 25px 60px rgba(0,183,255,.18);
}

/* Top Gradient Border */

.sv-process-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#00B7FF,#0A4D9C);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
}

.sv-process-card:hover::before{
    transform:scaleX(1);
}

/* Icon Animation */

.sv-process-icon{
    transition:all .35s ease;
}

.sv-process-card:hover .sv-process-icon{
    transform:rotate(-10deg) scale(1.1);
}

/* Step Number Animation */

.sv-process-number{
    transition:all .35s ease;
}

.sv-process-card:hover .sv-process-number{
    color:rgba(0,183,255,.22);
    transform:scale(1.1);
}

/* Title Animation */

.sv-process-card h3{
    transition:.35s ease;
}

.sv-process-card:hover h3{
    color:#00B7FF;
}

/* Decorative Background */

.sv-process::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(0,183,255,.05);
    top:-140px;
    left:-140px;
}

.sv-process::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(10,77,156,.05);
    bottom:-120px;
    right:-120px;
}

.sv-process-container{
    position:relative;
    z-index:2;
}

/* Smooth Transition */

.sv-process-card,
.sv-process-card h3,
.sv-process-icon,
.sv-process-number{
    transition:all .35s ease;
}
/*======================================
 OUR PROCESS - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-process-grid{
        gap:25px;
    }

    .sv-process-heading h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-process{
        padding:80px 20px;
    }

    .sv-process-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .sv-process-heading{
        margin-bottom:50px;
    }

    .sv-process-heading h2{
        font-size:38px;
    }

    .sv-process-heading p{
        max-width:700px;
        margin:0 auto;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-process{
        padding:70px 20px;
    }

    .sv-process-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .sv-process-heading{
        margin-bottom:40px;
    }

    .sv-process-heading h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-process-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-process-card{
        padding:30px 25px;
    }

    .sv-process-icon{
        width:70px;
        height:70px;
        font-size:32px;
    }

    .sv-process-card h3{
        font-size:22px;
    }

    .sv-process-card p{
        font-size:15px;
    }

    .sv-process-number{
        font-size:42px;
        top:18px;
        right:20px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-process-heading h2{
        font-size:28px;
    }

    .sv-process-heading p{
        font-size:15px;
    }

    .sv-process-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .sv-process-icon{
        width:60px;
        height:60px;
        font-size:28px;
        border-radius:16px;
    }

    .sv-process-card h3{
        font-size:20px;
    }

    .sv-process-card p{
        font-size:14px;
        line-height:1.7;
    }

    .sv-process-number{
        font-size:34px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-35b9e2b *//*======================================
 PORTFOLIO SECTION - PART 1
 SV DIGITAL ADS
======================================*/

.sv-portfolio{
    position:relative;
    padding:100px 20px;
    background:#F8FBFF;
    overflow:hidden;
}

.sv-portfolio-container{
    max-width:1300px;
    margin:0 auto;
}

/*==============================
 Section Heading
==============================*/

.sv-portfolio-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.sv-portfolio-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-portfolio-heading h2 span{
    color:#00B7FF;
}

.sv-portfolio-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/*==============================
 Filter Buttons
==============================*/

.sv-portfolio-filter{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.sv-portfolio-filter button{

    border:none;
    outline:none;
    cursor:pointer;

    padding:14px 28px;

    background:#ffffff;

    color:#0B1F3A;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    transition:.35s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.sv-portfolio-filter button:hover,
.sv-portfolio-filter button.active{

    background:linear-gradient(135deg,#00B7FF,#0A4D9C);

    color:#ffffff;

}

/*==============================
 Portfolio Grid
==============================*/

.sv-portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*==============================
 Portfolio Card
==============================*/

.sv-portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#ffffff;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    transition:.4s ease;

}

.sv-portfolio-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    display:block;

    transition:.45s ease;

}
/*======================================
 PORTFOLIO SECTION - PART 2
 SV DIGITAL ADS
======================================*/

/* Overlay */

.sv-portfolio-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:flex-start;

    padding:35px;

    background:linear-gradient(
        to top,
        rgba(4,18,44,.95) 0%,
        rgba(4,18,44,.75) 45%,
        rgba(4,18,44,.10) 100%
    );

    opacity:0;

    transition:.4s ease;

}

/* Hover */

.sv-portfolio-card:hover .sv-portfolio-overlay{

    opacity:1;

}

.sv-portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,183,255,.22);

}

.sv-portfolio-card:hover img{

    transform:scale(1.12);

}

/* Category */

.sv-portfolio-overlay span{

    display:inline-block;

    padding:8px 18px;

    border-radius:30px;

    background:#00B7FF;

    color:#fff;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;

}

/* Title */

.sv-portfolio-overlay h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin:0 0 22px;

    line-height:1.3;

}

/* Button */

.sv-portfolio-overlay a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:10px;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

    background:#ffffff;

    color:#0A4D9C;

    transition:.35s ease;

}

.sv-portfolio-overlay a:hover{

    background:#00B7FF;

    color:#ffffff;

}

/* Decorative Background */

.sv-portfolio::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(0,183,255,.05);

    top:-150px;

    left:-150px;

}

.sv-portfolio::after{

    content:"";

    position:absolute;

    width:240px;

    height:240px;

    border-radius:50%;

    background:rgba(10,77,156,.05);

    right:-100px;

    bottom:-100px;

}

.sv-portfolio-container{

    position:relative;

    z-index:2;

}

/* Smooth Animation */

.sv-portfolio-card,
.sv-portfolio-card img,
.sv-portfolio-overlay,
.sv-portfolio-overlay a{

    transition:all .35s ease;

}
/*======================================
 PORTFOLIO - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Large Laptop */
@media (max-width:1200px){

    .sv-portfolio-grid{
        gap:25px;
    }

    .sv-portfolio-heading h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-portfolio{
        padding:80px 20px;
    }

    .sv-portfolio-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .sv-portfolio-heading{
        margin-bottom:50px;
    }

    .sv-portfolio-heading h2{
        font-size:38px;
    }

    .sv-portfolio-heading p{
        max-width:700px;
        margin:0 auto;
    }

    .sv-portfolio-filter{
        gap:12px;
        margin-bottom:45px;
    }

    .sv-portfolio-filter button{
        padding:12px 22px;
        font-size:14px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-portfolio{
        padding:70px 20px;
    }

    .sv-portfolio-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .sv-portfolio-heading{
        margin-bottom:40px;
    }

    .sv-portfolio-heading h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-portfolio-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-portfolio-filter{
        justify-content:center;
        gap:10px;
    }

    .sv-portfolio-filter button{
        padding:10px 18px;
        font-size:14px;
    }

    .sv-portfolio-card img{
        height:280px;
    }

    .sv-portfolio-overlay{
        padding:25px;
    }

    .sv-portfolio-overlay h3{
        font-size:22px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-portfolio-heading h2{
        font-size:28px;
    }

    .sv-portfolio-heading p{
        font-size:15px;
    }

    .sv-portfolio-filter{
        flex-direction:column;
        width:100%;
    }

    .sv-portfolio-filter button{
        width:100%;
    }

    .sv-portfolio-card img{
        height:240px;
    }

    .sv-portfolio-overlay{
        padding:20px;
    }

    .sv-portfolio-overlay span{
        font-size:12px;
    }

    .sv-portfolio-overlay h3{
        font-size:20px;
        margin-bottom:18px;
    }

    .sv-portfolio-overlay a{
        width:100%;
        justify-content:center;
        padding:12px 18px;
        font-size:14px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f16f9e3 *//*======================================
 CLIENT TESTIMONIALS - PART 1
 SV DIGITAL ADS
======================================*/

.sv-testimonials{
    position:relative;
    padding:100px 20px;
    background:#ffffff;
    overflow:hidden;
}

.sv-testimonials-container{
    max-width:1300px;
    margin:0 auto;
}

/*==============================
 Section Heading
==============================*/

.sv-testimonials-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.sv-testimonials-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-testimonials-heading h2 span{
    color:#00B7FF;
}

.sv-testimonials-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/*==============================
 Testimonial Grid
==============================*/

.sv-testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*==============================
 Testimonial Card
==============================*/

.sv-testimonial-card{
    position:relative;
    background:#ffffff;
    border:1px solid #E8EEF7;
    border-radius:22px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.sv-stars{
    font-size:20px;
    margin-bottom:20px;
}

.sv-testimonial-card p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:30px;
}

/*==============================
 Client Info
==============================*/

.sv-client{
    display:flex;
    align-items:center;
    gap:15px;
}

.sv-client img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #EAF8FF;
}

.sv-client h4{
    margin:0 0 6px;
    font-size:20px;
    font-weight:700;
    color:#0B1F3A;
}

.sv-client span{
    font-size:14px;
    color:#00B7FF;
    font-weight:600;
}
/*======================================
 CLIENT TESTIMONIALS - PART 2
 SV DIGITAL ADS
======================================*/

/* Quote Icon */

.sv-testimonial-card::before{
    content:"❝";
    position:absolute;
    top:20px;
    right:25px;
    font-size:70px;
    line-height:1;
    color:rgba(0,183,255,.10);
    font-family:serif;
    transition:all .35s ease;
}

/* Card Hover */

.sv-testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#00B7FF;
    box-shadow:0 25px 60px rgba(0,183,255,.18);
}

.sv-testimonial-card:hover::before{
    color:rgba(0,183,255,.20);
    transform:scale(1.1);
}

/* Stars */

.sv-stars{
    transition:.35s ease;
}

.sv-testimonial-card:hover .sv-stars{
    transform:scale(1.05);
}

/* Client Image */

.sv-client img{
    transition:all .35s ease;
}

.sv-testimonial-card:hover .sv-client img{
    transform:scale(1.08);
    border-color:#00B7FF;
}

/* Client Name */

.sv-client h4{
    transition:.35s ease;
}

.sv-testimonial-card:hover .sv-client h4{
    color:#00B7FF;
}

/* Decorative Background */

.sv-testimonials::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(0,183,255,.05);
    top:-150px;
    left:-150px;
}

.sv-testimonials::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(10,77,156,.05);
    right:-100px;
    bottom:-100px;
}

.sv-testimonials-container{
    position:relative;
    z-index:2;
}

/* Smooth Transition */

.sv-testimonial-card,
.sv-testimonial-card::before,
.sv-stars,
.sv-client img,
.sv-client h4{
    transition:all .35s ease;
}
/*======================================
 CLIENT TESTIMONIALS - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-testimonials-grid{
        gap:25px;
    }

    .sv-testimonials-heading h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-testimonials{
        padding:80px 20px;
    }

    .sv-testimonials-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .sv-testimonials-heading{
        margin-bottom:50px;
    }

    .sv-testimonials-heading h2{
        font-size:38px;
    }

    .sv-testimonials-heading p{
        max-width:700px;
        margin:0 auto;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-testimonials{
        padding:70px 20px;
    }

    .sv-testimonials-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .sv-testimonials-heading{
        margin-bottom:40px;
    }

    .sv-testimonials-heading h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-testimonials-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-testimonial-card{
        padding:30px 25px;
    }

    .sv-testimonial-card::before{
        font-size:55px;
        top:18px;
        right:18px;
    }

    .sv-testimonial-card p{
        font-size:15px;
    }

    .sv-client img{
        width:60px;
        height:60px;
    }

    .sv-client h4{
        font-size:18px;
    }

    .sv-client span{
        font-size:13px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-testimonials-heading h2{
        font-size:28px;
    }

    .sv-testimonials-heading p{
        font-size:15px;
    }

    .sv-testimonial-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .sv-stars{
        font-size:18px;
    }

    .sv-testimonial-card::before{
        font-size:45px;
    }

    .sv-client{
        gap:12px;
    }

    .sv-client img{
        width:55px;
        height:55px;
    }

    .sv-client h4{
        font-size:17px;
    }

    .sv-client span{
        font-size:12px;
    }

}
.sv-testimonial-card{
    transition: all .35s ease;
}

.sv-testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f429067 *//*======================================
 TRUSTED CLIENTS - PART 1
 SV DIGITAL ADS
======================================*/

.sv-clients{
    position:relative;
    padding:100px 20px;
    background:#F8FBFF;
    overflow:hidden;
}

.sv-clients-container{
    max-width:1300px;
    margin:0 auto;
}

/*==============================
 Section Heading
==============================*/

.sv-clients-heading{
    max-width:760px;
    margin:0 auto 60px;
    text-align:center;
}

.sv-clients-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-clients-heading h2 span{
    color:#00B7FF;
}

.sv-clients-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/*==============================
 Logo Slider
==============================*/

.sv-clients-slider{
    position:relative;
    overflow:hidden;
    width:100%;
    padding:15px 0;
}

.sv-clients-track{

    display:flex;

    align-items:center;

    gap:30px;

    width:max-content;

    animation:clientScroll 35s linear infinite;

}

/*==============================
 Logo Card
==============================*/

.sv-client-logo{

    width:210px;

    height:120px;

    background:#ffffff;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    border:1px solid #E8EEF7;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    flex-shrink:0;

    transition:.35s ease;

}

.sv-client-logo img{

    max-width:140px;

    max-height:70px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.35s ease;

}

/* Infinite Animation */

@keyframes clientScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}
/*======================================
 TRUSTED CLIENTS - PART 2
 SV DIGITAL ADS
======================================*/

/* Logo Card Hover */

.sv-client-logo:hover{
    transform:translateY(-8px);
    border-color:#00B7FF;
    box-shadow:0 20px 45px rgba(0,183,255,.18);
}

/* Logo Hover Effect */

.sv-client-logo img{
    filter:grayscale(100%);
    opacity:.75;
}

.sv-client-logo:hover img{
    filter:grayscale(0%);
    opacity:1;
    transform:scale(1.08);
}

/* Pause Animation */

.sv-clients-slider:hover .sv-clients-track{
    animation-play-state:paused;
}

/* Gradient Fade Left */

.sv-clients-slider::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
    background:linear-gradient(to right,#F8FBFF 0%,rgba(248,251,255,0) 100%);
}

/* Gradient Fade Right */

.sv-clients-slider::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:120px;
    height:100%;
    z-index:5;
    pointer-events:none;
    background:linear-gradient(to left,#F8FBFF 0%,rgba(248,251,255,0) 100%);
}

/* Decorative Background */

.sv-clients::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(0,183,255,.05);
    top:-150px;
    left:-150px;
}

.sv-clients::after{
    content:"";
    position:absolute;
    width:240px;
    height:240px;
    border-radius:50%;
    background:rgba(10,77,156,.05);
    right:-120px;
    bottom:-120px;
}

.sv-clients-container{
    position:relative;
    z-index:2;
}

/* Smooth Animation */

.sv-client-logo,
.sv-client-logo img{
    transition:all .35s ease;
}
/*======================================
 TRUSTED CLIENTS - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-clients-heading h2{
        font-size:42px;
    }

    .sv-client-logo{
        width:190px;
        height:110px;
    }

    .sv-client-logo img{
        max-width:130px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-clients{
        padding:80px 20px;
    }

    .sv-clients-heading{
        margin-bottom:50px;
    }

    .sv-clients-heading h2{
        font-size:38px;
    }

    .sv-clients-heading p{
        max-width:700px;
        margin:0 auto;
    }

    .sv-clients-track{
        gap:20px;
        animation-duration:30s;
    }

    .sv-client-logo{
        width:170px;
        height:100px;
    }

    .sv-client-logo img{
        max-width:120px;
        max-height:60px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-clients{
        padding:70px 20px;
    }

    .sv-clients-heading{
        margin-bottom:40px;
    }

    .sv-clients-heading h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-clients-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-clients-track{
        gap:15px;
        animation-duration:25s;
    }

    .sv-client-logo{
        width:150px;
        height:90px;
        border-radius:16px;
    }

    .sv-client-logo img{
        max-width:100px;
        max-height:50px;
    }

    .sv-clients-slider::before,
    .sv-clients-slider::after{
        width:50px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-clients-heading h2{
        font-size:28px;
    }

    .sv-clients-heading p{
        font-size:15px;
    }

    .sv-client-logo{
        width:130px;
        height:80px;
        border-radius:14px;
    }

    .sv-client-logo img{
        max-width:85px;
        max-height:45px;
    }

    .sv-clients-track{
        gap:12px;
    }

    .sv-clients-slider::before,
    .sv-clients-slider::after{
        width:30px;
    }

}
.sv-client-logo{
    transition:all .35s ease;
}

.sv-client-logo:hover{
    transform:scale(1.08);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b825c4b *//*======================================
 PRICING PLANS - PART 1
 SV DIGITAL ADS
======================================*/

.sv-pricing{
    position:relative;
    padding:100px 20px;
    background:#ffffff;
    overflow:hidden;
}

.sv-pricing-container{
    max-width:1300px;
    margin:0 auto;
}

/*==============================
 Section Heading
==============================*/

.sv-pricing-heading{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.sv-pricing-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-pricing-heading h2 span{
    color:#00B7FF;
}

.sv-pricing-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/*==============================
 Pricing Grid
==============================*/

.sv-pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:stretch;
}

/*==============================
 Pricing Card
==============================*/

.sv-price-card{
    position:relative;
    background:#ffffff;
    border:1px solid #E8EEF7;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 18px 40px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.sv-price-card h3{
    font-size:30px;
    font-weight:700;
    color:#0B1F3A;
    margin-bottom:25px;
}

/*==============================
 Price
==============================*/

.sv-price{
    font-size:56px;
    font-weight:800;
    color:#00B7FF;
    margin-bottom:30px;
    line-height:1;
}

.sv-price span{
    font-size:28px;
    vertical-align:top;
}

.sv-price small{
    display:block;
    margin-top:12px;
    font-size:16px;
    font-weight:600;
    color:#666;
}

/*==============================
 Features List
==============================*/

.sv-price-card ul{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.sv-price-card ul li{
    padding:14px 0;
    border-bottom:1px solid #EDF2F7;
    font-size:16px;
    color:#555;
}

/*==============================
 Most Popular Card
==============================*/

.active-plan{
    border:2px solid #00B7FF;
    transform:scale(1.04);
}

.sv-popular{
    position:absolute;
    top:-16px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}
/*======================================
 PRICING PLANS - PART 2
 SV DIGITAL ADS
======================================*/

/*==============================
 Pricing Button
==============================*/

.sv-price-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:16px 20px;
    border-radius:12px;
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    color:#ffffff;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    transition:all .35s ease;
    box-shadow:0 15px 35px rgba(0,183,255,.25);
}

.sv-price-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 45px rgba(0,183,255,.40);
}

/*==============================
 Card Hover
==============================*/

.sv-price-card:hover{
    transform:translateY(-12px);
    border-color:#00B7FF;
    box-shadow:0 30px 60px rgba(0,183,255,.18);
}

.active-plan:hover{
    transform:translateY(-12px) scale(1.05);
}

/*==============================
 Top Border Animation
==============================*/

.sv-price-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#00B7FF,#0A4D9C);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s ease;
}

.sv-price-card:hover::before,
.active-plan::before{
    transform:scaleX(1);
}

/*==============================
 Feature Hover
==============================*/

.sv-price-card ul li{
    transition:.3s ease;
}

.sv-price-card:hover ul li{
    color:#0B1F3A;
}

/*==============================
 Decorative Background
==============================*/

.sv-pricing::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(0,183,255,.05);
    top:-150px;
    left:-150px;
}

.sv-pricing::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(10,77,156,.05);
    right:-120px;
    bottom:-120px;
}

/*==============================
 Keep Content Above Shapes
==============================*/

.sv-pricing-container{
    position:relative;
    z-index:2;
}

/*==============================
 Smooth Animation
==============================*/

.sv-price-card,
.sv-price-btn,
.sv-price-card::before,
.sv-price-card ul li{
    transition:all .35s ease;
}
/*======================================
 PRICING PLANS - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-pricing-grid{
        gap:25px;
    }

    .sv-pricing-heading h2{
        font-size:42px;
    }

    .sv-price{
        font-size:48px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-pricing{
        padding:80px 20px;
    }

    .sv-pricing-heading{
        margin-bottom:50px;
    }

    .sv-pricing-heading h2{
        font-size:38px;
    }

    .sv-pricing-heading p{
        max-width:700px;
        margin:0 auto;
    }

    .sv-pricing-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .active-plan{
        transform:none;
    }

    .active-plan:hover{
        transform:translateY(-10px);
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-pricing{
        padding:70px 20px;
    }

    .sv-pricing-heading{
        margin-bottom:40px;
    }

    .sv-pricing-heading h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-pricing-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-pricing-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .sv-price-card{
        padding:35px 25px;
    }

    .sv-price-card h3{
        font-size:26px;
    }

    .sv-price{
        font-size:44px;
    }

    .sv-price span{
        font-size:24px;
    }

    .sv-price small{
        font-size:15px;
    }

    .sv-price-card ul li{
        font-size:15px;
        padding:12px 0;
    }

    .sv-price-btn{
        padding:15px;
        font-size:15px;
    }

    .sv-popular{
        font-size:12px;
        padding:8px 18px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-pricing-heading h2{
        font-size:28px;
    }

    .sv-pricing-heading p{
        font-size:15px;
    }

    .sv-price-card{
        padding:30px 20px;
        border-radius:18px;
    }

    .sv-price-card h3{
        font-size:24px;
    }

    .sv-price{
        font-size:38px;
    }

    .sv-price span{
        font-size:22px;
    }

    .sv-price-card ul li{
        font-size:14px;
    }

    .sv-price-btn{
        font-size:14px;
        padding:14px;
    }

    .sv-popular{
        font-size:11px;
        padding:7px 16px;
    }

}
.sv-price-card{
    transition:all .35s ease;
}

.sv-price-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77a43bb *//*======================================
 FAQ SECTION - PART 1
 SV DIGITAL ADS
======================================*/

.sv-faq{
    position:relative;
    padding:100px 20px;
    background:#F8FBFF;
    overflow:hidden;
}

.sv-faq-container{
    max-width:1100px;
    margin:0 auto;
}

/*==============================
 Section Heading
==============================*/

.sv-faq-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.sv-faq-heading h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-faq-heading h2 span{
    color:#00B7FF;
}

.sv-faq-heading p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/*==============================
 FAQ List
==============================*/

.sv-faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/*==============================
 FAQ Item
==============================*/

.sv-faq-item{
    background:#ffffff;
    border:1px solid #E8EEF7;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:all .35s ease;
}

/*==============================
 Question
==============================*/

.sv-faq-question{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:24px 30px;
    background:none;
    border:none;
    cursor:pointer;
    text-align:left;

    font-size:20px;
    font-weight:700;
    color:#0B1F3A;
}

.sv-faq-question span{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:#EAF8FF;

    color:#00B7FF;

    font-size:24px;

    transition:.35s ease;
}

/*==============================
 Answer
==============================*/

.sv-faq-answer{
    display:none;
    padding:0 30px 30px;
}

.sv-faq-answer p{
    font-size:16px;
    line-height:1.9;
    color:#666;
}

/* Default Open */

.sv-faq-item.active .sv-faq-answer{
    display:block;
}

.sv-faq-item.active .sv-faq-question span{
    background:#00B7FF;
    color:#ffffff;
}
/*======================================
 FAQ SECTION - PART 2
 SV DIGITAL ADS
======================================*/

/*==============================
 FAQ Hover
==============================*/

.sv-faq-item:hover{
    border-color:#00B7FF;
    box-shadow:0 20px 45px rgba(0,183,255,.15);
    transform:translateY(-4px);
}

.sv-faq-question:hover{
    color:#00B7FF;
}

.sv-faq-item:hover .sv-faq-question span{
    transform:rotate(90deg);
}

/*==============================
 Active State
==============================*/

.sv-faq-item.active{
    border-color:#00B7FF;
}

.sv-faq-item.active .sv-faq-question{
    color:#00B7FF;
}

.sv-faq-item.active .sv-faq-question span{
    transform:rotate(45deg);
}

/*==============================
 Top Gradient Border
==============================*/

.sv-faq-item::before{
    content:"";
    display:block;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#00B7FF,#0A4D9C);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .35s ease;
}

.sv-faq-item:hover::before,
.sv-faq-item.active::before{
    transform:scaleX(1);
}

/*==============================
 Decorative Background
==============================*/

.sv-faq::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(0,183,255,.05);
    top:-150px;
    left:-150px;
}

.sv-faq::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(10,77,156,.05);
    right:-100px;
    bottom:-100px;
}

.sv-faq-container{
    position:relative;
    z-index:2;
}

/*==============================
 Smooth Animation
==============================*/

.sv-faq-item,
.sv-faq-question,
.sv-faq-question span,
.sv-faq-answer{
    transition:all .35s ease;
}
/*======================================
 FAQ SECTION - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-faq-heading h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-faq{
        padding:80px 20px;
    }

    .sv-faq-heading{
        margin-bottom:50px;
    }

    .sv-faq-heading h2{
        font-size:38px;
    }

    .sv-faq-heading p{
        max-width:700px;
        margin:0 auto;
    }

    .sv-faq-question{
        padding:22px 25px;
        font-size:18px;
    }

    .sv-faq-answer{
        padding:0 25px 25px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-faq{
        padding:70px 20px;
    }

    .sv-faq-heading{
        margin-bottom:40px;
    }

    .sv-faq-heading h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-faq-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-faq-item{
        border-radius:16px;
    }

    .sv-faq-question{
        padding:20px;
        font-size:17px;
        line-height:1.5;
        gap:15px;
    }

    .sv-faq-question span{
        width:36px;
        height:36px;
        min-width:36px;
        font-size:22px;
    }

    .sv-faq-answer{
        padding:0 20px 20px;
    }

    .sv-faq-answer p{
        font-size:15px;
        line-height:1.8;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-faq-heading h2{
        font-size:28px;
    }

    .sv-faq-heading p{
        font-size:15px;
    }

    .sv-faq-question{
        padding:18px;
        font-size:16px;
    }

    .sv-faq-question span{
        width:32px;
        height:32px;
        min-width:32px;
        font-size:20px;
    }

    .sv-faq-answer{
        padding:0 18px 18px;
    }

    .sv-faq-answer p{
        font-size:14px;
    }

}
.sv-faq-item{
    transition:all .35s ease;
}

.sv-faq-item:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7ee3496 *//*======================================
 CALL TO ACTION (CTA) - PART 1
 SV DIGITAL ADS
======================================*/

.sv-cta{
    position:relative;
    padding:110px 20px;
    overflow:hidden;
    background:linear-gradient(135deg,#06142E 0%,#0A4D9C 50%,#00B7FF 100%);
}

.sv-cta-container{
    max-width:1200px;
    margin:0 auto;
}

.sv-cta-content{
    position:relative;
    z-index:2;
    text-align:center;
    padding:70px 50px;
    border-radius:30px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    backdrop-filter:blur(18px);
}

/*==============================
 CTA Tag
==============================*/

.sv-cta-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.20);

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

/*==============================
 Heading
==============================*/

.sv-cta-content h2{

    font-size:54px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:25px;

}

.sv-cta-content h2 span{

    color:#9BE7FF;

}

/*==============================
 Description
==============================*/

.sv-cta-content p{

    max-width:760px;

    margin:0 auto 40px;

    font-size:18px;

    line-height:1.9;

    color:#EAF8FF;

}

/*==============================
 Buttons Layout
==============================*/

.sv-cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}
/*======================================
 CALL TO ACTION (CTA) - PART 2
 SV DIGITAL ADS
======================================*/

/*==============================
 Primary Button
==============================*/

.sv-cta-primary,
.sv-cta-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    padding:18px 36px;

    border-radius:12px;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    transition:all .35s ease;

}

/* Primary */

.sv-cta-primary{

    background:#ffffff;

    color:#0A4D9C;

    box-shadow:0 15px 35px rgba(255,255,255,.20);

}

.sv-cta-primary:hover{

    background:#00B7FF;

    color:#ffffff;

    transform:translateY(-5px);

    box-shadow:0 22px 45px rgba(0,183,255,.45);

}

/* Secondary */

.sv-cta-secondary{

    background:transparent;

    color:#ffffff;

    border:2px solid rgba(255,255,255,.35);

    backdrop-filter:blur(10px);

}

.sv-cta-secondary:hover{

    background:#ffffff;

    color:#0A4D9C;

    transform:translateY(-5px);

}

/*==============================
 Floating Glow Effects
==============================*/

.sv-cta::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    left:-120px;

    filter:blur(30px);

}

.sv-cta::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    bottom:-120px;

    right:-120px;

    filter:blur(30px);

}

/*==============================
 Hover Effect
==============================*/

.sv-cta-content{

    transition:all .35s ease;

}

.sv-cta-content:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

/*==============================
 Smooth Transition
==============================*/

.sv-cta-primary,
.sv-cta-secondary,
.sv-cta-content{

    transition:all .35s ease;

}
/*======================================
 CALL TO ACTION (CTA) - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-cta-content h2{
        font-size:46px;
    }

    .sv-cta-content{
        padding:60px 40px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-cta{
        padding:80px 20px;
    }

    .sv-cta-content{
        padding:55px 35px;
    }

    .sv-cta-content h2{
        font-size:40px;
    }

    .sv-cta-content p{
        max-width:700px;
        font-size:17px;
    }

    .sv-cta-buttons{
        gap:18px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-cta{
        padding:70px 20px;
    }

    .sv-cta-content{
        padding:40px 25px;
        border-radius:22px;
    }

    .sv-cta-tag{
        font-size:13px;
        padding:8px 18px;
    }

    .sv-cta-content h2{
        font-size:32px;
        line-height:1.35;
    }

    .sv-cta-content p{
        font-size:16px;
        line-height:1.8;
        margin-bottom:35px;
    }

    .sv-cta-buttons{
        flex-direction:column;
        width:100%;
    }

    .sv-cta-primary,
    .sv-cta-secondary{
        width:100%;
        min-width:100%;
        padding:16px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-cta{
        padding:60px 15px;
    }

    .sv-cta-content{
        padding:35px 20px;
    }

    .sv-cta-content h2{
        font-size:28px;
    }

    .sv-cta-content p{
        font-size:15px;
    }

    .sv-cta-primary,
    .sv-cta-secondary{
        font-size:15px;
        padding:15px;
        border-radius:10px;
    }

}
.sv-cta-primary,
.sv-cta-secondary{
    transition:all .35s ease;
}

.sv-cta-primary:hover,
.sv-cta-secondary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c434d7d *//*======================================
 CONTACT SECTION - PART 1
 SV DIGITAL ADS
======================================*/

.sv-contact{
    position:relative;
    padding:100px 20px;
    background:#ffffff;
    overflow:hidden;
}

.sv-contact-container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:start;
}

/*==============================
 Left Content
==============================*/

.sv-contact-info h2{
    font-size:48px;
    font-weight:800;
    line-height:1.25;
    color:#0B1F3A;
    margin:20px 0;
}

.sv-contact-info h2 span{
    color:#00B7FF;
}

.sv-contact-info > p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:40px;
}

/*==============================
 Contact List
==============================*/

.sv-contact-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.sv-contact-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:24px;
    background:#F8FBFF;
    border:1px solid #E8EEF7;
    border-radius:18px;
    transition:all .35s ease;
}

.sv-contact-icon{
    width:65px;
    height:65px;
    min-width:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    font-size:28px;
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    color:#ffffff;
}

.sv-contact-item h4{
    margin:0 0 8px;
    font-size:20px;
    font-weight:700;
    color:#0B1F3A;
}

.sv-contact-item p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    color:#666;
}

/*==============================
 Contact Form
==============================*/

.sv-contact-form-box{
    background:#ffffff;
    border:1px solid #E8EEF7;
    border-radius:24px;
    padding:40px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.sv-contact-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.sv-contact-form input,
.sv-contact-form textarea{

    width:100%;

    padding:16px 20px;

    border:1px solid #DCE6F2;

    border-radius:12px;

    background:#F8FBFF;

    font-size:16px;

    color:#0B1F3A;

    transition:.35s ease;

    outline:none;

}

.sv-contact-form textarea{
    resize:vertical;
    min-height:160px;
}
/*======================================
 CONTACT SECTION - PART 2
 SV DIGITAL ADS
======================================*/

/*==============================
 Contact Card Hover
==============================*/

.sv-contact-item:hover{
    transform:translateY(-8px);
    border-color:#00B7FF;
    box-shadow:0 20px 45px rgba(0,183,255,.18);
}

.sv-contact-item:hover .sv-contact-icon{
    transform:rotate(-10deg) scale(1.08);
}

/*==============================
 Form Input Focus
==============================*/

.sv-contact-form input:focus,
.sv-contact-form textarea:focus{

    border-color:#00B7FF;

    background:#ffffff;

    box-shadow:0 0 0 4px rgba(0,183,255,.12);

}

/*==============================
 Submit Button
==============================*/

.sv-contact-form button{

    width:100%;

    padding:18px 25px;

    border:none;

    border-radius:12px;

    cursor:pointer;

    font-size:16px;

    font-weight:700;

    color:#ffffff;

    background:linear-gradient(135deg,#00B7FF,#0A4D9C);

    box-shadow:0 15px 35px rgba(0,183,255,.25);

    transition:all .35s ease;

}

.sv-contact-form button:hover{

    transform:translateY(-5px);

    box-shadow:0 22px 45px rgba(0,183,255,.40);

}

/*==============================
 Form Box Hover
==============================*/

.sv-contact-form-box{

    transition:all .35s ease;

}

.sv-contact-form-box:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 60px rgba(0,0,0,.12);

}

/*==============================
 Decorative Background
==============================*/

.sv-contact::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(0,183,255,.05);

    top:-150px;

    left:-150px;

}

.sv-contact::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(10,77,156,.05);

    right:-120px;

    bottom:-120px;

}

/*==============================
 Keep Content Above Shapes
==============================*/

.sv-contact-container{

    position:relative;

    z-index:2;

}

/*==============================
 Smooth Animation
==============================*/

.sv-contact-item,
.sv-contact-icon,
.sv-contact-form-box,
.sv-contact-form input,
.sv-contact-form textarea,
.sv-contact-form button{

    transition:all .35s ease;

}
/*======================================
 CONTACT SECTION - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-contact-container{
        gap:50px;
    }

    .sv-contact-info h2{
        font-size:42px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-contact{
        padding:80px 20px;
    }

    .sv-contact-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .sv-contact-info h2{
        font-size:38px;
    }

    .sv-contact-info > p{
        max-width:700px;
    }

    .sv-contact-form-box{
        padding:35px;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-contact{
        padding:70px 20px;
    }

    .sv-contact-container{
        gap:40px;
    }

    .sv-contact-info h2{
        font-size:32px;
        line-height:1.4;
    }

    .sv-contact-info > p{
        font-size:16px;
        line-height:1.8;
    }

    .sv-contact-item{
        padding:20px;
        gap:15px;
    }

    .sv-contact-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:24px;
        border-radius:14px;
    }

    .sv-contact-item h4{
        font-size:18px;
    }

    .sv-contact-item p{
        font-size:14px;
    }

    .sv-contact-form-box{
        padding:25px;
        border-radius:18px;
    }

    .sv-contact-form{
        gap:16px;
    }

    .sv-contact-form input,
    .sv-contact-form textarea{
        padding:15px;
        font-size:15px;
    }

    .sv-contact-form button{
        padding:16px;
        font-size:15px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-contact{
        padding:60px 15px;
    }

    .sv-contact-info h2{
        font-size:28px;
    }

    .sv-contact-info > p{
        font-size:15px;
    }

    .sv-contact-item{
        flex-direction:column;
        align-items:flex-start;
        padding:18px;
    }

    .sv-contact-icon{
        margin-bottom:10px;
    }

    .sv-contact-item h4{
        font-size:17px;
    }

    .sv-contact-item p{
        font-size:13px;
        line-height:1.7;
    }

    .sv-contact-form-box{
        padding:20px;
    }

    .sv-contact-form input,
    .sv-contact-form textarea{
        font-size:14px;
    }

    .sv-contact-form button{
        font-size:14px;
        padding:15px;
    }

}
.sv-contact-item{
    transition:all .35s ease;
}

.sv-contact-item:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.sv-contact-form button{
    transition:all .35s ease;
}

.sv-contact-form button:hover{
    transform:translateY(-3px);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-38977df *//*======================================
 PREMIUM FOOTER - PART 1
 SV DIGITAL ADS
======================================*/

.sv-footer{
    position:relative;
    background:#06142E;
    color:#ffffff;
    padding:90px 20px 0;
    overflow:hidden;
}

.sv-footer-container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
    padding-bottom:60px;
}

/*==============================
 Footer Logo
==============================*/

.sv-footer-logo{
    max-width:220px;
    margin-bottom:25px;
}

.sv-footer-col p{
    color:#C7D4E5;
    line-height:1.9;
    font-size:16px;
    margin-bottom:30px;
}

/*==============================
 Footer Titles
==============================*/

.sv-footer-col h3{
    font-size:22px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:25px;
    position:relative;
}

.sv-footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:55px;
    height:3px;
    border-radius:5px;
    background:#00B7FF;
}

/*==============================
 Footer Links
==============================*/

.sv-footer-col ul{
    list-style:none;
    margin:0;
    padding:0;
}

.sv-footer-col ul li{
    margin-bottom:14px;
}

.sv-footer-col ul li a{
    text-decoration:none;
    color:#C7D4E5;
    font-size:15px;
    transition:.3s ease;
}

/*==============================
 Social Icons
==============================*/

.sv-footer-social{
    display:flex;
    gap:15px;
}

.sv-footer-social a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#ffffff;
    text-decoration:none;
    font-size:18px;
    transition:.35s ease;
}

/*==============================
 Footer Bottom
==============================*/

.sv-footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.sv-footer-bottom p{
    margin:0;
    color:#C7D4E5;
    font-size:15px;
}

.sv-footer-links{
    display:flex;
    gap:25px;
}

.sv-footer-links a{
    color:#C7D4E5;
    text-decoration:none;
    font-size:15px;
    transition:.3s ease;
}
/*======================================
 PREMIUM FOOTER - PART 2
 SV DIGITAL ADS
======================================*/

/*==============================
 Link Hover
==============================*/

.sv-footer-col ul li a:hover,
.sv-footer-links a:hover{
    color:#00B7FF;
    padding-left:6px;
}

/*==============================
 Social Icons Hover
==============================*/

.sv-footer-social a:hover{
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,183,255,.35);
}

/*==============================
 Contact List
==============================*/

.sv-footer-col ul li{
    color:#C7D4E5;
    line-height:1.8;
}

/*==============================
 Back To Top
==============================*/

.sv-back-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    border-radius:50%;
    background:linear-gradient(135deg,#00B7FF,#0A4D9C);
    color:#ffffff;
    font-size:22px;
    font-weight:700;
    box-shadow:0 15px 35px rgba(0,183,255,.35);
    transition:all .35s ease;
    z-index:999;
}

.sv-back-top:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(0,183,255,.45);
}

/*==============================
 Decorative Background
==============================*/

.sv-footer::before{
    content:"";
    position:absolute;
    top:-180px;
    left:-180px;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(0,183,255,.05);
}

.sv-footer::after{
    content:"";
    position:absolute;
    right:-150px;
    bottom:-150px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.03);
}

/*==============================
 Container Layer
==============================*/

.sv-footer-container,
.sv-footer-bottom{
    position:relative;
    z-index:2;
}

/*==============================
 Smooth Animation
==============================*/

.sv-footer a,
.sv-footer-social a,
.sv-back-top,
.sv-footer-col ul li a{
    transition:all .35s ease;
}
/*======================================
 PREMIUM FOOTER - RESPONSIVE CSS
 SV DIGITAL ADS
======================================*/

/* Laptop */
@media (max-width:1200px){

    .sv-footer-container{
        grid-template-columns:1.8fr 1fr 1fr 1.2fr;
        gap:35px;
    }

    .sv-footer-col h3{
        font-size:20px;
    }

}

/* Tablet */
@media (max-width:991px){

    .sv-footer{
        padding:80px 20px 0;
    }

    .sv-footer-container{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
        padding-bottom:50px;
    }

    .sv-footer-logo{
        max-width:190px;
    }

    .sv-footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .sv-footer-links{
        justify-content:center;
        flex-wrap:wrap;
    }

}

/* Mobile */
@media (max-width:767px){

    .sv-footer{
        padding:70px 20px 0;
    }

    .sv-footer-container{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .sv-footer-col h3::after{
        left:50%;
        transform:translateX(-50%);
    }

    .sv-footer-social{
        justify-content:center;
    }

    .sv-footer-col ul{
        text-align:center;
    }

    .sv-footer-bottom{
        padding:20px 0;
    }

    .sv-footer-links{
        flex-direction:column;
        gap:12px;
    }

    .sv-back-top{
        width:50px;
        height:50px;
        right:18px;
        bottom:18px;
        font-size:20px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .sv-footer{
        padding:60px 15px 0;
    }

    .sv-footer-logo{
        max-width:170px;
    }

    .sv-footer-col p{
        font-size:15px;
    }

    .sv-footer-col h3{
        font-size:19px;
    }

    .sv-footer-col ul li,
    .sv-footer-col ul li a{
        font-size:14px;
    }

    .sv-footer-social a{
        width:42px;
        height:42px;
        font-size:16px;
    }

    .sv-footer-bottom p{
        font-size:13px;
    }

    .sv-footer-links a{
        font-size:13px;
    }

    .sv-back-top{
        width:46px;
        height:46px;
        font-size:18px;
    }

}
.sv-footer-col{
    transition:.35s ease;
}

.sv-footer-col:hover{
    transform:translateY(-6px);
}

.sv-footer-social a{
    transition:.3s;
}

.sv-footer-social a:hover{
    transform:scale(1.15);
}/* End custom CSS */