/*====================================================
    OASIS TECHNICAL SERVICES & CONSULTANCY GROUP
    Main Stylesheet
======================================================*/

/*=========================
ROOT VARIABLES
==========================*/

:root{

    --primary:#0B2341;
    --secondary:#1C5D99;
    --accent:#00A8A8;

    --success:#2E7D32;
    --warning:#F4B400;
    --danger:#E53935;

    --white:#ffffff;
    --light:#F7F9FC;
    --gray:#6c757d;
    --dark:#1E293B;

    --shadow:
        0 10px 30px rgba(0,0,0,.08);

    --shadow-lg:
        0 20px 60px rgba(0,0,0,.15);

    --radius:18px;

    --transition:.35s ease;

    --font-heading:'Poppins',sans-serif;
    --font-body:'Inter',sans-serif;

}

/*=========================
RESET
==========================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--font-body);
    color:var(--dark);
    background:var(--white);
    overflow-x:hidden;
    line-height:1.8;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

/*=========================
SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#ececec;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}

/*=========================
TYPOGRAPHY
==========================*/

h1,h2,h3,h4,h5,h6{

    font-family:var(--font-heading);
    font-weight:700;
    color:var(--primary);

}

.section-tag{

    display:inline-block;

    color:var(--accent);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

    text-transform:uppercase;

}

.section-title{

    font-size:2.6rem;

    margin-bottom:25px;

    line-height:1.2;

}

.section-description{

    max-width:720px;

    margin:auto;

    color:var(--gray);

}

/*=========================
UTILITY
==========================*/

.py-100{

    padding:100px 0;

}

.bg-light{

    background:var(--light)!important;

}

.text-primary{

    color:var(--primary)!important;

}

/*=========================
BUTTONS
==========================*/

.btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:linear-gradient(
    135deg,
    var(--secondary),
    var(--primary));

    border:none;

}

.btn-primary:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow-lg);

}

.btn-outline-light{

    border:2px solid #fff;

}

.btn-outline-light:hover{

    color:var(--primary);

    background:#fff;

}

.btn-warning{

    background:var(--warning);

    color:#222;

    border:none;

}

/*=========================
LOADER
==========================*/

#loader{

    position:fixed;

    inset:0;

    background:var(--primary);

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.5s;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:110px;

    margin:auto;

}

/*=========================
SCROLL PROGRESS
==========================*/

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    height:4px;

    width:0;

    background:linear-gradient(
    to right,
    var(--accent),
    var(--secondary));

    z-index:9999;

}

/*=========================
NAVBAR
==========================*/

.navbar{

    transition:.4s;

    padding:18px 0;

    position:fixed;

    top:0;

    width:100%;

    z-index:1030;

    background:rgba(11,35,65,.94);

    backdrop-filter:blur(12px);

}

.navbar.scrolled{

    background:#fff;

    box-shadow:var(--shadow);

    padding:12px 0;

}

.navbar .container{

    max-width:1320px;

}

.navbar-brand{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-weight:700;

    font-size:1rem;

    letter-spacing:.02em;

}

.navbar-brand .brand-text{

    white-space:nowrap;

}

.navbar.scrolled .navbar-brand{

    color:var(--primary);

}

.navbar-brand img{

    width:48px;

    height:48px;

    object-fit:contain;

}

.navbar-nav{

    gap:.25rem 1.2rem;

    align-items:center;

}

.nav-link{

    color:#f3f7fb;

    margin-left:0;

    font-weight:600;

    position:relative;

    padding:.5rem .2rem;

}

.navbar.scrolled .nav-link{

    color:var(--dark);

}

.nav-link:hover,
.nav-link.active{

    color:#fff;

}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active{

    color:var(--primary);

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-4px;

    width:0;

    height:2px;

    background:var(--accent);

    transition:.3s;

}

.nav-link:hover::after,
.nav-link.active::after{

    width:100%;

}

.navbar .btn{

    margin-left:.35rem;

    padding:.8rem 1.35rem;

}

.navbar-toggler{

    border:0;

    padding:.35rem .45rem;

}

.navbar-toggler:focus{

    box-shadow:none;

}

@media (max-width:991.98px){

    .navbar{

        background:rgba(11,35,65,.96);

    }

    .navbar.scrolled{

        background:#fff;

    }

    .navbar-collapse{

        margin-top:.75rem;

        padding:1rem;

        border-radius:18px;

        background:rgba(255,255,255,.97);

    }

    .navbar-collapse .nav-link{

        color:var(--dark);

        padding:.65rem 0;

    }

    .navbar-collapse .nav-link::after{

        display:none;

    }

    .navbar-collapse .btn{

        width:100%;

        margin:0;

        margin-top:.5rem;

    }

    .navbar-collapse .dropdown-menu{

        border:0;

        box-shadow:none;

        padding:0;

        margin:0;

        min-width:100%;

    }

    .navbar-collapse .dropdown-menu a{

        padding:.7rem 0;

    }

}

@media (max-width:767.98px){

    .navbar-brand{

        font-size:.95rem;

    }

    .navbar-brand img{

        width:40px;

        height:40px;

    }

}

/*=========================
MEGA MENU
==========================*/

.mega-menu{

    border:none;

    border-radius:20px;

    padding:25px;

    min-width:520px;

    box-shadow:var(--shadow-lg);

}

.mega-menu a{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px;

    color:var(--dark);

    border-radius:10px;

}

.mega-menu a:hover{

    background:var(--light);

    transform:translateX(6px);

}

.mega-menu i{

    color:var(--accent);

}

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

.hero{

    background:
    linear-gradient(rgba(11,35,65,.90),
    rgba(11,35,65,.88)),
    url("../images/hero-bg.jpg")
    center/cover;

    color:#fff;

    position:relative;

    min-height:100vh;

    padding:8rem 0 5rem;

}

.hero .container{

    position:relative;

    z-index:5;

}

.hero .row{

    min-height:calc(100vh - 8rem);

    align-items:center;

}

.hero-content{

    max-width:620px;

    padding-top:1rem;

}

.hero h1{

    color:#fff;

    font-size:clamp(2.35rem, 3.2vw, 4rem);

    line-height:1.15;

    margin:25px 0;

}

.hero h1 span{

    color:#44E1E1;

}

.hero p{

    color:#dfe7ef;

    font-size:1.05rem;

    max-width:580px;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    padding:10px 18px;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.2);

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:18px 24px;

    margin-top:40px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

}

.hero-features i{

    color:#2ecc71;

}

@media (min-width:769px){

    .hero-features div,
    .hero-features i{

        color:#000;

    }

}

/*=========================
HERO IMAGE
==========================*/

.hero-image{

    position:relative;

    max-width:560px;

    margin-inline:auto;

}

.hero-image img{

    width:100%;

    border-radius:25px;

    box-shadow:var(--shadow-lg);

}

/*=========================
FLOATING CARDS
==========================*/

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    padding:18px;

    border-radius:16px;

    box-shadow:var(--shadow);

    animation:float 5s ease-in-out infinite;

    z-index:2;

}

.floating-card i{

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    font-size:22px;

}

.card-1{

    top:8%;

    left:-35px;

}

.card-2{

    right:-30px;

    top:45%;

}

.card-3{

    bottom:5%;

    left:15%;

}

@media (max-width:991.98px){

    .hero{

        padding:7rem 0 4rem;

    }

    .hero .row{

        min-height:auto;

    }

    .hero-content{

        text-align:center;

        margin:0 auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-features{

        justify-content:center;

    }

    .hero-image{

        margin-top:2.5rem;

    }

}

@media (max-width:767.98px){

    .hero{

        padding:6.5rem 0 3.5rem;

    }

    .hero h1{

        font-size:2.25rem;

    }

    .hero-features{

        flex-direction:column;

        align-items:flex-start;

    }

    .hero-image{

        display:flex;

        flex-direction:column;

        gap:.75rem;

    }

    .floating-card{

        position:static;

        margin-top:.25rem;

    }

}

/*=========================
ANIMATED BACKGROUND
==========================*/

.hero-bg{

    position:absolute;

    inset:0;

    overflow:hidden;

}

.circle{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    animation:move 18s linear infinite;

}

.circle.one{

    width:180px;

    height:180px;

    top:10%;

    left:5%;

}

.circle.two{

    width:320px;

    height:320px;

    bottom:-100px;

    right:-120px;

}

.circle.three{

    width:140px;

    height:140px;

    right:20%;

    top:18%;

}

.circle.four{

    width:220px;

    height:220px;

    bottom:18%;

    left:35%;

}

/*=========================
WAVE DIVIDER
==========================*/

.wave{

    position:absolute;

    bottom:-2px;

    left:0;

    width:100%;

}

.wave svg{

    display:block;

    width:100%;

    height:auto;

}

/*=========================
ANIMATIONS
==========================*/

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

@keyframes move{

    from{

        transform:translateY(0) rotate(0deg);

    }

    to{

        transform:translateY(-80px) rotate(360deg);

    }

}

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

.about-section{
    padding:100px 0;
    position:relative;
}

@media (max-width:767.98px){

    .experience-card{

        position:static;

        margin-top:1rem;

    }

    .section-title{

        font-size:2rem;

    }

}

.about-section img{
    border-radius:25px;
    box-shadow:var(--shadow-lg);
}

.experience-card{

    position:absolute;

    bottom:25px;
    left:-25px;

    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:#fff;

    padding:25px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

    animation:float 5s infinite;

}

.experience-card h2{

    color:#fff;

    font-size:2rem;

    margin-bottom:8px;

}

.experience-card span{

    font-size:.95rem;

    opacity:.9;

}

.icon-box{

    display:flex;

    gap:18px;

    margin-bottom:25px;

    align-items:flex-start;

}

.icon-box i{

    width:65px;

    height:65px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--accent);

    color:#fff;

    border-radius:50%;

    font-size:24px;

    flex-shrink:0;

    transition:var(--transition);

}

.icon-box:hover i{

    transform:rotate(15deg) scale(1.08);

}

.icon-box h5{

    margin-bottom:8px;

}

.icon-box p{

    color:var(--gray);

}

/*====================================================
    MISSION & VISION
======================================================*/

.mission-section{

    padding:100px 0;

}

.mission-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.mission-card .icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

}

.mission-card p{

    color:var(--gray);

}

/*====================================================
    WHY CHOOSE US
======================================================*/

.why-us{

    padding:100px 0;

}

.feature-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:all .35s ease;

    height:100%;

}

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

}

.feature-card i{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--accent),
        var(--secondary)
    );

    color:#fff;

    font-size:34px;

    transition:.4s;

}

.feature-card:hover i{

    transform:rotate(12deg) scale(1.08);

}

.feature-card h4{

    margin-bottom:15px;

}

.feature-card p{

    color:var(--gray);

}

/*====================================================
    SERVICES
======================================================*/

.services{

    padding:100px 0;

}

.service-card{

    display:block;

    background:#fff;

    border-radius:20px;

    padding:35px 28px;

    text-align:center;

    color:inherit;

    box-shadow:var(--shadow);

    transition:.35s;

    overflow:hidden;

    position:relative;

    height:100%;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        to right,
        var(--accent),
        var(--secondary)
    );

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-lg);

    color:inherit;

}

.service-card i{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    font-size:36px;

    transition:.35s;

}

.service-card:hover i{

    transform:rotate(10deg) scale(1.12);

}

.service-card h5{

    margin-bottom:18px;

}

.service-card p{

    color:var(--gray);

    margin-bottom:0;

}

/*====================================================
    STATISTICS
======================================================*/

.statistics{

    padding:90px 0;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    position:relative;

}

.statistics::before{

    content:"";

    position:absolute;

    inset:0;

    background:url("../images/pattern.png");

    opacity:.08;

}

.statistics .container{

    position:relative;

    z-index:2;

}

.statistics h2{

    color:#fff;

    font-size:3.2rem;

    margin-bottom:10px;

    font-weight:700;

}

.statistics p{

    color:#fff;

    opacity:.95;

    font-size:1rem;

}

/*====================================================
    INDUSTRIES
======================================================*/

.industries{

    padding:100px 0;

}

.industry-card{

    background:#fff;

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

    height:100%;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.industry-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--accent),
        var(--secondary)
    );

    color:#fff;

    font-size:32px;

    transition:.4s;

}

.industry-card:hover i{

    transform:scale(1.12);

}

.industry-card h5{

    margin-bottom:0;

    color:var(--primary);

}

/*====================================================
    COMMON SECTION SPACING
======================================================*/

section{

    position:relative;

}

.section-title{

    font-weight:700;

}

.section-description{

    max-width:720px;

    margin:20px auto 0;

    color:var(--gray);

}

.row>*{

    transition:var(--transition);

}

/*====================================================
    PART 3A
    PROJECTS | TESTIMONIALS | BLOG | CTA
======================================================*/

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

.projects-section{
    padding:100px 0;
    background:var(--light);
    position:relative;
    overflow:hidden;
}

.projects-section::before{
    content:"";
    position:absolute;
    top:-180px;
    right:-180px;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(0,168,168,.06);
}

.projects-section::after{
    content:"";
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(28,93,153,.05);
}

.project-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow);
    transition:.4s;
    position:relative;
    height:100%;

}

.project-card:hover{

    transform:translateY(-12px);
    box-shadow:var(--shadow-lg);

}

.project-card img{

    width:100%;
    height:260px;
    object-fit:cover;
    transition:.6s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:30px;

}

.project-content span{

    display:inline-block;
    color:var(--accent);
    font-size:.85rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:12px;

}

.project-content h4{

    margin-bottom:18px;
    color:var(--primary);

}

.project-content p{

    color:var(--gray);
    margin-bottom:25px;

}

.project-content .btn{

    padding:10px 25px;

}

.project-card::before{

    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:5px;
    background:linear-gradient(
        90deg,
        var(--accent),
        var(--secondary)
    );
    transition:.4s;

}

.project-card:hover::before{

    width:100%;

}

/*====================================================
PROJECT OVERLAY
======================================================*/

.project-overlay{

    position:absolute;
    inset:0;

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

    background:rgba(11,35,65,.75);

    opacity:0;

    transition:.35s;

}

.project-card:hover .project-overlay{

    opacity:1;

}

.project-overlay a{

    width:70px;
    height:70px;

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

    background:#fff;

    color:var(--primary);

    border-radius:50%;

    font-size:24px;

    transform:scale(.8);

    transition:.35s;

}

.project-card:hover .project-overlay a{

    transform:scale(1);

}

/*====================================================
TESTIMONIALS
======================================================*/

.testimonials{

    padding:100px 0;
    background:#fff;

}

.testimonialSwiper{

    padding-bottom:60px;

}

.testimonial-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

    text-align:center;

    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.testimonial-card::before{

    content:"\f10d";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    top:20px;

    left:25px;

    font-size:34px;

    color:rgba(0,168,168,.15);

}

.testimonial-card p{

    color:var(--gray);

    font-style:italic;

    margin-bottom:30px;

    line-height:1.9;

}

.testimonial-card h5{

    color:var(--primary);

    margin-bottom:4px;

}

.testimonial-card small{

    color:var(--gray);

}

.client-image{

    width:80px;
    height:80px;

    margin:auto;

    border-radius:50%;

    overflow:hidden;

    margin-bottom:25px;

    border:4px solid var(--accent);

}

.client-image img{

    width:100%;
    height:100%;
    object-fit:cover;

}

/*====================================================
SWIPER
======================================================*/

.swiper{

    width:100%;

}

.swiper-slide{

    height:auto;

}

.swiper-pagination{

    bottom:0 !important;

}

.swiper-pagination-bullet{

    width:12px;

    height:12px;

    background:#ccc;

    opacity:1;

}

.swiper-pagination-bullet-active{

    background:var(--accent);

    transform:scale(1.2);

}

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

.blog-section{

    padding:100px 0;

    background:var(--light);

}

.blog-card{

    background:#fff;

    overflow:hidden;

    border-radius:20px;

    box-shadow:var(--shadow);

    transition:.35s;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.blog-card:hover img{

    transform:scale(1.08);

}

.blog-content{

    padding:30px;

}

.blog-content span{

    display:inline-block;

    margin-bottom:12px;

    color:var(--accent);

    font-weight:700;

    text-transform:uppercase;

    font-size:.82rem;

    letter-spacing:1px;

}

.blog-content h4{

    margin-bottom:18px;

    line-height:1.4;

}

.blog-content p{

    color:var(--gray);

    margin-bottom:25px;

}

.blog-content a{

    color:var(--secondary);

    font-weight:700;

}

.blog-content a:hover{

    color:var(--accent);

    padding-left:8px;

}

.blog-date{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--gray);

    font-size:.9rem;

    margin-bottom:18px;

}

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

.cta-section{

    padding:110px 0;

    position:relative;

    overflow:hidden;

    text-align:center;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.cta-section::before{

    content:"";

    position:absolute;

    top:-150px;

    right:-100px;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.cta-section::after{

    content:"";

    position:absolute;

    bottom:-120px;

    left:-120px;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.cta-section .container{

    position:relative;

    z-index:2;

}

.cta-section h2{

    color:#fff;

    font-size:2.8rem;

    margin-bottom:20px;

}

.cta-section p{

    max-width:760px;

    margin:0 auto 35px;

    color:#e5eef7;

    font-size:1.1rem;

}

.cta-section .btn{

    background:#fff;

    color:var(--primary);

    border:none;

    padding:16px 42px;

    font-weight:700;

}

.cta-section .btn:hover{

    transform:translateY(-6px);

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

}

/*====================================================
    PART 3B
    FOOTER • WHATSAPP • BACK TO TOP
    UTILITIES • RESPONSIVE • FINISHING TOUCHES
======================================================*/

/*====================================================
FOOTER
======================================================*/

.footer{

    background:#08192F;

    color:#d8e2ec;

    padding:90px 0 30px;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    top:-180px;
    right:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

}

.footer h4,
.footer h5{

    color:#fff;

    margin-bottom:25px;

}

.footer p{

    color:#c9d4df;

    line-height:1.9;

}

.footer ul{

    padding:0;
    margin:0;
    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#c9d4df;

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--accent);

    padding-left:8px;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:45px 0 25px;

}

.footer .copyright{

    text-align:center;

    color:#9fb1c5;

}

/*====================================================
SOCIAL ICONS
======================================================*/

.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.social-links a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.35s;

}

.social-links a:hover{

    background:var(--accent);

    transform:translateY(-6px);

}

/*====================================================
NEWSLETTER
======================================================*/

.newsletter{

    margin-top:25px;

}

.newsletter form{

    display:flex;

    gap:10px;

}

.newsletter input{

    flex:1;

    border:none;

    border-radius:50px;

    padding:14px 20px;

    outline:none;

}

.newsletter button{

    border:none;

    border-radius:50px;

    padding:14px 28px;

    background:var(--accent);

    color:#fff;

    font-weight:600;

}

/*====================================================
WHATSAPP
======================================================*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:95px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    box-shadow:var(--shadow-lg);

    z-index:999;

    transition:.35s;

}

.whatsapp-btn:hover{

    transform:translateY(-6px) scale(1.08);

    color:#fff;

}

/*====================================================
BACK TO TOP
======================================================*/

#backToTop{

    position:fixed;

    right:25px;

    bottom:22px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

}

#backToTop.active{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:var(--accent);

    transform:translateY(-6px);

}

/*====================================================
LOADER HIDE
======================================================*/

body.loaded #loader{

    opacity:0;

    visibility:hidden;

}

/*====================================================
FORM ELEMENTS
======================================================*/

input,
textarea,
select{

    border:1px solid #ddd;

    border-radius:12px;

    padding:15px;

    transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:var(--accent);

    box-shadow:0 0 0 4px rgba(0,168,168,.12);

}

/*====================================================
IMAGE EFFECTS
======================================================*/

.img-hover{

    overflow:hidden;

    border-radius:20px;

}

.img-hover img{

    transition:.6s;

}

.img-hover:hover img{

    transform:scale(1.08);

}

/*====================================================
CARD HOVER
======================================================*/

.card-hover{

    transition:.35s;

}

.card-hover:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

/*====================================================
UTILITY CLASSES
======================================================*/

.rounded-xl{

    border-radius:20px;

}

.shadow-soft{

    box-shadow:var(--shadow);

}

.shadow-large{

    box-shadow:var(--shadow-lg);

}

.bg-primary-gradient{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

}

.bg-accent-gradient{

    background:linear-gradient(
        135deg,
        var(--accent),
        var(--secondary)
    );

}

.text-accent{

    color:var(--accent);

}

.transition{

    transition:.35s;

}

/*====================================================
FADE ANIMATION
======================================================*/

.fade-up{

    animation:fadeUp .8s ease both;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*====================================================
PULSE
======================================================*/

.pulse{

    animation:pulse 2s infinite;

}

@keyframes pulse{

    0%{

        box-shadow:0 0 0 0 rgba(0,168,168,.45);

    }

    70%{

        box-shadow:0 0 0 18px rgba(0,168,168,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(0,168,168,0);

    }

}

/*====================================================
FLOAT
======================================================*/

.float{

    animation:float 4s ease-in-out infinite;

}

/*====================================================
AOS IMPROVEMENTS
======================================================*/

[data-aos]{

    transition-duration:900ms !important;

}

/*====================================================
INTERIOR PAGE STYLES
======================================================*/

.page-hero{
    padding:160px 0 100px;
    background:linear-gradient(135deg, var(--primary), var(--secondary));
    color:#fff;
    position:relative;
    overflow:hidden;
}

.page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 35%);
}

.page-hero .container{
    position:relative;
    z-index:2;
}

.page-hero h1{
    color:#fff;
    font-size:3rem;
    line-height:1.2;
    margin-bottom:20px;
    max-width:900px;
}

.page-hero p{
    color:#e4edf4;
    font-size:1.08rem;
    max-width:720px;
}

.page-section{
    padding:100px 0;
}

.contact-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:var(--shadow);
    height:100%;
}

.contact-card .icon{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg, var(--accent), var(--secondary));
    color:#fff;
    margin-bottom:20px;
    font-size:24px;
}

.contact-card h4,
.contact-card h5{
    margin-bottom:14px;
}

.contact-card p,
.contact-card li{
    color:var(--gray);
}

.page-list{
    list-style:none;
    padding:0;
    margin-top:18px;
}

.page-list li{
    padding:10px 0 10px 28px;
    position:relative;
    color:var(--gray);
    border-bottom:1px solid #eef2f6;
}

.page-list li::before{
    content:"\f00c";
    font-family:"Font Awesome 6 Free";
    font-weight:900;
    position:absolute;
    left:0;
    top:13px;
    color:var(--accent);
}

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

@media (max-width:1200px){

.hero h1{

    font-size:3.3rem;

}

.section-title{

    font-size:2.3rem;

}

}

@media (max-width:992px){

.navbar{

    background:#fff;

    box-shadow:var(--shadow);

}

.navbar-brand{

    color:var(--primary);

}

.nav-link{

    color:var(--dark);

    margin-left:0;

    padding:12px 0;

}

.hero{

    padding-top:120px;

}

.hero h1{

    font-size:2.8rem;

}

.hero-buttons{

    flex-direction:column;

}

.hero-buttons .btn{

    width:100%;

}

.hero-image{

    margin-top:60px;

}

.floating-card{

    display:none;

}

.section-title{

    font-size:2.1rem;

}

.newsletter form{

    flex-direction:column;

}

.newsletter button{

    width:100%;

}

}

@media (max-width:768px){

.section-title{

    font-size:1.9rem;

}

.hero h1{

    font-size:2.2rem;

}

.hero-features{

    flex-direction:column;

}

.statistics h2{

    font-size:2.4rem;

}

.cta-section h2{

    font-size:2rem;

}

.project-card img,
.blog-card img{

    height:220px;

}

.whatsapp-btn{

    width:55px;
    height:55px;
    font-size:26px;

}

#backToTop{

    width:50px;
    height:50px;

}

}

@media (max-width:576px){

.hero{

    text-align:center;

}

.section-title{

    font-size:1.7rem;

}

.hero h1{

    font-size:2rem;

}

.hero-buttons{

    gap:15px;

}

.btn{

    width:100%;

}

.footer{

    text-align:center;

}

.social-links{

    justify-content:center;

}

.newsletter{

    margin-top:30px;

}

.newsletter form{

    gap:15px;

}

}

/*====================================================
END OF STYLESHEET
======================================================*/