/* =========================
GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
GLOBAL
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

:root {
    --primary: var(--secondary-set);
    --secondary: #fff;
    --light: #f5f5f5;
    --secondary-set: #002366 ;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    padding: 90px 0;
}

.container {
    max-width: 1200px;
}

/* =========================
NAVBAR
========================= */

/* =========================================
TOP HEADER
========================================= */

.top-header {
    width: 100%;
    background: var(--secondary-set);
    padding: 12px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    transition: 0.4s ease;
}

.top-header.hide-header {
    transform: translateY(-100%);
}


/* LOGO TITLE */

.logo-text h3{
    margin:0;

    font-size:32px;
    font-weight:800;

    line-height:1;

    color:var(--secondary-set);

    letter-spacing:1px;
}

/* SUB TITLE */

.logo-text span{
    font-size:12px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#555;
}

.top-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-left a {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.4s;
    font-weight: 500;
}

.top-left a:hover {
    color: #d9d9d9;
}

.top-right a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.top-right a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 100%;
    left: 0;
    transition: 0.4s;
    z-index: -1;
}

.top-right a:hover::before {
    top: 0;
}

.top-right a:hover {
    color: var(--secondary-set);
    transform: translateY(-4px);
}



/* =========================================
NAVBAR
========================================= */

.custom-navbar {
    width: 100%;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 9999;
    padding: 16px 0;
    transition: 0.5s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-navbar.sticky {
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* LOGO */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    width: 105px;
    transition: 0.4s;
}

.logo-text h3 {
    margin: 0;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary-set) !important;
}

.logo-text span {
    font-size: 12px;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* NAV */

.navbar-nav {
    gap: 18px;
}

.nav-link {
    position: relative;
    color: var(--secondary-set);
    font-size: 16px;
    font-weight: 600;
    padding: 12px 8px !important;
    transition: 0.4s;
}

/* UNDERLINE EFFECT */

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--secondary-set);
    border-radius: 50px;
    transition: 0.4s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-set);
}

/* BUTTON */

.call-btn {
    background: var(--secondary-set);
    color: #fff;
    padding: 14px 28px;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--secondary-set);
}

.call-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 100%;
    left: 0;
    transition: 0.4s;
    z-index: -1;
}

.call-btn:hover::before {
    top: 0;
}

.call-btn:hover {
    color: var(--secondary-set);
    transform: translateY(-5px);
}

/* TOGGLER */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
    padding: 0;
}

.navbar-toggler i {
    font-size: 38px;
    color: var(--secondary-set);
}

/* =========================================
MOBILE NAVBAR
========================================= */

@media(max-width:991px) {

    .top-header {
        padding: 10px 0;
    }

    .top-left {
        gap: 15px;
    }

    .top-left a span {
        font-size: 12px;
    }

    .top-right {
        gap: 10px;
    }

    .top-right a {
        width: 32px;
        height: 32px;
    }

    .custom-navbar {
        top: 52px;
        padding: 12px 0;
    }

    .custom-navbar.sticky {
        top: 0;
    }

    /* MOBILE MENU GLASS EFFECT */

    .navbar-collapse {
        margin-top: 20px;
        padding: 25px;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        gap: 8px;
    }

    .nav-link {
        padding: 14px 18px !important;
        border-radius: 16px;
        transition: 0.4s;
    }

    .nav-link::before {
        bottom: 10px;
        left: 18px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.6);
        transform: translateX(5px);
    }

    .nav-btns {
        margin-top: 18px;
    }

    .call-btn {
        justify-content: center;
    }

}

/* =========================================
MOBILE SMALL
========================================= */

@media(max-width:576px) {

    .top-header {
        display: block;
    }

    .top-header-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .top-left {
        flex-direction: column;
        gap: 5px;
    }

    .top-left a {
        font-size: 12px;
    }

    .top-right {
        gap: 8px;
    }

    .custom-navbar {
        top: 95px;
    }

    .custom-navbar.sticky {
        top: 0;
    }

    .navbar-brand img {
        width: 90px;
    }


    .navbar-toggler i {
        font-size: 34px;
    }

}

/* =========================================
LOGO TEXT SUPER DESIGN
========================================= */

.logo-text{
    position:relative;
}

.logo-text h3{
    margin:0;
    font-size:34px;
    font-weight:800;
    line-height:1;
    letter-spacing:1px;
    position:relative;

    background:linear-gradient(90deg,var(--secondary-set),#444,var(--secondary-set));
    background-size:200% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:logoShine 4s linear infinite;
}

/* SMALL LINE */

.logo-text h3::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:45px;
    height:3px;
    border-radius:50px;
    background:var(--secondary-set);
}

/* SUB TEXT */

.logo-text span{
    display:block;
    margin-top:14px;

    font-size:11px;
    font-weight:600;

    color:#666;

    letter-spacing:5px;
    text-transform:uppercase;

    position:relative;
    padding-left:55px;
}

/* LEFT LINE */

.logo-text span::before{
    content:'';
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:2px;
    background:#999;
}

/* SHINE ANIMATION */

@keyframes logoShine{

    0%{
        background-position:0% center;
    }

    100%{
        background-position:200% center;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .logo-text h3{
        font-size:26px;
    }

    .logo-text span{
        font-size:9px;
        letter-spacing:3px;
        padding-left:40px;
        margin-top:10px;
    }

    .logo-text span::before{
        width:28px;
    }

    .logo-text h3::after{
        width:30px;
    }

}

/* =========================================
MOBILE HEADER FIX
========================================= */

@media(max-width:576px){

    /* HIDE LOCATION */

    .top-left a:last-child{
        display:none;
    }

    /* SAME ROW */

    .top-header-wrapper{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
    }

    .top-left{
        flex-direction:row;
        gap:10px;
    }

    .top-left a{
        font-size:12px;
        white-space:nowrap;
    }

    .top-right{
        gap:8px;
    }

    .top-right a{
        width:30px;
        height:30px;
        font-size:13px;
    }

    /* NAVBAR TOP SPACE */

    .custom-navbar{
        top:45px;
    }

    .custom-navbar.sticky{
        top:0;
    }

}

/* =========================================
HERO SECTION
========================================= */

.hero-section{
    width:100%;
    height:100vh;
    overflow:hidden;
    position:relative;
    margin-top:120px;
    background:#fff;
}

/* SWIPER */

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide{
    width:100%;
    height:100%;
}

/* SLIDE */

.hero-slide{
    width:100%;
    height:100vh;

    display:flex !important;
    flex-direction:row;

    align-items:center;

    background:#fff;
}

/* =========================================
LEFT IMAGE
========================================= */

.hero-image{
    width:50%;
    height:100%;

    position:relative;

    overflow:hidden;
}

.hero-image img{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

/* =========================================
RIGHT CONTENT
========================================= */

.hero-content-side{
    width:50%;
    height:100%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:80px;

    position:relative;

    z-index:10;
}

/* CONTENT */

.hero-content{
    width:100%;
    max-width:600px;

    display:block;
}

/* TAG */

.hero-tag{
    display:inline-block;

    padding:14px 24px;

    background:var(--secondary-set);
    color:#fff;

    border-radius:60px;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.hero-content h1{
    font-size:80px;
    font-weight:800;

    line-height:1.1;

    color:var(--secondary-set);

    margin-bottom:20px;
}

/* TEXT */

.hero-content p{
    font-size:18px;

    line-height:1.9;

    color:#555;

    margin-bottom:35px;
}

/* BUTTONS */

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

/* BTN */

.hero-btn{
    padding:16px 35px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-weight:700;

    transition:0.4s;
}

.hero-btn:hover{
    background:#222;
    color:#fff;
}

/* OUTLINE BTN */

.hero-btn-outline{
    padding:16px 35px;

    border-radius:60px;

    border:2px solid var(--secondary-set);

    color:var(--secondary-set);

    font-weight:700;

    transition:0.4s;
}

.hero-btn-outline:hover{
    background:var(--secondary-set);
    color:#fff;
}

/* =========================================
CONTROLS
========================================= */

.swiper-button-next,
.swiper-button-prev{
    width:65px;
    height:65px;

    border-radius:50%;

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size:22px;
    font-weight:800;
    color:var(--secondary-set);
}

/* PAGINATION */

.swiper-pagination-bullet{
    width:14px;
    height:14px;

    background:var(--secondary-set);

    opacity:0.3;

    border-radius:50px;
}

.swiper-pagination-bullet-active{
    width:40px;
    opacity:1;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .hero-slide{
        flex-direction:column;
        height:auto;
    }

    .hero-image,
    .hero-content-side{
        width:100%;
    }

    .hero-image{
        height:45vh;
    }

    .hero-content-side{
        padding:60px 40px;
    }

    .hero-content h1{
        font-size:55px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .hero-section{
        margin-top:105px;
        height:auto;
    }

    .hero-image{
        height:40vh;
    }

    .hero-content-side{
        padding:45px 25px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:15px;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-btn,
    .hero-btn-outline{
        padding:14px 24px;
        font-size:14px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        width:50px;
        height:50px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after{
        font-size:15px;
    }

}

/* =========================================
RIGHT SIDE LIGHT CIRCLE EFFECTS
ADD THIS INSIDE .hero-content-side
========================================= */

.hero-content-side{
    position:relative;
    overflow:hidden;
}

/* BIG LIGHT CIRCLE */

.hero-content-side::before{
    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0, 0, 0, 0.04),
        transparent 0%
    );

    top:-220px;
    right:-220px;

    animation:circleMove 8s ease-in-out infinite;
}

/* SMALL LIGHT CIRCLE */

.hero-content-side::after{
    content:'';

    position:absolute;

    width:220px;
    height:220px;

    border-radius:50%;

    background:radial-gradient(
        circle,
        rgba(0,0,0,0.03),
        transparent 70%
    );

    bottom:-100px;
    left:-80px;

    animation:circleMove2 10s ease-in-out infinite;
}

/* EXTRA FLOATING CIRCLE */

.hero-content{
    position:relative;
    z-index:5;
}

.hero-content::before{
    content:'';

    position:absolute;

    width:120px;
    height:120px;

    border-radius:50%;

    background:rgba(0,0,0,0.03);

    top:-60px;
    right:40px;

    animation:floatCircle 6s ease-in-out infinite;
}

/* =========================================
ANIMATIONS
========================================= */

@keyframes circleMove{

    0%{
        transform:translateY(0px) scale(1);
    }

    50%{
        transform:translateY(20px) scale(1.05);
    }

    100%{
        transform:translateY(0px) scale(1);
    }

}

@keyframes circleMove2{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(20px);
    }

    100%{
        transform:translateX(0px);
    }

}

@keyframes floatCircle{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
ABOUT SECTION
========================================= */

.about-section{
    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* =========================================
LEFT IMAGE
========================================= */

.about-image-wrapper{
    position:relative;
    padding-right:40px;
}

/* MAIN IMAGE */

.about-main-image{
    position:relative;
    border-radius:35px;
    overflow:hidden;
}

.about-main-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;

    border-radius:35px;

    transition:0.5s;
}

.about-main-image:hover img{
    transform:scale(1.05);
}

/* FLOAT CARD */

.about-float-card{
    position:absolute;

    bottom:40px;
    right:0;

    background:var(--secondary-set);
    color:#fff;

    width:220px;

    padding:30px;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,0.15);

    animation:floatCard 4s ease-in-out infinite;
}

.about-float-card h3{
    font-size:52px;
    font-weight:800;
    margin-bottom:10px;
}

.about-float-card p{
    margin:0;
    line-height:1.7;
    color:#ddd;
}

/* CIRCLE EFFECT */

.about-circle{
    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(0,0,0,0.04);

    top:-60px;
    left:-60px;

    z-index:-1;
}

/* =========================================
RIGHT CONTENT
========================================= */

.about-content{
    position:relative;
}

/* TAG */

.about-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.about-content h2{
    font-size:58px;
    font-weight:800;

    line-height:1.2;

    color:var(--secondary-set);

    margin-bottom:25px;
}

/* TEXT */

.about-text{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;
}

/* FEATURES */

.about-features{
    display:flex;
    flex-direction:column;
    gap:18px;

    margin-bottom:40px;
}

/* FEATURE */

.about-feature{
    display:flex;
    align-items:center;
    gap:15px;
}

.about-feature i{
    font-size:22px;
    color:var(--secondary-set);
}

.about-feature span{
    font-size:17px;
    font-weight:500;
    color:#333;
}

/* BUTTON */

.about-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:17px 38px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-weight:700;

    transition:0.4s;
}

.about-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* =========================================
ANIMATION
========================================= */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .about-section{
        padding:90px 0;
    }

    .about-main-image img{
        height:500px;
    }

    .about-content h2{
        font-size:46px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .about-section{
        padding:70px 0;
    }

    .about-image-wrapper{
        padding-right:0;
    }

    .about-main-image img{
        height:400px;
    }

    .about-float-card{
        width:170px;

        padding:20px;

        bottom:20px;
        right:20px;
    }

    .about-float-card h3{
        font-size:38px;
    }

    .about-content{
        text-align:center;
    }

    .about-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .about-content h2{
        font-size:36px;
    }

    .about-text{
        font-size:15px;
        line-height:1.8;
    }

    .about-feature{
        justify-content:center;
        text-align:left;
    }

    .about-btn{
        padding:14px 24px;
        font-size:14px;
    }

}

/* =========================================
SERVICES SECTION
========================================= */

.services-section{
    padding:120px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

/* TITLE */

.section-title{
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

/* TAG */

.section-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.section-title h2{
    font-size:58px;
    font-weight:800;

    color:var(--secondary-set);

    margin-bottom:20px;
}

/* TEXT */

.section-title p{
    font-size:17px;

    line-height:1.9;

    color:#666;
}

/* =========================================
SERVICE CARD
========================================= */

.service-card{
    background:#fff;

    border-radius:30px;

    overflow:hidden;

    position:relative;

    transition:0.5s;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-12px);
}

/* IMAGE */

.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:260px;

    object-fit:cover;

    transition:0.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.1);
}

/* CONTENT */

.service-content{
    padding:30px;
    position:relative;
}

/* ICON */

.service-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    background:var(--secondary-set);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* TITLE */

.service-content h3{
    font-size:28px;
    font-weight:700;

    color:var(--secondary-set);

    margin-bottom:15px;
}

/* TEXT */

.service-content p{
    font-size:16px;

    line-height:1.8;

    color:#666;

    margin-bottom:25px;
}

/* BUTTON */

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:var(--secondary-set);

    font-weight:700;

    transition:0.4s;
}

.service-btn:hover{
    gap:16px;
    color:var(--secondary-set);
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .services-section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:46px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .services-section{
        padding:70px 0;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .section-title h2{
        font-size:34px;
    }

    .section-title p{
        font-size:15px;
        line-height:1.8;
    }

    .service-image img{
        height:220px;
    }

    .service-content{
        padding:25px;
    }

    .service-content h3{
        font-size:24px;
    }

    .service-content p{
        font-size:15px;
    }

}

/* =========================================
PARALLAX SECTION
========================================= */

.parallax-section{
    position:relative;

    width:100%;

    padding:180px 0;

    overflow:hidden;

    background:url('./img/bg.png') center center/cover no-repeat;

    background-attachment:fixed;
}

/* OVERLAY */

.parallax-overlay{
    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.45)
    );
}

/* CONTENT */

.parallax-content{
    position:relative;

    z-index:5;

    max-width:750px;

    color:#fff;
}

/* TAG */

.parallax-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:rgba(255,255,255,0.12);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(14px);

    margin-bottom:28px;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;
}

/* TITLE */

.parallax-content h2{
    font-size:78px;
    font-weight:800;

    line-height:1.1;

    margin-bottom:25px;
}

/* TEXT */

.parallax-content p{
    font-size:18px;

    line-height:1.9;

    color:#eee;

    margin-bottom:40px;

    max-width:650px;
}

/* BUTTONS */

.parallax-btns{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

/* BTN */

.parallax-btn{
    padding:17px 38px;

    border-radius:60px;

    background:#fff;
    color:var(--secondary-set);

    font-weight:700;

    transition:0.4s;
}

.parallax-btn:hover{
    transform:translateY(-5px);
    color:var(--secondary-set);
}

/* OUTLINE BTN */

.parallax-btn-outline{
    padding:17px 38px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,0.4);

    color:#fff;

    font-weight:700;

    transition:0.4s;
}

.parallax-btn-outline:hover{
    background:#fff;
    color:var(--secondary-set);
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .parallax-section{
        padding:140px 0;

        background-attachment:scroll;
    }

    .parallax-content h2{
        font-size:58px;
    }

    .parallax-content p{
        font-size:16px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .parallax-section{
        padding:100px 0;
    }

    .parallax-content{
        text-align:center;
    }

    .parallax-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .parallax-content h2{
        font-size:40px;
    }

    .parallax-content p{
        font-size:15px;

        line-height:1.8;
    }

    .parallax-btns{
        justify-content:center;
    }

    .parallax-btn,
    .parallax-btn-outline{
        padding:14px 24px;

        font-size:14px;
    }

}

/* =========================================
WHY CHOOSE US SECTION
========================================= */

.why-section{
    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* =========================================
LEFT CONTENT
========================================= */

.why-content{
    position:relative;
}

/* TAG */

.why-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.why-content h2{
    font-size:58px;
    font-weight:800;

    line-height:1.2;

    color:var(--secondary-set);

    margin-bottom:25px;
}

/* TEXT */

.why-text{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:40px;
}

/* FEATURES */

.why-features{
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* ITEM */

.why-item{
    display:flex;
    align-items:flex-start;
    gap:20px;

    padding:25px;

    border-radius:25px;

    background:#f8f8f8;

    transition:0.4s;
}

.why-item:hover{
    transform:translateY(-8px);

    background:var(--secondary-set);
}

.why-item:hover .why-info h4,
.why-item:hover .why-info p{
    color:#fff;
}

/* ICON */

.why-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    background:var(--secondary-set);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    flex-shrink:0;
}

.why-item:hover .why-icon{
    background:#fff;
    color:var(--secondary-set);
}

/* INFO */

.why-info h4{
    font-size:24px;
    font-weight:700;

    color:var(--secondary-set);

    margin-bottom:10px;

    transition:0.4s;
}

.why-info p{
    font-size:15px;

    line-height:1.8;

    color:#666;

    margin:0;

    transition:0.4s;
}

/* =========================================
RIGHT IMAGE
========================================= */

.why-image-wrapper{
    position:relative;
    padding-left:40px;
}

/* IMAGE */

.why-main-image{
    overflow:hidden;

    border-radius:35px;

    position:relative;
}

.why-main-image img{
    width:100%;
    height:650px;

    object-fit:cover;

    border-radius:35px;

    transition:0.5s;
}

.why-main-image:hover img{
    transform:scale(1.05);
}

/* FLOAT CARD */

.why-float-card{
    position:absolute;

    bottom:40px;
    left:0;

    width:220px;

    background:var(--secondary-set);
    color:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,0.15);

    animation:floatCard 4s ease-in-out infinite;
}

.why-float-card i{
    font-size:40px;

    margin-bottom:15px;
}

.why-float-card h3{
    font-size:46px;
    font-weight:800;

    margin-bottom:10px;
}

.why-float-card p{
    margin:0;

    color:#ddd;
}

/* CIRCLE */

.why-circle{
    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:rgba(0,0,0,0.04);

    top:-60px;
    right:-60px;

    z-index:-1;
}

/* =========================================
ANIMATION
========================================= */

@keyframes floatCard{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .why-section{
        padding:90px 0;
    }

    .why-content h2{
        font-size:46px;
    }

    .why-main-image img{
        height:500px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .why-section{
        padding:70px 0;
    }

    .why-content{
        text-align:center;
    }

    .why-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .why-content h2{
        font-size:36px;
    }

    .why-text{
        font-size:15px;

        line-height:1.8;
    }

    .why-item{
        flex-direction:column;

        align-items:center;

        text-align:center;
    }

    .why-image-wrapper{
        padding-left:0;
    }

    .why-main-image img{
        height:400px;
    }

    .why-float-card{
        width:170px;

        padding:20px;

        bottom:20px;
        left:20px;
    }

    .why-float-card h3{
        font-size:34px;
    }

}

/* =========================================
FULL RESPONSIVE BANNER IMAGE
========================================= */

.full-banner{
    width:100%;
    overflow:hidden;
    position:relative;
}

/* IMAGE */

.full-banner img{
    width:100%;
    height:auto;

    object-fit:cover;

    display:block;
}



/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .full-banner img{
        height:auto;
    }

}

/* =========================================
TESTIMONIAL SECTION
========================================= */

.testimonial-section{
    padding:120px 0;
    background:#f8f8f8;
    overflow:hidden;
}

/* TITLE */

.testimonial-title{
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

/* TAG */

.testimonial-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.testimonial-title h2{
    font-size:58px;
    font-weight:800;

    color:var(--secondary-set);

    margin-bottom:20px;
}

/* TEXT */

.testimonial-title p{
    font-size:17px;

    line-height:1.9;

    color:#666;
}

/* =========================================
MARQUEE
========================================= */

.testimonial-marquee{
    overflow:hidden;
    margin-bottom:30px;
}

/* TRACK */

.testimonial-track{
    display:flex;
    gap:30px;

    width:max-content;
}

/* LEFT MOVE */

.left-move{
    animation:moveLeft 35s linear infinite;
}

/* RIGHT MOVE */

.right-move{
    animation:moveRight 35s linear infinite;
}

/* =========================================
CARD
========================================= */

.testimonial-card{
    width:420px;

    background:#fff;

    border-radius:30px;

    padding:35px;

    position:relative;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    transition:0.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
}

/* TOP */

.testimonial-top{
    display:flex;
    align-items:center;
    gap:18px;

    margin-bottom:25px;
}

/* IMAGE */

.testimonial-top img{
    width:75px;
    height:75px;

    border-radius:50%;

    object-fit:cover;
}

/* NAME */

.testimonial-top h4{
    font-size:22px;
    font-weight:700;

    color:var(--secondary-set);

    margin-bottom:5px;
}

/* ROLE */

.testimonial-top span{
    font-size:14px;

    color:#666;
}

/* TEXT */

.testimonial-card p{
    font-size:16px;

    line-height:1.9;

    color:#555;

    margin:0;
}

/* =========================================
ANIMATION
========================================= */

@keyframes moveLeft{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@keyframes moveRight{

    0%{
        transform:translateX(-50%);
    }

    100%{
        transform:translateX(0);
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .testimonial-title h2{
        font-size:46px;
    }

    .testimonial-card{
        width:350px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-title{
        margin-bottom:50px;
    }

    .testimonial-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .testimonial-title h2{
        font-size:34px;
    }

    .testimonial-title p{
        font-size:15px;
        line-height:1.8;
    }

    .testimonial-card{
        width:290px;

        padding:25px;
    }

    .testimonial-top img{
        width:60px;
        height:60px;
    }

    .testimonial-top h4{
        font-size:18px;
    }

    .testimonial-card p{
        font-size:14px;
        line-height:1.8;
    }

}

/* =========================================
ENQUIRY SECTION - WHITE STYLE
========================================= */

.enquiry-section{
    position:relative;

    padding:120px 0;

    background:url('./img/bg1.png') center center/cover no-repeat;

    overflow:hidden;
}

/* =========================================
FORM BOX
========================================= */

.enquiry-form-box{
    position:relative;

    background:rgba(255,255,255,0.95);

    border-radius:40px;

    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

/* =========================================
TITLE
========================================= */

.enquiry-title{
    margin-bottom:45px;
}

/* TAG */

.enquiry-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.enquiry-title h2{
    font-size:58px;
    font-weight:800;

    color:var(--secondary-set);

    margin-bottom:18px;
}

/* TEXT */

.enquiry-title p{
    font-size:17px;

    line-height:1.9;

    color:#666;
}

/* =========================================
FORM GROUP
========================================= */

.form-group{
    position:relative;
}

/* INPUT */

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;

    border:none;
    outline:none;

    background:#fff;

    border:1px solid #e5e5e5;

    color:var(--secondary-set);

    border-radius:20px;

    padding:20px 20px 20px 60px;

    font-size:16px;

    transition:0.4s;

    box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#888;
}

/* SELECT */

.form-group select{
    appearance:none;
    color:#666;
}

/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:var(--secondary-set);

    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* ICON */

.form-group i{
    position:absolute;

    top:50%;
    left:22px;

    transform:translateY(-50%);

    color:var(--secondary-set);

    font-size:20px;
}

/* TEXTAREA */

.textarea-group i{
    top:28px;
    transform:none;
}

/* =========================================
BUTTON
========================================= */

.enquiry-btn{
    border:none;
    outline:none;

    padding:18px 40px;

    border-radius:60px;

    background:var(--secondary-set)000;
    color:#fff;

    font-size:16px;
    font-weight:700;

    display:inline-flex;
    align-items:center;
    gap:12px;

    transition:0.4s;

    box-shadow:0 10px 30px rgba(37,211,102,0.25);
}

.enquiry-btn:hover{
    transform:translateY(-5px);

    background:#1ebe5d;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .enquiry-section{
        padding:90px 0;
    }

    .enquiry-title h2{
        font-size:46px;
    }

    .enquiry-form-box{
        padding:45px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .enquiry-section{
        padding:70px 0;
    }

    .enquiry-form-box{
        padding:30px 22px;

        border-radius:25px;
    }

    .enquiry-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .enquiry-title h2{
        font-size:34px;
    }

    .enquiry-title p{
        font-size:15px;
        line-height:1.8;
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding:16px 16px 16px 50px;

        font-size:14px;
    }

    .form-group i{
        left:18px;

        font-size:17px;
    }

    .enquiry-btn{
        width:100%;

        justify-content:center;

        padding:16px 20px;

        font-size:14px;
    }

}

/* =========================================
FAQ SECTION
========================================= */

.faq-section{
    padding:120px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

/* =========================================
LEFT
========================================= */

.faq-left{
    position:sticky;
    top:120px;
}

/* TAG */

.faq-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.faq-left h2{
    font-size:58px;
    font-weight:800;

    line-height:1.2;

    color:var(--secondary-set);

    margin-bottom:25px;
}

/* TEXT */

.faq-left p{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;
}

/* IMAGE */

.faq-image{
    overflow:hidden;

    border-radius:35px;

    position:relative;
}

.faq-image img{
    width:100%;
    height:420px;

    object-fit:cover;

    border-radius:35px;

    transition:0.5s;
}

.faq-image:hover img{
    transform:scale(1.05);
}

/* =========================================
FAQ WRAPPER
========================================= */

.faq-wrapper{
    display:flex;
    flex-direction:column;
    gap:22px;
}

/* FAQ ITEM */

.faq-item{
    background:#fff;

    border-radius:25px;

    padding:28px;

    transition:0.4s;

    box-shadow:0 10px 30px rgba(0,0,0,0.05);

    overflow:hidden;
}

/* ACTIVE */

.faq-item.active{
    background:var(--secondary-set);
}

.faq-item.active h4,
.faq-item.active p,
.faq-item.active span{
    color:#fff;
}

/* QUESTION */

.faq-question{
    display:flex;
    align-items:center;
    justify-content:space-between;

    cursor:pointer;
}

/* TITLE */

.faq-question h4{
    font-size:24px;
    font-weight:700;

    color:var(--secondary-set);

    margin:0;

    transition:0.4s;
}

/* ICON */

.faq-question span{
    width:55px;
    height:55px;

    border-radius:50%;

    background:#f2f2f2;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    color:var(--secondary-set);

    flex-shrink:0;

    transition:0.4s;
}

/* ACTIVE ICON */

.faq-item.active .faq-question span{
    background:#fff;
    color:var(--secondary-set);

    transform:rotate(45deg);
}

/* ANSWER */

.faq-answer{
    max-height:0;

    overflow:hidden;

    transition:max-height 0.5s ease;
}

/* ACTIVE ANSWER */

.faq-item.active .faq-answer{
    max-height:300px;
}

/* TEXT */

.faq-answer p{
    font-size:16px;

    line-height:1.9;

    color:#666;

    margin-top:22px;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .faq-section{
        padding:90px 0;
    }

    .faq-left{
        position:relative;
        top:0;
    }

    .faq-left h2{
        font-size:46px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .faq-section{
        padding:70px 0;
    }

    .faq-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .faq-left h2{
        font-size:34px;
    }

    .faq-left p{
        font-size:15px;
        line-height:1.8;
    }

    .faq-image img{
        height:280px;
    }

    .faq-item{
        padding:22px;
    }

    .faq-question h4{
        font-size:18px;

        line-height:1.5;

        padding-right:15px;
    }

    .faq-question span{
        width:45px;
        height:45px;

        font-size:16px;
    }

    .faq-answer p{
        font-size:14px;
        line-height:1.8;
    }

}


/* =========================================
FOOTER SECTION
========================================= */

.footer-section{
    background:var(--secondary-set);
    color:#fff;

    position:relative;

    overflow:hidden;
}

/* =========================================
TOP
========================================= */

.footer-top{
    padding:100px 0 70px;
}

/* =========================================
LOGO
========================================= */

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:28px;
}

.footer-logo img{
    width:60px;
}

.footer-logo-text h3{
    margin:0;

    font-size:34px;
    font-weight:800;

    color:#fff;

    line-height:1;
}

.footer-logo-text span{
    font-size:12px;

    letter-spacing:3px;

    text-transform:uppercase;

    color:#bbb;
}

/* ABOUT TEXT */

.footer-about p{
    font-size:16px;

    line-height:1.9;

    color:#bbb;

    margin-bottom:30px;
}

/* =========================================
SOCIAL
========================================= */

.footer-social{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    transition:0.4s;
}

.footer-social a:hover{
    background:#fff;

    color:var(--secondary-set);

    transform:translateY(-5px);
}

/* =========================================
LINKS
========================================= */

.footer-links h4,
.footer-contact h4{
    font-size:28px;
    font-weight:700;

    margin-bottom:28px;

    color:#fff;
}

/* LIST */

.footer-links ul{
    padding:0;
    margin:0;

    list-style:none;
}

/* ITEM */

.footer-links ul li{
    margin-bottom:16px;
}

/* LINK */

.footer-links ul li a{
    color:#bbb;

    font-size:16px;

    transition:0.4s;
}

.footer-links ul li a:hover{
    color:#fff;

    padding-left:8px;
}

/* =========================================
CONTACT
========================================= */

.footer-contact-item{
    display:flex;
    align-items:flex-start;
    gap:15px;

    margin-bottom:22px;
}

/* ICON */

.footer-contact-item i{
    font-size:22px;

    color:#fff;

    margin-top:3px;
}

/* TEXT */

.footer-contact-item span,
.footer-contact-item a{
    color:#bbb;

    font-size:16px;

    line-height:1.8;

    transition:0.4s;
}

.footer-contact-item a:hover{
    color:#fff;
}

/* =========================================
BOTTOM
========================================= */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);

    padding:25px 0;
}

/* FLEX */

.footer-bottom-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;
}

/* TEXT */

.footer-bottom p{
    margin:0;

    color:#aaa;

    font-size:15px;
}

/* LINK */

.footer-bottom a{
    color:#fff;

    font-weight:600;

    transition:0.4s;
}

.footer-bottom a:hover{
    color:#bbb;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .footer-top{
        padding:80px 0 50px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .footer-top{
        padding:70px 0 40px;
    }

    .footer-logo img{
        width:150px;
    }

    .footer-logo-text h3{
        font-size:28px;
    }

    .footer-about p,
    .footer-links ul li a,
    .footer-contact-item span,
    .footer-contact-item a{
        font-size:15px;
    }

    .footer-links h4,
    .footer-contact h4{
        font-size:24px;
    }

    .footer-bottom-flex{
        flex-direction:column;

        text-align:center;
    }

    .footer-bottom p{
        font-size:14px;
    }

}


/* =========================================
FLOATING WHATSAPP BUTTON
========================================= */

.whatsapp-float{
    position:fixed;

    right:25px;
    bottom:25px;

    z-index:99999;

    width:68px;
    height:68px;

    border-radius:80px;

    background:#25D366;

    display:flex;
    align-items:center;

    overflow:hidden;

    transition:0.5s ease;

    box-shadow:
        0 15px 40px rgba(37,211,102,0.35);

    animation:floatWhatsapp 3s ease-in-out infinite;
}

/* HOVER EXPAND */

.whatsapp-float:hover{
    width:250px;

    color:#fff;

    transform:translateY(-6px);

    box-shadow:
        0 20px 45px rgba(37,211,102,0.45);
}

/* =========================================
ICON
========================================= */

.whatsapp-icon{
    min-width:68px;
    height:68px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

/* RIPPLE */

.whatsapp-icon::before{
    content:'';

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    background:rgba(255,255,255,0.12);

    animation:rippleWhatsapp 2s linear infinite;
}

/* ICON */

.whatsapp-icon i{
    font-size:34px;

    color:#fff;

    position:relative;
    z-index:5;
}

/* =========================================
TEXT
========================================= */

.whatsapp-info{
    display:flex;
    flex-direction:column;

    white-space:nowrap;

    opacity:0;

    transition:0.4s;

    transform:translateX(20px);
}

/* SHOW TEXT */

.whatsapp-float:hover .whatsapp-info{
    opacity:1;

    transform:translateX(0);
}

/* SMALL */

.whatsapp-info small{
    font-size:11px;

    color:#eafff2;

    text-transform:uppercase;

    letter-spacing:1px;
}

/* STRONG */

.whatsapp-info strong{
    font-size:17px;
    font-weight:700;

    color:#fff;
}

/* =========================================
ANIMATION
========================================= */

@keyframes rippleWhatsapp{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.5);
        opacity:0;
    }

}

@keyframes floatWhatsapp{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .whatsapp-float{
        right:20px;
        bottom:20px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .whatsapp-float{
        width:58px;
        height:58px;

        right:15px;
        bottom:15px;
    }

    /* EXPAND */

    .whatsapp-float:hover{
        width:210px;
    }

    .whatsapp-icon{
        min-width:58px;
        height:58px;
    }

    .whatsapp-icon i{
        font-size:28px;
    }

    .whatsapp-info small{
        font-size:9px;
    }

    .whatsapp-info strong{
        font-size:14px;
    }

}


/* =========================================
SCROLL TOP BUTTON - LEFT SIDE
========================================= */

#scrollTopBtn{
    position:fixed;

    left:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border:none;
    outline:none;

    border-radius:50%;

    background:var(--secondary-set);
    color:#fff;

    font-size:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    z-index:9999;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px);

    transition:0.4s ease;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);

    overflow:hidden;
}

/* SHOW BUTTON */

#scrollTopBtn.show{
    opacity:1;
    visibility:visible;

    transform:translateY(0);
}

/* HOVER */

#scrollTopBtn:hover{
    transform:translateY(-6px);

    background:#111;

    box-shadow:
        0 18px 40px rgba(0,0,0,0.28);
}

/* ICON */

#scrollTopBtn i{
    position:relative;

    z-index:5;

    font-size:22px;
}

/* RIPPLE EFFECT */

#scrollTopBtn::before{
    content:'';

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    background:rgba(255,255,255,0.08);

    animation:arrowRipple 2s linear infinite;
}

/* =========================================
ANIMATION
========================================= */

@keyframes arrowRipple{

    0%{
        transform:scale(1);
        opacity:1;
    }

    100%{
        transform:scale(1.5);
        opacity:0;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    #scrollTopBtn{
        width:50px;
        height:50px;

        left:15px;
        bottom:15px;

        font-size:18px;
    }

    #scrollTopBtn i{
        font-size:18px;
    }

}



/* =========================================
PAGE HEADER
========================================= */

.page-header{
    position:relative;

    width:100%;
    height:70vh;

    overflow:hidden;

    margin-top:120px;
}

/* =========================================
BG IMAGE
========================================= */

.page-header-bg{
    position:absolute;

    inset:0;

    z-index:1;
}

.page-header-bg img{
    width:100%;
    height:100%;

    object-fit:cover;

    animation:zoomHeader 10s linear infinite;
}

/* =========================================
OVERLAY
========================================= */

.page-header-overlay{
    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,0.82),
        rgba(0,0,0,0.45)
    );

    z-index:2;
}

/* =========================================
CONTENT
========================================= */

.page-header-content{
    position:relative;

    z-index:5;

    height:70vh;

    display:flex;
    flex-direction:column;

    justify-content:center;

    color:#fff;

    max-width:700px;
}

/* TAG */

.page-header-tag{
    display:inline-block;

    width:max-content;

    padding:14px 26px;

    border-radius:60px;

    background:rgba(255,255,255,0.12);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(14px);

    margin-bottom:28px;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;
}

/* TITLE */

.page-header-content h1{
    font-size:90px;
    font-weight:800;

    line-height:1;

    margin-bottom:28px;
}

/* =========================================
BREADCRUMB
========================================= */

.breadcrumb-box{
    display:flex;
    align-items:center;
    gap:14px;

    flex-wrap:wrap;
}

/* LINK */

.breadcrumb-box a{
    color:#fff;

    font-size:17px;
    font-weight:600;

    transition:0.4s;
}

.breadcrumb-box a:hover{
    color:#ddd;
}

/* TEXT */

.breadcrumb-box span,
.breadcrumb-box p{
    margin:0;

    color:#ddd;

    font-size:16px;
}

/* =========================================
ANIMATION
========================================= */

@keyframes zoomHeader{

    0%{
        transform:scale(1);
    }

    100%{
        transform:scale(1.1);
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .page-header{
        height:60vh;
    }

    .page-header-content{
        height:60vh;
    }

    .page-header-content h1{
        font-size:65px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .page-header{
        margin-top:105px;

        height:50vh;
    }

    .page-header-content{
        height:50vh;

        text-align:center;

        align-items:center;
    }

    .page-header-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .page-header-content h1{
        font-size:42px;
    }

    .breadcrumb-box{
        justify-content:center;
    }

    .breadcrumb-box a,
    .breadcrumb-box span,
    .breadcrumb-box p{
        font-size:14px;
    }

}

/* =========================================
EXPERIENCE SECTION
========================================= */

.experience-section{
    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;
}

/* =========================================
LEFT IMAGES
========================================= */

.experience-images{
    position:relative;

    min-height:650px;
}

/* IMAGE */

.experience-img{
    overflow:hidden;

    border-radius:35px;

    position:absolute;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.experience-img img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:0.5s;
}

.experience-img:hover img{
    transform:scale(1.08);
}

/* IMAGE 1 */

.experience-img-1{
    width:70%;
    height:500px;

    top:0;
    left:0;
}

/* IMAGE 2 */

.experience-img-2{
    width:48%;
    height:320px;

    bottom:0;
    right:0;

    border:10px solid #fff;
}

/* FLOAT BOX */

.experience-float-box{
    position:absolute;

    left:40px;
    bottom:50px;

    background:var(--secondary-set);
    color:#fff;

    padding:30px;

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,0.15);

    animation:floatBox 4s ease-in-out infinite;
}

.experience-float-box h3{
    font-size:52px;
    font-weight:800;

    margin-bottom:8px;
}

.experience-float-box p{
    margin:0;

    color:#ddd;
}

/* =========================================
RIGHT CONTENT
========================================= */

.experience-content{
    position:relative;
}

/* TAG */

.experience-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.experience-content h2{
    font-size:58px;
    font-weight:800;

    line-height:1.2;

    color:var(--secondary-set);

    margin-bottom:25px;
}

/* TEXT */

.experience-text{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:40px;
}

/* FEATURES */

.experience-features{
    display:flex;
    flex-direction:column;

    gap:25px;

    margin-bottom:40px;
}

/* ITEM */

.experience-item{
    display:flex;
    align-items:flex-start;

    gap:20px;

    padding:25px;

    border-radius:25px;

    background:#f8f8f8;

    transition:0.4s;
}

.experience-item:hover{
    transform:translateY(-8px);

    background:var(--secondary-set);
}

.experience-item:hover h4,
.experience-item:hover p{
    color:#fff;
}

/* ICON */

.experience-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    background:var(--secondary-set);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    flex-shrink:0;
}

.experience-item:hover .experience-icon{
    background:#fff;
    color:var(--secondary-set);
}

/* TITLE */

.experience-item h4{
    font-size:24px;
    font-weight:700;

    color:var(--secondary-set);

    margin-bottom:10px;

    transition:0.4s;
}

/* TEXT */

.experience-item p{
    margin:0;

    font-size:15px;

    line-height:1.8;

    color:#666;

    transition:0.4s;
}

/* BUTTON */

.experience-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:17px 38px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-weight:700;

    transition:0.4s;
}

.experience-btn:hover{
    transform:translateY(-5px);

    color:#fff;
}

/* =========================================
ANIMATION
========================================= */

@keyframes floatBox{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .experience-section{
        padding:90px 0;
    }

    .experience-content h2{
        font-size:46px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .experience-section{
        padding:70px 0;
    }

    .experience-images{
        min-height:450px;
    }

    .experience-img-1{
        height:320px;
    }

    .experience-img-2{
        height:220px;
    }

    .experience-float-box{
        padding:20px;

        left:15px;
        bottom:20px;
    }

    .experience-float-box h3{
        font-size:36px;
    }

    .experience-content{
        text-align:center;
    }

    .experience-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .experience-content h2{
        font-size:36px;
    }

    .experience-text{
        font-size:15px;

        line-height:1.8;
    }

    .experience-item{
        flex-direction:column;

        align-items:center;

        text-align:center;
    }

    .experience-item h4{
        font-size:20px;
    }

    .experience-btn{
        padding:14px 24px;

        font-size:14px;
    }

}

/* =========================================
VISION MISSION SECTION
========================================= */

.vision-mission-section{
    padding:120px 0;
    background:#f8f8f8;
    position:relative;
    overflow:hidden;
}

/* =========================================
TITLE
========================================= */

.vision-title{
    max-width:750px;
    margin:auto;
    margin-bottom:70px;
}

/* TAG */

.vision-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.vision-title h2{
    font-size:58px;
    font-weight:800;

    color:var(--secondary-set);

    margin-bottom:20px;
}

/* TEXT */

.vision-title p{
    font-size:17px;

    line-height:1.9;

    color:#666;
}

/* =========================================
CARD
========================================= */

.vision-card{
    position:relative;

    background:#fff;

    padding:60px 45px;

    border-radius:35px;

    overflow:hidden;

    height:100%;

    transition:0.5s;

    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.vision-card:hover{
    transform:translateY(-12px);

    background:var(--secondary-set);
}

/* LIGHT EFFECT */

.vision-light{
    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(0,0,0,0.04);

    top:-140px;
    right:-140px;

    transition:0.5s;
}

.vision-card:hover .vision-light{
    background:rgba(255,255,255,0.08);
}

/* ICON */

.vision-icon{
    width:90px;
    height:90px;

    border-radius:25px;

    background:var(--secondary-set);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;

    margin-bottom:30px;

    position:relative;

    z-index:5;

    transition:0.5s;
}

.vision-card:hover .vision-icon{
    background:#fff;
    color:var(--secondary-set);

    transform:rotateY(180deg);
}

/* CONTENT */

.vision-content{
    position:relative;

    z-index:5;
}

/* TITLE */

.vision-content h3{
    font-size:38px;
    font-weight:800;

    color:var(--secondary-set);

    margin-bottom:20px;

    transition:0.4s;
}

/* TEXT */

.vision-content p{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin:0;

    transition:0.4s;
}

/* HOVER TEXT */

.vision-card:hover h3,
.vision-card:hover p{
    color:#fff;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .vision-mission-section{
        padding:90px 0;
    }

    .vision-title h2{
        font-size:46px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .vision-mission-section{
        padding:70px 0;
    }

    .vision-title{
        margin-bottom:50px;
    }

    .vision-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .vision-title h2{
        font-size:36px;
    }

    .vision-title p{
        font-size:15px;

        line-height:1.8;
    }

    .vision-card{
        padding:40px 25px;

        text-align:center;
    }

    .vision-icon{
        width:75px;
        height:75px;

        font-size:30px;

        margin:auto;
        margin-bottom:25px;
    }

    .vision-content h3{
        font-size:30px;
    }

    .vision-content p{
        font-size:15px;

        line-height:1.8;
    }

}  

/* =========================================
SERVICE DETAILS SECTION
========================================= */

.service-details-section{
    padding:120px 0;
    background:#fff;
}

/* CARD */

.service-detail-card{
    margin-bottom:120px;
}

.service-detail-card:last-child{
    margin-bottom:0;
}

/* IMAGE */

.service-detail-image{
    overflow:hidden;

    border-radius:35px;

    position:relative;
}

.service-detail-image img{
    width:100%;
    height:500px;

    object-fit:cover;

    border-radius:35px;

    transition:0.5s;
}

.service-detail-image:hover img{
    transform:scale(1.08);
}

/* CONTENT */

.service-detail-content span{
    display:inline-block;

    padding:14px 24px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

.service-detail-content h2{
    font-size:52px;
    font-weight:800;

    line-height:1.2;

    color:var(--secondary-set);

    margin-bottom:25px;
}

.service-detail-content p{
    font-size:17px;

    line-height:2;

    color:#666;

    margin:0;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .service-details-section{
        padding:90px 0;
    }

    .service-detail-card{
        margin-bottom:90px;
    }

    .service-detail-content h2{
        font-size:42px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .service-details-section{
        padding:70px 0;
    }

    .service-detail-card{
        margin-bottom:70px;
    }

    .service-detail-image img{
        height:320px;
    }

    .service-detail-content{
        text-align:center;
    }

    .service-detail-content span{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .service-detail-content h2{
        font-size:32px;
    }

    .service-detail-content p{
        font-size:15px;

        line-height:1.9;
    }

}

/* =========================================
CONTACT SECTION
========================================= */

.contact-section{
    padding:120px 0;
    background:#f8f8f8;
    overflow:hidden;
}

/* =========================================
TITLE
========================================= */

.contact-title{
    max-width:700px;
    margin:auto;
    margin-bottom:70px;
}

/* TAG */

.contact-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.contact-title h2{
    font-size:58px;
    font-weight:800;

    color:var(--secondary-set);

    margin-bottom:20px;
}

/* TEXT */

.contact-title p{
    font-size:17px;

    line-height:1.9;

    color:#666;
}

/* =========================================
CONTACT CARD
========================================= */

.contact-card{
    background:#fff;

    padding:45px 35px;

    border-radius:35px;

    text-align:center;

    height:100%;

    transition:0.5s;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.05);
}

.contact-card:hover{
    transform:translateY(-12px);

    background:var(--secondary-set);
}

/* ICON */

.contact-icon{
    width:90px;
    height:90px;

    border-radius:25px;

    background:var(--secondary-set);
    color:#fff;

    margin:auto;
    margin-bottom:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;

    transition:0.5s;
}

.contact-card:hover .contact-icon{
    background:#fff;
    color:var(--secondary-set);

    transform:rotateY(180deg);
}

/* TITLE */

.contact-card h3{
    font-size:30px;
    font-weight:700;

    color:var(--secondary-set);

    margin-bottom:15px;

    transition:0.4s;
}

/* TEXT */

.contact-card a,
.contact-card p{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin:0;

    transition:0.4s;
}

.contact-card:hover h3,
.contact-card:hover a,
.contact-card:hover p{
    color:#fff;
}

/* =========================================
BUSINESS PROFILE
========================================= */

.business-profile{
    margin-top:120px;

    background:#fff;

    border-radius:40px;

    padding:60px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}

/* TAG */

.business-tag{
    display:inline-block;

    padding:14px 26px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

/* TITLE */

.business-content h2{
    font-size:52px;
    font-weight:800;

    line-height:1.2;

    color:var(--secondary-set);

    margin-bottom:20px;
}

/* TEXT */

.business-content p{
    font-size:17px;

    line-height:1.9;

    color:#666;

    margin-bottom:35px;
}

/* BUTTONS */

.business-btns{
    display:flex;
    align-items:center;
    gap:18px;

    flex-wrap:wrap;
}

/* BTN */

.business-btn{
    padding:16px 35px;

    border-radius:60px;

    background:var(--secondary-set);
    color:#fff;

    font-weight:700;

    transition:0.4s;
}

.business-btn:hover{
    color:#fff;

    transform:translateY(-5px);
}

/* OUTLINE BTN */

.business-btn-outline{
    padding:16px 35px;

    border-radius:60px;

    border:2px solid var(--secondary-set);

    color:var(--secondary-set);

    font-weight:700;

    transition:0.4s;
}

.business-btn-outline:hover{
    background:var(--secondary-set);
    color:#fff;
}

/* IMAGE */

.business-image{
    overflow:hidden;

    border-radius:35px;
}

.business-image img{
    width:100%;
    height:auto;

    object-fit:cover;

    border-radius:35px;

    transition:0.5s;
}

.business-image:hover img{
    transform:scale(1.08);
}

/* =========================================
MAP
========================================= */

.map-wrapper{
    margin-top:80px;

    overflow:hidden;

    border-radius:35px;

    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* MAP */

.map-wrapper iframe{
    width:100%;
    height:550px;

    border:0;

    display:block;
}

/* =========================================
TABLET
========================================= */

@media(max-width:991px){

    .contact-section{
        padding:90px 0;
    }

    .contact-title h2,
    .business-content h2{
        font-size:46px;
    }

    .business-profile{
        margin-top:90px;

        padding:40px;
    }

}

/* =========================================
MOBILE
========================================= */

@media(max-width:576px){

    .contact-section{
        padding:70px 0;
    }

    .contact-title{
        margin-bottom:50px;
    }

    .contact-tag,
    .business-tag{
        font-size:11px;

        padding:12px 20px;

        letter-spacing:1px;
    }

    .contact-title h2,
    .business-content h2{
        font-size:34px;
    }

    .contact-title p,
    .business-content p{
        font-size:15px;

        line-height:1.8;
    }

    .contact-card{
        padding:35px 25px;
    }

    .contact-icon{
        width:75px;
        height:75px;

        font-size:30px;
    }

    .contact-card h3{
        font-size:24px;
    }

    .contact-card a,
    .contact-card p{
        font-size:15px;
    }

    .business-profile{
        margin-top:70px;

        padding:25px;
    }

    .business-btns{
        justify-content:center;
    }

    .business-btn,
    .business-btn-outline{
        padding:14px 24px;

        font-size:14px;
    }

    .business-image img{
        height:auto;
    }

    .map-wrapper{
        margin-top:60px;
    }

    .map-wrapper iframe{
        height:320px;
    }

}