﻿
/* General Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; }
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f5f7fa;
}

.container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* =====================================
   PROFESSIONAL ANIMATED TOP BAR
===================================== */

.custom-topbar{
    width:100%;
    background:linear-gradient(
    135deg,
    #008ca4 0%,
    #00b5cc 45%,
    #a6c732 75%,
    #ff9900 100%);
    background-size:300% 300%;
    animation:topBarGradient 8s ease infinite;
    position:relative;
    overflow:hidden;
}

/* Moving Shine Effect */
.custom-topbar::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:40%;
    height:100%;
    background:rgba(255,255,255,.15);
    transform:skewX(-25deg);
    animation:shineEffect 5s linear infinite;
}

.custom-topbar-container{
    max-width:1300px;
    margin:auto;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    z-index:2;
}

/* =====================================
   CONTACT AREA
===================================== */

.custom-contact-area{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.custom-contact-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.4s;
}

.custom-icon-box{
    width:36px;
    height:36px;
    background:#ff9900;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(5px);
    transition:.4s;
}

.custom-contact-item:hover{
    transform:translateY(-3px);
}

.custom-contact-item:hover .custom-icon-box{
    background:#fff;
    color:#00b5cc;
    transform:rotate(360deg);
}

/* =====================================
   SOCIAL ICONS
===================================== */

.custom-social-area{
    display:flex;
    align-items:center;
    gap:12px;
}

.custom-social{
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:16px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

/* Individual Colors */
.facebook-icon{
    background:#008ca4;
}

.instagram-icon{
    background:#a6c732;
}

.twitter-icon{
    background:#ff9900;
}

/* Ripple Animation */
.custom-social::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    transform:scale(0);
    transition:.5s;
}

.custom-social:hover::before{
    transform:scale(2);
    opacity:0;
}

.custom-social:hover{
    transform:translateY(-5px) rotate(10deg);
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* =====================================
   ANIMATIONS
===================================== */

@keyframes topBarGradient{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

@keyframes shineEffect{
    0%{
        left:-120%;
    }
    100%{
        left:130%;
    }
}

/* =====================================
   MOBILE VIEW
===================================== */

@media(max-width:768px){

    .custom-topbar-container{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }

    .custom-contact-area{
        justify-content:center;
        gap:12px;
    }

    .custom-contact-item{
        font-size:13px;
    }

    .custom-icon-box{
        width:32px;
        height:32px;
    }

    .custom-social{
        width:36px;
        height:36px;
        font-size:15px;
    }
}




/* ===================================
   HEADER
/* HEADER */

.pm-header{
    position:relative;
    background:#008ca4;
    overflow:hidden;
    padding:18px 0 35px;
}

/* CONTAINER */

.header-container{
    width:95%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    position:relative;
    z-index:10;
}

/* LOGO */

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-shape{
    width:78px;
    height:78px;

    background:#ff9900;

    clip-path:polygon(
    50% 0%,
    95% 25%,
    95% 75%,
    50% 100%,
    5% 75%,
    5% 25%
    );

    display:flex;
    justify-content:center;
    align-items:center;

    animation:floatLogo 3s infinite ease-in-out;

    overflow:hidden;
}

.logo-shape img{
    width:73px;
    height:52px;
    object-fit:contain;
    display:block;
}

.logo-text h2{
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.logo-text span{
    color:#fff;
    font-size:13px;
    letter-spacing:1px;
}

@keyframes floatLogo{
    50%{
        transform:translateY(-8px);
    }
}
/* MENU */

.main-menu{
    background:rgba(255,255,255,.15);

    backdrop-filter:blur(12px);

    padding:10px;

    border-radius:60px;

    border:1px solid rgba(255,255,255,.2);
}

.main-menu ul{
    display:flex;
    list-style:none;
    gap:8px;
}

.main-menu a{
    color:#fff;
    text-decoration:none;

    padding:12px 18px;

    border-radius:40px;

    display:block;

    font-weight:600;

    transition:.4s;
}

.main-menu a:hover{
    background:#ff9900;
    transform:translateY(-4px);
}


/* Active Menu */

.main-menu ul li.active a{
    color:black;
}

/* Underline Effect */

.main-menu ul li.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:100%;
    height:3px;
    border-radius:50px;
    
}

/* Hover Underline */

.main-menu ul li::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:-5px;
    width:0;
    height:3px;
    border-radius:50px;
    background:#008ca4;
    transition:.4s;
    transform:translateX(-50%);
}

.main-menu ul li:hover::after{
    width:100%;
}

.main-menu ul li.active::after{
    width:100%;
    left:0;
    transform:none;
}

/* BUTTON */

.call-btn a{
    text-decoration:none;

    background:#a6c732;

    color:#fff;

    padding:14px 24px;

    border-radius:50px;

    font-weight:700;

    display:flex;
    gap:10px;
    align-items:center;

    transition:.4s;
}

.call-btn a:hover{
    background:#ff9900;
}

/* SHAPES */

.shape{
    position:absolute;
    opacity:.15;
}

.shape1{
    width:250px;
    height:250px;

    background:#00b5cc;

    left:-80px;
    top:-80px;

    border-radius:40px;

    animation:rotateShape 15s linear infinite;
}

.shape2{
    width:220px;
    height:220px;

    background:#a6c732;

    right:-80px;
    bottom:-50px;

    clip-path:polygon(
    50% 0%,
    100% 50%,
    50% 100%,
    0% 50%
    );

    animation:rotateShape2 12s linear infinite;
}

/* ===============================
   TRUCK
================================ */

.truck-animation{
    position:absolute;

    bottom:15px;

    left:-150px;

    font-size:42px;

    color:#ff9900;

    z-index:9999;

    pointer-events:none;

    animation:truckMoveLTR 12s linear infinite;
}

.truck-animation i{
    display:block;

    text-shadow:
    0 0 10px rgba(255,153,0,.5),
    0 0 20px rgba(255,153,0,.3);
}

/* ===============================
   ROAD
================================ */

.road{
    position:absolute;

    bottom:0;
    left:0;

    width:100%;

    height:8px;

    z-index:999;

    background:repeating-linear-gradient(
        to right,
        #ff9900 0px,
        #ff9900 40px,
        transparent 40px,
        transparent 80px
    );

    animation:roadMove .8s linear infinite;
}

/* ===============================
   TRUCK ANIMATION
================================ */

@keyframes truckMoveLTR{

    0%{
        left:-150px;
    }

    100%{
        left:110%;
    }

}

/* ===============================
   ROAD ANIMATION
================================ */

@keyframes roadMove{

    from{
        background-position:0;
    }

    to{
        background-position:80px;
    }

}

/* ===============================
   MOBILE
================================ */

@media(max-width:768px){

    .truck-animation{
        font-size:34px;
        bottom:12px;
    }

    .road{
        height:6px;
    }

}
/* MOBILE */

@media(max-width:991px){

.header-container{
    flex-direction:column;
    gap:20px;
}

.main-menu ul{
    flex-wrap:wrap;
    justify-content:center;
}

.logo-text h2{
    font-size:22px;
}

}



/* ===============================
   MOBILE HEADER
================================ */

@media(max-width:991px){

    .header-container{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        flex-wrap:wrap;
        gap:15px;
    }

    /* Logo */

    .logo-text h2{
        font-size:22px;
    }

    .logo-text span{
        font-size:11px;
    }

    .logo-shape{
        width:65px;
        height:65px;
    }

    .logo-shape img{
        width:60px;
        height:45px;
    }

    /* Hamburger */

    .menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;

        width:50px;
        height:50px;

        border:none;
        outline:none;

        background:#ff9900;
        color:#fff;

        border-radius:12px;

        font-size:22px;

        cursor:pointer;

        transition:.4s;
    }

    .menu-toggle:hover{
        background:#a6c732;
    }

    /* Menu */

    .main-menu{
        width:100%;

        order:10;

        padding:0;

        max-height:0;

        overflow:hidden;

        transition:.5s ease;

        border-radius:20px;

        margin-top:10px;
    }

    .main-menu.active{
        max-height:500px;
        padding:15px;
    }

    .main-menu ul{
        flex-direction:column;
        gap:8px;
    }

    .main-menu ul li{
        width:100%;
    }

    .main-menu a{
        text-align:center;
        width:100%;
    }

    /* Button */

    .call-btn{
        display:none;
    }
}

/* DESKTOP */

.menu-toggle{
    display:none;
}

@media(max-width:991px){
    .menu-toggle{
        display:flex;
    }
}



/* ===================================
   HERO VIDEO SECTION
=================================== */

.hero-video-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* Video */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Dark Overlay */

.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

   /* background:
    linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55));*/
}

/* Content */

.hero-content{
    position:relative;
    z-index:5;

    height:100%;

    max-width:900px;

    margin:auto;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:20px;
}

/* Tagline */

.hero-tagline{
    display:inline-block;

    background:rgba(255,255,255,0.15);

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-size:14px;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

    animation:fadeDown 1s ease;
}

/* Heading */

.hero-content h1{
    color:#fff;

    font-size:65px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

    animation:zoomIn 1.2s ease;
}

/* Gradient Text */

.hero-content h1{
    background:linear-gradient(
    90deg,
    #ffffff,
    #00b5cc,
    #a6c732,
    #ff9900);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Paragraph */

.hero-content p{
    color:#f5f5f5;

    max-width:750px;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

    animation:fadeUp 1.5s ease;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

/* Primary Button */

.hero-btn-primary{
    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    color:#fff;

    font-weight:700;

    background:linear-gradient(
    135deg,
    #008ca4,
    #00b5cc);

    transition:.4s;

    animation:fadeUp 1.8s ease;
}

.hero-btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,181,204,.4);
}

/* Secondary Button */

.hero-btn-secondary{
    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    color:#fff;

    font-weight:700;

    border:2px solid #fff;

    transition:.4s;

    animation:fadeUp 2s ease;
}

.hero-btn-secondary:hover{
    background:#fff;
    color:#008ca4;
}

/* Scroll Indicator */

.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
}

.scroll-indicator span{
    width:30px;
    height:50px;

    border:2px solid #fff;

    border-radius:50px;

    display:block;

    position:relative;
}

.scroll-indicator span::before{
    content:'';

    position:absolute;

    left:50%;

    top:10px;

    width:6px;
    height:10px;

    background:#fff;

    border-radius:50px;

    transform:translateX(-50%);

    animation:scrollMove 1.5s infinite;
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes fadeDown{
    from{
        opacity:0;
        transform:translateY(-50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes scrollMove{
    0%{
        opacity:0;
        top:10px;
    }

    50%{
        opacity:1;
    }

    100%{
        opacity:0;
        top:28px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:16px;
    }
}

@media(max-width:768px){

    .hero-video-slider{
        height:700px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        text-align:center;
    }
}



/* ==========================
   TABLET VIEW
========================== */

@media (max-width:991px){

    .hero-video-slider{
        height:85vh;
        min-height:650px;
    }

    .hero-content{
        max-width:90%;
        padding:20px;
    }

    .hero-content h1{
        font-size:48px;
        line-height:1.25;
    }

    .hero-content p{
        font-size:16px;
        line-height:1.8;
        max-width:100%;
    }

    .hero-buttons{
        gap:15px;
    }
}

/* ==========================
   MOBILE VIEW
========================== */

@media (max-width:768px){

    .hero-video-slider{
        height:650px;
    }

    .hero-content{
        width:100%;
        padding:20px 15px;
    }

    .hero-tagline{
        font-size:12px;
        padding:10px 20px;
        letter-spacing:1px;
        margin-bottom:15px;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.3;
        margin-bottom:18px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.8;
        margin-bottom:25px;
    }

    .hero-buttons{
        width:100%;
        flex-direction:column;
        gap:12px;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        max-width:320px;
        margin:auto;
        text-align:center;
        padding:14px 25px;
    }

    .scroll-indicator{
        bottom:15px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

    .hero-video-slider{
        height:600px;
    }

    .hero-tagline{
        font-size:11px;
        padding:8px 16px;
    }

    .hero-content h1{
        font-size:28px;
        line-height:1.35;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.7;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        font-size:14px;
        padding:13px 20px;
    }
}








/* ===================================
   ABOUT SECTION
=================================== */

.kp-about-section{
    padding:100px 0;
    background:#f8fcfd;
    overflow:hidden;
}

.kp-about-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    gap:70px;
}

/* ==========================
   IMAGE SIDE
========================== */

.kp-about-image{
    flex:1;
    animation:slideLeft 1.2s ease;
}

.kp-image-wrapper{
    position:relative;
}

.kp-image-wrapper::before{
    content:'';
    position:absolute;
    width:150px;
    height:150px;
    background:#a6c732;
    border-radius:30px;
    top:-25px;
    left:-25px;
    z-index:1;
}

.kp-image-wrapper::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:#ff9900;
    border-radius:50%;
    bottom:-35px;
    right:-35px;
    z-index:1;
}

.kp-image-wrapper img{
    width:100%;
    display:block;
    border-radius:25px;
    position:relative;
    z-index:2;

    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* Floating Box */

.kp-floating-box{
    position:absolute;
    bottom:30px;
    left:-20px;

    background:#008ca4;
    color:#fff;

    padding:20px 30px;

    border-radius:20px;

    z-index:3;

    animation:floatBox 3s infinite ease-in-out;
}

.kp-floating-box h3{
    font-size:34px;
    margin:0;
}

.kp-floating-box span{
    font-size:14px;
}

/* ==========================
   CONTENT SIDE
========================== */

.kp-about-content{
    flex:1;
    animation:slideRight 1.2s ease;
}

.kp-subtitle{
    display:inline-block;

    background:rgba(0,181,204,.12);
    color:#008ca4;

    padding:10px 22px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;

    margin-bottom:20px;
}

.kp-about-content h2{
    font-size:48px;
    line-height:1.25;
    color:#222;
    margin-bottom:25px;
    font-weight:800;
}

.kp-about-content h2 span{
    color:#008ca4;
}

.kp-about-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/* ==========================
   FEATURES
========================== */

.kp-about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.kp-feature-item{
    display:flex;
    align-items:center;
    gap:12px;

    background:#fff;

    padding:16px 20px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.4s;
    border: 2px solid #008ca4;
}

.kp-feature-item:hover{
    transform:translateY(-5px);
}

.kp-feature-item i{
    color:#a6c732;
    font-size:20px;
}

.kp-feature-item span{
    font-weight:600;
    color:#333;
}

/* ==========================
   BUTTON
========================== */

.kp-about-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:35px;

    padding:16px 34px;

    text-decoration:none;
    color:#fff;

    border-radius:60px;

    font-weight:700;

    background:linear-gradient(
    135deg,
    #008ca4,
    #00b5cc,
    #a6c732,
    #ff9900);

    background-size:300% 300%;

    animation:gradientMove 6s infinite;

    transition:.4s;
}

.kp-about-btn:hover{
    transform:translateY(-5px);
}

.kp-about-btn i{
    transition:.4s;
}

.kp-about-btn:hover i{
    transform:translateX(6px);
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes floatBox{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .kp-about-container{
        flex-direction:column;
    }

    .kp-about-content h2{
        font-size:36px;
    }

    .kp-image-wrapper::before,
    .kp-image-wrapper::after{
        display:none;
    }
}

@media(max-width:768px){

    .kp-about-section{
        padding:70px 0;
    }

    .kp-about-content h2{
        font-size:28px;
    }

    .kp-about-content p{
        font-size:15px;
    }

    .kp-about-features{
        grid-template-columns:1fr;
    }

    .kp-floating-box{
        position:relative;
        left:0;
        bottom:0;
        margin-top:15px;
        display:inline-block;
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .kp-about-container{
        flex-direction:column;
        gap:50px;
    }

    .kp-about-image,
    .kp-about-content{
        width:100%;
        flex:0 0 100%;
    }

    .kp-about-content h2{
        font-size:36px;
    }

    .kp-image-wrapper::before,
    .kp-image-wrapper::after{
        display:none;
    }

    .kp-floating-box{
        left:20px;
        bottom:20px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){

    .kp-about-section{
        padding:70px 0;
    }

    .kp-about-container{
        gap:35px;
    }

    .kp-about-content{
        text-align:center;
    }

    .kp-about-content h2{
        font-size:30px;
        line-height:1.4;
    }

    .kp-about-content p{
        font-size:15px;
        line-height:1.8;
    }

    .kp-about-features{
        grid-template-columns:1fr;
    }

    .kp-feature-item{
        padding:15px;
    }

    .kp-floating-box{
        position:absolute;
        left:15px;
        bottom:15px;
        padding:15px 20px;
    }

    .kp-floating-box h3{
        font-size:26px;
    }

    .kp-about-btn{
        padding:14px 28px;
        font-size:14px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .kp-about-section{
        padding:60px 0;
    }

    .kp-about-container{
        padding:0 15px;
    }

    .kp-about-content h2{
        font-size:24px;
    }

    .kp-subtitle{
        font-size:13px;
        padding:8px 18px;
    }

    .kp-about-content p{
        font-size:14px;
    }

    .kp-floating-box{
        padding:12px 18px;
    }

    .kp-floating-box h3{
        font-size:22px;
    }

    .kp-floating-box span{
        font-size:12px;
    }

    .kp-about-btn{
        width:100%;
        justify-content:center;
    }
}













.kp-services-section{
    position:relative;
    padding:110px 0;
    background:linear-gradient(135deg,#f7fcfd,#eefcff);
    overflow:hidden;
}

/* SHAPES */
.kp-shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
}

.kp-shape1{
    width:300px;
    height:300px;
    background:rgba(0,181,204,.08);
    top:-120px;
    left:-120px;
    animation:floatShape 8s infinite ease-in-out;
}

.kp-shape2{
    width:220px;
    height:220px;
    background:rgba(166,199,50,.10);
    right:-80px;
    top:150px;
    animation:floatShape 6s infinite ease-in-out;
}

.kp-shape3{
    width:180px;
    height:180px;
    background:rgba(255,153,0,.10);
    bottom:-60px;
    left:40%;
    animation:floatShape 10s infinite ease-in-out;
}

/* CONTAINER */
.kp-services-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* TITLE */
.kp-section-title{
    text-align:center;
    margin-bottom:60px;
}

.kp-section-title span{
    background:#008ca4;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
}

.kp-section-title h2{
    margin-top:20px;
    font-size:42px;
    font-weight:800;
}

.kp-section-title p{
    max-width:700px;
    margin:15px auto 0;
    color:#666;
    line-height:1.8;
}

/* GRID */
.kp-services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */
.kp-service-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.6s ease;
    transform-style:preserve-3d;
}

/* 3D HOVER */
.kp-service-card:hover{
    transform:perspective(1000px) rotateX(8deg) translateY(-12px);
}

/* GLASS LAYER */
.kp-glass-layer{
    position:absolute;
    top:-100%;
    left:0;
    width:100%;
    height:100%;
    background:rgba(255,255,255,0.18);
    backdrop-filter:blur(12px);
    z-index:5;
    transition:0.6s ease;
}

.kp-service-card:hover .kp-glass-layer{
    top:0;
}

/* IMAGE */
.kp-card-image{
    height:250px;
    overflow:hidden;
}

.kp-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.kp-service-card:hover .kp-card-image img{
    transform:scale(1.08);
}

/* CONTENT */
.kp-card-content{
    padding:35px 30px;
    text-align:center;
    position:relative;
    z-index:6;
}

/* ICON */
.kp-card-icon{
    width:75px;
    height:75px;
    margin:-30px auto 20px;
    background:linear-gradient(135deg,#008ca4,#00b5cc);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    border:5px solid #fff;
    transition:.5s;
}

.kp-service-card:hover .kp-card-icon{
    transform:scale(1.15) rotate(6deg);
}

/* TEXT */
.kp-card-content h3{
    font-size:24px;
    margin-bottom:15px;
}

.kp-card-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin-bottom:20px;
}

.kp-card-content a{
    text-decoration:none;
    color:#008ca4;
    font-weight:700;
}

/* ANIMATION */
@keyframes floatShape{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-30px);}
}

/* RESPONSIVE */
@media(max-width:991px){
    .kp-services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .kp-services-grid{
        grid-template-columns:1fr;
    }

    .kp-section-title h2{
        font-size:28px;
    }
}


/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .kp-services-section{
        padding:80px 0;
    }

    .kp-services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .kp-section-title h2{
        font-size:34px;
    }

    .kp-card-content{
        padding:30px 25px;
    }

    .kp-card-image{
        height:220px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){

    .kp-services-section{
        padding:70px 0;
    }

    .kp-services-container{
        padding:0 15px;
    }

    .kp-services-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .kp-section-title{
        margin-bottom:40px;
    }

    .kp-section-title span{
        font-size:14px;
        padding:8px 18px;
    }

    .kp-section-title h2{
        font-size:28px;
        line-height:1.4;
    }

    .kp-section-title p{
        font-size:15px;
        line-height:1.8;
    }

    .kp-card-image{
        height:220px;
    }

    .kp-card-content{
        padding:25px 20px;
    }

    .kp-card-content h3{
        font-size:22px;
    }

    .kp-card-content p{
        font-size:14px;
    }

    .kp-card-icon{
        width:65px;
        height:65px;
        font-size:24px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .kp-services-section{
        padding:60px 0;
    }

    .kp-services-container{
        padding:0 12px;
    }

    .kp-section-title h2{
        font-size:24px;
    }

    .kp-section-title p{
        font-size:14px;
    }

    .kp-card-image{
        height:200px;
    }

    .kp-card-content{
        padding:20px 18px;
    }

    .kp-card-content h3{
        font-size:20px;
    }

    .kp-card-content p{
        font-size:14px;
        line-height:1.7;
    }

    .kp-card-icon{
        width:60px;
        height:60px;
        font-size:22px;
        margin:-25px auto 15px;
    }
}









/*==================================
  WHY CHOOSE US SECTION
==================================*/

.why-choose-section{
    position:relative;
    padding:100px 0;
    background:linear-gradient(135deg,#f7fcfd,#ffffff);
    overflow:hidden;
}

/* Animated Shapes */

.why-shape{
    position:absolute;
    border-radius:50%;
}

.why-shape1{
    width:300px;
    height:300px;
    background:rgba(0,181,204,.08);
    top:-120px;
    left:-120px;
    animation:floatShape 8s infinite ease-in-out;
}

.why-shape2{
    width:220px;
    height:220px;
    background:rgba(166,199,50,.12);
    right:-70px;
    bottom:-70px;
    animation:floatShape 6s infinite ease-in-out;
}

.why-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* Title */

.why-title{
    text-align:center;
    margin-bottom:60px;
}

.why-title span{
    display:inline-block;
    padding:10px 24px;
    background:#008ca4;
    color:#fff;
    border-radius:50px;
    font-size:20px;
    font-weight:700;
}

.why-title h2{
    font-size:48px;
    color:#222;
    margin:20px 0;
    font-weight:800;
}

.why-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* Grid */

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

/* Card */

.why-card{
    background:#fff;
    padding:40px 30px;
    border-radius:30px;
    text-align:center;
    position:relative;
    overflow:hidden;

    border:1px solid rgba(0,140,164,.15);

    box-shadow:
    0 10px 30px rgba(0,0,0,.06),
    0 1px 8px rgba(0,0,0,.04);

    transition:all .5s ease;
}

/* Glow Background Effect */

.why-card::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    background:radial-gradient(
    rgba(0,181,204,.18),
    transparent 70%);
    top:-120px;
    right:-120px;
    border-radius:50%;
    transition:.6s;
}

.why-card::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:radial-gradient(
    rgba(166,199,50,.18),
    transparent 70%);
    bottom:-100px;
    left:-100px;
    border-radius:50%;
    transition:.6s;
}

.why-card:hover{
    transform:translateY(-15px);
    box-shadow:
    0 25px 60px rgba(0,140,164,.15),
    0 15px 35px rgba(0,0,0,.10);
}

.why-card:hover::before{
    transform:scale(1.3);
}

.why-card:hover::after{
    transform:scale(1.3);
}

/* Animated Top Border */

.why-card .border-line{
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:linear-gradient(
    90deg,
    #008ca4,
    #00b5cc,
    #a6c732,
    #ff9900);
}

.why-card:hover .border-line{
    animation:borderMove 1s linear forwards;
}

/* Icon */

.why-icon{
    width:95px;
    height:95px;
    margin:0 auto 25px;
    border-radius:25px;

    background:linear-gradient(
    135deg,
    #008ca4,
    #00b5cc);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:36px;

    position:relative;
    z-index:2;

    transition:.6s;
}

.why-icon::before{
    content:'';
    position:absolute;
    inset:-8px;
    border:2px dashed #a6c732;
    border-radius:30px;
    animation:rotateBorder 12s linear infinite;
}

.why-card:hover .why-icon{
    transform:rotateY(360deg) scale(1.1);
    background:linear-gradient(
    135deg,
    #ff9900,
    #a6c732);
}

/* Text */

.why-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
    position:relative;
    z-index:2;
}

.why-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    position:relative;
    z-index:2;
}

/* Animation */

@keyframes borderMove{
    from{
        left:-100%;
    }
    to{
        left:0;
    }
}


/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .why-choose-section{
        padding:80px 0;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .why-title{
        margin-bottom:50px;
    }

    .why-title h2{
        font-size:38px;
    }

    .why-card{
        padding:35px 25px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){

    .why-choose-section{
        padding:70px 0;
    }

    .why-container{
        padding:0 15px;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .why-title{
        margin-bottom:40px;
    }

    .why-title span{
        font-size:16px;
        padding:8px 20px;
    }

    .why-title h2{
        font-size:30px;
        line-height:1.4;
    }

    .why-title p{
        font-size:15px;
        line-height:1.8;
    }

    .why-card{
        padding:30px 20px;
    }

    .why-icon{
        width:85px;
        height:85px;
        font-size:32px;
    }

    .why-icon::before{
        width:100px;
        height:100px;
        inset:auto;
    }

    .why-card h3{
        font-size:22px;
    }

    .why-card p{
        font-size:14px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .why-choose-section{
        padding:60px 0;
    }

    .why-container{
        padding:0 12px;
    }

    .why-title span{
        font-size:14px;
        padding:8px 18px;
    }

    .why-title h2{
        font-size:24px;
    }

    .why-title p{
        font-size:14px;
    }

    .why-card{
        padding:25px 18px;
    }

    .why-icon{
        width:75px;
        height:75px;
        font-size:28px;
    }

    .why-card h3{
        font-size:20px;
    }

    .why-card p{
        font-size:14px;
        line-height:1.7;
    }
}















/*==================================
    ABOUT SECTION
==================================*/

.about-packers{
    position:relative;
    padding:120px 20px 160px;
    overflow:hidden;

    background:url("assets/image/banner2.jpg") center center/cover no-repeat;
    background-attachment:fixed;
}

/*==================================
    OVERLAY
==================================*/

.about-overlay{
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.60);
}

/*==================================
    CONTENT BOX
==================================*/

.about-content{
    position:relative;
    z-index:10;

    max-width:1000px;
    margin:auto;

    text-align:center;

    padding:60px 50px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:30px;

    box-shadow:0 20px 50px rgba(0,0,0,.30);
}

/*==================================
    TAG
==================================*/

.about-tag{
    display:inline-block;

    background:#ff9900;
    color:#fff;

    padding:10px 25px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

/*==================================
    HEADING
==================================*/

.about-content h2{
    color:#fff;

    font-size:48px;
    font-weight:800;

    margin-bottom:20px;
}

/*==================================
    TITLE LINE
==================================*/

.title-line{
    width:130px;
    height:5px;

    margin:0 auto 35px;

    border-radius:50px;

    background:linear-gradient(
        to right,
        #008ca4,
        #00b5cc,
        #a6c732,
        #ff9900
    );
}

/*==================================
    PARAGRAPHS
==================================*/

.about-content p{
    color:#fff;

    font-size:17px;
    line-height:1.9;

    margin-bottom:20px;
}

/*==================================
    FLOATING SHAPES
==================================*/

.shape{
    position:absolute;
    opacity:.18;
}

.shape1{
    width:250px;
    height:250px;

    background:#00b5cc;

    border-radius:50%;

    left:-80px;
    top:50px;

    animation:floatShape1 10s infinite ease-in-out;
}

.shape2{
    width:220px;
    height:220px;

    background:#a6c732;

    right:-60px;
    top:100px;

    clip-path:polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );

    animation:floatShape2 8s infinite ease-in-out;
}

.shape3{
    width:280px;
    height:280px;

    background:#ff9900;

    border-radius:35px;

    bottom:-120px;
    left:50%;

    transform:translateX(-50%) rotate(45deg);

    animation:rotateShape 20s linear infinite;
}

/*==================================
    TRANSPORT AREA
==================================*/

.transport-animation{
    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:140px;

    overflow:hidden;

    z-index:50;
}

/*==================================
    PACKERS VEHICLE
==================================*/

.packers-vehicle{
    position:absolute;

    right:-450px;
    bottom:20px;

    animation:vehicleMove 15s linear infinite;
}

.packers-vehicle img{
    width:320px;
    max-width:none;

    display:block;

    animation:vehicleBounce .8s ease-in-out infinite alternate;
}

/*==================================
    ROAD
==================================*/

.road-line{
    position:absolute;

    left:0;
    bottom:0;

    width:100%;
    height:10px;

    background:
    repeating-linear-gradient(
        to right,
        #ff9900 0px,
        #ff9900 60px,
        transparent 60px,
        transparent 120px
    );

    animation:roadMove .8s linear infinite;
}

/*==================================
    VEHICLE MOVE
==================================*/

@keyframes vehicleMove{

    0%{
        right:-450px;
    }

    100%{
        right:110%;
    }

}

/*==================================
    VEHICLE BOUNCE
==================================*/

@keyframes vehicleBounce{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-4px);
    }

}

/*==================================
    ROAD ANIMATION
==================================*/

@keyframes roadMove{

    from{
        background-position:0;
    }

    to{
        background-position:120px;
    }

}

/*==================================
    MOBILE
==================================*/

@media(max-width:768px){

    .packers-vehicle img{
        width:180px;
    }

    .transport-animation{
        height:90px;
    }

}


/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .about-packers{
        padding:90px 20px 130px;
        background-attachment:scroll;
    }

    .about-content{
        max-width:90%;
        padding:50px 35px;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-content p{
        font-size:16px;
    }

    .shape1{
        width:180px;
        height:180px;
    }

    .shape2{
        width:160px;
        height:160px;
    }

    .shape3{
        width:220px;
        height:220px;
    }

    .packers-vehicle img{
        width:250px;
    }

    .transport-animation{
        height:110px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){

    .about-packers{
        padding:70px 15px 110px;
        background-attachment:scroll;
    }

    .about-content{
        padding:35px 25px;
        border-radius:20px;
    }

    .about-tag{
        font-size:13px;
        padding:8px 18px;
    }

    .about-content h2{
        font-size:30px;
        line-height:1.4;
    }

    .about-content p{
        font-size:15px;
        line-height:1.8;
    }

    .title-line{
        width:90px;
        margin-bottom:25px;
    }

    .shape1,
    .shape2{
        display:none;
    }

    .shape3{
        width:160px;
        height:160px;
        bottom:-70px;
    }

    .packers-vehicle img{
        width:180px;
    }

    .transport-animation{
        height:90px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .about-packers{
        padding:60px 12px 100px;
    }

    .about-content{
        padding:30px 18px;
    }

    .about-tag{
        font-size:12px;
        padding:8px 15px;
    }

    .about-content h2{
        font-size:24px;
    }

    .about-content p{
        font-size:14px;
        line-height:1.7;
    }

    .title-line{
        width:70px;
        height:4px;
    }

    .packers-vehicle img{
        width:140px;
    }

    .transport-animation{
        height:75px;
    }
}












/*==================================
      GALLERY SECTION
==================================*/

.pm-gallery-slider{
    position:relative;

    padding:100px 0;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #f8fdff,
        #ffffff
    );
}

/*==================================
      FLOATING SHAPES
==================================*/

.pm-gallery-slider::before{
    content:"";

    position:absolute;

    width:280px;
    height:280px;

    left:-120px;
    top:100px;

    border-radius:50%;

    background:#00b5cc;

    opacity:.08;

    animation:floatOne 10s infinite ease-in-out;
}

.pm-gallery-slider::after{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    right:-80px;
    bottom:80px;

    background:#a6c732;

    opacity:.08;

    clip-path:polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );

    animation:rotateShape 15s linear infinite;
}

/*==================================
      HEADING
==================================*/

.gallery-heading{
    text-align:center;

    max-width:900px;

    margin:auto auto 60px;

    position:relative;
    z-index:2;
}

.gallery-heading span{
    display:inline-block;

    padding:10px 25px;

    background:#ff9900;

    color:#fff;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:20px;
}

.gallery-heading h2{
    font-size:48px;
    font-weight:800;

    color:#008ca4;

    margin-bottom:20px;
}

.gallery-heading p{
    font-size:17px;

    line-height:1.8;

    color:#666;
}

.gallery-line{
    width:120px;
    height:5px;

    margin:0 auto 25px;

    border-radius:50px;

    background:linear-gradient(
        to right,
        #008ca4,
        #00b5cc,
        #a6c732,
        #ff9900
    );
}

/*==================================
      SLIDER
==================================*/

.slider-container{
    width:100%;

    overflow:hidden;

    position:relative;

    z-index:2;
}

.slider-track{
    display:flex;

    width:calc(350px * 12);

    animation:scrollGallery 35s linear infinite;
}

.slider-container:hover .slider-track{
    animation-play-state:paused;
}

/*==================================
      IMAGE BOX
==================================*/

.gallery-box{
    width:320px;
    height:240px;

    flex-shrink:0;

    margin:0 15px;

    border-radius:25px;

    overflow:hidden;

    background:#fff;

    border:4px solid #ff9900;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);

    position:relative;

    transition:.5s;
}

.gallery-box::before{
    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent, #a6c732, #008ca4
    );

    transition:1s;

    z-index:1;
}

.gallery-box:hover::before{
    left:100%;
}

.gallery-box img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;
}

.gallery-box:hover img{
    transform:scale(1.12);
}

.gallery-box:hover{
    transform:translateY(-10px);
}

/*==================================
      BUTTON AREA
==================================*/

.gallery-btn-area{
    text-align:center;

    margin-top:60px;

    position:relative;
    z-index:2;
}

/*==================================
      BUTTON
==================================*/

.gallery-view-btn{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:250px;

    height:60px;

    text-decoration:none;

    color:#fff;

    font-size:16px;
    font-weight:700;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        #008ca4,
        #00b5cc
    );

    box-shadow:
    0 15px 35px rgba(0,140,164,.25);

    position:relative;

    overflow:hidden;

    transition:.4s;
}

/* Shine Effect */

.gallery-view-btn::before{
    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:80px;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.5),
        transparent
    );

    transform:skewX(-25deg);

    transition:1s;
}

.gallery-view-btn:hover::before{
    left:130%;
}

.gallery-view-btn:hover{
    background:linear-gradient(
        135deg,
        #a6c732,
        #ff9900
    );

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px rgba(255,153,0,.30);
}

/*==================================
      ANIMATIONS
==================================*/

@keyframes scrollGallery{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@keyframes floatOne{

    50%{
        transform:translateY(40px);
    }

}

@keyframes rotateShape{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/*==================================
      MOBILE
==================================*/

@media(max-width:768px){

    .gallery-heading h2{
        font-size:32px;
    }

    .gallery-heading p{
        font-size:15px;
        padding:0 20px;
    }

    .gallery-box{
        width:260px;
        height:190px;
    }

    .slider-track{
        width:calc(290px * 12);
    }

    .gallery-view-btn{
        min-width:220px;
        height:55px;
        font-size:15px;
    }

}




/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .pm-gallery-slider{
        padding:80px 0;
    }

    .gallery-heading{
        margin-bottom:50px;
        padding:0 20px;
    }

    .gallery-heading h2{
        font-size:38px;
    }

    .gallery-heading p{
        font-size:16px;
    }

    .gallery-box{
        width:290px;
        height:220px;
    }

    .slider-track{
        width:calc(320px * 12);
    }

    .gallery-view-btn{
        min-width:230px;
        height:58px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){

    .pm-gallery-slider{
        padding:70px 0;
    }

    .gallery-heading{
        padding:0 15px;
        margin-bottom:40px;
    }

    .gallery-heading span{
        font-size:13px;
        padding:8px 18px;
    }

    .gallery-heading h2{
        font-size:30px;
        line-height:1.4;
    }

    .gallery-heading p{
        font-size:15px;
        line-height:1.8;
        padding:0;
    }

    .gallery-line{
        width:90px;
    }

    .gallery-box{
        width:260px;
        height:190px;
        margin:0 10px;
    }

    .slider-track{
        width:calc(280px * 12);
    }

    .gallery-view-btn{
        min-width:220px;
        height:55px;
        font-size:15px;
    }

    .pm-gallery-slider::before{
        width:180px;
        height:180px;
    }

    .pm-gallery-slider::after{
        width:150px;
        height:150px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .pm-gallery-slider{
        padding:60px 0;
    }

    .gallery-heading{
        padding:0 12px;
    }

    .gallery-heading h2{
        font-size:24px;
    }

    .gallery-heading p{
        font-size:14px;
    }

    .gallery-box{
        width:220px;
        height:165px;
        margin:0 8px;
    }

    .slider-track{
        width:calc(236px * 12);
    }

    .gallery-view-btn{
        min-width:200px;
        height:50px;
        font-size:14px;
    }

    .gallery-line{
        width:70px;
        height:4px;
    }

    .pm-gallery-slider::before,
    .pm-gallery-slider::after{
        display:none;
    }
}














/* ==========================
   FLOATING CALL BUTTON
========================== */
/* ==========================
   FLOATING CALL BUTTON
========================== */

.floating-call{
    position:fixed;
    left:20px;
    bottom:25px;
    z-index:9999;
}

.floating-call a{
    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ff9900;

    color:#fff;
    text-decoration:none;

    font-size:28px;

    box-shadow:
    0 10px 30px rgba(0,140,164,.35);

    animation:callPulse 2s infinite;
    transition:.4s;
    border:2px solid #ff9900;
}

.floating-call a:hover{
    transform:scale(1.1);
}

/* PHONE ICON ROTATION */

/* ONLY PHONE ICON ROTATION */

.phone-wave-icon{
    display:inline-block;
    transform:rotate(-220deg);
}
/* ==========================
   FLOATING WHATSAPP BUTTON
========================== */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:25px;
    z-index:9999;
}

.floating-whatsapp a{
    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#ff9900;

    color:#fff;
    text-decoration:none;

    border:2px solid #ff9900;

    font-size:34px;

    box-shadow:
    0 10px 30px rgba(37,211,102,.35);

    animation:whatsappPulse 2s infinite;
    transition:.4s;
}

.floating-whatsapp a:hover{
    transform:scale(1.1);
}

/* ==========================
   PULSE ANIMATIONS
========================== */

@keyframes callPulse{

    0%{
        box-shadow:0 0 0 0 rgba(0,140,164,.5);
    }

    70%{
        box-shadow:0 0 0 20px rgba(0,140,164,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(0,140,164,0);
    }
}

@keyframes whatsappPulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.5);
    }

    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .floating-call a,
    .floating-whatsapp a{
        width:58px;
        height:58px;
    }

    .floating-call a{
        font-size:24px;
    }

    .floating-whatsapp a{
        font-size:30px;
    }

    .floating-call{
        left:15px;
        bottom:20px;
    }

    .floating-whatsapp{
        right:15px;
        bottom:20px;
    }
}
/* ==========================
   TABLET
========================== */

@media (max-width:768px){

    .floating-call{
        left:15px;
        bottom:20px;
    }

    .floating-whatsapp{
        right:15px;
        bottom:20px;
    }

    .floating-call a{
        width:58px;
        height:58px;
        font-size:24px;
    }

    .floating-whatsapp a{
        width:58px;
        height:58px;
        font-size:30px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width:480px){

    .floating-call{
        left:12px;
        bottom:15px;
    }

    .floating-whatsapp{
        right:12px;
        bottom:15px;
    }

    .floating-call a{
        width:52px;
        height:52px;
        font-size:22px;
    }

    .floating-whatsapp a{
        width:52px;
        height:52px;
        font-size:26px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:360px){

    .floating-call{
        left:10px;
        bottom:12px;
    }

    .floating-whatsapp{
        right:10px;
        bottom:12px;
    }

    .floating-call a,
    .floating-whatsapp a{
        width:48px;
        height:48px;
    }

    .floating-call a{
        font-size:20px;
    }

    .floating-whatsapp a{
        font-size:24px;
    }
}












/*==================================
        FOOTER
==================================*/

.pm-footer{
    position:relative;

    overflow:hidden;

    background:linear-gradient(
        135deg,
        #008ca4,
        #00b5cc
    );

    color:#fff;

    padding-top:120px;
}


/*==================================
      FLOATING SHAPES
==================================*/

.pm-footer::before{
    content:"";

    position:absolute;

    width:280px;
    height:280px;

    border-radius:50%;

    background:#a6c732;

    opacity:.12;

    top:80px;
    left:-120px;

    animation:floatShape 10s infinite;
}

.pm-footer::after{
    content:"";

    position:absolute;

    width:220px;
    height:220px;

    background:#ff9900;

    opacity:.12;

    right:-70px;
    top:180px;

    clip-path:polygon(
        50% 0%,
        100% 25%,
        100% 75%,
        50% 100%,
        0% 75%,
        0% 25%
    );

    animation:rotateShape 15s linear infinite;
}

/*==================================
      CONTAINER
==================================*/

.footer-container{
    max-width:1400px;

    margin:auto;

    padding:0 20px 80px;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1.2fr;

    gap:50px;

    position:relative;
    z-index:2;
}

/*==================================
      LOGO
==================================*/

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;

    margin-bottom:25px;
}

.footer-logo-shape{
    width:80px;
    height:80px;

    background:#ff9900;

    display:flex;
    justify-content:center;
    align-items:center;

    clip-path:polygon(
    50% 0%,
    95% 25%,
    95% 75%,
    50% 100%,
    5% 75%,
    5% 25%
    );

    animation:logoFloat 3s infinite ease-in-out;
}

.footer-logo-shape img{
    width:77px;
}

.footer-logo-text h3{
    font-size:26px;
    font-weight:800;
}

.footer-logo-text span{
    color:#a6c732;
    font-size:13px;
}

/*==================================
      COMPANY TEXT
==================================*/

.footer-company p{
    line-height:1.9;
    color:#f4f4f4;
}

/*==================================
      SOCIAL
==================================*/

.footer-social{
    display:flex;
    gap:12px;

    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;

    background:#ff9900;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    color:#fff;

    transition:.4s;
}

.footer-social a:hover{
    background:#a6c732;
    transform:translateY(-6px);
}

/*==================================
      TITLES
==================================*/

.footer-box h4{
    margin-bottom:25px;

    font-size:22px;
    font-weight:700;

    position:relative;
}

.footer-box h4::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-10px;

    width:60px;
    height:4px;

    background:#a6c732;

    border-radius:20px;
}

/*==================================
      LINKS
==================================*/

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin-bottom:14px;
}

.footer-box ul li a{
    color:#fff;
    text-decoration:none;

    transition:.4s;
}

.footer-box ul li a:hover{
    color:#ff9900;
    padding-left:8px;
}

/*==================================
      CONTACT
==================================*/

.footer-contact li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.footer-contact i{
    color:#ff9900;
    margin-top:4px;
}
.footer-phone{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-phone:hover{
    color:#ff9900;
}

/*==================================
      MOVING TRUCK
==================================*/

.footer-truck{
    position:absolute;

    bottom:65px;

    right:-120px;

    font-size:60px;

    z-index:3;

    animation:truckMove 16s linear infinite;
}

/*==================================
      BOTTOM
==================================*/

.footer-bottom{
    position:relative;
    z-index:2;

    background:#006f82;

    text-align:center;

    padding:22px;
}

.footer-bottom p{
    margin:0;
}

/*==================================
      ANIMATIONS
==================================*/

@keyframes truckMove{

    from{
        right:-120px;
    }

    to{
        right:110%;
    }

}

@keyframes floatShape{

    50%{
        transform:translateY(35px);
    }

}

@keyframes rotateShape{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes logoFloat{

    50%{
        transform:translateY(-8px);
    }

}

/*==================================
      MOBILE
==================================*/

@media(max-width:991px){

.footer-container{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.footer-container{
    grid-template-columns:1fr;
    gap:35px;
}

.footer-logo-text h3{
    font-size:22px;
}

.footer-truck{
    font-size:40px;
}

}
/*==================================
      RRMINDS LINK
==================================*/

.rrminds-link{
    color:#ff9900;

    font-weight:700;

    text-decoration:none;

    position:relative;

    padding:0 2px;

    transition:.4s;
}

/* Underline Animation */

.rrminds-link::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-4px;

    width:0;

    height:2px;

    background:#a6c732;

    transition:.4s;
}

.rrminds-link:hover{
    color:#a6c732;
}

.rrminds-link:hover::after{
    width:100%;
}

/* Glow Effect */

.rrminds-link:hover{
    text-shadow:
        0 0 8px rgba(166,199,50,.6),
        0 0 15px rgba(166,199,50,.4);
}

/*==================================
      MOBILE
==================================*/

@media(max-width:768px){

    .footer-bottom p{
        font-size:13px;
        line-height:1.8;
    }

}


/*==================================
      TABLET (991px)
==================================*/

@media (max-width:991px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:35px;
        padding:0 20px 60px;
    }

    .footer-logo-text h3{
        font-size:24px;
    }

    .footer-company p{
        font-size:15px;
        line-height:1.8;
    }

    .footer-box h4{
        font-size:20px;
    }

    .footer-truck{
        font-size:45px;
        bottom:55px;
    }

}

/*==================================
      MOBILE (768px)
==================================*/

@media (max-width:768px){

    .pm-footer{
        padding-top:80px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
        padding:0 20px 50px;
        text-align:center;
    }

    .footer-logo{
        justify-content:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-box h4{
        font-size:20px;
    }

    .footer-box h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-contact li{
        justify-content:center;
        text-align:left;
    }

    .footer-truck{
        font-size:38px;
        bottom:45px;
    }

    .footer-bottom{
        padding:18px 12px;
    }

    .footer-bottom p{
        font-size:13px;
        line-height:1.7;
    }

}

/*==================================
      SMALL MOBILE (576px)
==================================*/

@media (max-width:576px){

    .footer-container{
        padding:0 15px 40px;
        gap:25px;
    }

    .footer-logo{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }

    .footer-logo-shape{
        width:70px;
        height:70px;
    }

    .footer-logo-shape img{
        width:65px;
    }

    .footer-logo-text h3{
        font-size:20px;
    }

    .footer-logo-text span{
        font-size:12px;
    }

    .footer-company p{
        font-size:14px;
    }

    .footer-box h4{
        font-size:18px;
    }

    .footer-box ul li{
        margin-bottom:12px;
    }

    .footer-social a{
        width:40px;
        height:40px;
        font-size:14px;
    }

    .footer-contact li{
        gap:10px;
        font-size:14px;
    }

    .footer-truck{
        font-size:32px;
        bottom:40px;
    }

}

/*==================================
      EXTRA SMALL MOBILE (400px)
==================================*/

@media (max-width:400px){

    .pm-footer{
        padding-top:70px;
    }

    .footer-container{
        padding:0 12px 35px;
    }

    .footer-logo-text h3{
        font-size:18px;
    }

    .footer-company p,
    .footer-box ul li,
    .footer-contact li{
        font-size:13px;
        line-height:1.7;
    }

    .footer-social{
        gap:8px;
    }

    .footer-social a{
        width:36px;
        height:36px;
    }

    .footer-box h4{
        font-size:17px;
    }

    .footer-truck{
        display:none;
    }

    .footer-bottom p{
        font-size:12px;
        line-height:1.6;
    }

}
/*==================================
      CONTACT INFO MOBILE FIX
==================================*/

@media (max-width:768px){

    .footer-contact li{
        display:flex;
        align-items:flex-start;
        justify-content:flex-start;
        text-align:left;
        width:100%;
        max-width:220px;
        margin:0 auto 15px;
        gap:12px;
    }

    .footer-contact li i{
        min-width:20px;
        margin-top:4px;
    }

    .footer-contact li div{
        flex:1;
    }

    .footer-contact li,
    .footer-contact li a{
        word-break:break-word;
        line-height:1.7;
    }

}









/* =========================
   ABOUT PAGE
========================= */


/* =========================
   HERO BANNER SECTION
========================= */

.banner1-banner{
    position:relative;
    width:100%;
    min-height:49vh;

    background:url("assets/image/banner2.jpg") center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

/* Overlay */

.banner1-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* Content */

.banner1-content{
    position:relative;
    z-index:2;

    max-width:900px;
    text-align:center;

    padding:0 20px;
}

/* Heading */

.banner1-content h1{
    font-size:65px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #00b5cc,
        #a6c732,
        #ff9900
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-clip:text;
    color:transparent;
}

/* Buttons */

.banner1-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.banner1-btn-primary,
.banner1-btn-secondary{
    text-decoration:none;

    padding:16px 35px;

    border-radius:60px;

    font-size:16px;
    font-weight:700;

    transition:.4s;
}

/* Primary */

.banner1-btn-primary{
    background:#008ca4;
    color:#fff;
}

.banner1-btn-primary:hover{
    background:#00b5cc;
    transform:translateY(-5px);
}

/* Secondary */

.banner1-btn-secondary{
    border:2px solid #fff;
    color:#fff;
    background:#ff9900;
}

.banner1-btn-secondary:hover{
    background:#fff;
    color:#008ca4;
    transform:translateY(-5px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .banner1-content h1{
        font-size:50px;
    }
}

@media(max-width:768px){

    .banner1-banner{
        min-height:85vh;
    }

    .banner1-content h1{
        font-size:34px;
    }

    .banner1-btn-primary,
    .banner1-btn-secondary{
        padding:14px 28px;
        font-size:14px;
    }
}

@media(max-width:480px){

    .banner1-content h1{
        font-size:28px;
    }
}


/* =========================
   TABLET (991px)
========================= */

@media (max-width:991px){

    .banner1-banner{
        min-height:40vh;
    }

    .banner1-content{
        padding:0 20px;
    }

    .banner1-content h1{
        font-size:50px;
        line-height:1.2;
    }

    .banner1-buttons{
        gap:15px;
    }

}

/* =========================
   MOBILE (768px)
========================= */

@media (max-width:768px){

    .banner1-banner{
        min-height:35vh;
        padding:60px 15px;
    }

    .banner1-content{
        width:100%;
        padding:0 15px;
    }

    .banner1-content h1{
        font-size:36px;
        line-height:1.3;
        margin-bottom:20px;
    }

    .banner1-buttons{
        gap:12px;
    }

    .banner1-btn-primary,
    .banner1-btn-secondary{
        padding:12px 24px;
        font-size:14px;
    }

}

/* =========================
   SMALL MOBILE (576px)
========================= */

@media (max-width:576px){

    .banner1-banner{
        min-height:32vh;
        padding:50px 15px;
    }

    .banner1-content h1{
        font-size:30px;
        margin-bottom:18px;
    }

    .banner1-buttons{
        gap:10px;
    }

    .banner1-btn-primary,
    .banner1-btn-secondary{
        padding:10px 20px;
        font-size:13px;
    }

}

/* =========================
   EXTRA SMALL MOBILE (400px)
========================= */

@media (max-width:400px){

    .banner1-banner{
        min-height:28vh;
        padding:40px 10px;
    }

    .banner1-content h1{
        font-size:24px;
        line-height:1.3;
    }

    .banner1-buttons{
        flex-wrap:wrap;
        justify-content:center;
        gap:8px;
    }

    .banner1-btn-primary,
    .banner1-btn-secondary{
        padding:10px 16px;
        font-size:12px;
    }

}




.about1-section{
    padding:100px 0;
    background:#f8fcfd;
    overflow:hidden;
}

.about1-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:flex;
    align-items:center;
    gap:70px;
}

/* Content */

.about1-content{
    flex:1;
}

.about1-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#008ca4;
    color:#fff;

    padding:12px 25px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    margin-bottom:25px;
}

.about1-content h2{
    font-size:48px;
    font-weight:800;
    line-height:1.3;

    color:#222;

    margin-bottom:25px;
}

.about1-content h2 span{
    color:#008ca4;
}

.about1-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;

    margin-bottom:18px;
}

/* Features */

/* ==========================
   FEATURES
========================== */

.about1-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.about1-feature-box{
    display:flex;
    align-items:center;
    gap:15px;

    background:#fff;

    padding:18px 20px;

    border-radius:15px;

    border-left:4px solid #ff9900;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

    /* Animation */
    opacity:0;
    animation:cardShow .8s ease forwards;
}

/* One By One Animation */

.about1-feature-box:nth-child(1){
    animation-delay:.2s;
}

.about1-feature-box:nth-child(2){
    animation-delay:.4s;
}

.about1-feature-box:nth-child(3){
    animation-delay:.6s;
}

.about1-feature-box:nth-child(4){
    animation-delay:.8s;
}

.about1-feature-box:hover{
    transform:translateY(-8px);
}

.about1-feature-box i{
    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#a6c732;
    color:#fff;

    font-size:18px;
}

.about1-feature-box span{
    font-weight:600;
    color:#333;
}

/* ==========================
   CARD APPEAR ANIMATION
========================== */

@keyframes cardShow{

    0%{
        opacity:0;
        transform:translateY(25px);
    }

    60%{
        opacity:1;
        transform:translateY(-5px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .about1-features{
        grid-template-columns:1fr;
    }
}

/* Button */

.about1-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:35px;

    text-decoration:none;

    color:#fff;

    padding:16px 35px;

    border-radius:50px;

    background:linear-gradient(
    135deg,
    #008ca4,
    #00b5cc);

    transition:.4s;
}

.about1-btn:hover{
    transform:translateY(-5px);
}

.about1-btn i{
    transition:.4s;
}

.about1-btn:hover i{
    transform:translateX(5px);
}

/* Image Side */

.about1-image{
    flex:1;
    position:relative;
}

.about1-image-card{
    position:relative;
    z-index:2;
}

.about1-image-card img{
    width:100%;
    display:block;

    border-radius:30px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* Experience */

.about1-experience-box{
    position:absolute;

    left:-30px;
    bottom:30px;

    background:#ff9900;
    color:#fff;

    padding:25px 30px;

    border-radius:20px;

    text-align:center;
}

.about1-experience-box h3{
    font-size:40px;
    margin:0;
}

.about1-experience-box span{
    font-size:14px;
}

/* Shapes */

.about1-shape{
    position:absolute;
    z-index:1;
}

.about1-shape1{
    width:180px;
    height:180px;

    background:#008ca4;

    border-radius:50%;

    opacity:.15;

    left:-40px;
    top:-40px;
}

.about1-shape2{
    width:120px;
    height:120px;

    background:#a6c732;

    opacity:.25;

    right:-20px;
    top:60px;

    border-radius:25px;

    transform:rotate(35deg);
}

.about1-shape3{
    width:220px;
    height:220px;

    border:12px solid #ff9900;

    border-radius:50%;

    opacity:.20;

    right:-50px;
    bottom:-50px;
}

/* Responsive */

@media(max-width:991px){

    .about1-container{
        flex-direction:column;
    }

    .about1-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .about1-section{
        padding:70px 0;
    }

    .about1-content h2{
        font-size:28px;
    }

    .about1-features{
        grid-template-columns:1fr;
    }

    .about1-experience-box{
        left:10px;
        bottom:10px;

        padding:15px 20px;
    }

    .about1-experience-box h3{
        font-size:28px;
    }
}

@media(max-width:480px){

    .about1-container{
        padding:0 15px;
    }

    .about1-content h2{
        font-size:24px;
    }

    .about1-content p{
        font-size:14px;
    }

    .about1-tag{
        font-size:13px;
    }

    .about1-feature-box{
        padding:15px;
    }
}
/* ==========================
   TABLET
========================== */

@media (max-width:991px){

    .about1-section{
        padding:80px 0;
    }

    .about1-container{
        flex-direction:column;
        gap:50px;
    }

    .about1-content,
    .about1-image{
        width:100%;
    }

    .about1-content h2{
        font-size:38px;
    }

    .about1-experience-box{
        left:15px;
        bottom:15px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .about1-section{
        padding:70px 0;
    }

    .about1-container{
        padding:0 15px;
        gap:40px;
    }

    .about1-content h2{
        font-size:30px;
        line-height:1.4;
    }

    .about1-content p{
        font-size:15px;
        line-height:1.8;
    }

    .about1-features{
        grid-template-columns:1fr;
        gap:15px;
    }

    .about1-feature-box{
        padding:16px;
    }

    .about1-btn{
        padding:14px 28px;
        font-size:14px;
    }

    .about1-image-card img{
        border-radius:20px;
    }

    .about1-experience-box{
        left:10px;
        bottom:10px;
        padding:15px 20px;
    }

    .about1-experience-box h3{
        font-size:28px;
    }

    .about1-shape1{
        width:120px;
        height:120px;
    }

    .about1-shape2{
        width:80px;
        height:80px;
    }

    .about1-shape3{
        width:140px;
        height:140px;
        border-width:8px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

    .about1-container{
        padding:0 12px;
    }

    .about1-tag{
        font-size:12px;
        padding:10px 18px;
    }

    .about1-content h2{
        font-size:24px;
    }

    .about1-content p{
        font-size:14px;
        line-height:1.7;
    }

    .about1-feature-box{
        gap:12px;
        padding:14px;
    }

    .about1-feature-box i{
        width:42px;
        height:42px;
        font-size:16px;
    }

    .about1-feature-box span{
        font-size:14px;
    }

    .about1-btn{
        width:100%;
        justify-content:center;
    }

    .about1-experience-box{
        padding:12px 15px;
    }

    .about1-experience-box h3{
        font-size:22px;
    }

    .about1-experience-box span{
        font-size:12px;
    }

    .about1-shape1,
    .about1-shape2,
    .about1-shape3{
        display:none;
    }
}














.about2-section{
    padding:120px 0;
    background:#f8fcfd;
    position:relative;
    overflow:hidden;
}

.about2-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#00b5cc;
    opacity:.08;
    left:-150px;
    top:-100px;
    animation:about2Float 8s infinite ease-in-out;
}

.about2-section::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:#ff9900;
    opacity:.08;
    right:-100px;
    bottom:-100px;
    border-radius:40px;
    transform:rotate(45deg);
    animation:about2Rotate 18s linear infinite;
}

.about2-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* Heading */

.about2-heading{
    text-align:center;
    margin-bottom:80px;
}

.about2-heading span{
    display:inline-block;
    background:#008ca4;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
}

.about2-heading h2{
    font-size:50px;
    font-weight:800;
    color:#222;
    margin:25px 0 15px;
}

.about2-heading p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Layout */

.about2-wrapper{
    display:grid;
    grid-template-columns:1fr 120px 1fr;
    align-items:center;
    gap:40px;
}

/* Center Line */

.about2-line{
    position:relative;
    height:450px;
    display:flex;
    justify-content:center;
}

.about2-line::before{
    content:"";
    width:6px;
    height:100%;
    border-radius:50px;
    background:linear-gradient(
    #008ca4,
    #00b5cc,
    #a6c732,
    #ff9900);
}

.about2-line span{
    position:absolute;
    top:50%;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#ff9900;
    border:5px solid #fff;
    animation:about2Pulse 2s infinite;
}

/* Cards */

.about2-card{
    position:relative;
    padding:50px;
    border-radius:35px;
    overflow:hidden;
    background:rgba(255,255,255,.90);
    backdrop-filter:blur(15px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    transition:.5s;
}

.about2-card:hover{
    transform:translateY(-15px);
}

.about2-card::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    top:-100px;
    right:-100px;
    opacity:.10;
}

.about2-vision::before{
    background:#00b5cc;
}

.about2-mission::before{
    background:#ff9900;
}

/* Number */

.about2-number{
    position:absolute;
    right:20px;
    top:10px;
    font-size:80px;
    font-weight:900;
    color:rgba(0,0,0,.05);
}

/* Icon */

.about2-icon{
    width:95px;
    height:95px;
    border-radius:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:40px;
    margin-bottom:25px;
}

.about2-vision .about2-icon{
    background:linear-gradient(135deg,#008ca4,#00b5cc);
}

.about2-mission .about2-icon{
    background:linear-gradient(135deg,#a6c732,#ff9900);
}

.about2-card:hover .about2-icon{
    animation:about2Spin .8s ease;
}

.about2-card h3{
    font-size:34px;
    color:#222;
    margin-bottom:20px;
}

.about2-card p{
    color:#666;
    line-height:1.9;
    font-size:16px;
}

/* Animations */

@keyframes about2Float{
    50%{
        transform:translateY(40px);
    }
}

@keyframes about2Rotate{
    from{
        transform:rotate(45deg);
    }
    to{
        transform:rotate(405deg);
    }
}

@keyframes about2Pulse{
    50%{
        transform:scale(1.4);
    }
}

@keyframes about2Spin{
    100%{
        transform:rotate(360deg);
    }
}

/* Responsive */

@media(max-width:991px){

    .about2-wrapper{
        grid-template-columns:1fr;
    }

    .about2-line{
        display:none;
    }

    .about2-heading h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .about2-section{
        padding:70px 0;
    }

    .about2-heading h2{
        font-size:28px;
    }

    .about2-card{
        padding:30px 25px;
    }

    .about2-card h3{
        font-size:28px;
    }
}

/* =========================
   BOTTOM FEATURES
========================= */

.about2-features-wrap{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* Feature Box */

.about2-feature-item{
    position:relative;

    display:flex;
    align-items:center;
    gap:18px;

    padding:25px;

    border-radius:25px;

    background:rgba(255,255,255,.95);

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.5s ease;
}

/* Top Gradient */

.about2-feature-item::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        #008ca4,
        #00b5cc,
        #a6c732,
        #ff9900
    );
}

/* Glow Effect */

.about2-feature-item::after{
    content:"";

    position:absolute;

    width:140px;
    height:140px;

    background:#00b5cc;

    opacity:.08;

    border-radius:50%;

    right:-70px;
    top:-70px;

    transition:.5s;
}

.about2-feature-item:hover{
    transform:translateY(-12px);
    box-shadow:
    0 25px 60px rgba(0,140,164,.15);
}

.about2-feature-item:hover::after{
    transform:scale(1.4);
}

/* Icon */

.about2-feature-icon{
    width:70px;
    height:70px;

    min-width:70px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #008ca4,
        #00b5cc
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:28px;

    position:relative;

    animation:featureFloat 3s ease-in-out infinite;
}

/* Rotating Ring */

.about2-feature-icon::before{
    content:"";

    position:absolute;

    inset:-6px;

    border:2px dashed #a6c732;

    border-radius:24px;

    animation:ringRotate 10s linear infinite;
}

/* Text */

.about2-feature-text h4{
    font-size:18px;
    color:#222;
    margin-bottom:5px;
    font-weight:700;
}

.about2-feature-text p{
    font-size:14px;
    color:#666;
    margin:0;
}

/* Animations */

@keyframes featureFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }
}

@keyframes ringRotate{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

/* Responsive */

@media(max-width:991px){

    .about2-features-wrap{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .about2-features-wrap{
        grid-template-columns:1fr;
        gap:18px;
    }

    .about2-feature-item{
        padding:20px;
    }

    .about2-feature-icon{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:24px;
    }
}


/* ==================================
   TABLET
================================== */

@media (max-width:991px){

    .about2-section{
        padding:90px 0;
    }

    .about2-container{
        padding:0 20px;
    }

    .about2-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .about2-line{
        display:none;
    }

    .about2-heading{
        margin-bottom:50px;
    }

    .about2-heading h2{
        font-size:38px;
        line-height:1.3;
    }

    .about2-card{
        padding:40px 35px;
    }

    .about2-card h3{
        font-size:30px;
    }

    .about2-features-wrap{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        margin-top:50px;
    }
}

/* ==================================
   MOBILE
================================== */

@media (max-width:768px){

    .about2-section{
        padding:70px 0;
    }

    .about2-container{
        padding:0 15px;
    }

    .about2-heading{
        margin-bottom:40px;
    }

    .about2-heading span{
        font-size:13px;
        padding:10px 22px;
    }

    .about2-heading h2{
        font-size:30px;
        line-height:1.4;
        margin:20px 0 15px;
    }

    .about2-heading p{
        font-size:15px;
        line-height:1.8;
    }

    .about2-card{
        padding:30px 25px;
        border-radius:25px;
    }

    .about2-number{
        font-size:55px;
    }

    .about2-icon{
        width:75px;
        height:75px;
        font-size:30px;
        margin-bottom:20px;
    }

    .about2-card h3{
        font-size:26px;
    }

    .about2-card p{
        font-size:15px;
        line-height:1.8;
    }

    .about2-features-wrap{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:40px;
    }

    .about2-feature-item{
        padding:20px;
        border-radius:20px;
    }

    .about2-feature-icon{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:24px;
    }

    .about2-feature-text h4{
        font-size:16px;
    }

    .about2-feature-text p{
        font-size:13px;
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media (max-width:480px){

    .about2-container{
        padding:0 12px;
    }

    .about2-heading h2{
        font-size:24px;
    }

    .about2-heading p{
        font-size:14px;
    }

    .about2-card{
        padding:25px 20px;
    }

    .about2-number{
        font-size:42px;
        top:15px;
        right:15px;
    }

    .about2-icon{
        width:65px;
        height:65px;
        font-size:26px;
    }

    .about2-card h3{
        font-size:22px;
    }

    .about2-card p{
        font-size:14px;
    }

    .about2-feature-item{
        gap:12px;
        padding:16px;
    }

    .about2-feature-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:20px;
    }

    .about2-feature-text h4{
        font-size:15px;
    }

    .about2-feature-text p{
        font-size:12px;
    }

    .about2-section::before,
    .about2-section::after{
        display:none;
    }
}











.about4-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
    linear-gradient(
    135deg,
    #f8fdff 0%,
    #ffffff 50%,
    #eefcff 100%);
}

/* Background Animation */

.about4-bg-circle{
    position:absolute;
    border-radius:50%;
}

.circle1{
    width:500px;
    height:500px;
    background:#008ca4;
    opacity:.05;
    left:-180px;
    top:-180px;
    animation:floatCircle 12s infinite ease-in-out;
}

.circle2{
    width:350px;
    height:350px;
    background:#ff9900;
    opacity:.07;
    right:-120px;
    bottom:-120px;
    animation:floatCircle2 10s infinite ease-in-out;
}

.about4-bg-ring{
    position:absolute;
    width:600px;
    height:600px;
    border:2px dashed rgba(166,199,50,.25);
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    animation:spinRing 40s linear infinite;
}

/* Layout */

.about4-container{
    max-width:1300px;
    margin:auto;
    padding:0 20px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

    position:relative;
    z-index:5;
}

/* Image Area */

.about4-image-wrapper{
    position:relative;
}

.about4-border{
   position: absolute;
    top: -13px;
    left: -20px;
    width: 100%;
    height: 106%;
    border: 4px solid #a6c732;
    border-radius: 35px;
    z-index: 1;
}
.about4-image-wrapper img{
   width: 93%;
    border-radius:35px;
    position:relative;
    z-index:2;

    box-shadow:
    0 25px 70px rgba(0,0,0,.18);

    transition:.6s;
}

.about4-image-wrapper:hover img{
    transform:scale(1.03);
}

/* Floating Badges */

.about4-badge{
    position:absolute;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    padding:15px 22px;

    border-radius:60px;

    display:flex;
    align-items:center;
    gap:12px;

    z-index:3;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.about4-badge i{
    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#fff;
}

.badge-left i{
    background:#008ca4;
}

.badge-right i{
    background:#ff9900;
}

.badge-left{
    left:-30px;
    bottom:40px;
    animation:floatBadge 4s infinite ease-in-out;
}

.badge-right{
    right:-30px;
    top:40px;
    animation:floatBadge 5s infinite ease-in-out;
}

/* Content */

.about4-tag{
    display:inline-block;

    padding:12px 30px;

    border-radius:50px;

    background:#008ca4;
    color:#fff;

    font-weight:700;

    margin-bottom:20px;
}

.about4-content h2{
    font-size:52px;
    line-height:1.2;
    color:#222;
    margin-bottom:20px;
    font-weight:800;
}

.about4-line{
    width:140px;
    height:5px;

    border-radius:50px;

    margin-bottom:25px;

    background:linear-gradient(
    90deg,
    #008ca4,
    #a6c732,
    #ff9900);
}

.about4-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

/* Animations */

@keyframes floatCircle{
    50%{
        transform:translateY(40px);
    }
}

@keyframes floatCircle2{
    50%{
        transform:translateY(-40px);
    }
}

@keyframes spinRing{
    from{
        transform:translate(-50%,-50%) rotate(0deg);
    }
    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }
}

@keyframes floatBadge{
    50%{
        transform:translateY(-15px);
    }
}

/* Responsive */

@media(max-width:991px){

    .about4-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about4-content h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .about4-section{
        padding:70px 0;
    }

    .about4-content h2{
        font-size:28px;
    }

    .badge-left,
    .badge-right{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;
        margin-top:15px;
    }

    .about4-border{
        display:none;
    }
}
  
  /* ==================================
   TABLET
================================== */

@media (max-width:991px){

    .about4-section{
        padding:90px 0;
    }

    .about4-container{
        grid-template-columns:1fr;
        gap:50px;
    }

    .about4-content{
        width:100%;
    }

    .about4-content h2{
        font-size:38px;
        line-height:1.3;
    }

    .about4-image-wrapper{
        max-width:700px;
        margin:auto;
    }

    .badge-left{
        left:10px;
        bottom:25px;
    }

    .badge-right{
        right:10px;
        top:25px;
    }

    .about4-bg-ring{
        width:450px;
        height:450px;
    }
}

/* ==================================
   MOBILE
================================== */

@media (max-width:768px){

    .about4-section{
        padding:70px 0;
    }

    .about4-container{
        padding:0 15px;
        gap:40px;
    }

    .about4-content h2{
        font-size:30px;
        line-height:1.4;
    }

    .about4-content p{
        font-size:15px;
        line-height:1.8;
    }

    .about4-tag{
        font-size:13px;
        padding:10px 22px;
    }

    .about4-line{
        width:100px;
    }

    .about4-image-wrapper img{
        width:100%;
        border-radius:25px;
    }

    .about4-border{
        display:none;
    }

    .about4-badge{
        padding:12px 18px;
        gap:10px;
    }

    .about4-badge i{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .badge-left{
        left:10px;
        bottom:15px;
    }

    .badge-right{
        right:10px;
        top:15px;
    }

    .about4-bg-ring{
        width:320px;
        height:320px;
    }
}

/* ==================================
   SMALL MOBILE
================================== */

@media (max-width:480px){

    .about4-container{
        padding:0 12px;
    }

    .about4-content h2{
        font-size:24px;
    }

    .about4-content p{
        font-size:14px;
        line-height:1.7;
    }

    .about4-tag{
        font-size:12px;
        padding:8px 18px;
    }

    .about4-badge{
        position:relative;
        left:auto;
        right:auto;
        top:auto;
        bottom:auto;

        width:100%;
        margin-top:15px;
        justify-content:flex-start;
    }

    .about4-badge span,
    .about4-badge h4{
        font-size:13px;
    }

    .about4-bg-ring,
    .circle1,
    .circle2{
        display:none;
    }
}  













/* ==================================
   SERVICE PAGE
================================== */


.services-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fdff,#ffffff,#eefcff);
    position:relative;
    overflow:hidden;
}

/* background shapes */
.services-section::before,
.services-section::after{
    content:"";
    position:absolute;
    border-radius:50%;
    opacity:.08;
    z-index:0;
}

.services-section::before{
    width:400px;
    height:400px;
    background:#008ca4;
    top:-150px;
    left:-150px;
    animation:float1 10s infinite ease-in-out;
}

.services-section::after{
    width:300px;
    height:300px;
    background:#ff9900;
    bottom:-120px;
    right:-120px;
    animation:float2 12s infinite ease-in-out;
}

.services-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    position:relative;
    z-index:2;
}

/* heading */
.services-heading{
    text-align:center;
    margin-bottom:60px;
}

.services-heading span{
    display:inline-block;
    background:#008ca4;
    color:#fff;
    padding:10px 25px;
    border-radius:50px;
    font-weight:600;
}

.services-heading h2{
    font-size:42px;
    margin:20px 0;
    color:#222;
}

.services-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

/* grid */
.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* card */
.service-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    position:relative;
    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:.4s;
border: 2px solid #00b5cc;
}

/* IMAGE STYLE */
.service-card img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
    transition:.5s;
}

/* icon */
.service-card i{
    font-size:38px;
    color:#ff9900;
    margin-bottom:10px;
    transition:.4s;
}

/* hover */
.service-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,140,164,0.2);
    background:#008ca4d6;
    border: 4px solid #ff9900;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-card:hover i{
    transform:rotate(12deg) scale(1.2);
    color:#ffff;
}

/* text */
.service-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#222;
}

.service-card p{
    font-size:14px;
    color:black;
    line-height:1.6;
}

/* animation */
@keyframes float1{
    50%{transform:translateY(40px);}
}

@keyframes float2{
    50%{transform:translateY(-40px);}
}

/* responsive */
@media(max-width:991px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-heading h2{
        font-size:32px;
    }
}

@media(max-width:600px){
    .services-grid{
        grid-template-columns:1fr;
    }
}



/* =========================
   RESPONSIVE FIX
========================= */

/* Large tablets */
@media (max-width: 1024px){
    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .services-heading h2{
        font-size:36px;
    }
}

/* Tablets */
@media (max-width: 991px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-heading h2{
        font-size:32px;
    }

    .services-card img{
        height:130px;
    }
}

/* Mobile landscape */
@media (max-width: 768px){
    .services-section{
        padding:70px 0;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .services-heading h2{
        font-size:28px;
    }

    .services-heading p{
        font-size:14px;
    }

    .service-card{
        padding:20px;
    }

    .service-card img{
        height:120px;
    }

    .service-card h3{
        font-size:18px;
    }
}

/* Mobile small */
@media (max-width: 480px){
    .services-grid{
        grid-template-columns:1fr;
    }

    .services-heading h2{
        font-size:24px;
    }

    .services-heading span{
        font-size:12px;
        padding:8px 18px;
    }

    .service-card{
        padding:18px;
    }

    .service-card img{
        height:110px;
    }

    .service-card p{
        font-size:13px;
    }
}









.service-move-strip{
    width:100%;
    overflow:hidden;
   background: linear-gradient(135deg, #a6c732, #a6c732);
    padding:18px 0;
    position:relative;
}

/* moving track */
.move-track{
    display:flex;
    width:max-content;
    gap:40px;
    animation:moveLeft 12s linear infinite;
}

/* each item */
.move-item{
    display:flex;
    align-items:center;
    gap:10px;

    color:#fff;
    font-weight:600;
    font-size:16px;

    background:rgba(255,255,255,0.12);
    padding:10px 18px;
    border-radius:50px;

    white-space:nowrap;
}

/* icon style */
.move-item i{
    font-size:18px;
    color:#ff9900;
    animation:bounceIcon 1.5s infinite;
}

/* movement animation */
@keyframes moveLeft{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-50%);
    }
}

/* icon bounce */
@keyframes bounceIcon{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-5px);
    }
}

/* responsive */
@media(max-width:768px){
    .move-item{
        font-size:14px;
        padding:8px 14px;
    }
}

@media (max-width: 1024px){
    .move-item{
        font-size:15px;
        padding:9px 16px;
        gap:8px;
    }

    .move-track{
        gap:30px;
    }
}

@media (max-width: 768px){
    .service-move-strip{
        padding:14px 0;
    }

    .move-item{
        font-size:14px;
        padding:8px 14px;
    }

    .move-item i{
        font-size:16px;
    }

    .move-track{
        gap:25px;
        animation-duration:10s;
    }
}

@media (max-width: 480px){
    .move-item{
        font-size:13px;
        padding:7px 12px;
        gap:6px;
    }

    .move-item i{
        font-size:15px;
    }

    .move-track{
        gap:20px;
    }
}












/* =========================
   GALLERY PAGE
========================= */

/* =========================
   GALLERY SECTION
========================= */

.gallery-section{
    padding:90px 0;
    background:linear-gradient(135deg,#f8fdff,#ffffff);
}

.gallery-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.gallery-heading{
    text-align:center;
    margin-bottom:40px;
}

.gallery-heading h2{
    font-size:42px;
    color:#008ca4;
}

.gallery-heading p{
    color:#666;
}

/* GRID */
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    cursor:pointer;

    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
border: 4px solid #00b5cc;
}

.gallery-grid img:hover{
    transform:scale(1.05);
    filter:brightness(1.1);
}

/* =========================
   POPUP VIEWER
========================= */

.gallery-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);

    display:none;
    align-items:center;
    justify-content:center;

    z-index:9999;
}

.gallery-popup img{
    width:70%;
    height:80%;
    object-fit:contain;
    border-radius:10px;
    animation:zoomIn .3s ease;
}

/* close button */
.close-btn{
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}

/* arrows */
.nav-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    font-size:60px;
    color:#fff;
    cursor:pointer;
    user-select:none;
    padding:10px;
}

.left{ left:30px; }
.right{ right:30px; }

.nav-btn:hover,
.close-btn:hover{
    color:#ff9900;
}

/* animation */
@keyframes zoomIn{
    from{transform:scale(0.6);}
    to{transform:scale(1);}
}

/* responsive */
@media(max-width:768px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-popup img{
        width:90%;
        height:60%;
    }

    .nav-btn{
        font-size:40px;
    }
}

@media(max-width:480px){
    .gallery-grid{
        grid-template-columns:1fr;
    }
}




/* =========================
   LARGE TABLET / SMALL LAPTOP
========================= */
@media (max-width: 1024px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .gallery-heading h2{
        font-size:36px;
    }
}

/* =========================
   TABLET VIEW
========================= */
@media (max-width: 768px){

    .gallery-section{
        padding:70px 0;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .gallery-grid img{
        height:220px;
    }

    .gallery-heading h2{
        font-size:30px;
    }

    .gallery-heading p{
        font-size:14px;
    }

    /* popup */
    .gallery-popup img{
        width:92%;
        height:auto;
    }

    .nav-btn{
        font-size:40px;
    }

    .close-btn{
        font-size:32px;
        top:15px;
        right:20px;
    }
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 480px){

    .gallery-section{
        padding:60px 0;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .gallery-grid img{
        height:200px;
    }

    .gallery-heading h2{
        font-size:26px;
    }

    .gallery-heading p{
        font-size:13px;
    }

    /* popup image */
    .gallery-popup img{
        width:95%;
        height:auto;
    }

    /* arrows */
    .nav-btn{
        font-size:32px;
        padding:5px;
    }

    .left{
        left:10px;
    }

    .right{
        right:10px;
    }

    /* close button */
    .close-btn{
        font-size:28px;
        top:10px;
        right:15px;
    }
}

/* =========================
   EXTRA SMALL DEVICES
========================= */
@media (max-width: 360px){

    .gallery-heading h2{
        font-size:22px;
    }

    .gallery-grid img{
        height:180px;
    }

    .nav-btn{
        font-size:28px;
    }
}















/* =========================
CONTACT PAGE
========================= */


.contact-section{
    padding:90px 8%;
    background:#f5f8fc;
    position:relative;
    overflow:hidden;
}

/* Background Shapes */

.contact-section::before{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#ff660015;
    border-radius:50%;
    top:-150px;
    left:-150px;
    animation:float1 8s infinite linear;
}

.contact-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:#01276110;
    border-radius:50%;
    bottom:-150px;
    right:-100px;
    animation:float2 10s infinite linear;
}

@keyframes float1{
    50%{
        transform:translateY(30px);
    }
}

@keyframes float2{
    50%{
        transform:translateY(-30px);
    }
}

.contact-wrapper{
    display:flex;
    gap:50px;
    align-items:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

/* LEFT SIDE */

.contact-info{
    flex:1;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ff6600;
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.contact-info h2{
    font-size:42px;
    color:#012761;
    margin-bottom:20px;
}

.contact-desc{
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.contact-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:22px;
    margin-bottom:20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.contact-card:hover{
    transform:translateX(10px);
}

.contact-icon{
    min-width:65px;
    height:65px;
    background:linear-gradient(135deg,#ff6600,#ff8c00);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.contact-card h4{
    color:#012761;
    margin-bottom:8px;
    font-size:20px;
}

.contact-card p{
    color:#555;
    line-height:1.7;
}

/* RIGHT FORM */

.contact-form-box{
    flex:1;
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.form-glow{
    position:absolute;
    width:250px;
    height:250px;
    background:#ff660020;
    border-radius:50%;
    top:-120px;
    right:-100px;
    animation:rotateGlow 8s linear infinite;
}

@keyframes rotateGlow{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.contact-form-box h2{
    color:#012761;
    margin-bottom:25px;
    font-size:32px;
    position:relative;
}

.input-group{
    position:relative;
    margin-bottom:20px;
}

.input-group i{
    position:absolute;
    left:18px;
    top:18px;
    color:#ff6600;
}

.input-group input,
.input-group textarea{
    width:100%;
    border:none;
    background:#f4f6fb;
    border-radius:12px;
    padding:16px 16px 16px 50px;
    font-size:15px;
}

.input-group textarea{
    height:140px;
    resize:none;
}

.contact-form-box button{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#ff6600,#ff8c00);
    color:#fff;
    padding:18px;
    border-radius:12px;
    font-size:17px;
    cursor:pointer;
    transition:.4s;
}

.contact-form-box button:hover{
    transform:translateY(-4px);
}

.contact-form-box button i{
    margin-right:8px;
}
/* Clickable Phone & Email Links */

.contact-link{
    color:#555;
    text-decoration:none;
    transition:.3s;
    font-weight:500;
}

.contact-link:hover{
    color:#ff6600;
}

.contact-link:focus{
    color:#ff6600;
}

/* Mobile tap effect */

.contact-link:active{
    color:#ff6600;
}

/* MAP */

.map-area{
    position:relative;
    z-index:2;
}

.map-area iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

/* MOBILE */

@media(max-width:991px){

    .contact-wrapper{
        flex-direction:column;
    }

    .contact-info h2{
        font-size:34px;
    }
}

@media(max-width:576px){

    .contact-section{
        padding:70px 5%;
    }

    .contact-info h2{
        font-size:28px;
    }

    .contact-form-box{
        padding:25px;
    }

    .map-area iframe{
        height:320px;
    }
}




/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .contact-wrapper{
        flex-direction:column;
        gap:30px;
    }

    .contact-info,
    .contact-form-box{
        width:100%;
    }

    .contact-info h2{
        font-size:34px;
    }

    .contact-form-box{
        padding:35px;
    }

    .map-area iframe{
        height:400px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .contact-section{
        padding:60px 20px;
    }

    .contact-info h2{
        font-size:30px;
        line-height:1.3;
    }

    .contact-desc{
        font-size:15px;
    }

    .contact-card{
        padding:18px;
        gap:15px;
    }

    .contact-icon{
        min-width:55px;
        height:55px;
        font-size:20px;
    }

    .contact-card h4{
        font-size:18px;
    }

    .contact-card p{
        font-size:14px;
        word-break:break-word;
    }

    .contact-form-box{
        padding:30px 20px;
    }

    .contact-form-box h2{
        font-size:28px;
    }

    .input-group input,
    .input-group textarea{
        font-size:14px;
    }

    .contact-form-box button{
        padding:16px;
        font-size:16px;
    }

    .map-area iframe{
        height:350px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:576px){

    .contact-section{
        padding:50px 15px;
    }

    .contact-badge{
        font-size:13px;
        padding:8px 16px;
    }

    .contact-info h2{
        font-size:26px;
    }

    .contact-card{
        flex-direction:row;
        align-items:flex-start;
        padding:15px;
        border-radius:15px;
    }

    .contact-icon{
        min-width:50px;
        height:50px;
        font-size:18px;
    }

    .contact-card h4{
        font-size:17px;
    }

    .contact-card p{
        font-size:13px;
        line-height:1.6;
    }

    .contact-form-box{
        padding:20px 15px;
        border-radius:20px;
    }

    .contact-form-box h2{
        font-size:24px;
    }

    .input-group i{
        left:15px;
    }

    .input-group input,
    .input-group textarea{
        padding:14px 14px 14px 45px;
    }

    .map-area iframe{
        height:300px;
        border-radius:15px;
    }

}

/* =========================
   EXTRA SMALL MOBILE
========================= */

@media (max-width:400px){

    .contact-info h2{
        font-size:22px;
    }

    .contact-card{
        gap:12px;
        padding:12px;
    }

    .contact-icon{
        min-width:45px;
        height:45px;
        font-size:16px;
    }

    .contact-card h4{
        font-size:15px;
    }

    .contact-card p{
        font-size:12px;
    }

    .contact-form-box h2{
        font-size:22px;
    }

    .contact-form-box button{
        font-size:15px;
    }

    .map-area iframe{
        height:250px;
    }

}