/* =========================================
   YES DIGITECH PREMIUM MODERN CSS
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#3E9ED9;
    --secondary: #4B2DBD;
    --dark:#071327;
    --text:#667085;
    --white:#ffffff;
    --light:#f4f8fc;
    --border:#e7edf5;
    --shadow:0 15px 40px rgba(0,0,0,0.06);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--light);
    color:var(--dark);
    overflow-x:hidden;
}

/* =========================================
   COMMON
========================================= */

.section{
    padding:100px 0;
    position:relative;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.small-title{
        display: inline-block;
    padding: 10px 24px;
    background: #3E9ED9;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    color:#fff;
    margin-bottom:18px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#fff;
    line-height:1.9;
    font-size:17px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    background:#fff;
    padding:16px 0;
    box-shadow:0 4px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.logo-img{
    height:150px;
}

.navbar-nav .nav-link{
    color:var(--dark)!important;
    font-weight:600;
    margin-left:22px;
    position:relative;
    transition:0.3s;
}

.navbar-nav .nav-link::after{
    display:none !important;
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:3px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    transition:0.4s;
}

.navbar-nav .nav-link:hover::after{
    width:100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:active{
    color: #4B2DBD !important;
    text-decoration:underline;
}

/* DROPDOWN */

.dropdown-menu{
    border:none;
    border-radius:20px;
    padding:15px;
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.dropdown-item{
    padding:12px 18px;
    border-radius:12px;
    font-weight:500;
    transition:0.3s;
}

.dropdown-item:hover{
    background:#f0f8ff;
    color:var(--primary);
    transform:translateX(5px);
}
/* =========================================
PREMIUM MODERN HERO SECTION
========================================= */

.hero-modern{

    position:relative;

    min-height:100vh;

    overflow:hidden;

    background:
    linear-gradient(135deg,#4B2DBD 0%,#3E9ED9 100%);

}

/* SHAPES */

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

}

.shape-1{

    width:420px;
    height:420px;

    background:rgba(0,191,255,0.18);

    top:-120px;
    left:-120px;

}

.shape-2{

    width:500px;
    height:500px;

    background:rgba(0,87,255,0.15);

    bottom:-180px;
    right:-180px;

}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:5;
    margin-top: 2rem;
}

.hero-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,0.10);

    border:1px solid rgba(255,255,255,0.15);

    color:#ffffff;

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;

    backdrop-filter:blur(10px);

}

.hero-content h1{

    font-size:72px;

    line-height:1.15;

    font-weight:800;

    color:#ffffff;

    margin-bottom:28px;

}

.hero-content h1 span{
    color:#fff;
}

.hero-content p{

    color:#d7e3f2;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:620px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:50px;

}

.btn-main{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    box-shadow:0 15px 35px rgba(0,191,255,0.35);

}

.btn-main:hover{

    transform:translateY(-6px);

    color:#fff;

}

.btn-outline-custom{

    border:2px solid rgba(255,255,255,0.25);

    color:#ffffff;

    padding:15px 36px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    backdrop-filter:blur(10px);

}

.btn-outline-custom:hover{

    background:#ffffff;

    color:#071327;

    transform:translateY(-6px);

}

/* STATS */

.hero-stats{

    display:flex;

    gap:24px;

    flex-wrap:wrap;

}

.stat-box{

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.10);

    border-radius:24px;

    padding:24px 32px;

    backdrop-filter:blur(10px);

    min-width:150px;

}

.stat-box h4{

    color:#ffffff;

    font-size:34px;

    font-weight:800;

    margin-bottom:5px;

}

.stat-box span{
    color:#cfe0f5;
}

/* IMAGE */

.hero-image-wrapper{

    position:relative;

    z-index:5;

    text-align:center;

}

.hero-main-img{

    width:100%;

    max-width:580px;

    border-radius:40px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.35);

    animation:floatImage 5s ease-in-out infinite;

}

/* FLOATING CARDS */

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:16px;

    background:#ffffff;

    padding:18px 24px;

    border-radius:24px;

    box-shadow:0 20px 40px rgba(0,0,0,0.12);

    animation:floatCard 4s ease-in-out infinite;

}

.floating-card i{

    width:60px;
    height:60px;

    border-radius:18px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.floating-card h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#071327;

}

.floating-card p{

    margin:0;

    color:#667085;

    font-size:14px;

}

.card-1{

    top:80px;
    left:-40px;

}

.card-2{

    bottom:80px;
    right:-30px;

}

/* ANIMATIONS */

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

.hero-modern{
    padding:120px 0 80px;
}

.hero-content{
    text-align:center;
    margin-bottom:60px;
}

.hero-content h1{
    font-size:52px;
}

.hero-buttons{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
}

.card-1,
.card-2{
    display:none;
}

}

@media(max-width:576px){

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

.stat-box{
    width:100%;
}

.hero-main-img{
    border-radius:28px;
}

}


/* =========================================
   SERVICES
========================================= */

.services-section{
    background:#f7fbff;
}

.service-card{
    background:#fff;
    border-radius:30px;
    padding:40px 35px;
    height:100%;
    position:relative;
    overflow:hidden;
    border:1px solid var(--border);
    transition:0.4s;
    box-shadow:var(--shadow);
}

.service-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,var(--primary),var(--secondary));
}

.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,191,255,0.15);
}

.service-icon{
    width:90px;
    height:90px;
    border-radius:25px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:28px;
    box-shadow:0 15px 35px rgba(0,191,255,0.20);
}

.service-icon i{
    color:#fff;
    font-size:38px;
}

.service-card h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
}

.service-card p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:25px;
}

.service-list{
    list-style:none;
    padding:0;
    margin-bottom:30px;
}

.service-list li{
    margin-bottom:14px;
    color:var(--text);
    font-weight:500;
}

.service-list li i{
    color:var(--primary);
    margin-right:10px;
}

.btn-service{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.btn-service:hover{
    color:#fff;
    transform:translateY(-5px);
}

/* =========================================
   CASE STUDIES
========================================= */

.case-card{
    background:#fff;
    border-radius:28px;
    padding:35px;
    border:1px solid var(--border);
    transition:0.4s;
    box-shadow:var(--shadow);
    height:100%;
}

.case-card:hover{
    transform:translateY(-10px);
}

.case-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
}

.case-card p{
    color:var(--text);
    line-height:1.9;
}

/* =========================================
   ABOUT
========================================= */



/* =========================================
ABOUT HERO
========================================= */

.about-hero{

    padding:180px 0 120px;

    background:
    linear-gradient(rgba(6,18,40,0.82),rgba(6,18,40,0.82)),
    url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600') center/cover no-repeat;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.about-hero::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(0,191,255,0.12);

    border-radius:50%;

    top:-120px;
    right:-120px;

    filter:blur(40px);

}

.about-hero h1{

    font-size:68px;

    font-weight:800;

    color:#fff;

    margin-bottom:25px;

    position:relative;

    z-index:2;

}

.about-hero p{

    max-width:850px;

    margin:auto;

    color:#d7e6ff;

    line-height:2;

    font-size:18px;

    position:relative;

    z-index:2;

}

/* =========================================
ABOUT IMAGE
========================================= */

.about-img{

    width:100%;

    border-radius:35px;

    box-shadow:0 20px 60px rgba(0,0,0,0.12);

    transition:0.4s;

}

.about-img:hover{

    transform:translateY(-10px);

}

/* =========================================
ABOUT CONTENT
========================================= */

.about-content h2{

    font-size:48px;

    font-weight:800;

    color:#081c3a;

    margin-bottom:25px;

    line-height:1.3;

}

.about-content p{

    color:#5e6f89;

    line-height:2;

    margin-bottom:22px;

    font-size:16px;

}

.about-list{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.about-list li{

    margin-bottom:18px;

    color:#5e6f89;

    font-weight:500;

    display:flex;

    align-items:center;

}

.about-list li i{

    width:34px;
    height:34px;

    border-radius:50%;

    background:#eaf7ff;

    color:#3E9ED9;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:14px;

    font-size:14px;

}

/* =========================================
STATS SECTION
========================================= */

.stats-box{

    background:#ffffff;

    border-radius:30px;

    padding:45px 25px;

    text-align:center;

    border:1px solid #e9f0f8;

    transition:0.4s;

    box-shadow:0 12px 35px rgba(0,0,0,0.05);

    height:100%;

}

.stats-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,191,255,0.16);

    border-color:#3E9ED9;

}

.stats-box h2{

    font-size:52px;

    font-weight:800;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    margin-bottom:15px;

}

.stats-box p{

    color:#5e6f89;

    font-size:17px;

    margin:0;

}

/* =========================================
TEAM SECTION
========================================= */

.team-card{

    background:#ffffff;

    border-radius:35px;

    overflow:hidden;

    transition:0.4s;

    border:1px solid #e9f0f8;

    box-shadow:0 12px 35px rgba(0,0,0,0.05);

    height:100%;

}

.team-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,191,255,0.18);

}

.team-card img{

    width:100%;

    height:340px;

    object-fit:cover;

}

.team-content{

    padding:35px 30px;

    text-align:center;

}

.team-content h4{

    font-size:26px;

    font-weight:700;

    color:#081c3a;

    margin-bottom:10px;

}

.team-content span{

    display:inline-block;

    color:#3E9ED9;

    font-weight:600;

    margin-bottom:18px;

}

.team-content p{

    color:#5e6f89;

    line-height:1.9;

    margin:0;

}

/* =========================================
WHY CHOOSE US
========================================= */

.why-box{

    background:#ffffff;

    border-radius:35px;

    padding:45px 35px;

    text-align:center;

    border:1px solid #e9f0f8;

    transition:0.4s;

    box-shadow:0 12px 35px rgba(0,0,0,0.05);

    height:100%;

}

.why-box:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 45px rgba(0,191,255,0.16);

    border-color:#3E9ED9;

}

.why-box i{

    width:95px;
    height:95px;

    border-radius:28px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:38px;

    margin:0 auto 28px;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.why-box h4{

    font-size:28px;

    font-weight:700;

    color:#081c3a;

    margin-bottom:16px;

}

.why-box p{

    color:#5e6f89;

    line-height:1.9;

    margin:0;

}

/* =========================================
CTA BUTTON FIX
========================================= */

.btn-custom{

    display:inline-block;

    padding:16px 40px;

    border-radius:50px;

    background:#ffffff;

    color: #4B2DBD;

    text-decoration:none;

    font-weight:700;

    transition:0.4s;

    margin-top:15px;

}

.btn-custom:hover{

    transform:translateY(-5px);

    color: #4B2DBD;

    box-shadow:0 18px 35px rgba(255,255,255,0.25);

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.about-hero h1{
    font-size:52px;
}

.about-content{
    margin-top:20px;
}

.about-content h2{
    font-size:40px;
}

.team-card img{
    height:300px;
}

}

@media(max-width:768px){

.about-hero{
    padding:150px 0 100px;
}

.about-hero h1{
    font-size:42px;
}

.about-hero p{
    font-size:16px;
}

.about-content h2{
    font-size:34px;
}

.stats-box h2{
    font-size:42px;
}

.team-card img{
    height:280px;
}

}

@media(max-width:576px){

.about-hero h1{
    font-size:34px;
}

.about-content h2{
    font-size:30px;
}

.team-content{
    padding:28px 22px;
}

.why-box{
    padding:35px 24px;
}

.why-box h4{
    font-size:24px;
}

.stats-box{
    padding:35px 20px;
}

}

/* =========================================
   CLIENT LOGOS
========================================= */

.clients-section{
    background:#fff;
    overflow:hidden;
}

.logo-slider{
    overflow:hidden;
    position:relative;
    width:100%;
}

.logo-track{
    display:flex;
    width:calc(220px * 12);
    animation:scrollLogos 30s linear infinite;
}

.logo-slider:hover .logo-track{
    animation-play-state:paused;
}

.logo-item{
    width:220px;
    height:120px;
    background:#fff;
    border-radius:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 15px;
    border:1px solid var(--border);
    box-shadow:0 10px 25px rgba(0,0,0,0.04);
    transition:0.3s;
}

.logo-item:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,191,255,0.12);
}

.logo-item img{
   max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.7; */
    transition: 0.3s;
}

.logo-item:hover img{
    filter:grayscale(0%);
    opacity:1;
}

@keyframes scrollLogos{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-220px * 6));
    }
}

/* =========================================
   TESTIMONIAL
========================================= */

.testimonial-section{
    background:#f7fbff;
}

.testimonial-card{
    background:#fff;
    border-radius:35px;
    padding:50px;
    border:1px solid var(--border);
    position:relative;
    box-shadow:0 20px 50px rgba(0,0,0,0.06);
}

.quote-icon{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:30px;
    right:30px;
}

.quote-icon i{
    color:#fff;
    font-size:28px;
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:22px;
    margin-bottom:28px;
}

.client-img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #eef8ff;
}

.testimonial-top h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:6px;
}

.testimonial-top span{
    color:var(--primary);
    font-weight:600;
}

.stars{
    margin-top:10px;
}

.stars i{
    color:#ffb400;
    margin-right:3px;
}

.testimonial-card p{
    color:var(--text);
    line-height:2;
    font-size:17px;
}

.carousel-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.carousel-btn:hover{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
}

.carousel-btn i{
    color:var(--primary);
    font-size:20px;
}

.carousel-btn:hover i{
    color:#fff;
}

/* =========================================
   CONTACT
========================================= */

.contact-form{
    background:#fff;
    padding:55px;
    border-radius:35px;
    box-shadow:var(--shadow);
}

.form-control{
    height:58px;
    border-radius:18px;
    background:#f7fbff;
    border:1px solid #dbe7f5;
    padding:16px 22px;
}

textarea.form-control{
    height:auto;
}

.form-control:focus{
    box-shadow:0 0 0 4px rgba(0,191,255,0.12);
    border-color:var(--primary);
}

.btn-contact{
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.btn-contact:hover{
    transform:translateY(-5px);
}

/* =========================================
   FAQ
========================================= */

.accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:20px!important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.accordion-button{
    padding:22px 28px;
    font-weight:600;
    color:var(--dark);
}

.accordion-button:not(.collapsed){
    background:#eef8ff;
    color:var(--primary);
}

.accordion-body{
    color:var(--text);
    line-height:1.9;
}

/* =========================================
   FOOTER
========================================= */

footer{
    background:#fff;
    padding:80px 0 25px;
    border-top:1px solid var(--border);
}

footer h5{
    margin-bottom:24px;
    font-weight:700;
    color: #fff !important;
}


footer a{
    color:#222 !important;
    text-decoration:none;
    line-height:2;
}

footer a:hover{
    color:var(--primary);
}

.social-icons{
    margin-top:22px;
}

.social-icons a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f3f8ff;
    color:var(--primary);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-right:10px;
    transition:0.3s;
}

.social-icons a:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-5px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

.hero-content{
    text-align:center;
    margin-bottom:50px;
}

.hero-content h1{
    font-size:52px;
}

.hero-buttons{
    justify-content:center;
}

.about-content{
    padding-left:0;
    margin-top:50px;
}

.section-title h2{
    font-size:38px;
}

}

@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.section-title h2{
    font-size:34px;
}

.testimonial-top{
    flex-direction:column;
    text-align:center;
}

.testimonial-card{
    padding:35px 25px;
}

.contact-form{
    padding:35px 25px;
}

.logo-item{
    width:180px;
    height:100px;
}

.logo-track{
    width:calc(180px * 12);
}

@keyframes scrollLogos{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(calc(-180px * 6));
    }
}

}

@media(max-width:576px){

.section{
    padding:80px 0;
}

.hero-content h1{
    font-size:36px;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

.about-content h2{
    font-size:34px;
}

.section-title h2{
    font-size:30px;
}

.service-card{
    padding:32px 24px;
}

.btn-service{
    width:100%;
    justify-content:center;
}

}

/* FREE CONSULTATION BUTTON */

.consult-btn{

        background: linear-gradient(135deg, #4B2DBD, #3E9ED9);

    color:#fff !important;

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

    text-decoration:none;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    transition:0.4s ease;

    box-shadow:0 10px 30px rgba(0,191,255,0.25);

    margin-left:25px;

}

.consult-btn:hover{

    color:#fff !important;

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,191,255,0.35);

}

/* MOBILE */

@media(max-width:991px){

.consult-btn{

    margin-top:20px;

    margin-left:0;

    width:100%;

}

}

/* =========================================
   WEB DEVELOPMENT PAGE PREMIUM CSS
========================================= */

.web-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding:150px 0 100px;

    background:
    linear-gradient(rgba(6,18,40,0.88),rgba(6,18,40,0.92)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=1600') center/cover no-repeat;

}

/* GLOW */

.web-hero::before{

    content:'';

    position:absolute;

    width:550px;
    height:550px;

    background:rgba(0,191,255,0.18);

    border-radius:50%;

    top:-180px;
    right:-120px;

    filter:blur(50px);

}

.web-hero::after{

    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:rgba(0,87,255,0.18);

    border-radius:50%;

    bottom:-180px;
    left:-120px;

    filter:blur(50px);

}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{

    font-size:72px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:25px;

}

.hero-content h1 span{

       background: linear-gradient(135deg, #fff, #3E9ED900);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-content p{

    color:#d7e6ff;

    font-size:18px;

    line-height:2;

    margin-bottom:35px;

    max-width:620px;

}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-main{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.btn-main:hover{

    transform:translateY(-6px);

    color:#fff;

    box-shadow:0 20px 40px rgba(0,191,255,0.35);

}

.btn-outline-custom{

    border:2px solid rgba(255,255,255,0.25);

    color:#fff;

    padding:15px 36px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    backdrop-filter:blur(10px);

}

.btn-outline-custom:hover{

    background:#fff;

    color: #4B2DBD;

    transform:translateY(-6px);

}

/* HERO IMAGE */

.hero-img{

    width:100%;

    border-radius:35px;

    position:relative;

    z-index:2;

    box-shadow:
    0 30px 70px rgba(0,0,0,0.35);

    animation:floatImage 5s ease-in-out infinite;

    border:8px solid rgba(255,255,255,0.08);

}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
   SECTION TITLE
========================================= */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{

    font-size:50px;

    font-weight:800;

    color:#081c3a;

    margin-bottom:18px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#667085;

    line-height:1.9;

    font-size:17px;

}

/* =========================================
   SERVICES SECTION
========================================= */

.service-card{

    background:#ffffff;

    border-radius:32px;

    padding:45px 35px;

    position:relative;

    overflow:hidden;

    height:100%;

    border:1px solid #edf3ff;

    transition:0.4s;

    box-shadow:0 15px 40px rgba(0,0,0,0.05);

}

.service-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#3E9ED9, #4B2DBD);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,191,255,0.15);

}

/* ICON */

.service-icon{

    width:95px;
    height:95px;

    border-radius:28px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.service-icon i{

    color:#fff;

    font-size:40px;

}

/* CARD TITLE */

.service-card h4{

    font-size:28px;

    font-weight:700;

    color:#081c3a;

    margin-bottom:18px;

}

/* TEXT */

.service-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
   FEATURE BOXES
========================================= */

.feature-box{

    background:#ffffff;

    padding:45px 30px;

    border-radius:30px;

    text-align:center;

    transition:0.4s;

    border:1px solid #edf3ff;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,0.05);

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,191,255,0.15);

}

.feature-box i{

    width:90px;
    height:90px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    border-radius:28px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto auto 25px;

    color:#fff;

    font-size:38px;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.feature-box h5{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:#081c3a;

}

.feature-box p{

    color:#667085;

    line-height:1.9;

}

/* =========================================
   PORTFOLIO
========================================= */

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:35px;

    height:360px;

    box-shadow:0 20px 45px rgba(0,0,0,0.08);

}

.portfolio-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,rgba(0,0,0,0.75),transparent);

    display:flex;

    align-items:flex-end;

    padding:35px;

    opacity:0;

    transition:0.4s;

}

.portfolio-overlay h4{

    color:#fff;

    font-size:28px;

    font-weight:700;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-card:hover .portfolio-overlay{

    opacity:1;

}

/* =========================================
   CTA
========================================= */

.cta-box{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    padding:90px 50px;

    border-radius:40px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(0,191,255,0.25);

}

.cta-box::before{

    content:'';

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,0.10);

    top:-100px;
    right:-80px;

}

.cta-box h2{

    font-size:54px;

    color:#fff;

    font-weight:800;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.cta-box p{

    color:#eef8ff;

    font-size:18px;

    margin-bottom:35px;

    position:relative;

    z-index:2;

}

.btn-light-custom{

    background:#fff;

    color: #4B2DBD;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    display:inline-block;

    transition:0.4s;

    position:relative;

    z-index:2;

}

.btn-light-custom:hover{

    transform:translateY(-6px);

    color: #4B2DBD;

}

/* =========================================
   FOOTER
========================================= */

footer{

    background:#081c3a;

    padding:80px 0 30px;

    text-align:center;

}

footer h4{

    color:#fff;

    font-size:34px;

    font-weight:800;

    margin-bottom:18px;

}

footer p{

    color:#22;

    line-height:2;

    margin:0;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

.hero-content{
    text-align:center;
    margin-bottom:50px;
}

.hero-content p{
    margin:auto auto 35px;
}

.hero-buttons{
    justify-content:center;
}

.hero-content h1{
    font-size:52px;
}

.section-title h2{
    font-size:40px;
}

.cta-box h2{
    font-size:40px;
}

}

@media(max-width:576px){

.web-hero{
    padding:130px 0 80px;
}

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.section-title h2{
    font-size:32px;
}

.service-card,
.feature-box{
    padding:35px 25px;
}

.cta-box{
    padding:60px 25px;
}

.cta-box h2{
    font-size:30px;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

}


/* =========================================
   SEO PAGE PREMIUM CSS
========================================= */

.seo-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    padding:150px 0 100px;

    background:
    linear-gradient(rgba(5,16,35,0.92),rgba(5,16,35,0.94)),
    url('https://images.unsplash.com/photo-1562577309-4932fdd64cd1?q=80&w=1600') center/cover no-repeat;

}

/* GLOW EFFECT */

.seo-hero::before{

    content:'';

    position:absolute;

    width:550px;
    height:550px;

    background:rgba(0,191,255,0.15);

    border-radius:50%;

    top:-180px;
    right:-120px;

    filter:blur(60px);

}

.seo-hero::after{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:rgba(0,87,255,0.16);

    border-radius:50%;

    bottom:-180px;
    left:-120px;

    filter:blur(60px);

}

/* HERO CONTENT */

.hero-content{
    position:relative;
    z-index:2;
}

.hero-content h1{

    font-size:72px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:25px;

}

.hero-content h1 span{

    background:linear-gradient(135deg,#3E9ED9,#5dd6ff);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.hero-content p{

    color:#dce8ff;

    font-size:18px;

    line-height:2;

    margin-bottom:35px;

    max-width:620px;

}

/* HERO BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-main{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.btn-main:hover{

    transform:translateY(-6px);

    color:#fff;

    box-shadow:0 20px 40px rgba(0,191,255,0.35);

}

.btn-outline-custom{

    border:2px solid rgba(255,255,255,0.25);

    color:#fff;

    padding:15px 36px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    backdrop-filter:blur(10px);

}

.btn-outline-custom:hover{

    background:#fff;

    color: #4B2DBD;

    transform:translateY(-6px);

}

/* HERO IMAGE */

.hero-img{

    width:100%;

    border-radius:35px;

    position:relative;

    z-index:2;

    border:8px solid rgba(255,255,255,0.08);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.35);

    animation:floatSeo 5s ease-in-out infinite;

}

@keyframes floatSeo{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
   COMMON SECTION TITLE
========================================= */

.section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{

    font-size:50px;

    font-weight:800;

    color:#081c3a;

    margin-bottom:18px;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:#667085;

    line-height:1.9;

    font-size:17px;

}

/* =========================================
   SEO SERVICE CARDS
========================================= */

.seo-card{

    background:#ffffff;

    border-radius:32px;

    padding:45px 35px;

    position:relative;

    overflow:hidden;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,0.05);

}

.seo-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#3E9ED9, #4B2DBD);

}

.seo-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,191,255,0.15);

}

/* ICON */

.seo-icon{

    width:95px;
    height:95px;

    border-radius:28px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.seo-icon i{

    color:#fff;

    font-size:38px;

}

.seo-card h4{

    font-size:28px;

    font-weight:700;

    color:#081c3a;

    margin-bottom:18px;

}

.seo-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
   RESULT CARDS
========================================= */

.result-card{

    background:#ffffff;

    border-radius:32px;

    padding:55px 30px;

    text-align:center;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,0.05);

}

.result-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,191,255,0.15);

}

.result-card h2{

    font-size:60px;

    font-weight:800;

    margin-bottom:15px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.result-card p{

    font-size:18px;

    color:#667085;

    margin:0;

}

/* =========================================
   PROCESS CARDS
========================================= */

.process-card{

    background:#ffffff;

    border-radius:32px;

    padding:45px 30px;

    text-align:center;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    position:relative;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,0.05);

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,191,255,0.15);

}

.process-number{

    width:80px;
    height:80px;

    margin:auto auto 25px;

    border-radius:50%;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    font-weight:700;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.process-card h5{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    color:#081c3a;

}

.process-card p{

    color:#667085;

    line-height:1.9;

}

/* =========================================
   CASE STUDIES
========================================= */

.case-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:32px;

    position:relative;

    overflow:hidden;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,0.05);

}

.case-card::before{

    content:'';

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(0,191,255,0.08);

    top:-50px;
    right:-40px;

}

.case-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,191,255,0.15);

}

.case-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    color:#081c3a;

    position:relative;

    z-index:2;

}

.case-card p{

    color:#667085;

    line-height:1.9;

    position:relative;

    z-index:2;

}

/* =========================================
   CTA SECTION
========================================= */

.cta-box{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    padding:90px 50px;

    border-radius:40px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(0,191,255,0.25);

}

.cta-box::before{

    content:'';

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,0.10);

    top:-100px;
    right:-80px;

}

.cta-box h2{

    font-size:54px;

    color:#fff;

    font-weight:800;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.cta-box p{

    color:#eef8ff;

    font-size:18px;

    margin-bottom:35px;

    position:relative;

    z-index:2;

}

.btn-light-custom{

    background:#fff;

    color: #4B2DBD;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    display:inline-block;

    transition:0.4s;

    position:relative;

    z-index:2;

}

.btn-light-custom:hover{

    transform:translateY(-6px);

    color: #4B2DBD;

}

/* =========================================
   FOOTER
========================================= */

footer{

    background:#081c3a;

    padding:80px 0 30px;

    text-align:center;

}

footer h4{

    color:#fff;

    font-size:34px;

    font-weight:800;

    margin-bottom:18px;

}

footer p{

    color:#fff;

    line-height:2;

    margin:0;

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

.hero-content{
    text-align:center;
    margin-bottom:50px;
}

.hero-content p{
    margin:auto auto 35px;
}

.hero-buttons{
    justify-content:center;
}

.hero-content h1{
    font-size:52px;
}

.section-title h2{
    font-size:40px;
}

.cta-box h2{
    font-size:40px;
}

}

@media(max-width:576px){

.section{
    padding:80px 0;
}

.seo-hero{
    padding:130px 0 80px;
}

.hero-content h1{
    font-size:38px;
}

.hero-content p{
    font-size:16px;
}

.section-title h2{
    font-size:32px;
}

.seo-card,
.result-card,
.process-card,
.case-card{
    padding:35px 25px;
}

.cta-box{
    padding:60px 25px;
}

.cta-box h2{
    font-size:30px;
}

.hero-buttons a{
    width:100%;
    text-align:center;
}

}


/* =========================================
GOOGLE ADS PAGE PREMIUM CSS
========================================= */

.ads-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:140px 0 100px;

    background:
    linear-gradient(rgba(7,18,39,0.82),rgba(7,18,39,0.82)),
    url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80&w=1600') center/cover no-repeat;

}

/* GLOW */

.ads-hero::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    background:rgba(0,191,255,0.15);

    border-radius:50%;

    top:-120px;
    right:-120px;

    filter:blur(50px);

}

.ads-hero::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:rgba(0,87,255,0.18);

    border-radius:50%;

    bottom:-100px;
    left:-100px;

    filter:blur(45px);

}

/* HERO CONTENT */

.ads-hero .hero-content{

    position:relative;

    z-index:2;

}

.ads-hero .hero-content h1{

    font-size:68px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:25px;

}

.ads-hero .hero-content h1 span{

    color:#00c3ff;

    position:relative;

}

.ads-hero .hero-content p{

    color:#dbe7ff;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

    max-width:620px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-main{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    transition:0.4s;

    box-shadow:0 18px 35px rgba(0,191,255,0.25);

}

.btn-main:hover{

    transform:translateY(-6px);

    color:#fff;

    box-shadow:0 25px 40px rgba(0,191,255,0.35);

}

.btn-outline-custom{

    border:2px solid rgba(255,255,255,0.25);

    color:#ffffff;

    padding:15px 35px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    backdrop-filter:blur(12px);

}

.btn-outline-custom:hover{

    background:#ffffff;

    color: #4B2DBD;

    transform:translateY(-6px);

}

/* HERO IMAGE */

.hero-img{

    width:100%;

    border-radius:35px;

    position:relative;

    z-index:2;

    border:8px solid rgba(255,255,255,0.08);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.35);

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
SECTION TITLE
========================================= */

.section{

    padding:110px 0;

    position:relative;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:50px;

    font-weight:800;

    color:#071327;

    margin-bottom:18px;

}

.section-title p{

    color:#667085;

    max-width:700px;

    margin:auto;

    line-height:1.9;

    font-size:17px;

}

/* =========================================
SERVICE CARDS
========================================= */

.service-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:30px;

    text-align:center;

    position:relative;

    overflow:hidden;

    height:100%;

    border:1px solid #edf3ff;

    transition:0.4s;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.service-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#3E9ED9, #4B2DBD);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 22px 45px rgba(0,191,255,0.16);

}

/* ICON */

.service-icon{

    width:100px;
    height:100px;

    margin:auto auto 28px;

    border-radius:28px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 18px 35px rgba(0,191,255,0.22);

}

.service-icon i{

    font-size:42px;

    color:#fff;

}

/* TEXT */

.service-card h4{

    font-size:28px;

    font-weight:700;

    color:#071327;

    margin-bottom:18px;

}

.service-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
RESULT BOX
========================================= */

.result-box{

    background:#ffffff;

    padding:50px 35px;

    border-radius:30px;

    text-align:center;

    border:1px solid #edf3ff;

    transition:0.4s;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.result-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(0,191,255,0.15);

}

.result-box h2{

    font-size:58px;

    font-weight:800;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    margin-bottom:15px;

}

.result-box p{

    color:#667085;

    font-size:18px;

    margin:0;

}

/* =========================================
PROCESS BOX
========================================= */

.process-box{

    background:#ffffff;

    padding:45px 30px;

    border-radius:30px;

    text-align:center;

    height:100%;

    border:1px solid #edf3ff;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.process-box:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 40px rgba(0,191,255,0.15);

}

.process-number{

    width:85px;
    height:85px;

    border-radius:50%;

    margin:auto auto 25px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    font-size:32px;

    font-weight:800;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 18px 35px rgba(0,191,255,0.22);

}

.process-box h5{

    font-size:26px;

    font-weight:700;

    margin-bottom:15px;

    color:#071327;

}

.process-box p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
CTA SECTION
========================================= */

.cta-box{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(135deg,#3E9ED9, #4B2DBD);

    padding:90px 50px;

    border-radius:40px;

    text-align:center;

    box-shadow:
    0 30px 60px rgba(0,191,255,0.25);

}

.cta-box::before{

    content:'';

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    top:-80px;
    right:-80px;

}

.cta-box h2{

    font-size:52px;

    color:#fff;

    font-weight:800;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.cta-box p{

    color:#eef7ff;

    font-size:18px;

    margin-bottom:35px;

    position:relative;

    z-index:2;

}

.btn-light-custom{

    background:#ffffff;

    color: #4B2DBD;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    display:inline-block;

    transition:0.4s;

    position:relative;

    z-index:2;

    box-shadow:
    0 18px 35px rgba(0,0,0,0.10);

}

.btn-light-custom:hover{

    transform:translateY(-6px);

    color: #4B2DBD;

}

/* =========================================
FOOTER
========================================= */

footer{

    background:#071327;

    padding:80px 0 30px;

    text-align:center;

}

footer h4{

    color:#ffffff;

    font-size:34px;

    font-weight:800;

    margin-bottom:20px;

}

footer p{

    color:#fff;

    margin-bottom:12px;

}

/* =========================================
NAVBAR BUTTON
========================================= */

.btn-nav{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff !important;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 12px 25px rgba(0,191,255,0.22);

}

.btn-nav:hover{

    transform:translateY(-4px);

    color:#fff !important;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.ads-hero{

    text-align:center;

    padding-top:160px;

}

.ads-hero .hero-content h1{

    font-size:52px;

}

.hero-buttons{

    justify-content:center;

}

.hero-img{

    margin-top:20px;

}

.section-title h2{

    font-size:38px;

}

.cta-box h2{

    font-size:38px;

}

}

@media(max-width:576px){

.ads-hero .hero-content h1{

    font-size:38px;

}

.ads-hero .hero-content p{

    font-size:16px;

}

.hero-buttons a{

    width:100%;

    text-align:center;

}

.section{

    padding:80px 0;

}

.section-title h2{

    font-size:30px;

}

.service-card,
.process-box,
.result-box{

    padding:35px 25px;

}

.cta-box{

    padding:60px 25px;

}

.cta-box h2{

    font-size:30px;

}

}

/* =========================================
SOCIAL MEDIA MARKETING PAGE PREMIUM CSS
========================================= */

.social-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:140px 0 100px;

    background:
    linear-gradient(rgba(7,18,39,0.84),rgba(7,18,39,0.84)),
    url('https://images.unsplash.com/photo-1611926653458-09294b3142bf?q=80&w=1600') center/cover no-repeat;

}

/* GLOW EFFECTS */

.social-hero::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(0,191,255,0.15);

    top:-120px;
    right:-120px;

    filter:blur(55px);

}

.social-hero::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,0,153,0.18);

    bottom:-120px;
    left:-120px;

    filter:blur(55px);

}

/* HERO CONTENT */

.social-hero .hero-content{

    position:relative;

    z-index:2;

}

.social-hero .hero-content h1{

    font-size:68px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:25px;

}

.social-hero .hero-content h1 span{

    background:linear-gradient(135deg,#00c3ff,#4B2DBD);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.social-hero .hero-content p{

    color:#dbe7ff;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-main{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    box-shadow:0 18px 35px rgba(0,191,255,0.22);

}

.btn-main:hover{

    transform:translateY(-6px);

    color:#fff;

    box-shadow:0 25px 45px rgba(0,191,255,0.32);

}

.btn-outline-custom{

    border:2px solid rgba(255,255,255,0.25);

    color:#fff;

    padding:15px 36px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    backdrop-filter:blur(10px);

}

.btn-outline-custom:hover{

    background:#ffffff;

    color:#071327;

    transform:translateY(-6px);

}

/* HERO IMAGE */

.hero-img{

    width:100%;

    border-radius:35px;

    position:relative;

    z-index:2;

    border:8px solid rgba(255,255,255,0.08);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.35);

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
COMMON SECTION
========================================= */

.section{

    padding:110px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:50px;

    font-weight:800;

    color:#071327;

    margin-bottom:18px;

}

.section-title p{

    color:#667085;

    font-size:17px;

    line-height:1.9;

    max-width:700px;

    margin:auto;

}

/* =========================================
SOCIAL CARDS
========================================= */

.social-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:32px;

    text-align:center;

    border:1px solid #edf3ff;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    height:100%;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.social-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#3E9ED9,#4B2DBD);

}

.social-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 22px 45px rgba(0,191,255,0.16);

}

/* ICON */

.social-icon{

    width:100px;
    height:100px;

    margin:auto auto 28px;

    border-radius:30px;

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 18px 35px rgba(0,191,255,0.22);

}

.social-icon i{

    font-size:42px;

    color:#fff;

}

/* TEXT */

.social-card h4{

    font-size:28px;

    font-weight:700;

    color:#071327;

    margin-bottom:18px;

}

.social-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
RESULT CARDS
========================================= */

.result-card{

    background:#ffffff;

    padding:50px 35px;

    border-radius:30px;

    text-align:center;

    border:1px solid #edf3ff;

    transition:0.4s;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.result-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(255,0,153,0.12);

}

.result-card h2{

    font-size:58px;

    font-weight:800;

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    margin-bottom:15px;

}

.result-card p{

    color:#667085;

    font-size:18px;

    margin:0;

}

/* =========================================
PLATFORM CARDS
========================================= */

.platform-card{

    background:#ffffff;

    padding:45px 30px;

    border-radius:32px;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.platform-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(0,191,255,0.15);

}

/* ICON */

.platform-icon{

    width:95px;
    height:95px;

    margin:auto auto 25px;

    border-radius:28px;

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 18px 35px rgba(255,0,153,0.18);

}

.platform-icon i{

    font-size:40px;

    color:#fff;

}

.platform-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

    color:#071327;

}

.platform-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
CASE STUDIES
========================================= */

.case-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:32px;

    position:relative;

    overflow:hidden;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.case-card::before{

    content:'';

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(0,191,255,0.08);

    top:-50px;
    right:-50px;

}

.case-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 22px 45px rgba(255,0,153,0.12);

}

.case-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    color:#071327;

    position:relative;

    z-index:2;

}

.case-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

    position:relative;

    z-index:2;

}

/* =========================================
CTA SECTION
========================================= */

.cta-box{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(135deg,#3E9ED9,#4B2DBD);

    padding:90px 50px;

    border-radius:40px;

    text-align:center;

    box-shadow:
    0 30px 60px rgba(255,0,153,0.20);

}

.cta-box::before{

    content:'';

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    top:-90px;
    right:-90px;

}

.cta-box h2{

    font-size:52px;

    color:#fff;

    font-weight:800;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.cta-box p{

    color:#f3f7ff;

    font-size:18px;

    margin-bottom:35px;

    position:relative;

    z-index:2;

}

.btn-light-custom{

    background:#ffffff;

    color:#071327;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    display:inline-block;

    transition:0.4s;

    position:relative;

    z-index:2;

    box-shadow:
    0 18px 35px rgba(0,0,0,0.10);

}

.btn-light-custom:hover{

    transform:translateY(-6px);

    color:#071327;

}

/* =========================================
FOOTER
========================================= */

footer{

    background:#071327;

    padding:80px 0 30px;

    text-align:center;

}

footer h4{

    color:#ffffff;

    font-size:34px;

    font-weight:800;

    margin-bottom:20px;

}

footer p{

    color:#b7c3d6;

    margin-bottom:12px;

}

/* =========================================
NAVBAR BUTTON
========================================= */

.btn-nav{

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    color:#fff !important;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 12px 25px rgba(255,0,153,0.18);

}

.btn-nav:hover{

    transform:translateY(-4px);

    color:#fff !important;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.social-hero{

    text-align:center;

    padding-top:160px;

}

.social-hero .hero-content h1{

    font-size:52px;

}

.hero-buttons{

    justify-content:center;

}

.hero-img{

    margin-top:20px;

}

.section-title h2{

    font-size:38px;

}

.cta-box h2{

    font-size:38px;

}

}

@media(max-width:576px){

.social-hero .hero-content h1{

    font-size:38px;

}

.social-hero .hero-content p{

    font-size:16px;

}

.hero-buttons a{

    width:100%;

    text-align:center;

}

.section{

    padding:80px 0;

}

.section-title h2{

    font-size:30px;

}

.social-card,
.platform-card,
.result-card,
.case-card{

    padding:35px 25px;

}

.cta-box{

    padding:60px 25px;

}

.cta-box h2{

    font-size:30px;

}

}

/* =========================================
SOCIAL MEDIA MARKETING PAGE PREMIUM CSS
========================================= */

.social-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    padding:140px 0 100px;

    background:
    linear-gradient(rgba(7,18,39,0.84),rgba(7,18,39,0.84)),
    url('https://images.unsplash.com/photo-1611926653458-09294b3142bf?q=80&w=1600') center/cover no-repeat;

}

/* GLOW EFFECTS */

.social-hero::before{

    content:'';

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(0,191,255,0.15);

    top:-120px;
    right:-120px;

    filter:blur(55px);

}

.social-hero::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(255,0,153,0.18);

    bottom:-120px;
    left:-120px;

    filter:blur(55px);

}

/* HERO CONTENT */

.social-hero .hero-content{

    position:relative;

    z-index:2;

}

.social-hero .hero-content h1{

    font-size:68px;

    font-weight:800;

    line-height:1.2;

    color:#ffffff;

    margin-bottom:25px;

}

.social-hero .hero-content h1 span{

    background:linear-gradient(135deg,#00c3ff,#4B2DBD);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.social-hero .hero-content p{

    color:#dbe7ff;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-main{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#fff;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    box-shadow:0 18px 35px rgba(0,191,255,0.22);

}

.btn-main:hover{

    transform:translateY(-6px);

    color:#fff;

    box-shadow:0 25px 45px rgba(0,191,255,0.32);

}

.btn-outline-custom{

    border:2px solid rgba(255,255,255,0.25);

    color:#fff;

    padding:15px 36px;

    border-radius:60px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    backdrop-filter:blur(10px);

}

.btn-outline-custom:hover{

    background:#ffffff;

    color:#071327;

    transform:translateY(-6px);

}

/* HERO IMAGE */

.hero-img{

    width:100%;

    border-radius:35px;

    position:relative;

    z-index:2;

    border:8px solid rgba(255,255,255,0.08);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.35);

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-18px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
COMMON SECTION
========================================= */

.section{

    padding:110px 0;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:50px;

    font-weight:800;

    color:#071327;

    margin-bottom:18px;

}

.section-title p{

    color:#667085;

    font-size:17px;

    line-height:1.9;

    max-width:700px;

    margin:auto;

}

/* =========================================
SOCIAL CARDS
========================================= */

.social-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:32px;

    text-align:center;

    border:1px solid #edf3ff;

    transition:0.4s;

    position:relative;

    overflow:hidden;

    height:100%;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.social-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#3E9ED9,#4B2DBD);

}

.social-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 22px 45px rgba(0,191,255,0.16);

}

/* ICON */

.social-icon{

    width:100px;
    height:100px;

    margin:auto auto 28px;

    border-radius:30px;

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 18px 35px rgba(0,191,255,0.22);

}

.social-icon i{

    font-size:42px;

    color:#fff;

}

/* TEXT */

.social-card h4{

    font-size:28px;

    font-weight:700;

    color:#071327;

    margin-bottom:18px;

}

.social-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
RESULT CARDS
========================================= */

.result-card{

    background:#ffffff;

    padding:50px 35px;

    border-radius:30px;

    text-align:center;

    border:1px solid #edf3ff;

    transition:0.4s;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.result-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(255,0,153,0.12);

}

.result-card h2{

    font-size:58px;

    font-weight:800;

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    margin-bottom:15px;

}

.result-card p{

    color:#667085;

    font-size:18px;

    margin:0;

}

/* =========================================
PLATFORM CARDS
========================================= */

.platform-card{

    background:#ffffff;

    padding:45px 30px;

    border-radius:32px;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.platform-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 22px 45px rgba(0,191,255,0.15);

}

/* ICON */

.platform-icon{

    width:95px;
    height:95px;

    margin:auto auto 25px;

    border-radius:28px;

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 18px 35px rgba(255,0,153,0.18);

}

.platform-icon i{

    font-size:40px;

    color:#fff;

}

.platform-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

    color:#071327;

}

.platform-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

}

/* =========================================
CASE STUDIES
========================================= */

.case-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:32px;

    position:relative;

    overflow:hidden;

    border:1px solid #edf3ff;

    transition:0.4s;

    height:100%;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);

}

.case-card::before{

    content:'';

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(0,191,255,0.08);

    top:-50px;
    right:-50px;

}

.case-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 22px 45px rgba(255,0,153,0.12);

}

.case-card h4{

    font-size:28px;

    font-weight:700;

    margin-bottom:18px;

    color:#071327;

    position:relative;

    z-index:2;

}

.case-card p{

    color:#667085;

    line-height:1.9;

    margin:0;

    position:relative;

    z-index:2;

}

/* =========================================
CTA SECTION
========================================= */

.cta-box{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(135deg,#3E9ED9,#4B2DBD);

    padding:90px 50px;

    border-radius:40px;

    text-align:center;

    box-shadow:
    0 30px 60px rgba(255,0,153,0.20);

}

.cta-box::before{

    content:'';

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    top:-90px;
    right:-90px;

}

.cta-box h2{

    font-size:52px;

    color:#fff;

    font-weight:800;

    margin-bottom:20px;

    position:relative;

    z-index:2;

}

.cta-box p{

    color:#f3f7ff;

    font-size:18px;

    margin-bottom:35px;

    position:relative;

    z-index:2;

}

.btn-light-custom{

    background:#ffffff;

    color:#071327;

    padding:16px 38px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    display:inline-block;

    transition:0.4s;

    position:relative;

    z-index:2;

    box-shadow:
    0 18px 35px rgba(0,0,0,0.10);

}

.btn-light-custom:hover{

    transform:translateY(-6px);

    color:#071327;

}

/* =========================================
FOOTER
========================================= */

footer{

    background:#071327;

    padding:80px 0 30px;

    text-align:center;

}

footer h4{

    color:#ffffff;

    font-size:34px;

    font-weight:800;

    margin-bottom:20px;

}

footer p{

    color:#b7c3d6;

    margin-bottom:12px;

}

/* =========================================
NAVBAR BUTTON
========================================= */

.btn-nav{

    background:linear-gradient(135deg,#3E9ED9,#4B2DBD);

    color:#fff !important;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:0.4s;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    box-shadow:
    0 12px 25px rgba(255,0,153,0.18);

}

.btn-nav:hover{

    transform:translateY(-4px);

    color:#fff !important;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.social-hero{

    text-align:center;

    padding-top:160px;

}

.social-hero .hero-content h1{

    font-size:52px;

}

.hero-buttons{

    justify-content:center;

}

.hero-img{

    margin-top:20px;

}

.section-title h2{

    font-size:38px;

}

.cta-box h2{

    font-size:38px;

}

}

@media(max-width:576px){

.social-hero .hero-content h1{

    font-size:38px;

}

.social-hero .hero-content p{

    font-size:16px;

}

.hero-buttons a{

    width:100%;

    text-align:center;

}

.section{

    padding:80px 0;

}

.section-title h2{

    font-size:30px;

}

.social-card,
.platform-card,
.result-card,
.case-card{

    padding:35px 25px;

}

.cta-box{

    padding:60px 25px;

}

.cta-box h2{

    font-size:30px;

}

}

/* =========================================
CONTACT HERO
========================================= */

.contact-hero{

    padding:180px 0 120px;

    background:
    linear-gradient(rgba(5,18,40,0.82),rgba(5,18,40,0.82)),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1600') center/cover no-repeat;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.contact-hero::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:rgba(0,191,255,0.12);

    top:-140px;
    right:-120px;

    filter:blur(45px);

}

.contact-hero h1{

    font-size:68px;

    font-weight:800;

    color:#ffffff;

    margin-bottom:24px;

    position:relative;

    z-index:2;

}

.contact-hero p{

    max-width:850px;

    margin:auto;

    color:#d8e8ff;

    line-height:2;

    font-size:18px;

    position:relative;

    z-index:2;

}

/* =========================================
CONTACT INFO BOX
========================================= */

.contact-info-box{

    background:#ffffff;

    border-radius:35px;

    padding:45px 35px;

    text-align:center;

    border:1px solid #eaf1f8;

    transition:0.4s;

    box-shadow:0 15px 40px rgba(0,0,0,0.05);

    height:100%;

    position:relative;

    overflow:hidden;

}

.contact-info-box::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#3E9ED9, #4B2DBD);

}

.contact-info-box:hover{

    transform:translateY(-10px);

    border-color:#3E9ED9;

    box-shadow:0 20px 45px rgba(0,191,255,0.15);

}

.contact-icon{

    width:95px;
    height:95px;

    border-radius:28px;

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 28px;

    box-shadow:0 15px 35px rgba(0,191,255,0.25);

}

.contact-icon i{

    font-size:38px;

    color:#ffffff;

}

.contact-info-box h4{

    font-size:28px;

    font-weight:700;

    color:#081c3a;

    margin-bottom:18px;

}

.contact-info-box p{

    color:#5e6f89;

    line-height:1.9;

    margin-bottom:8px;

    font-size:16px;

}

.contact-info-box a{

    color:#5e6f89;

    text-decoration:none;

    transition:0.3s;

}

.contact-info-box a:hover{

    color:#3E9ED9;

}

/* =========================================
CONTACT FORM
========================================= */

.contact-form{

    background:#ffffff;

    padding:55px 45px;

    border-radius:35px;

    border:1px solid #eaf1f8;

    box-shadow:0 20px 50px rgba(0,0,0,0.06);

}

.contact-form h3{

    font-size:36px;

    font-weight:800;

    color:#081c3a;

    margin-bottom:30px;

}

.form-control{

    width:100%;

    background:#f7fbff;

    border:1px solid #dce8f5;

    border-radius:18px;

    padding:18px 22px;

    min-height:60px;

    color:#081c3a;

    transition:0.3s;

    font-size:15px;

}

textarea.form-control{

    min-height:140px;

    resize:none;

}

.form-control:focus{

    border-color:#3E9ED9;

    box-shadow:0 0 0 5px rgba(0,191,255,0.12);

    background:#ffffff;

}

.btn-contact{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    border:none;

    color:#ffffff;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    transition:0.4s;

    box-shadow:0 15px 35px rgba(0,191,255,0.20);

}

.btn-contact:hover{

    transform:translateY(-5px);

    color:#ffffff;

    box-shadow:0 22px 45px rgba(0,191,255,0.30);

}

/* =========================================
SOCIAL ICONS
========================================= */

.social-icons{

    margin-top:35px;

    display:flex;

    gap:14px;

    flex-wrap:wrap;

}

.social-icons a{

    width:52px;
    height:52px;

    border-radius:50%;

    background:#f3f8ff;

    color:#3E9ED9;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:0.4s;

    text-decoration:none;

}

.social-icons a:hover{

    background:linear-gradient(135deg,#3E9ED9, #4B2DBD);

    color:#ffffff;

    transform:translateY(-5px);

}

/* =========================================
MAP BOX
========================================= */

.map-box{

    width:100%;

    height:100%;

    min-height:650px;

    border-radius:35px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);

    border:1px solid #e9f1f8;

}

.map-box iframe{

    width:100%;

    height:100%;

    border:0;

}

/* =========================================
SECTION TITLE
========================================= */

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:52px;

    font-weight:800;

    color:#081c3a;

    margin-bottom:18px;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#5e6f89;

    line-height:1.9;

    font-size:17px;

}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

.contact-hero h1{
    font-size:52px;
}

.contact-form{
    padding:45px 35px;
}

.map-box{
    min-height:450px;
}

}

@media(max-width:768px){

.contact-hero{
    padding:150px 0 100px;
}

.contact-hero h1{
    font-size:42px;
}

.contact-hero p{
    font-size:16px;
}

.section-title h2{
    font-size:38px;
}

.contact-form h3{
    font-size:30px;
}

.contact-info-box{
    padding:38px 28px;
}

}

@media(max-width:576px){

.contact-hero h1{
    font-size:34px;
}

.section-title h2{
    font-size:30px;
}

.contact-form{
    padding:35px 22px;
}

.contact-form h3{
    font-size:26px;
}

.contact-icon{
    width:80px;
    height:80px;
}

.contact-icon i{
    font-size:32px;
}

.map-box{
    min-height:350px;
}

.btn-contact{
    width:100%;
}

}


/* =========================
GALLERY SECTION
========================= */

.gallery-section{
background: #4B2DBD;
overflow:hidden;
}

.gallery-tabs .nav-link{
background:transparent;
border:2px solid rgba(255,255,255,0.2);
color:#fff;
padding:14px 30px;
margin:0 10px;
border-radius:50px;
font-weight:600;
transition:0.4s;
}

.gallery-tabs .nav-link.active{
      background: linear-gradient(135deg, #3E9ED9,  #4B2DBD);
    color: #fff;

}

/* IMAGE CARD */

.gallery-card{
border-radius:20px;
overflow:hidden;
cursor:pointer;
transition:0.4s;
}

.gallery-card:hover{
transform:translateY(-8px);
}

.gallery-img{
width:100%;
height:280px;
object-fit:cover;
transition:0.5s;
}

.gallery-card:hover .gallery-img{
transform:scale(1.1);
}

/* VIDEO */

.video-card{
border-radius:20px;
overflow:hidden;
background:#111827;
padding:10px;
}

.gallery-video{
width:100%;
height:350px;
object-fit:cover;
border-radius:15px;
}

/* =========================
POPUP MODAL
========================= */

.image-popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.92);
display:none;
align-items:center;
justify-content:center;
z-index:99999;
padding:20px;
}

.popup-img{
max-width:90%;
max-height:90%;
border-radius:20px;
animation:zoomIn 0.4s ease;
}

.close-popup{
position:absolute;
top:20px;
right:40px;
font-size:50px;
color:#fff;
cursor:pointer;
z-index:999999;
}

/* ANIMATION */

@keyframes zoomIn{

0%{
transform:scale(0.7);
opacity:0;
}

100%{
transform:scale(1);
opacity:1;
}

}

/* MOBILE */

@media(max-width:768px){

.gallery-img{
height:220px;
}

.gallery-video{
height:240px;
}

.close-popup{
right:20px;
font-size:40px;
}

}




.page-header{
padding:120px 0 70px;
text-align:center;
background:linear-gradient(135deg,#111827,#1e293b);
}

.page-header h1{
font-size:55px;
font-weight:800;
margin-bottom:15px;
}

.page-header p{
font-size:18px;
color:#cbd5e1;
}

/* =========================
TERMS SECTION
========================= */

.terms-section{
padding:80px 0;
}

.terms-box{
background:#111827;
padding:40px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.terms-box h2{
font-size:28px;
font-weight:700;
margin-bottom:20px;
color:#fff;
}

.terms-box p{
color:#d1d5db;
margin-bottom:20px;
}

.terms-box ul{
padding-left:20px;
margin-bottom:30px;
}

.terms-box ul li{
margin-bottom:12px;
color:#d1d5db;
}

/* =========================
FOOTER
========================= */

footer{
background: linear-gradient(135deg, #3E9ED9,  #4B2DBD) !important;
padding:30px 0;
text-align:center;
margin-top:60px;
}

footer p{
margin:0;
color:#94a3b8;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.page-header h1{
font-size:38px;
}

.terms-box{
padding:25px;
}

}


/* =========================
PAGE HEADER
========================= */

.page-header{
padding:120px 0 70px;
text-align:center;
background:linear-gradient(135deg,#111827,#1e293b);
}

.page-header h1{
font-size:55px;
font-weight:800;
margin-bottom:15px;
}

.page-header p{
font-size:18px;
color:#cbd5e1;
}

/* =========================
PRIVACY SECTION
========================= */

.privacy-section{
padding:80px 0;
}

.privacy-box{
background:#111827;
padding:40px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

.privacy-box h2{
font-size:28px;
font-weight:700;
margin-bottom:20px;
color:#fff;
}

.privacy-box p{
color:#d1d5db;
margin-bottom:20px;
}

.privacy-box ul{
padding-left:20px;
margin-bottom:30px;
}

.privacy-box ul li{
margin-bottom:12px;
color:#d1d5db;
}

/* =========================
FOOTER
========================= */

footer{
background:#020617;
padding:30px 0;
text-align:center;
margin-top:60px;
}

footer p{
margin:0;
color:#222;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.page-header h1{
font-size:38px;
}

.privacy-box{
padding:25px;
}

}

