/*=========================================
    PUSHPA PHARMACEUTICALS
    STYLE.CSS
==========================================*/

:root{

    /* Brand Colors */
    --primary:#022C5E;
    --secondary:#2E8B57;
    --accent:#02D8E9;

    /* Neutral Colors */
    --white:#FFFFFF;
    --light:#F8FAFC;
    --dark:#1B1B1B;
    --text:#6B7280;
    --border:#E5E7EB;

    /* Gradients */
    --primary-gradient:linear-gradient(90deg,#02D8E9 0%,#022C5E 100%);
    --green-gradient:linear-gradient(90deg,#2E8B57 0%,#73B64A 100%);

    /* Effects */
    --shadow:0 10px 30px rgba(2,44,94,.12);
    --transition:.35s ease;

}

/*=========================================
            RESET
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:var(--black);
    overflow-x:hidden;
}

a{
    text-decoration:none;
    transition:var(--transition);
}

img{
    max-width:100%;
}

/*=========================================
            TOP BAR
==========================================*/

.top-bar{

    background:linear-gradient(90deg,
    var(--accent),
    #1a73d8);

    color:#fff;

    font-size:14px;

}

.topbar-content{

    display:flex;

    justify-content:flex-end;

    align-items:center;

    gap:40px;

    min-height:40px;

}

.topbar-item{

    display:flex;

    align-items:center;

    gap:8px;

}

.topbar-item i{

    color:#fff;

}


/*=========================================
  HEADER
=========================================*/

.main-header{
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,.06);
    transition:.35s;
    z-index:999;
}

.main-header .navbar{
    padding:0 0;
}

.navbar-brand img{
    height:60px;
    transition:.3s;
}

/*=========================================
  NAVIGATION
=========================================*/

.navbar-nav{
    gap:20px;
}

.navbar-nav .nav-link{
    color:#0B3C5D;
    font-size:16px;
    font-weight:600;
    padding:12px 18px !important;
    transition:.3s;
    position:relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#28A745;
}

/* Underline Animation */

/*
.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:18px;

    bottom:6px;

    width:0;

    height:2px;

    background:#28A745;

    transition:.3s;

}
*/

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after{

/*    width:calc(100% - 36px);*/

}

/*=========================================
  DROPDOWN
=========================================*/

.dropdown-menu{

    border:none;

    border-radius:12px;

    min-width:290px;

    padding:10px;

/*    margin-top:12px;*/

    box-shadow:0 15px 40px rgba(0,0,0,.12);

    animation:dropdown .25s ease;

}

@keyframes dropdown{

    from{

        opacity:0;

        transform:translateY(10px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.dropdown-item{

    padding:12px 16px;

    border-radius:8px;

    font-size:14px;

    transition:.3s;

    color:#444;

}

.dropdown-item:hover{

    background:#F5FAF7;

    color:#28A745;

}

/* Desktop Hover */

@media(min-width:992px){

.dropdown:hover>.dropdown-menu{

    display:block;

}

}

/*=========================================
  GET QUOTE BUTTON
=========================================*/

.quote-btn{

    background:#28A745;

    color:#fff;

    border-radius:8px;

    padding:12px 24px;

    font-weight:600;

    transition:.3s;

}

.quote-btn:hover{

    background:#0B3C5D;

    color:#fff;

}

/*=========================================
  MOBILE TOGGLE
=========================================*/

.navbar-toggler{

    border:none;

    box-shadow:none !important;

    font-size:28px;

    color:#0B3C5D;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*=========================================
  OFFCANVAS
=========================================*/

.offcanvas{

    width:320px;

}

.offcanvas-header{

    border-bottom:1px solid #eee;

    padding:18px;

}

.offcanvas-body{

    padding:20px;

}

.mobile-menu{

    list-style:none;

    padding:0;

    margin:0;

}

.mobile-menu li{

    border-bottom:1px solid #eee;

}

.mobile-menu li:last-child{

    border:none;

}

.mobile-menu a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:15px 0;

    color:#0B3C5D;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.mobile-menu a:hover{

    color:#28A745;

}

/*=========================================
  MOBILE SUBMENU
=========================================*/

.mobile-submenu{

    list-style:none;

    padding-left:18px;

    margin-bottom:10px;

}

.mobile-submenu li{

    border:none;

}

.mobile-submenu a{

    display:block;

    padding:10px 0;

    font-size:14px;

    color:#555;

    font-weight:500;

}

.mobile-submenu a:hover{

    color:#28A745;

}

/*=========================================
  PLUS ICON
=========================================*/

.service-toggle i{

    transition:.3s;

}

.service-toggle[aria-expanded="true"] i{

    transform:rotate(45deg);

}

/*=========================================
  STICKY HEADER
=========================================*/

.main-header.scrolled{

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.main-header.scrolled .navbar{

    padding:10px 0;

}

.main-header.scrolled .navbar-brand img{

    height:52px;

}

/*=========================================
  MOBILE
=========================================*/

@media(max-width:991px){

.navbar-brand img{

    height:50px;

}

.main-header .navbar{

    padding:12px 0;

}

.quote-btn{

    width:100%;

    text-align:center;

}

}

/*=========================================
  SMALL MOBILE
=========================================*/

@media(max-width:575px){

.offcanvas{

    width:100%;

}

.navbar-brand img{

    height:45px;

}

}



/*==============================
    Scroll Top Button
==============================*/

.scroll-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:var(--primary-color);
    color:#fff;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
}

.scroll-top:hover{
    background:var(--secondary-color);
}

/*==============================
    Fade Animation
==============================*/

.animate{
    opacity:0;
    transform:translateY(40px);
    transition:.8s ease;
}

.show-element{
    opacity:1;
    transform:translateY(0);
}



/*=========================================
            HERO SLIDER
=========================================*/

.hero-slider{
    position:relative;
}

.slider-item{

    min-height:90vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(rgba(2,44,94,.80),
    rgba(22,159,230,.45)),
    url("../images/BG/slider_bg.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}

/* Decorative Gradient */

.slider-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(90deg,
    rgba(2,44,94,.85) 0%,
    rgba(22,159,230,.55) 55%,
    rgba(74,147,48,.45) 100%);

}

/*=========================================
            CONTENT
=========================================*/

.slider-item .container{

    position:relative;

    z-index:2;

}

.slider-subtitle{

    display:inline-block;

    color:#fff;

    font-size:20px;

    font-weight:600;

    font-style:italic;

    margin-bottom:20px;

    border-bottom:2px solid #fff;

    padding-bottom:5px;

}

.slider-title{

    color:#fff;

    font-size:64px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:30px;

}

.slider-text{

    color:#eef4ff;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:600px;

}

/*=========================================
            BUTTONS
=========================================*/

.slider-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary-custom{

    background:#2E8B57;

    color:#fff;

    padding:15px 36px;

    border-radius:6px;

    font-weight:600;

    transition:.35s;

}

.btn-primary-custom:hover{

    background:#022C5E;

    color:#fff;

}

.btn-outline-custom{

    border:2px solid #fff;

    color:#fff;

    padding:15px 36px;

    border-radius:6px;

    font-weight:600;

    transition:.35s;

}

.btn-outline-custom:hover{

    background:#fff;

    color:#022C5E;

}

/*=========================================
            IMAGE
=========================================*/

.slider-image {
    max-height: 750px;
    animation: float 5s ease-in-out infinite;
    border-radius: 20px;
    object-fit: contain;
    object-position: center;
    width: auto;
}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}

/*=========================================
        NAVIGATION BUTTONS
=========================================*/

.carousel-control-prev,
.carousel-control-next{

    width:65px;
    height:65px;

    background:rgba(255,255,255,.15);

    top:50%;

    transform:translateY(-50%);

    opacity:1;

}

.carousel-control-prev{

    left:30px;

}

.carousel-control-next{

    right:30px;

}

.carousel-control-prev:hover,
.carousel-control-next:hover{

    background:#2E8B57;

}

/*=========================================
            INDICATORS
=========================================*/

.carousel-indicators{

    bottom:35px;

}

.carousel-indicators button{

    width:12px;

    height:12px;

    border-radius:50%;

    margin:0 6px;

    background:#fff;

}

.carousel-indicators .active{

    background:#2E8B57;

}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:991px){

.slider-item{

min-height:auto;

padding:100px 0;

text-align:center;

}

.slider-title{

font-size:42px;

}

.slider-text{

margin:auto auto 35px;

}

.slider-buttons{

justify-content:center;

}

.slider-image{

margin-top:50px;

max-height:420px;

}

.carousel-control-prev,
.carousel-control-next{

display:none;

}

}

@media(max-width:576px){

.slider-title{

font-size:34px;

}

.slider-subtitle{

font-size:16px;

}

.slider-text{

font-size:16px;

}

.btn-primary-custom,
.btn-outline-custom{

width:100%;

text-align:center;

}

}

/*=========================================
            ABOUT SECTION
=========================================*/

.about-section{
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

/*=========================================
            IMAGE
=========================================*/

.about-image{
    position: relative;
}

.about-image img{
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

/* Floating Card */

.experience-box{
    position: absolute;
    left: -20px;
    bottom: -20px;
    background: linear-gradient(135deg,#022C5E,#02D8E9);
    color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(2,44,94,.25);
    max-width: 240px;
}

.experience-box h3{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.experience-box span{
    font-size: 15px;
    line-height: 1.6;
}

/*=========================================
            SECTION TITLE
=========================================*/

.section-title{
    margin-bottom: 25px;
}

.sub-title{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2E8B57;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.sub-title i{
    color: #02D8E9;
}

.section-title h2{
    font-size: 46px;
    font-weight: 700;
    color: #022C5E;
    line-height: 1.25;
}

.section-title h2 span{
    color: #2E8B57;
}

/*=========================================
            CONTENT
=========================================*/

.about-section p{
    font-size: 16px;
    line-height: 1.9;
    color: #6B7280;
}

/*=========================================
            FEATURES
=========================================*/

.about-feature{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    transition: .35s ease;
}

.about-feature:hover{
    transform: translateY(-5px);
    border-color: #02D8E9;
    box-shadow: 0 12px 25px rgba(0,0,0,.08);
}

.about-feature i{
    width: 40px;
    height: 40px;
    background: #2E8B57;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.about-feature span{
    font-weight: 600;
    color: #022C5E;
}

/*=========================================
            BUTTONS
=========================================*/

.btn-primary-custom{
    background: #022C5E;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: .35s ease;
}

.btn-primary-custom:hover{
    background: #2E8B57;
    color: #fff;
}

.btn-outline-custom{
    border: 2px solid #022C5E;
    color: #022C5E;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: .35s ease;
}

.btn-outline-custom:hover{
    background: #022C5E;
    color: #fff;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width:991px){

    .about-section{
        padding: 80px 0;
    }

    .section-title h2{
        font-size: 36px;
    }

    .experience-box{
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: -60px;
        margin-left: auto;
        margin-right: auto;
    }

}

@media (max-width:767px){

    .section-title{
        text-align: center;
    }

    .section-title h2{
        font-size: 30px;
    }

    .about-section p{
        text-align: center;
    }

    .experience-box{
        max-width: 100%;
        text-align: center;
    }

    .about-feature{
        justify-content: center;
        text-align: center;
    }

}


/*=========================================
        COMPANY STATISTICS
=========================================*/

.counter-section{
    padding:80px 0;
    background:#F8FAFC;
}

.counter-card{
    background:#FFFFFF;
    border:1px solid #E5E7EB;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.counter-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#022C5E,#2E8B57);
    transform:scaleX(0);
    transition:.4s;
    transform-origin:left;
}

.counter-card:hover::before{
    transform:scaleX(1);
}

.counter-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(2,44,94,.12);
}

.counter-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    color:#fff;
    font-size:30px;
    transition:.4s;
}

.counter-card:hover .counter-icon{
    background:linear-gradient(135deg,#2E8B57,#02D8E9);
    transform:rotateY(180deg);
}

.counter-card h2{
    font-size:46px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:10px;
}

.counter-card h5{
    font-size:20px;
    font-weight:600;
    color:#1B1B1B;
    margin-bottom:15px;
}

.counter-card p{
    color:#6B7280;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width:991px){

    .counter-section{
        padding:70px 0;
    }

    .counter-card{
        padding:30px 20px;
    }

    .counter-card h2{
        font-size:38px;
    }

}

@media (max-width:767px){

    .counter-section{
        padding:60px 0;
    }

    .counter-card{
        margin-bottom:20px;
    }

    .counter-card h2{
        font-size:34px;
    }

    .counter-card h5{
        font-size:18px;
    }

    .counter-icon{
        width:70px;
        height:70px;
        font-size:26px;
    }

}


/*=========================================
            OUR SERVICES
=========================================*/

.services-section{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
}

/*==============================
        SECTION TITLE
==============================*/

.section-title{
    margin-bottom:60px;
}

.section-title .sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2E8B57;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.section-title .sub-title i{
    color:#02D8E9;
}

.section-title h2{
    font-size:46px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:20px;
    line-height:1.3;
}

.section-title h2 span{
    color:#2E8B57;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    font-size:16px;
    line-height:1.8;
}

/*==============================
        SERVICE CARD
==============================*/

.service-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    border:1px solid #E5E7EB;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    transition:.4s ease;
    overflow:hidden;
    height:100%;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#022C5E,#02D8E9,#2E8B57);
    transform:scaleX(0);
    transition:.4s;
    transform-origin:left;
}

.service-card:hover::before,
.service-card.active::before{
    transform:scaleX(1);
}

.service-card:hover,
.service-card.active{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(2,44,94,.12);
}

/*==============================
        ICON
==============================*/

.service-icon{
    width:80px;
    height:80px;
    border-radius:18px;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    margin-bottom:30px;
    transition:.4s;
}

.service-card:hover .service-icon,
.service-card.active .service-icon{
    background:linear-gradient(135deg,#2E8B57,#02D8E9);
    transform:rotateY(180deg);
}

/*==============================
        CONTENT
==============================*/

.service-card h3{
    font-size:24px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:18px;
    line-height:1.4;
}

.service-card p{
    color:#6B7280;
    line-height:1.8;
    margin-bottom:25px;
}

/*==============================
        LIST
==============================*/

.service-list{
    list-style:none;
    margin:0 0 30px;
    padding:0;
}

.service-list li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
    color:#1B1B1B;
    font-weight:500;
}

.service-list i{
    color:#2E8B57;
    font-size:15px;
}

/*==============================
        BUTTON
==============================*/

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#022C5E;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.service-btn i{
    transition:.3s;
}

.service-btn:hover{
    color:#2E8B57;
}

.service-btn:hover i{
    transform:translateX(6px);
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px){

.services-section{
    padding:80px 0;
}

.section-title{
    margin-bottom:45px;
}

.section-title h2{
    font-size:38px;
}

.service-card{
    padding:35px 25px;
}

}

@media(max-width:767px){

.services-section{
    padding:60px 0;
}

.section-title h2{
    font-size:30px;
}

.section-title p{
    font-size:15px;
}

.service-card{
    padding:30px 22px;
}

.service-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.service-card h3{
    font-size:22px;
}

}
/*=========================================
        PRODUCT CATEGORIES
=========================================*/

.product-category-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

/*==============================
        SECTION TITLE
==============================*/

.product-category-section .section-title{
    margin-bottom:60px;
}

.product-category-section .sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2E8B57;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.product-category-section .sub-title i{
    color:#02D8E9;
}

.product-category-section .section-title h2{
    font-size:46px;
    font-weight:700;
    color:#022C5E;
    line-height:1.3;
    margin-bottom:20px;
}

.product-category-section .section-title h2 span{
    color:#2E8B57;
}

.product-category-section .section-title p{
    max-width:700px;
    margin:auto;
    color:#6B7280;
    line-height:1.8;
}

/*==============================
        CATEGORY CARD
==============================*/

.category-card{
    background:#ffffff;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.category-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#022C5E,#02D8E9,#2E8B57);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.category-card:hover::before{
    transform:scaleX(1);
}

.category-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(2,44,94,.12);
}

/*==============================
        ICON
==============================*/

.category-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    transition:.4s ease;
}

.category-card:hover .category-icon{
    background:linear-gradient(135deg,#2E8B57,#02D8E9);
    transform:rotateY(180deg);
}

/*==============================
        CONTENT
==============================*/

.category-card h4{
    font-size:22px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:15px;
}

.category-card p{
    color:#6B7280;
    line-height:1.8;
    font-size:15px;
    margin-bottom:0;
}

/*==============================
        BUTTON
==============================*/

.product-category-section .btn-primary-custom{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 34px;
    border-radius:8px;
    background:#022C5E;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

.product-category-section .btn-primary-custom:hover{
    background:#2E8B57;
    color:#fff;
}

.product-category-section .btn-primary-custom i{
    transition:.3s;
}

.product-category-section .btn-primary-custom:hover i{
    transform:translateX(6px);
}

/*==============================
        RESPONSIVE
==============================*/

@media (max-width:991px){

.product-category-section{
    padding:80px 0;
}

.product-category-section .section-title{
    margin-bottom:45px;
}

.product-category-section .section-title h2{
    font-size:38px;
}

.category-card{
    padding:30px 22px;
}

}

@media (max-width:767px){

.product-category-section{
    padding:60px 0;
}

.product-category-section .section-title h2{
    font-size:30px;
}

.product-category-section .section-title p{
    font-size:15px;
}

.category-icon{
    width:70px;
    height:70px;
    font-size:28px;
}

.category-card h4{
    font-size:20px;
}

}


/*=========================================
            WHY CHOOSE US
=========================================*/

.why-choose-section{
    padding:100px 0;
    background:#F8FAFC;
    position:relative;
}

/*==============================
        SECTION TITLE
==============================*/

.why-choose-section .section-title{
    margin-bottom:60px;
}

.why-choose-section .sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2E8B57;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.why-choose-section .sub-title i{
    color:#02D8E9;
}

.why-choose-section .section-title h2{
    font-size:46px;
    font-weight:700;
    color:#022C5E;
    line-height:1.3;
    margin-bottom:20px;
}

.why-choose-section .section-title h2 span{
    color:#2E8B57;
}

.why-choose-section .section-title p{
    max-width:720px;
    margin:auto;
    color:#6B7280;
    line-height:1.8;
    font-size:16px;
}

/*==============================
        CARD
==============================*/

.choose-card{
    position:relative;
    background:#FFFFFF;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.choose-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#022C5E,#02D8E9,#2E8B57);
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.choose-card:hover::before{
    transform:scaleX(1);
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(2,44,94,.12);
}

/*==============================
        ICON
==============================*/

.choose-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    color:#FFFFFF;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.4s ease;
}

.choose-card:hover .choose-icon{
    background:linear-gradient(135deg,#2E8B57,#02D8E9);
    transform:rotateY(180deg);
}

/*==============================
        CONTENT
==============================*/

.choose-card h4{
    font-size:24px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:18px;
}

.choose-card p{
    color:#6B7280;
    font-size:15px;
    line-height:1.9;
    margin-bottom:0;
}

/*==============================
        RESPONSIVE
==============================*/

@media (max-width:991px){

    .why-choose-section{
        padding:80px 0;
    }

    .why-choose-section .section-title{
        margin-bottom:45px;
    }

    .why-choose-section .section-title h2{
        font-size:38px;
    }

    .choose-card{
        padding:35px 25px;
    }

}

@media (max-width:767px){

    .why-choose-section{
        padding:60px 0;
    }

    .why-choose-section .section-title h2{
        font-size:30px;
    }

    .why-choose-section .section-title p{
        font-size:15px;
    }

    .choose-card{
        padding:30px 22px;
    }

    .choose-icon{
        width:70px;
        height:70px;
        font-size:28px;
    }

    .choose-card h4{
        font-size:21px;
    }

}

/*=========================================
        QUALITY COMMITMENT
=========================================*/

.quality-section{
    padding:100px 0;
    background:#ffffff;
    position:relative;
}

/*==============================
        IMAGE
==============================*/

.quality-image{
    position:relative;
    overflow:hidden;
    border-radius:20px;
}

.quality-image img{
    width:100%;
    border-radius:20px;
    transition:.5s ease;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.quality-image:hover img{
    transform:scale(1.05);
}

/*==============================
        SECTION TITLE
==============================*/

.quality-section .section-title{
    margin-bottom:30px;
}

.quality-section .sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2E8B57;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.quality-section .sub-title i{
    color:#02D8E9;
}

.quality-section .section-title h2{
    font-size:46px;
    font-weight:700;
    color:#022C5E;
    line-height:1.3;
    margin-bottom:20px;
}

.quality-section .section-title h2 span{
    color:#2E8B57;
}

.quality-section .section-title p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:30px;
}

/*==============================
        QUALITY LIST
==============================*/

.quality-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.quality-item{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:15px;
    padding:20px;
    transition:.35s ease;
}

.quality-item:hover{
    transform:translateX(8px);
    border-color:#02D8E9;
    box-shadow:0 15px 35px rgba(2,44,94,.08);
}

/*==============================
        ICON
==============================*/

.quality-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.35s ease;
}

.quality-item:hover .quality-icon{
    background:linear-gradient(135deg,#2E8B57,#02D8E9);
    transform:rotateY(180deg);
}

/*==============================
        CONTENT
==============================*/

.quality-item h5{
    font-size:20px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:8px;
}

.quality-item p{
    margin:0;
    color:#6B7280;
    line-height:1.7;
    font-size:15px;
}

/*==============================
        BUTTON
==============================*/

.quality-section .btn-primary-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    border-radius:8px;
    background:#022C5E;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.35s ease;
}

.quality-section .btn-primary-custom:hover{
    background:#2E8B57;
    color:#fff;
}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px){

    .quality-section{
        padding:80px 0;
    }

    .quality-section .section-title h2{
        font-size:38px;
    }

    .quality-image{
        margin-bottom:20px;
    }

}

@media(max-width:767px){

    .quality-section{
        padding:60px 0;
    }

    .quality-section .section-title{
        text-align:center;
    }

    .quality-section .section-title h2{
        font-size:30px;
    }

    .quality-item{
        flex-direction:column;
        text-align:center;
        align-items:center;
    }

    .quality-icon{
        margin-bottom:10px;
    }

    .quality-item h5{
        font-size:18px;
    }

    .quality-section .btn-primary-custom{
        width:100%;
    }

}

/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section{
    padding:100px 0;
    background:#F8FAFC;
}

/* Contact Info */

.contact-info .sub-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2E8B57;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
}

.contact-info .sub-title i{
    color:#02D8E9;
}

.contact-info h2{
    font-size:46px;
    font-weight:700;
    color:#022C5E;
    line-height:1.3;
    margin-bottom:20px;
}

.contact-info h2 span{
    color:#2E8B57;
}

.contact-info>p{
    color:#6B7280;
    line-height:1.9;
    margin-bottom:35px;
}

/* Contact Item */

.contact-item{
    display:flex;
    gap:18px;
    align-items:flex-start;
    margin-bottom:25px;
}

.contact-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.contact-item h5{
    color:#022C5E;
    font-weight:700;
    margin-bottom:6px;
}

.contact-item p,
.contact-item a{
    color:#6B7280;
    text-decoration:none;
}

.contact-item a:hover{
    color:#2E8B57;
}

/* Form */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-form .form-control{
    height:55px;
    border:1px solid #E5E7EB;
    border-radius:10px;
    padding:0 18px;
    box-shadow:none;
}

.contact-form textarea.form-control{
    height:auto;
    padding:15px 18px;
    resize:none;
}

.contact-form .form-control:focus{
    border-color:#02D8E9;
    box-shadow:0 0 0 .2rem rgba(22,159,230,.15);
}

.contact-form .btn-primary-custom{
    padding:15px 35px;
}

/* Responsive */

@media(max-width:991px){

.contact-section{
    padding:80px 0;
}

.contact-info h2{
    font-size:38px;
}

.contact-form{
    padding:30px;
}

}

@media(max-width:767px){

.contact-section{
    padding:60px 0;
}

.contact-info{
    text-align:center;
}

.contact-info h2{
    font-size:30px;
}

.contact-item{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.contact-form{
    padding:25px;
}

.contact-form .btn-primary-custom{
    width:100%;
}

}

/*=========================================
                FOOTER
=========================================*/

.footer-section{
    background:#022C5E;
    color:#ffffff;
    padding:80px 0 0;
}

.footer-logo{
    max-width:220px;
}

.footer-widget h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#ffffff;
    position:relative;
}

.footer-widget h4::after{
    content:"";
    width:50px;
    height:3px;
    background:#2E8B57;
    display:block;
    margin-top:10px;
}

.footer-widget p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

/* Links */

.footer-widget ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:15px;
}

.footer-widget ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#2E8B57;
    padding-left:8px;
}

/* Contact */

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    color:rgba(255,255,255,.75);
}

.footer-contact i{
    color:#2E8B57;
    margin-top:5px;
    width:18px;
}

/* Social */

.footer-social{
    margin-top:25px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#ffffff;
    margin-right:10px;
    transition:.3s;
}

.footer-social a:hover{
    background:#2E8B57;
    transform:translateY(-5px);
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:60px;
    padding:20px 0;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.70);
    font-size:15px;
/*	text-align: center;*/
}

.footer-bottom a{
    color:#2E8B57;
    text-decoration:none;
    font-weight:600;
}

.footer-bottom a:hover{
    color:#ffffff;
}

/* Responsive */

@media(max-width:991px){

.footer-section{
    padding-top:60px;
}

.footer-widget{
    margin-bottom:15px;
}

}

@media(max-width:767px){

.footer-bottom{
    text-align:center;
}

.footer-bottom .text-md-end{
    text-align:center !important;
    margin-top:10px;
}

.footer-logo{
    max-width:180px;
}

.footer-social{
    text-align:center;
}

}

/*
=========================================
            SCROLL TO TOP
=========================================
*/

.scroll-top{
    position:fixed;
    right:25px;
    bottom:25px;
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    z-index:9999;

    opacity:0;
    visibility:hidden;
    transform:translateY(20px);

    transition:all .35s ease;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-top:hover{
    background:linear-gradient(135deg,#2E8B57,#02D8E9);
    transform:translateY(-5px);
}

.scroll-top i{
    transition:.3s;
}

.scroll-top:hover i{
    transform:translateY(-3px);
}

@media(max-width:767px){

    .scroll-top{
        width:45px;
        height:45px;
        right:15px;
        bottom:15px;
        font-size:16px;
    }

}


/*=========================================
        FLOATING BUTTONS
=========================================*/

/* WhatsApp */

.whatsapp-btn{
    position:fixed;
    left:25px;
    bottom:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    z-index:9999;
    transition:.35s;
}

.whatsapp-btn:hover{
    transform:translateY(-6px);
    color:#fff;
    background:#1EBE5D;
}

/* Scroll Top */

.scroll-top{
    position:fixed;
    right:25px;
    bottom:20px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    color:#fff;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .35s ease;
    z-index:9999;
}

.scroll-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.scroll-top:hover{
    background:linear-gradient(135deg,#2E8B57,#02D8E9);
    transform:translateY(-5px);
}

/* Mobile */

@media(max-width:768px){

    .whatsapp-btn{
        width:55px;
        height:55px;
        right:15px;
        bottom:85px;
        font-size:28px;
    }

    .scroll-top{
        width:50px;
        height:50px;
        right:15px;
        bottom:20px;
        font-size:18px;
    }

}



/*=========================================
            404 PAGE
=========================================*/

.error-section{
        min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    /* background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%); */
    position: relative;
    overflow: hidden;
}

/* Background Shapes */

/*
.error-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(22,159,230,.08);
    top:-120px;
    left:-120px;
}

.error-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(74,147,48,.08);
    right:-100px;
    bottom:-100px;
}
*/

/* Card */

.error-content{
    background:#FFFFFF;
    padding:60px;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(2,44,94,.08);
    position:relative;
    z-index:2;
}

/* Image */

.error-image{
    margin-bottom:30px;
}

.error-image img{
    max-width:350px;
    width:100%;
    animation:float 3s ease-in-out infinite;
}

/* Error Number */

.error-content h1{
    font-size:120px;
    font-weight:800;
    color:#022C5E;
    line-height:1;
    margin-bottom:10px;
}

/* Heading */

.error-content h2{
    font-size:40px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:20px;
}

/* Description */

.error-content p{
    max-width:650px;
    margin:0 auto 35px;
    color:#6B7280;
    font-size:17px;
    line-height:1.9;
}

/* Buttons */

.error-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

/* Primary Button */

.btn-primary-custom{
    background:#022C5E;
    color:#FFFFFF;
    padding:14px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary-custom:hover{
    background:#2E8B57;
    color:#FFFFFF;
    transform:translateY(-3px);
}

/* Outline Button */

.btn-outline-custom{
        border: 2px solid #ffffff;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

.btn-outline-custom:hover{
    background:#022C5E;
    color:#FFFFFF;
}

/* Icons */

.error-buttons i{
    margin-right:8px;
}

/* Quick Links */

.quick-links h5{
    color:#022C5E;
    font-weight:700;
    margin-bottom:20px;
}

.quick-links ul{
    padding:0;
    margin:0;
    list-style:none;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
}

.quick-links li{
    margin:0;
}

.quick-links a{
    color:#6B7280;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.quick-links a:hover{
    color:#2E8B57;
}

/* Animation */

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }

}

/*==============================
        RESPONSIVE
==============================*/

@media(max-width:991px){

.error-content{
    padding:50px 35px;
}

.error-content h1{
    font-size:100px;
}

.error-content h2{
    font-size:34px;
}

.error-image img{
    max-width:280px;
}

}

@media(max-width:767px){

.error-section{
    padding:60px 15px;
}

.error-content{
    padding:35px 20px;
}

.error-content h1{
    font-size:72px;
}

.error-content h2{
    font-size:26px;
}

.error-content p{
    font-size:15px;
}

.error-buttons{
    flex-direction:column;
}

.btn-primary-custom,
.btn-outline-custom{
    width:100%;
}

.quick-links ul{
    flex-direction:column;
    gap:10px;
}

.error-image img{
    max-width:220px;
}

}


/*====================================
    ABOUT HERO SECTION
====================================*/

.about-hero{
    position:relative;
    padding:120px 0 90px;
    background:linear-gradient(135deg,#f5f9ff 0%,#eef5ff 100%);
    overflow:hidden;
}

.about-hero::before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:320px;
    height:320px;
    background:rgba(2,44,94,.05);
    border-radius:50%;
}

.about-hero::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:260px;
    height:260px;
    background:rgba(2,44,94,.04);
    border-radius:50%;
}

.min-vh-75{
    min-height:75vh;
}

.about-hero .container{
    position:relative;
    z-index:2;
}

/*==============================
    Breadcrumb
==============================*/

.breadcrumb-nav{
    margin-bottom:50px;
    font-size:15px;
    font-weight:500;
}

.breadcrumb-nav a{
    color:#022C5E;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-nav a:hover{
    color:#0d6efd;
}

.breadcrumb-nav span{
    color:#6c757d;
    margin:0 6px;
}

/*==============================
    Hero Content
==============================*/

.hero-content{
    max-width:650px;
}

.hero-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#022C5E;
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:54px;
    line-height:1.2;
    color:#022C5E;
    font-weight:700;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    color:#5d6c7c;
    line-height:1.8;
    margin-bottom:35px;
}

/*==============================
    Buttons
==============================*/

.hero-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.btn-primary{
    background:#022C5E;
    color:#fff;
    border:2px solid #022C5E;
}

.btn-primary:hover{
    background:#0b4d99;
    border-color:#0b4d99;
    color:#fff;
    transform:translateY(-3px);
}

.btn-outline{
    background:transparent;
    color:#022C5E;
    border:2px solid #022C5E;
}

.btn-outline:hover{
    background:#022C5E;
    color:#fff;
    transform:translateY(-3px);
}

/*==============================
    Hero Image
==============================*/

.hero-image{
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    transition:.4s;
}

.hero-image img:hover{
    transform:translateY(-8px);
}

/*==============================
    Responsive
==============================*/

@media (max-width:991px){

    .about-hero{
        padding:90px 0 70px;
        text-align:center;
    }

    .breadcrumb-nav{
        text-align:center;
    }

    .hero-content{
        margin:0 auto 50px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-image img{
        max-width:420px;
    }

}

@media (max-width:767px){

    .about-hero{
        padding:70px 0 60px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btns{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-outline{
        width:100%;
        max-width:260px;
    }

    .hero-image img{
        max-width:100%;
    }

}
/*====================================
    COMPANY OVERVIEW
====================================*/

.section-padding{
    padding:100px 0;
}

.company-overview{
    background:#fff;
}

.overview-image img{
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    max-height: 850px;
    animation: float 5s ease-in-out infinite;
    object-fit: cover;
    object-position: top center;
}

.section-subtitle{
    display:inline-block;
    color:#022C5E;
    background:#eaf3ff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.overview-content h2{
    font-size:42px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:20px;
}

.overview-content p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
	text-align: justify;
}

.overview-counter{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.counter-box{
    flex:1;
    min-width:150px;
    background:#f8fbff;
    border:1px solid #e8eef7;
    border-radius:15px;
    text-align:center;
    padding:30px 20px;
    transition:.3s;
}

.counter-box:hover{
    background:#022C5E;
    transform:translateY(-8px);
}

.counter-box h3{
    font-size:34px;
    color:#022C5E;
    margin-bottom:8px;
    font-weight:700;
    transition:.3s;
}

.counter-box span{
    color:#666;
    font-weight:500;
    transition:.3s;
}

.counter-box:hover h3,
.counter-box:hover span{
    color:#fff;
}

@media(max-width:991px){

    .overview-content{
        margin-top:40px;
    }

    .overview-content h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .section-padding{
        padding:70px 0;
    }

    .overview-content h2{
        font-size:28px;
    }

    .overview-counter{
        flex-direction:column;
    }

}

/*====================================
        WHO WE ARE
====================================*/

.who-we-are{
    background:#f8fbff;
}

.who-image img{
    width:100%;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
}

.who-content h2{
    font-size:42px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:20px;
}

.who-content p{
    font-size:17px;
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.who-features{
    margin-top:35px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    background:#fff;
    padding:18px 22px;
    border-radius:12px;
    margin-bottom:15px;
    border-left:4px solid #022C5E;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.feature-item:hover{
    transform:translateX(8px);
}

.feature-item i{
    color:#022C5E;
    font-size:22px;
}

.feature-item span{
    color:#333;
    font-size:16px;
    font-weight:600;
}

@media(max-width:991px){

    .who-content{
        margin-top:40px;
    }

    .who-content h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .who-content h2{
        font-size:28px;
    }

    .feature-item{
        padding:15px 18px;
    }

}


/*====================================
    VISION • MISSION • VALUES
====================================*/

.vision-mission{
    background:#fff;
}

.section-title{
    max-width:750px;
    margin:0 auto 30px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#022C5E;
    margin:15px 0 20px;
}

.section-title p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.vm-card{
    height:100%;
    background:#fff;
    border:1px solid #e8eef7;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    transition:.35s;
}

.vm-card:hover{
    transform:translateY(-10px);
    border-color:#022C5E;
    box-shadow:0 20px 45px rgba(2,44,94,.15);
}

.vm-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.vm-card:hover .vm-icon{
    background:#022C5E;
}

.vm-icon i{
    font-size:34px;
    color:#022C5E;
    transition:.35s;
}

.vm-card:hover .vm-icon i{
    color:#fff;
}

.vm-card h3{
    color:#022C5E;
    font-size:26px;
    font-weight:700;
    margin-bottom:18px;
}

.vm-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
    margin:0;
}

.values-list{
    list-style:none;
    padding:0;
    margin:0;
	    text-align: left;
    margin: 0 75px auto;
}

.values-list li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
    font-weight:500;
}

.values-list li:last-child{
    border-bottom:none;
}

.values-list li::before{
    content:"✔";
    color:#022C5E;
    font-weight:bold;
    margin-right:10px;
}

@media(max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .vm-card{
        margin-bottom:20px;
    }

}

@media(max-width:767px){

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:16px;
    }

    .vm-card{
        padding:30px 20px;
    }

}

/*====================================
        WHY CHOOSE US
====================================*/

.why-choose{
    background:#f8fbff;
}

.choose-card{
    height:100%;
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    border:1px solid #e7edf6;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(2,44,94,.15);
    border-color:#022C5E;
}

.choose-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.choose-card:hover .choose-icon{
    background:#022C5E;
}

.choose-icon i{
    font-size:32px;
    color:#022C5E;
    transition:.35s;
}

.choose-card:hover .choose-icon i{
    color:#fff;
}

.choose-card h4{
    font-size:24px;
    color:#022C5E;
    font-weight:700;
    margin-bottom:15px;
}

.choose-card p{
    color:#666;
    line-height:1.8;
    margin:0;
    font-size:16px;
}

@media(max-width:991px){

    .choose-card{
        padding:30px 25px;
    }

}

@media(max-width:767px){

    .choose-card{
        padding:28px 20px;
    }

    .choose-card h4{
        font-size:21px;
    }

    .choose-icon{
        width:70px;
        height:70px;
    }

    .choose-icon i{
        font-size:28px;
    }

}

/*====================================
        TESTIMONIALS
====================================*/

.testimonials{
    background:#ffffff;
}

.testimonial-card{
    height:100%;
    background:#fff;
    padding:35px 30px;
    border-radius:18px;
    border:1px solid #e8eef7;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(2,44,94,.15);
}

.quote-icon{
    width:60px;
    height:60px;
    background:#022C5E;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.quote-icon i{
    font-size:24px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
    margin-bottom:30px;
}

.client-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.client-info img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

.client-info h5{
    margin:0;
    color:#022C5E;
    font-size:18px;
    font-weight:700;
}

.client-info span{
    color:#777;
    font-size:14px;
}

@media(max-width:991px){

    .testimonial-card{
        margin-bottom:20px;
    }

}

@media(max-width:767px){

    .testimonial-card{
        padding:30px 22px;
    }

    .client-info img{
        width:55px;
        height:55px;
    }

}

.carousel-control-prev,
.carousel-control-next{
    width:50px;
    height:50px;
    background:#022C5E;
    border-radius:50%;
    top:45%;
    opacity:1;
}

.carousel-control-prev{
    left:25px;
}

.carousel-control-next{
    right:25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover{
    background:#0d6efd;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:18px;
    height:18px;
}

@media(max-width:991px){

    .carousel-control-prev{
        left:0;
    }

    .carousel-control-next{
        right:0;
    }

}

/*====================================
        OUR TEAM
====================================*/

.our-team{
    background:#f8fbff;
}

.team-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(2,44,94,.15);
}

.team-image{
    position:relative;
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.4s;
}

.team-card:hover .team-image img{
    transform:scale(1.08);
}

.team-social{
    position:absolute;
    left:50%;
    bottom:-60px;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    transition:.35s;
}

.team-card:hover .team-social{
    bottom:20px;
}

.team-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#022C5E;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.team-social a:hover{
    background:#0d6efd;
}

.team-content{
    padding:25px 20px;
}

.team-content h4{
    color:#022C5E;
    font-size:22px;
    font-weight:700;
    margin-bottom:8px;
}

.team-content span{
    color:#666;
    font-size:15px;
}

@media(max-width:991px){

    .team-image img{
        height:300px;
    }

}

@media(max-width:767px){

    .team-image img{
        height:280px;
    }

}


/*====================================
        BRAND PARTNERS
====================================*/

.brand-partners{
    background:#fff;
    overflow:hidden;
}

.brand-slider{
    margin-top:50px;
    overflow:hidden;
    position:relative;
}

.brand-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:brandScroll 28s linear infinite;
}

.brand-slider:hover .brand-track{
    animation-play-state:paused;
}

.brand-item{
    width:220px;
    height:120px;
    margin:0 15px;
    background:#fff;
    border:1px solid #edf2f8;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.brand-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(2,44,94,.12);
}

.brand-item img{
    max-width:140px;
    max-height:70px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.75;
    transition:.35s;
}

.brand-item:hover img{
    filter:none;
    opacity:1;
}

@keyframes brandScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media(max-width:991px){

    .brand-item{
        width:180px;
        height:100px;
    }

    .brand-item img{
        max-width:120px;
    }

}

@media(max-width:767px){

    .brand-item{
        width:150px;
        height:90px;
        margin:0 10px;
    }

    .brand-item img{
        max-width:100px;
    }

}

/*====================================
        SERVICE DETAILS
====================================*/

.service-details{
    padding:100px 0;
    background:#fff;
}

.service-image{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.service-image img{
    width:100%;
    display:block;
    transition:.5s ease;
	max-height: 650px;
/*    animation: float 5s ease-in-out infinite;*/
    object-fit: cover;
    object-position: top center;
}

.service-image:hover img{
    transform:scale(1.05);
}

.service-content{
    padding-left:20px;
}

.section-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4ff;
    color:#022C5E;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.service-content h2{
    font-size:42px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:25px;
    line-height:1.3;
}

.service-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin:0;
	text-align: justify;
}


/*====================================
        NEXT SERVICE
====================================*/

.next-service{
    padding:0 0 100px;
    background:#fff;
}

.next-service-card{
    background:linear-gradient(135deg,#022C5E,#0d6efd);
    border-radius:20px;
    padding:45px 50px;
    color:#fff;
    overflow:hidden;
    position:relative;
}

.next-service-card::before{
    content:"";
    position:absolute;
    right:-80px;
    top:-80px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.next-service-card span{
    display:inline-block;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    opacity:.85;
    margin-bottom:10px;
}

.next-service-card h3{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
    color:#fff;
}

.next-service-card p{
    font-size:16px;
    line-height:1.8;
    color:rgba(255,255,255,.9);
    margin-bottom:0;
	text-align: justify;
}

.next-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:#fff;
    color:#022C5E;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    transition:.35s;
    margin-top:20px;
}

.next-btn:hover{
    background:#022C5E;
    color:#fff;
    transform:translateY(-4px);
    border:1px solid rgba(255,255,255,.3);
}


/*====================================
        RESPONSIVE
====================================*/

@media(max-width:991px){

    .service-details{
        padding:80px 0;
    }

    .service-content{
        padding-left:0;
        margin-top:35px;
    }

    .service-content h2{
        font-size:34px;
    }

    .next-service{
        padding-bottom:80px;
    }

    .next-service-card{
        padding:40px 30px;
        text-align:center;
    }

    .text-lg-end{
        text-align:center !important;
    }

}

@media(max-width:767px){

    .service-details{
        padding:70px 0;
    }

    .service-content h2{
        font-size:28px;
    }

    .service-content p{
        font-size:16px;
    }

    .next-service-card{
        padding:30px 25px;
    }

    .next-service-card h3{
        font-size:24px;
    }

    .next-btn{
        width:100%;
    }

}

/*====================================
        PAGE BANNER / BREADCRUMB
====================================*/

.page-banner{
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(rgba(2,44,94,.88), rgba(2,44,94,.88)),
                url("../images/breadcrumb.jpg") center center/cover no-repeat;
    overflow: hidden;
}

.page-banner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right,
                rgba(255,255,255,.08),
                transparent 45%);
}

.page-banner .container{
    position: relative;
    z-index: 2;
}

.page-subtitle{
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.page-banner h1{
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 18px;
}

.page-banner .breadcrumb{
    justify-content: center;
    background: transparent;
    margin: 0;
    padding: 0;
}

.page-banner .breadcrumb-item{
    font-size: 15px;
    color: rgba(255,255,255,.75);
}

.page-banner .breadcrumb-item a{
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.page-banner .breadcrumb-item a:hover{
    color: #8fd3ff;
}

.page-banner .breadcrumb-item + .breadcrumb-item::before{
    color: rgba(255,255,255,.5);
}

.page-banner .breadcrumb-item.active{
    color: #8fd3ff;
}


/*====================================
        RESPONSIVE
====================================*/

@media (max-width:991px){

    .page-banner{
        padding: 110px 0 80px;
    }

    .page-banner h1{
        font-size: 40px;
    }

}

@media (max-width:767px){

    .page-banner{
        padding: 90px 0 70px;
    }

    .page-banner h1{
        font-size: 30px;
        line-height: 1.3;
    }

    .page-subtitle{
        font-size: 13px;
        padding: 7px 16px;
    }

    .page-banner .breadcrumb-item{
        font-size: 14px;
    }

}

/*====================================
    ADDITIONAL DESCRIPTION
====================================*/

.service-description{
    padding:90px 0;
    background:#f8fbff;
}

.service-description .section-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#e8f2ff;
    color:#022C5E;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.service-description h2{
    color:#022C5E;
    font-size:40px;
    font-weight:700;
    margin-bottom:25px;
}

.service-description p{
    color: #666;
    font-size: 17px;
    line-height: 2;
    /* max-width: 900px; */
    margin: 0 auto;
    text-align: justify;
}

@media(max-width:991px){

    .service-description{
        padding:70px 0;
    }

    .service-description h2{
        font-size:32px;
    }

}

@media(max-width:767px){

    .service-description{
        padding:60px 0;
    }

    .service-description h2{
        font-size:28px;
    }

    .service-description p{
        font-size:16px;
        line-height:1.9;
    }

}

/*====================================
        SERVICE HIGHLIGHTS
====================================*/

.service-highlights{
    padding:90px 0;
    background:#fff;
}

.highlight-card{
    height:100%;
    background:#fff;
    border:1px solid #e8eef7;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.highlight-card:hover{
    transform:translateY(-10px);
    border-color:#022C5E;
    box-shadow:0 20px 45px rgba(2,44,94,.15);
}

.highlight-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.highlight-card:hover .highlight-icon{
    background:#022C5E;
}

.highlight-icon i{
    font-size:34px;
    color:#022C5E;
    transition:.35s;
}

.highlight-card:hover .highlight-icon i{
    color:#fff;
}

.highlight-card h4{
    font-size:24px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:15px;
}

.highlight-card p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin:0;
}

@media(max-width:991px){

    .service-highlights{
        padding:70px 0;
    }

    .highlight-card{
        padding:35px 25px;
    }

}

@media(max-width:767px){

    .service-highlights{
        padding:60px 0;
    }

    .highlight-card{
        padding:30px 22px;
    }

    .highlight-card h4{
        font-size:21px;
    }

    .highlight-icon{
        width:70px;
        height:70px;
    }

    .highlight-icon i{
        font-size:28px;
    }

}

/*==================================
        SERVICE NAVIGATION
==================================*/

.service-navigation{
    padding:80px 0;
    background:#fff;
}

.service-nav{
    position:relative;
    display:block;
    padding:45px 45px;
    min-height:210px;
    border-radius:22px;
    text-decoration:none;
    color:#fff;
    overflow:hidden;
    background:linear-gradient(135deg,#163f7d,#1f6dea);
    transition:.35s;
}

.service-nav:hover{
    transform:translateY(-6px);
    color:#fff;
}

.service-nav::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-70px;
}

.service-nav::after{
    content:"";
    position:absolute;
    width:110px;
    height:110px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    bottom:-40px;
}

/* Previous */

.service-nav.previous{
    text-align:left;
}

.service-nav.previous::before{
    left:-70px;
}

.service-nav.previous::after{
    left:80px;
}

/* Next */

.service-nav.next{
    text-align:right;
}

.service-nav.next::before{
    right:-70px;
}

.service-nav.next::after{
    right:80px;
}

.service-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:1px;
    opacity:.9;
    margin-bottom:18px;
}

.service-nav h3{
    font-size:34px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.service-nav p{
    color:rgba(255,255,255,.92);
    line-height:1.8;
    margin:0;
    max-width:450px;
}

.service-nav.next p{
    margin-left:auto;
}

@media(max-width:991px){

    .service-nav{
        min-height:auto;
        padding:35px;
    }

    .service-nav,
    .service-nav.next{
        text-align:left;
    }

    .service-nav.next p{
        margin-left:0;
    }

    .service-nav.next::before{
        left:-70px;
        right:auto;
    }

    .service-nav.next::after{
        left:80px;
        right:auto;
    }

}

@media(max-width:767px){

    .service-nav h3{
        font-size:26px;
    }

    .service-nav{
        padding:30px;
    }

}

/*====================================
        PRODUCT INTRO
====================================*/

.product-intro{
    padding:90px 0;
    background:#fff;
}

.product-intro .section-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#eaf4ff;
    color:#022C5E;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.product-intro h2{
    font-size:42px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:25px;
    line-height:1.3;
}

.product-intro p{
    max-width:900px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:2;
}

@media(max-width:991px){

    .product-intro{
        padding:70px 0;
    }

    .product-intro h2{
        font-size:34px;
    }

}

@media(max-width:767px){

    .product-intro{
        padding:60px 0;
    }

    .product-intro h2{
        font-size:28px;
    }

    .product-intro p{
        font-size:16px;
        line-height:1.9;
    }

}

/*====================================
        PRODUCT LIST
====================================*/

.product-list{
    padding:90px 0;
    background:#f8fbff;
}

.product-card{
    background:#fff;
    border:1px solid #e7edf5;
    border-radius:18px;
    padding:35px 40px;
    margin-bottom:25px;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.product-card:hover{
    transform:translateY(-6px);
    border-color:#022C5E;
    box-shadow:0 18px 40px rgba(2,44,94,.12);
}

.product-card h4{
    font-size:28px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:15px;
}

.product-card p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.product-actions{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.product-actions a{
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

/* WhatsApp */

.btn-whatsapp{
    background:#25D366;
    color:#fff;
    padding:12px 22px;
}

.btn-whatsapp:hover{
    background:#1da851;
    color:#fff;
}

/* Email */

.btn-email{
    background:#022C5E;
    color:#fff;
    padding:12px 22px;
}

.btn-email:hover{
    background:#0d6efd;
    color:#fff;
}

/* Request Quote */

.btn-request{
    background:#fff;
    color:#022C5E;
    border:2px solid #022C5E;
    padding:10px 22px;
}

.btn-request:hover{
    background:#022C5E;
    color:#fff;
}

.product-actions i{
    margin-right:8px;
}


/*====================================
        RESPONSIVE
====================================*/

@media(max-width:991px){

    .product-list{
        padding:70px 0;
    }

    .product-card{
        padding:30px;
    }

    .product-card h4{
        font-size:24px;
    }

    .product-actions{
        justify-content:flex-start;
        margin-top:25px;
    }

}

@media(max-width:767px){

    .product-list{
        padding:60px 0;
    }

    .product-card{
        padding:25px;
    }

    .product-card h4{
        font-size:22px;
    }

    .product-card p{
        font-size:15px;
    }

    .product-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .product-actions a{
        width:100%;
        text-align:center;
        justify-content:center;
    }

}


/*====================================
        INDUSTRIES WE SERVE
====================================*/

.industries{
    padding:90px 0;
    background:#fff;
}

.industry-card{
    height:100%;
    padding:40px 30px;
    text-align:center;
    background:#fff;
    border:1px solid #e8eef7;
    border-radius:20px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.industry-card:hover{
    transform:translateY(-8px);
    border-color:#022C5E;
    box-shadow:0 18px 40px rgba(2,44,94,.12);
}

.industry-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.industry-icon i{
    font-size:34px;
    color:#022C5E;
    transition:.35s;
}

.industry-card:hover .industry-icon{
    background:#022C5E;
}

.industry-card:hover .industry-icon i{
    color:#fff;
}

.industry-card h4{
    font-size:22px;
    font-weight:700;
    color:#022C5E;
    margin-bottom:15px;
}

.industry-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .industries{
        padding:70px 0;
    }

    .industry-card{
        padding:35px 25px;
    }

}

@media(max-width:767px){

    .industries{
        padding:60px 0;
    }

    .industry-card{
        padding:30px 22px;
    }

    .industry-icon{
        width:70px;
        height:70px;
    }

    .industry-icon i{
        font-size:28px;
    }

    .industry-card h4{
        font-size:20px;
    }

}


/*====================================
        CALL TO ACTION
====================================*/

.cta-section{
    padding:90px 0;
    background:#f8fbff;
}

.cta-wrapper{
    position:relative;
    overflow:hidden;
    padding:60px;
    border-radius:24px;
    background:linear-gradient(135deg,#022C5E,#0A5CC2);
    color:#fff;
}

.cta-wrapper::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-80px;
    right:-80px;
}

.cta-wrapper::after{
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    bottom:-40px;
    left:-40px;
}

.cta-wrapper>*{
    position:relative;
    z-index:2;
}

.cta-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.cta-wrapper h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
    color:#fff;
}

.cta-wrapper p{
    font-size:17px;
    line-height:1.9;
    color:rgba(255,255,255,.9);
    margin:0;
}

.cta-buttons{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.cta-btn.primary{
    background:#fff;
    color:#022C5E;
}

.cta-btn.primary:hover{
    transform:translateY(-4px);
}

.cta-btn.secondary{
    background:transparent;
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
}

.cta-btn.secondary:hover{
    background:#fff;
    color:#022C5E;
}

.cta-btn.whatsapp{
    background:#25D366;
    color:#fff;
}

.cta-btn.whatsapp:hover{
    background:#1DA851;
    color:#fff;
    transform:translateY(-4px);
}

@media(max-width:991px){

    .cta-section{
        padding:70px 0;
    }

    .cta-wrapper{
        padding:40px 30px;
        text-align:center;
    }

    .cta-wrapper h2{
        font-size:34px;
    }

    .cta-buttons{
        margin-top:35px;
    }

}

@media(max-width:767px){

    .cta-section{
        padding:60px 0;
    }

    .cta-wrapper{
        padding:30px 25px;
    }

    .cta-wrapper h2{
        font-size:28px;
    }

    .cta-wrapper p{
        font-size:16px;
    }

}


.product-card{
    height:100%;
    display:flex;
    flex-direction:column;
}

.product-top{
    margin-bottom:20px;
}

.product-info{
    flex:1;
}

.product-actions{
    margin-top:auto;
}


/*=========================================
        PRODUCT CARD
=========================================*/

.product-card{
    height:100%;
    background:#fff;
    border-radius:20px;
    padding:25px;
    border:1px solid #E6EEF6;
    box-shadow:0 10px 30px rgba(2,44,94,.06);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
    position:relative;
    overflow:hidden;
}

.product-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#02D8E9,#2E8B57);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(2,44,94,.12);
}

/* Product ID */

.product-id{
    display:inline-block;
    padding:6px 14px;
    border-radius:50px;
    background:#EAF6FD;
    color:#02D8E9;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

/* Product Name */

.product-card h4{
    color:#022C5E;
    font-size:26px;
    font-weight:700;
/*
    margin-bottom:20px;
    min-height:65px;
*/
}

/* Product Info */

.product-info{
    list-style:none;
    padding:0;
    margin:0;
    flex:1;
}

.product-info li{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    padding:10px 0;
    border-bottom:1px dashed #E5E7EB;
    font-size:15px;
}

.product-info li:last-child{
    border:none;
}

.product-info strong{
    color:#022C5E;
    font-weight:600;
    margin-right:10px;
}

/* Availability */

.availability{
    background:#DCFCE7;
    color:#15803D;
    padding:4px 12px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

/*=========================================
        BUTTONS
=========================================*/

.product-actions{
    display:flex;
    gap:10px;
    margin-top:25px;
}

.product-actions a{
    flex:1;
    height:44px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.product-actions i{
    margin-right:6px;
}

/* WhatsApp */

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#20bd5a;
    color:#fff;
}

/* Email */

.btn-email{
    background:#022C5E;
    color:#fff;
}

.btn-email:hover{
    background:#02D8E9;
    color:#fff;
}

/* Quote */

.btn-request{
    border:2px solid #022C5E;
    color:#022C5E;
    background:#fff;
}

.btn-request:hover{
    background:#022C5E;
    color:#fff;
}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:991px){

.product-card h4{
    font-size:22px;
}

.product-actions{
    flex-direction:column;
}

.product-actions a{
    width:100%;
}

}
/*=========================================
        PAGE BANNER
=========================================*/

.page-banner{
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #022c5ecc 0%, #02d8e9b8 100%), url(../images/BG/breadcrumb.jpg) center center / cover no-repeat;
    overflow: hidden;
    text-align: center;
}

.page-banner::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.page-banner::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(74,147,48,.10);
    border-radius:50%;
    right:-80px;
    bottom:-80px;
}

.page-banner .container{
    position:relative;
    z-index:2;
}

.page-banner h1{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:20px;
}

.page-banner p{
    max-width: max-content;
    margin: auto;
    color: rgba(255, 255, 255, .90);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.breadcrumb{
    margin:0;
    background:transparent;
}

.breadcrumb-item{
    font-size:15px;
    font-weight:500;
}

.breadcrumb-item a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb-item a:hover{
    color:#2E8B57;
}

.breadcrumb-item.active{
    color:#D6EAF8;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#ffffff;
}

/* Responsive */

@media(max-width:991px){

.page-banner{
    padding:120px 0 80px;
}

.page-banner h1{
    font-size:38px;
}

.page-banner p{
    font-size:16px;
}

}

@media(max-width:576px){

.page-banner{
    padding:100px 0 60px;
}

.page-banner h1{
    font-size:30px;
}

.page-banner p{
    font-size:15px;
}

}

/*=========================================
        CONTACT INTRO
=========================================*/

.contact-intro{
    padding:90px 0 40px;
    background:#ffffff;
}

.contact-intro .section-title span{
    display:inline-block;
    color:#02D8E9;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.contact-intro .section-title h2{
    color:#022C5E;
    font-size:42px;
    font-weight:700;
    margin-bottom:20px;
}

.contact-intro .section-title p{
    color:#6B7280;
    font-size:17px;
    line-height:1.9;
    max-width:100%;
    margin:auto;
}
.contact-intro .section-title {
    max-width: fit-content;
}

/* Responsive */

@media(max-width:991px){

.contact-intro .section-title h2{
    font-size:34px;
}

}

@media(max-width:576px){

.contact-intro{
    padding:70px 0 30px;
}

.contact-intro .section-title h2{
    font-size:28px;
}

.contact-intro .section-title p{
    font-size:15px;
}

}

/*=========================================
        CONTACT INFORMATION
=========================================*/

.contact-info{
    padding:40px 0 90px;
    background:#fff;
}

.contact-card{
    height:100%;
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #E8EEF5;
    box-shadow:0 12px 35px rgba(2,44,94,.06);
    transition:.35s;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(2,44,94,.12);
}

.contact-icon{
    width:75px;
    height:75px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#022C5E,#02D8E9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.contact-card h4{
    color:#022C5E;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-card p{
    color:#6B7280;
    margin-bottom:8px;
    line-height:1.8;
}

.contact-card a{
    color:#02D8E9;
    text-decoration:none;
    transition:.3s;
}

.contact-card a:hover{
    color:#2E8B57;
}

@media(max-width:991px){

.contact-card{
    padding:30px 20px;
}

}

@media(max-width:576px){

.contact-info{
    padding:30px 0 70px;
}

.contact-card{
    padding:25px 20px;
}

.contact-icon{
    width:65px;
    height:65px;
    font-size:24px;
}

.contact-card h4{
    font-size:20px;
}

}

/*=========================================
        CONTACT FORM
=========================================*/

.contact-form-section{
    padding:90px 0;
    background:#F8FBFE;
}

.contact-form-card,
.map-card{
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 45px rgba(2,44,94,.08);
    height:100%;
}

.contact-form-card span{
    color:#02D8E9;
    font-weight:600;
    text-transform:uppercase;
}

.contact-form-card h2{
    color:#022C5E;
    font-size:38px;
    font-weight:700;
    margin:15px 0;
}

.contact-form-card p{
    color:#6B7280;
    margin-bottom:25px;
}

.form-control,
.form-select{

    height:55px;

    border-radius:10px;

    border:1px solid #D9E5F2;

    padding:12px 18px;

    box-shadow:none;

}

textarea.form-control{

    height:auto;

}

.form-control:focus,
.form-select:focus{

    border-color:#02D8E9;

    box-shadow:none;

}

.submit-btn{

    background:#022C5E;

    color:#fff;

    padding:14px 35px;

    border-radius:10px;

    transition:.3s;

}

.submit-btn:hover{

    background:#02D8E9;

    color:#fff;

}

.map-card h3{

    color:#022C5E;

    font-weight:700;

    margin-bottom:15px;

}

.map-card p{

    color:#6B7280;

    margin-bottom:25px;

}

.map-box{

    border-radius:15px;

    overflow:hidden;

}

.map-box iframe{

    width:100%;

    height:520px;

    border:0;

}

/* Responsive */

@media(max-width:991px){

.contact-form-card,
.map-card{

    padding:30px;

}

.contact-form-card h2{

    font-size:30px;

}

.map-box iframe{

    height:400px;

}

}

@media(max-width:576px){

.contact-form-section{

    padding:70px 0;

}

.contact-form-card,
.map-card{

    padding:25px;

}

.contact-form-card h2{

    font-size:26px;

}

.map-box iframe{

    height:300px;

}

.submit-btn{

    width:100%;

}

}

/*=========================================
            FAQ SECTION
=========================================*/

.faq-section{
    padding:90px 0;
    background:#ffffff;
}

.faq-section .section-title span{
    color:#02D8E9;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.faq-section .section-title h2{
    color:#022C5E;
    font-size:42px;
    font-weight:700;
    margin:15px 0;
}

.faq-section .section-title p{
    color:#6B7280;
    max-width:720px;
    margin:auto;
}

.accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:15px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(2,44,94,.06);
}

.accordion-button{
    background:#ffffff;
    color:#022C5E;
    font-weight:600;
    font-size:18px;
    padding:22px 25px;
    box-shadow:none !important;
}

.accordion-button:not(.collapsed){
    background:#022C5E;
    color:#ffffff;
}

.accordion-button:focus{
    box-shadow:none;
}

.accordion-body{
    padding:25px;
    color:#6B7280;
    line-height:1.8;
    background:#F8FBFE;
}

@media(max-width:768px){

.faq-section{
    padding:70px 0;
}

.faq-section .section-title h2{
    font-size:30px;
}

.accordion-button{
    font-size:16px;
    padding:18px;
}

}


/*=========================================
        UNDER CONSTRUCTION
=========================================*/

.construction-section{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
/*    padding:100px 0;*/
    background:linear-gradient(135deg,#022C5E 0%,#02D8E9 100%);
    overflow:hidden;
}

/*=========================================
        BACKGROUND SHAPES
=========================================*/

.construction-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-180px;
    left:-180px;
}

.construction-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(74,147,48,.12);
    border-radius:50%;
    right:-120px;
    bottom:-120px;
}

/*=========================================
        CONTENT
=========================================*/

.construction-content{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:60px 50px;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

/*=========================================
        ICON
=========================================*/

.construction-icon{
    width:110px;
    height:110px;
    margin:0 auto 30px;
    border-radius:50%;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#02D8E9;
    font-size:45px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/*=========================================
        TAG
=========================================*/

.construction-tag{
    display:inline-block;
    background:#2E8B57;
    color:#fff;
    padding:8px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:25px;
}

/*=========================================
        HEADING
=========================================*/

.construction-content h1{
    color:#fff;
    font-size:58px;
    font-weight:700;
    margin-bottom:20px;
}

/*=========================================
        PARAGRAPH
=========================================*/

.construction-content p{
    color:rgba(255,255,255,.90);
    font-size:18px;
    line-height:1.9;
    max-width:720px;
    margin:0 auto 35px;
}

/*=========================================
        BUTTONS
=========================================*/

.construction-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:40px;
}

.btn-home,
.btn-contact{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;

}

.btn-home{

    background:#ffffff;
    color:#022C5E;

}

.btn-home:hover{

    background:#2E8B57;
    color:#ffffff;
    transform:translateY(-4px);

}

.btn-contact{

    background:transparent;
    color:#ffffff;
    border:2px solid #ffffff;

}

.btn-contact:hover{

    background:#ffffff;
    color:#022C5E;
    transform:translateY(-4px);

}

/*=========================================
        CONTACT INFO
=========================================*/

.construction-contact{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;

}

.construction-contact p{

    margin:0;
    font-size:16px;

}

.construction-contact a{

    color:#ffffff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;

}

.construction-contact a:hover{

    color:#A8E063;

}

.construction-contact span{

    color:rgba(255,255,255,.45);

}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.construction-content{

    padding:50px 35px;

}

.construction-content h1{

    font-size:46px;

}

.construction-content p{

    font-size:17px;

}

}

@media(max-width:767px){

.construction-section{

    padding:60px 15px;

}

.construction-content{

    padding:40px 25px;

}

.construction-icon{

    width:90px;
    height:90px;
    font-size:36px;

}

.construction-content h1{

    font-size:34px;

}

.construction-content p{

    font-size:15px;

}

.construction-buttons{

    flex-direction:column;

}

.btn-home,
.btn-contact{

    width:100%;

}

.construction-contact{

    flex-direction:column;
    gap:10px;

}

.construction-contact span{

    display:none;

}

}


/*=========================================
        POLICY PAGES
=========================================*/

.policy-section{
    padding:80px 0;
    background:#fff;
}

.policy-content{

    max-width:900px;
    margin:auto;

}

.policy-content h2{

    color:#022C5E;
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;

}

.policy-content h3{

    color:#022C5E;
    font-size:24px;
    font-weight:600;
    margin-top:35px;
    margin-bottom:15px;

}

.policy-content p{

    color:#5F6F81;
    line-height:1.9;
    margin-bottom:18px;

}

.policy-content ul{

    padding-left:22px;
    margin-bottom:25px;

}

.policy-content ul li{

    color:#5F6F81;
    margin-bottom:10px;
    line-height:1.8;

}

.policy-update{

    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #E6ECF3;
    color:#6B7280;
    font-size:15px;

}

@media(max-width:768px){

.policy-section{

    padding:60px 0;

}

.policy-content h2{

    font-size:30px;

}

.policy-content h3{

    font-size:22px;

}

}

.btn.quote-btn{
	display: none;
}


.footer-bottom{
    padding:18px 0;
    border-top:1px solid rgba(255,255,255,.15);
}

.footer-bottom p{
    margin:0;
    color:#d9d9d9;
    font-size:15px;
}

.footer-bottom p a{
    color:#ffffff;
    font-weight:600;
    text-decoration:none;
}

.footer-bottom p a:hover{
    color:var(--primary-green);
}

.footer-bottom-links{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:22px;
}

.footer-bottom-links li{
    position:relative;
}

.footer-bottom-links li:not(:last-child)::after{
    content:"|";
    position:absolute;
    right:-13px;
    color:rgba(255,255,255,.35);
}

.footer-bottom-links a{
    color:#d9d9d9;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.footer-bottom-links a:hover{
    color:var(--primary-green);
}

@media(max-width:991px){

    .footer-bottom{
        text-align:center;
    }

    .footer-bottom-links{
        justify-content:center;
        flex-wrap:wrap;
        margin-top:12px;
        gap:15px;
    }

}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
    .logo-box::after {
        display: none;
    }
}
.cont_whatsapp-btn{
    background:#25D366;
    color:#fff;
    border:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.cont_whatsapp-btn:hover{
    background:#1EBE5D;
    color:#fff;
}


.logo-box{
    position: relative;
    background: #fff;
    padding: 12px 10px 12px 10px;
    margin-right: 35px;

}

.logo-box::after{

    content:"";

    position:absolute;

    right:-35px;

    top:0;

    width:90px;

    height:100%;

/*    background:#fff;*/

    transform:skewX(-28deg);

    border-right:3px solid var(--accent);

}




.main-header.header-scrolled{
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s ease;
}


/*=========================================
PRODUCT FILTER SECTION
=========================================*/

.product-filter-section{
    padding:60px 0;
    background:#f8fbfd;
}

/*=========================================
SECTION TITLE
=========================================*/

.section-subtitle{

    display:inline-block;

    padding:6px 18px;

    background:#e9f7ef;

    color:#28A745;

    font-size:14px;

    font-weight:600;

    border-radius:50px;

    margin-bottom:15px;

}

.section-title{

    font-size:42px;

    font-weight:700;

    color:#0B3C5D;

    margin-bottom:15px;

}

.section-description{

/*    max-width:700px;*/

    margin:auto;

    color:#6c757d;

    font-size:16px;

    line-height:1.8;

}

/*=========================================
FILTER BOX
=========================================*/

.product-filter{

    background:#fff;

    padding:30px;

    border-radius:15px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

/*=========================================
SEARCH BOX
=========================================*/

.search-box{

    position:relative;

}

.search-box i{

    position:absolute;

    left:18px;

    top:50%;

    transform:translateY(-50%);

    color:#999;

    font-size:16px;

}

.search-box .form-control{

    height:58px;

    padding-left:50px;

    border-radius:10px;

    border:1px solid #dce3ea;

    font-size:15px;

    transition:.3s;

    box-shadow:none;

}

.search-box .form-control:focus{

    border-color:#28A745;

    box-shadow:0 0 0 .15rem rgba(40,167,69,.15);

}

/*=========================================
CATEGORY SELECT
=========================================*/

.product-filter .form-select{

    height:58px;

    border-radius:10px;

    border:1px solid #dce3ea;

    font-size:15px;

    box-shadow:none;

    transition:.3s;

}

.product-filter .form-select:focus{

    border-color:#28A745;

    box-shadow:0 0 0 .15rem rgba(40,167,69,.15);

}

/*=========================================
HOVER EFFECT
=========================================*/

.search-box .form-control:hover,
.product-filter .form-select:hover{

    border-color:#0B3C5D;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.product-filter{

    padding:25px;

}

.section-title{

    font-size:34px;

}

}

@media(max-width:767px){

.product-filter-section{

    padding:70px 0;

}

.product-filter{

    padding:20px;

}

.section-title{

    font-size:28px;

}

.section-description{

    font-size:15px;

}

.search-box .form-control,
.product-filter .form-select{

    height:52px;

    font-size:14px;

}

}

@media(max-width:575px){

.section-title{

    font-size:24px;

}

.section-subtitle{

    font-size:13px;

}

.product-filter{

    border-radius:12px;

}

}


#noProduct {
    text-align: center;
    padding: 20px;
}


#noProduct img {
    width: auto;
    height: 12rem;
    margin: 25px 0px;
}

#noProduct h5 {
    color: #4a4d52;
    font-size: xx-large;
}

#noProduct p {
	color: #70717b;
    font-size: large;
	    margin: auto;
}
#noProduct h6 {
	    color: #4a4d52;
    font-size: larger;
}


/* Hide Right Column */

.footer-bottom .col-lg-6:last-child{

    display:none !important;

}

/* Left Column Full Width */

.footer-bottom .col-lg-6:first-child{

    flex:0 0 100% !important;

    max-width:100% !important;

    text-align:center !important;

}


/*=========================================
LOGIN PAGE
=========================================*/

.login-section{

    min-height:100vh;

    background:linear-gradient(135deg,#0B3C5D 0%,#145C84 100%);

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

/*    padding:60px 0;*/

}

/*=========================================
BACKGROUND CIRCLES
=========================================*/

.login-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    top:-120px;

    left:-120px;

}

.login-section::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    bottom:-180px;

    right:-180px;

}

/*=========================================
LEFT CONTENT
=========================================*/

.login-left{

    color:#fff;

    position:relative;

    z-index:2;

}

.login-left img{

    width:25rem;

    margin-bottom:25px;

}

.login-left h1{

    font-size:42px;

    font-weight:700;

    margin-bottom:10px;

}

.login-left h4{

    color:#8BE28B;

    margin-bottom:25px;

    font-weight:500;

}

.login-left p{

    max-width:480px;

    font-size:17px;

    line-height:1.8;

    color:rgba(255,255,255,.85);

}

/*=========================================
LOGIN CARD
=========================================*/

.login-card{

    background:#fff;

    border-radius:22px;

    padding:45px;

    box-shadow:0 20px 60px rgba(0,0,0,.20);

    position:relative;

    z-index:2;

}

/*=========================================
ICON
=========================================*/

.login-icon{

    width:85px;

    height:85px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 20px;

    border-radius:50%;

    background:#EAF7EF;

    color:#28A745;

    font-size:34px;

}

/*=========================================
HEADINGS
=========================================*/

.login-card h2{

    color:#0B3C5D;

    font-weight:700;

    margin-bottom:10px;

}

.login-card p{

    color:#666;

}

/*=========================================
LABEL
=========================================*/

.form-label{

    font-weight:600;

    color:#0B3C5D;

}

/*=========================================
INPUT GROUP
=========================================*/

.input-group{

    border-radius:12px;

    overflow:hidden;

}

.input-group-text{

    background:#F7F9FC;

    border:1px solid #DEE2E6;

    color:#0B3C5D;

}

.form-control{

    border:1px solid #DEE2E6;

    padding:13px 15px;

    font-size:15px;

}

.form-control:focus{

    border-color:#28A745;

    box-shadow:none;

}

/*=========================================
BUTTON
=========================================*/

.btn-success{

    background:#28A745;

    border:none;

    padding:14px;

    border-radius:10px;

    font-size:16px;

    font-weight:600;

    transition:.3s;

}

.btn-success:hover{

    background:#218838;

    transform:translateY(-2px);

}

/*=========================================
LINKS
=========================================*/

.login-card a{

    color:#0B3C5D;

    text-decoration:none;

    transition:.3s;

}

.login-card a:hover{

    color:#28A745;

}

/*=========================================
HR
=========================================*/

.login-card hr{

    margin:30px 0;

}

/*=========================================
OUTLINE BUTTON
=========================================*/

.btn-outline-primary{

    border:2px solid #0B3C5D;

    color:#0B3C5D;

    font-weight:600;

    padding:12px 20px;

    border-radius:10px;

}

.btn-outline-primary:hover{

    background:#0B3C5D;

    color:#fff;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.login-left{

    display:none;

}

.login-card{

    padding:35px;

}

}

@media(max-width:576px){

.login-section{

    padding:30px 15px;

}

.login-card{

    padding:25px;

    border-radius:18px;

}

.login-icon{

    width:70px;

    height:70px;

    font-size:28px;

}

.login-card h2{

    font-size:26px;

}

}

/*=========================================
ENQUIRY FLOATING BUTTON
=========================================*/

.enquiry-fab{

    position:fixed;

    left:50%;

    bottom:25px;

    transform:translateX(-50%);

    z-index:9999;

}

.fab-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 28px;

    background:#0B3C5D;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    box-shadow:0 10px 30px rgba(11,60,93,.35);

    transition:.3s ease;

    position:relative;

}

.fab-btn:hover{

    background:#08415C;

    color:#fff;

    transform:translateY(-3px);

}

.fab-btn i{

    font-size:18px;

}

.fab-badge{

    position:absolute;

    top:-8px;

    right:-8px;

    width:26px;

    height:26px;

    background:#DC3545;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

    font-weight:700;

    border:2px solid #fff;

}

/* Mobile */

@media(max-width:768px){

.fab-btn{

    padding:12px 22px;

    font-size:14px;

}

}










