/*Start Navbar CSS*/
/*Desktop CSS*/
/* ===========================
   GOOGLE FONT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body{

    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
    background:#ffffff;

}


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

.main-navbar{

    background:linear-gradient(90deg,#071326,#08162d,#061122);
    min-height:78px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
    transition:.35s;
    z-index:9999;

}

.main-navbar .container{

    display:flex;
    align-items:center;

}

/*=========================
LOGO
==========================*/

.navbar-brand{

    padding:0;
    margin-right:60px;

}

.navbar-brand img{

    width:120px;
    transition:.3s;

}

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

.menu,
.menu ul{

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

}

.menu{

    display:flex;
    align-items:center;
    margin-left:auto;

}

.menu>li{

    position:relative;

}

.menu>li>a{

    display:flex;
    align-items:center;
    gap:6px;

    padding:9px 16px;

    font-size:13px;
    font-weight:600;
    color:#ffffff !important;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.3px;

    transition:.3s;
    position:relative;

}

/* Hover */

.menu>li:hover>a{

    color:#F8C34A;

}

/* Active */

.menu>li.active>a{

    color:#F8C34A;

}

.menu>li.active>a::after{

    content:"";
    position:absolute;
    left:16px;
    bottom:18px;
    width:34px;
    height:2px;
    background:#F8C34A;

}

/*=========================
DROPDOWN
==========================*/

.menu li{

    position:relative;

}

.menu li ul{

    position:absolute;
    top:100%;
    left:0;

    min-width:250px;

    background:#fff;

    display:none;

    border-radius:8px;

    padding:10px 0;

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

    z-index:999;

}

.menu li ul li{

    display:block;

}

.menu li ul li a{

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

    color:#222;

    padding:14px 22px;

    text-decoration:none;

    font-size:14px;

    transition:.25s;

}

.menu li ul li:hover>a{

    background:#F8C34A;
    color:#111;

}

.menu li ul li ul{

    top:0;
    left:100%;

}

/* Desktop Hover */



/* Animation */

@keyframes dropdown{

    from{

        opacity:0;
        transform:translateY(10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*=========================
BUTTON
==========================*/

.enquire-btn{

    margin-left:25px;

    background:#F8C34A;

    color:#111;

    font-size:13px;
    font-weight:700;

    padding:5px 28px;

    border-radius:4px;

    text-transform:uppercase;

    text-decoration:none;

    transition:.3s;

}

.enquire-btn:hover{

    background:#fff;
    color:#111;

}
.enquire-btn:hover,
.enquire-btn:hover i{
    color:#F8C34A !important;
}


/*=========================
STICKY
==========================*/

.main-navbar.sticky{

    min-height:68px;

}

.main-navbar.sticky .navbar-brand img{

    width:100px;

}

.main-navbar.sticky .menu>li>a{

    padding:24px 16px;

}



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

.navbar-search {
    display: flex;
    align-items: center;
    margin-left: 20px;
    width: 240px;
}

.navbar-search .form-control {
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    padding: 0 12px;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.navbar-search .form-control:focus {
    border-color: #0c3353;
    box-shadow: none;
}

.search-btn {
    height: 42px;
    width: 45px;
    border: none;
    background: #0c3353;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.search-btn:hover {
    background: #092943;
}


/* ==========================================
   LARGE SCREEN
========================================== */

@media (min-width: 1200px) {

    .navbar-search {
        width: 220px;
        flex-shrink: 0;
    }

}


/* ==========================================
   TABLET / MOBILE
========================================== */

@media (max-width: 1199px) {

    .navbar-search {
        width: 100%;
        margin: 15px 0;
    }

}

















/*End Navbar CSS*/


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

==================================================*/


/*==========================
Google Font
==========================*/




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

html{
    scroll-behavior:smooth;
}





/*=========================================
Hero Slider
=========================================*/

.hero-slider{

    width:100%;
    height:100vh;
    position:relative;
    overflow:hidden;

}

.heroSwiper{

    width:100%;
    height:100%;

}

.swiper-slide{

    position:relative;
    overflow:hidden;

}


/*=========================================
Background Image
=========================================*/

.hero-image{

    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;

}

.hero-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:8s ease;

}

.swiper-slide-active .hero-image img{

    transform:scale(1.08);

}



/*=========================================
Overlay
=========================================*/

.overlay{

    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    rgba(3,12,28,.96) 0%,
    rgba(5,17,39,.94) 28%,
    rgba(6,19,41,.85) 45%,
    rgba(7,20,43,.55) 60%,
    rgba(8,20,44,.15) 78%,
    rgba(0,0,0,0) 100%
    );

}



/*=========================================
Container
=========================================*/

.hero-slider .container{

    position:relative;
    z-index:20;

}



/*=========================================
Logo
=========================================*/

.logo{

    width:120px;

}



/*=========================================
Content
=========================================*/

.hero-content{

    color:#ffffff;

}

.hero-content h1{

    font-size:68px;
    line-height:1.05;
    font-weight:800;
    color:#ffffff;

    margin-bottom:28px;

    letter-spacing:-1px;

}


.hero-content h1 span{

    color:#f5b63c;

}


.hero-content p{

    font-size:22px;
    line-height:38px;
    color:#f5f5f5;

    max-width:520px;

    margin-bottom:45px;

}



/*=========================================
Buttons
=========================================*/

.hero-buttons{

    display:flex;
    gap:18px;
    flex-wrap:wrap;

}


.btn{

    border-radius:4px;
    padding:16px 34px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;

    transition:.35s;

    text-transform:uppercase;

}


.btn-gold{

    background:#f5b63c;
    color:#111;
    border:2px solid #f5b63c;

}

.btn-gold:hover{

    background:transparent;
    color:#ffffff;
    border-color:#f5b63c;

}


.btn-outline-light{

    border:2px solid #ffffff55;
    color:#ffffff;
    background:transparent;

}

.btn-outline-light:hover{

    background:#f5b63c;
    color:#111;
    border-color:#f5b63c;

}



/*=========================================
Navigation
=========================================*/

.swiper-button-next,
.swiper-button-prev{

    width:58px;
    height:58px;

    border:2px solid #f5b63c;

    border-radius:50%;

    color:#f5b63c;

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

    transition:.35s;

}

.swiper-button-next{

    right:35px;

}

.swiper-button-prev{

    left:35px;

}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:20px;
    font-weight:bold;

}

.swiper-button-next:hover,
.swiper-button-prev:hover{

    background:#f5b63c;
    color:#111;

}



/*=========================================
Pagination
=========================================*/

.swiper-pagination{

    bottom:35px !important;

}

.swiper-pagination-bullet{

    width:13px;
    height:13px;

    opacity:1;

    background:#ffffff;

    margin:0 8px !important;

}

.swiper-pagination-bullet-active{

    background:#f5b63c;
    transform:scale(1.25);

}



/*=========================================
Animation
=========================================*/

.hero-content>*{

    opacity:0;
    transform:translateY(40px);

}

.swiper-slide-active .logo{

    animation:fadeUp .6s forwards;

}

.swiper-slide-active h1{

    animation:fadeUp .8s .25s forwards;

}

.swiper-slide-active p{

    animation:fadeUp .8s .45s forwards;

}

.swiper-slide-active .hero-buttons{

    animation:fadeUp .8s .7s forwards;

}



@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}



/*=========================================
Desktop Large
=========================================*/

@media(min-width:1600px){

.hero-content h1{

font-size:82px;

}

.hero-content p{

font-size:24px;

}

}



/*=========================================
Bootstrap Fix
=========================================*/

.hero-slider .vh-100{

    min-height:100vh;

}

.hero-slider a{

    text-decoration:none;

}

.hero-slider img{

    display:block;

}

/*End Slider*/






/*Start USP*/

.feature-section{

    background:#fff;
    padding:22px 0;
    border-top:1px solid #ededed;
    border-bottom:1px solid #ededed;

}



.feature-box{

    display:flex;
    align-items:center;
    gap:15px;

}



.feature-icon{

    width:46px;
    height:46px;

    border:2px solid #dca132;
    border-radius:50%;

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

    color:#dca132;

    flex-shrink:0;

    transition:.4s;

}



.feature-icon i{

    font-size:18px;

}



.feature-content h5{

    font-size:15px;
    font-weight:600;
    color:#333;

    margin-bottom:5px;

}



.feature-content p{

    font-size:12px;
    line-height:18px;
    color:#777;

    margin:0;

}



.feature-box:hover .feature-icon{

    background:#dca132;
    color:#fff;
    transform:rotate(360deg);

}



.feature-box:hover h5{

    color:#dca132;

}


/*End USP*/



/*==================================================
AV SOLUTIONS SECTION
Style.css (Part 1)
==================================================*/


/*=========================
Google Font
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================
Reset
=========================*/

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;

}



/*=========================
Section
=========================*/

.av-section{

    position:relative;
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;

}



/*=========================
Heading
=========================*/

.section-heading{

    max-width:720px;
    margin:auto;

}

.section-heading .subtitle{

    display:inline-block;

    color:#d89b1d;

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-heading h2{

    font-size:42px;

    font-weight:700;

    color:#1d2433;

    margin-bottom:15px;

    line-height:1.2;

}

.section-heading p{

    color:#777;

    font-size:16px;

    line-height:28px;

}



/*=========================
Swiper
=========================*/

.avSwiper{

    padding-bottom:60px;

}

.avSwiper .swiper-slide{

    height:auto;

}



/*=========================
Card
=========================*/

.solution-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:8px;

    overflow:hidden;

    transition:.35s;

    height:100%;

    display:flex;

    flex-direction:column;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}



/*=========================
Image
=========================*/

.solution-image{

    position:relative;

    overflow:hidden;

    background:#f4f4f4;

}

.solution-image img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:0.5s ease;

    display:block;

}

.solution-card:hover .solution-image img{

    transform:scale(1.08);

}



/*=========================
Floating Icon
=========================*/

.solution-icon{

    position:absolute;

    left:18px;

    bottom:-20px;

    width:42px;

    height:42px;

    border-radius:50%;

    background:#ffffff;

    border:2px solid #d89b1d;

    color:#d89b1d;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.solution-card:hover .solution-icon{

    background:#d89b1d;

    color:#ffffff;

    transform:rotate(360deg);

}

/*=========================================
Card Content
=========================================*/

.solution-content{

    position:relative;
    padding:35px 20px 20px;
    flex:1;

    display:flex;
    flex-direction:column;

}

.solution-content h4{

    font-size:15px;
    font-weight:700;
    color:#1b2430;

    margin-bottom:12px;

    text-transform:uppercase;

    transition:.35s;

}

.solution-content p{

    font-size:14px;
    line-height:24px;

    color:#666;

    margin-bottom:25px;

    flex:1;

}


/*=========================================
Arrow Button
=========================================*/

.solution-content a{

    width:38px;
    height:38px;

    border-radius:50%;

    background:#f8f8f8;

    color:#d89b1d;

    border:1px solid #ececec;

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

    text-decoration:none;

    transition:.35s;

    margin-left:auto;

}

.solution-content a i{

    font-size:18px;
    transition:.35s;

}


.solution-card:hover .solution-content a{

    background:#d89b1d;
    color:#fff;
    border-color:#d89b1d;

}


.solution-card:hover .solution-content a i{

    transform:translateX(4px);

}


.solution-card:hover h4{

    color:#d89b1d;

}



/*=========================================
Swiper Pagination
=========================================*/

.avSwiper .swiper-pagination{

    bottom:0 !important;

}


.avSwiper .swiper-pagination-bullet{

    width:12px;
    height:12px;

    background:#d6d6d6;

    opacity:1;

    transition:.35s;

    margin:0 5px !important;

}


.avSwiper .swiper-pagination-bullet-active{

    width:28px;

    border-radius:30px;

    background:#d89b1d;

}



/*=========================================
Scrollbar (Optional)
=========================================*/

.avSwiper .swiper-scrollbar{

    background:#efefef;

    border-radius:50px;

}

.avSwiper .swiper-scrollbar-drag{

    background:#d89b1d;

}



/*=========================================
Card Entrance Animation
=========================================*/

.solution-card{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s forwards;

}

.avSwiper .swiper-slide:nth-child(1) .solution-card{

    animation-delay:.10s;

}

.avSwiper .swiper-slide:nth-child(2) .solution-card{

    animation-delay:.20s;

}

.avSwiper .swiper-slide:nth-child(3) .solution-card{

    animation-delay:.30s;

}

.avSwiper .swiper-slide:nth-child(4) .solution-card{

    animation-delay:.40s;

}

.avSwiper .swiper-slide:nth-child(5) .solution-card{

    animation-delay:.50s;

}


@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}



/*=========================================
Image Overlay
=========================================*/

.solution-image::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:100%;

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

    opacity:0;

    transition:.4s;

    z-index:1;

}

.solution-card:hover .solution-image::before{

    opacity:1;

}



/*=========================================
Focus Accessibility
=========================================*/

.solution-content a:focus{

    outline:none;

    box-shadow:0 0 0 4px rgba(216,155,29,.25);

}



/*=========================================
Smooth Rendering
=========================================*/

.solution-card,
.solution-content,
.solution-image img,
.solution-icon,
.solution-content a{

    will-change:transform;

}



/*=========================================
Bootstrap Reset
=========================================*/

.av-section img{

    max-width:100%;
    display:block;

}

.av-section a{

    text-decoration:none;

}

.av-section .container{

    position:relative;

}




/*==========================================
Top Products
==========================================*/

.top-products{

    background:#ffffff;
    padding:35px 0;
    border-top:1px solid #eeeeee;
    border-bottom:1px solid #eeeeee;

}

/*==========================================
Heading
==========================================*/

.section-title{

    position:relative;
    margin-bottom:30px;

}

.section-title span{

    display:inline-block;

    color:#d89b1d;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    position:relative;

    padding:0 20px;

    background:#fff;

    z-index:2;

}

.section-title::before{

    content:"";

    position:absolute;

    left:0;
    top:50%;

    width:100%;
    height:1px;

    background:#ececec;

    transform:translateY(-50%);

}

/*==========================================
Swiper
==========================================*/

.productSwiper{

    overflow:hidden;
    padding:5px 0;

}

.productSwiper .swiper-wrapper{

    align-items:stretch;

}

.productSwiper .swiper-slide{

    height:auto;

}

/*==========================================
Product Item
==========================================*/

.product-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    text-align:center;

    text-decoration:none;

    padding:12px 15px;

    background:#fff;

    position:relative;

    transition:.35s;

    height:100%;

}

/* Vertical Divider */

.product-item::after{

    content:"";

    position:absolute;

    top:10%;

    right:0;

    width:1px;

    height:80%;

    background:#ededed;

}

.swiper-slide:last-child .product-item::after{

    display:none;

}

/*==========================================
Image
==========================================*/

.product-image{

    width:95px;
    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:12px;

}

.product-image img{

    max-width:100%;
    max-height:70px;

    transition:.35s;

    object-fit:contain;

}

/*==========================================
Title
==========================================*/

.product-item h5{

    font-size:13px;

    font-weight:600;

    color:#2d2d2d;

    line-height:20px;

    margin:0;

    transition:.35s;

}

/*==========================================
Hover
==========================================*/

.product-item:hover{

    transform:translateY(-6px);

}

.product-item:hover img{

    transform:scale(1.08);

}

.product-item:hover h5{

    color:#d89b1d;

}

/*==========================================
Swiper Pagination
==========================================*/

.productSwiper .swiper-pagination{

    position:relative;

    margin-top:25px;

}

.productSwiper .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#cfcfcf;

    opacity:1;

    margin:0 5px !important;

    transition:.35s;

}

.productSwiper .swiper-pagination-bullet-active{

    width:28px;

    border-radius:20px;

    background:#d89b1d;

}

/*==========================================
Navigation
==========================================*/

.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev{

    width:42px;

    height:42px;

    border-radius:50%;

    border:2px solid #d89b1d;

    color:#d89b1d;

    background:#fff;

    transition:.3s;

}

.productSwiper .swiper-button-next::after,
.productSwiper .swiper-button-prev::after{

    font-size:16px;
    font-weight:bold;

}

.productSwiper .swiper-button-next:hover,
.productSwiper .swiper-button-prev:hover{

    background:#d89b1d;

    color:#fff;

}

/*==========================================
Smooth Animation
==========================================*/

.product-item,
.product-image img,
.product-item h5{

    transition:all .35s ease;

}



/*==========================================
COUNTER SECTION
STYLE.CSS
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

body{
    font-family:'Poppins',sans-serif;
    background:#f8f9fa;
    overflow-x:hidden;
}

/*==========================================
Counter Section
==========================================*/

.counter-section{

    background:#071426;
    position:relative;
    overflow:hidden;
    padding:18px 0;

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);

}

/*==========================================
Counter Box
==========================================*/

.counter-box{

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

    gap:18px;

    padding:15px 20px;

    border-right:1px solid rgba(255,255,255,.20);

    transition:.35s;

    height:100%;

}

.counter-box:hover{

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

}

/*==========================================
Icon
==========================================*/

.counter-icon{

    width:60px;
    height:60px;

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

    flex-shrink:0;

}

.counter-icon i{

    font-size:42px;
    color:#f4b223;
    transition:.35s;

}

.counter-box:hover .counter-icon i{

    transform:scale(1.15) rotate(5deg);

}

/*==========================================
Content
==========================================*/

.counter-content{

    text-align:left;

}

.counter-content h2{

    margin:0;

    font-size:42px;
    line-height:1;

    font-weight:700;

    color:#f4b223;

}

.counter-content p{

    margin:8px 0 0;

    font-size:14px;

    color:#ffffff;

    font-weight:500;

    opacity:.9;

}

/*==========================================
Hover Effects
==========================================*/

.counter-box:hover .counter-content h2{

    color:#ffc94d;

}

.counter-box:hover .counter-content p{

    opacity:1;

}

/*==========================================
Border Fix
==========================================*/

.border-end-0{

    border-right:none !important;

}

/*==========================================
Animation
==========================================*/

.counter-box{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*==========================================
Selection
==========================================*/

::selection{

    background:#f4b223;
    color:#fff;

}


/*==========================================
WHY CHOOSE US
STYLE.CSS
==========================================*/


.why-choose-section{

    position:relative;
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;

}

/*==========================================
Content
==========================================*/

.why-content{

    max-width:480px;

}

/*==========================================
Subtitle
==========================================*/

.section-subtitle{

    display:inline-block;

    font-size:14px;
    font-weight:700;
    letter-spacing:2px;

    color:#d89b1d;

    text-transform:uppercase;

    margin-bottom:18px;

}

/*==========================================
Title
==========================================*/

.section-title{

    font-size:56px;

    line-height:1.12;

    font-weight:700;

    color:#18243d;

    margin-bottom:25px;

}

/*==========================================
Description
==========================================*/

.section-description{

    font-size:17px;

    line-height:32px;

    color:#666;

    margin-bottom:32px;

}

/*==========================================
List
==========================================*/

.why-list{

    list-style:none;

    margin:0 0 35px;

    padding:0;

}

.why-list li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:14px;

    font-size:17px;

    color:#2b2b2b;

    font-weight:500;

}

.why-list li i{

    color:#d89b1d;

    font-size:18px;

    transition:.35s;

}

.why-list li:hover i{

    transform:scale(1.2);

}

/*==========================================
Button
==========================================*/

.why-btn{

    background:#d89b1d;

    color:#fff;

    padding:15px 34px;

    border-radius:6px;

    font-size:14px;

    font-weight:600;

    letter-spacing:.5px;

    transition:.35s;

    display:inline-block;

    border:2px solid #d89b1d;

}

.why-btn:hover{

    background:transparent;

    color:#d89b1d;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(216,155,29,.25);

}

/*==========================================
Image
==========================================*/

.why-image{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.why-image img{

    width:100%;

    display:block;

    border-radius:18px;

    transition:transform .6s ease;

}

.why-image:hover img{

    transform:scale(1.05);

}

/*==========================================
Animation
==========================================*/

.why-content{

    animation:fadeLeft .8s ease;

}

.why-image{

    animation:fadeRight .8s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;
        transform:translateX(-40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

@keyframes fadeRight{

    from{

        opacity:0;
        transform:translateX(40px);

    }

    to{

        opacity:1;
        transform:translateX(0);

    }

}

/*==========================================
Selection
==========================================*/

::selection{

    background:#d89b1d;
    color:#fff;

}

/*==========================================
Image Shadow Glow
==========================================*/

.why-image::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:18px;

    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);

    pointer-events:none;

}






/*==========================================
Our Partner
==========================================*/

.partners-section{

    position:relative;

    background:#ffffff;

    padding:28px 0;

    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;

    overflow:hidden;

}

/*==========================================
Heading
==========================================*/

.partners-heading{

    margin-bottom:20px;

}

.partners-heading span{

    display:inline-block;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    color:#d89b1d;

    text-transform:uppercase;

}

/*==========================================
Wrapper
==========================================*/

.partners-wrapper{

    display:flex;

    align-items:center;

    gap:18px;

}

/*==========================================
Swiper
==========================================*/

.partnerSwiper{

    flex:1;

    overflow:hidden;

}

.partnerSwiper .swiper-wrapper{

    align-items:center;

}

.partnerSwiper .swiper-slide{

    height:auto;

    display:flex;

    justify-content:center;

}

/*==========================================
Partner Item
==========================================*/

.partner-item{

    width:100%;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#ffffff;

    border-right:1px solid #ececec;

    transition:.35s;

    padding:10px;

}

.partner-item img{

    max-width:140px;

    max-height:55px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.35s;

}

/*==========================================
Hover
==========================================*/

.partner-item:hover{

    background:#fcfcfc;

}

.partner-item:hover img{

    transform:scale(1.08);

}

/*==========================================
Navigation Buttons
==========================================*/

.partner-prev,
.partner-next{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#ffffff;

    border:1px solid #dddddd;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s;

    flex-shrink:0;

    box-shadow:0 4px 15px rgba(0,0,0,.06);

}

.partner-prev i,
.partner-next i{

    font-size:18px;

    color:#222;

    transition:.35s;

}

.partner-prev:hover,
.partner-next:hover{

    background:#d89b1d;

    border-color:#d89b1d;

}

.partner-prev:hover i,
.partner-next:hover i{

    color:#ffffff;

}

/*==========================================
Swiper Pagination
==========================================*/

.partnerSwiper .swiper-pagination{

    position:relative;

    margin-top:20px;

}

.partnerSwiper .swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#d0d0d0;

    opacity:1;

    margin:0 5px !important;

    transition:.35s;

}

.partnerSwiper .swiper-pagination-bullet-active{

    width:28px;

    border-radius:30px;

    background:#d89b1d;

}

/*==========================================
Smooth Animation
==========================================*/

.partner-item,
.partner-item img,
.partner-prev,
.partner-next{

    transition:all .35s ease;

}

/*==========================================
Last Item Border
==========================================*/

.partnerSwiper .swiper-slide:last-child .partner-item{

    border-right:none;

}


/*==============================
Testimonial Section
===============================*/

.testimonial-section{

    position:relative;

    background:#ffffff;

    padding:90px 0;

    overflow:hidden;

}

/*==============================
Heading
===============================*/

.section-heading{

    margin-bottom:55px;

}

.section-heading .subtitle{

    display:block;

    color:#d89b1d;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.section-heading h2{

    font-size:44px;

    font-weight:700;

    color:#18243d;

    margin:0;

}

/*==============================
Wrapper
===============================*/

.testimonial-wrapper{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:35px;

}

/*==============================
Swiper
===============================*/

.testimonialSwiper{

    width:760px;

    overflow:hidden;

}

/*==============================
Card
===============================*/

.testimonial-card{

    background:#ffffff;

    border-radius:12px;

    padding:35px 40px;

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

    position:relative;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

/*==============================
Quote
===============================*/

.quote-icon{

    position:absolute;

    top:22px;

    left:28px;

}

.quote-icon i{

    font-size:42px;

    color:#f0d8a1;

}

/*==============================
Text
===============================*/

.testimonial-card p{

    margin-left:48px;

    margin-bottom:28px;

    color:#555;

    font-size:17px;

    line-height:30px;

}

/*==============================
Client
===============================*/

.client-info{

    display:flex;

    align-items:center;

    gap:15px;

    margin-left:48px;

}

.client-image{

    width:55px;

    height:55px;

    border-radius:50%;

    overflow:hidden;

    flex-shrink:0;

}

.client-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.client-content h5{

    margin:0;

    font-size:18px;

    font-weight:600;

    color:#18243d;

}

.client-content span{

    display:block;

    margin-top:4px;

    font-size:14px;

    color:#666;

}

/*==============================
Navigation
===============================*/

.testimonial-prev,
.testimonial-next{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#ffffff;

    border:1px solid #e5e5e5;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 6px 20px rgba(0,0,0,.08);

}

.testimonial-prev i,
.testimonial-next i{

    font-size:18px;

    color:#18243d;

}

.testimonial-prev:hover,
.testimonial-next:hover{

    background:#d89b1d;

    border-color:#d89b1d;

}

.testimonial-prev:hover i,
.testimonial-next:hover i{

    color:#ffffff;

}

/*==============================
Pagination
===============================*/

.swiper-pagination{

    position:relative;

    margin-top:30px;

    text-align:center;

}

.swiper-pagination-bullet{

    width:10px;

    height:10px;

    background:#d7d7d7;

    opacity:1;

    margin:0 5px !important;

    transition:.35s;

}

.swiper-pagination-bullet-active{

    width:28px;

    border-radius:30px;

    background:#d89b1d;

}

/*==============================
Animation
===============================*/

.testimonial-card,
.testimonial-prev,
.testimonial-next{

    transition:all .35s ease;

}

/*==============================
Selection
===============================*/

::selection{

    background:#d89b1d;

    color:#fff;

}





/*Footer CSS*/
/*==================================================
FOOTER
==================================================*/

.site-footer{

    position:relative;

    background:#071426;

    color:#ffffff;

    overflow:hidden;

}


/*==================================================
Footer Main
==================================================*/

.footer-main{

    padding:75px 0 60px;

    border-bottom:1px solid rgba(255,255,255,.10);

}


/*==================================================
Logo
==================================================*/

.footer-logo{

    display:inline-block;

    margin-bottom:22px;

}

.footer-logo img{

    width:145px;

    max-width:100%;

    height:auto;

}


/*==================================================
Description
==================================================*/

.footer-description{

    max-width:360px;

    color:rgba(255,255,255,.65);

    font-size:14px;

    line-height:27px;

    margin-bottom:25px;

}


/*==================================================
Footer Title
==================================================*/

.footer-title{

    position:relative;

    color:#ffffff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1.2px;

    margin:5px 0 25px;

    padding-bottom:12px;

}

.footer-title::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:35px;

    height:2px;

    background:#d89b1d;

}


/*==================================================
Footer Links
==================================================*/

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    position:relative;

    color:rgba(255,255,255,.65);

    font-size:13px;

    text-decoration:none;

    transition:.3s;

}

.footer-links a::before{

    content:"";

    position:absolute;

    left:-14px;

    top:50%;

    width:0;

    height:1px;

    background:#d89b1d;

    transition:.3s;

}

.footer-links a:hover{

    color:#d89b1d;

    padding-left:14px;

}

.footer-links a:hover::before{

    width:8px;

}


/*==================================================
Social Icons
==================================================*/

.footer-social{

    display:flex;

    align-items:center;

    gap:10px;

}

.footer-social a{

    width:38px;

    height:38px;

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

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:15px;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#d89b1d;

    border-color:#d89b1d;

    color:#ffffff;

    transform:translateY(-4px);

}


/*==================================================
Contact
==================================================*/

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:16px;

    color:rgba(255,255,255,.65);

    font-size:13px;

    line-height:21px;

}

.footer-contact i{

    flex-shrink:0;

    color:#d89b1d;

    font-size:16px;

    margin-top:2px;

}

.footer-contact a{

    color:rgba(255,255,255,.65);

    text-decoration:none;

    transition:.3s;

}

.footer-contact a:hover{

    color:#d89b1d;

}


/*==================================================
Footer Bottom
==================================================*/

.footer-bottom{

    padding:20px 0;

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

}

.copyright{

    margin:0;

    color:rgba(255,255,255,.50);

    font-size:12px;

}

.footer-bottom-links{

    display:flex;

    justify-content:flex-end;

    gap:25px;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.50);

    font-size:12px;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#d89b1d;

}


/*==================================================
REVEAL ANIMATION
==================================================*/

.footer-reveal{

    opacity:0;

    transform:translateY(45px);

    transition:

        opacity .8s ease,

        transform .8s cubic-bezier(.22,1,.36,1);

}

.footer-reveal.revealed{

    opacity:1;

    transform:translateY(0);

}


/*==================================================
Stagger Animation
==================================================*/

.footer-widget:nth-child(1){

    transition-delay:.05s;

}

.footer-widget:nth-child(2){

    transition-delay:.15s;

}

.footer-widget:nth-child(3){

    transition-delay:.25s;

}

.footer-widget:nth-child(4){

    transition-delay:.35s;

}

.footer-widget:nth-child(5){

    transition-delay:.45s;

}

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


/*=========================================
1200px
=========================================*/

@media(max-width:1199px){

    .footer-main{

        padding:65px 0 50px;

    }

    .footer-description{

        max-width:320px;

    }

}


/*=========================================
992px
=========================================*/

@media(max-width:991px){

    .footer-main{

        padding:55px 0 40px;

    }

    .footer-widget{

        margin-bottom:15px;

    }

    .footer-title{

        margin-bottom:20px;

    }

    .footer-description{

        font-size:13px;

        line-height:25px;

    }

    .footer-links a{

        font-size:12px;

    }

    .footer-contact li{

        font-size:12px;

    }

}


/*=========================================
768px
=========================================*/

@media(max-width:767px){

    .footer-main{

        padding:50px 0 30px;

    }

    .footer-widget{

        text-align:left;

    }

    .footer-logo{

        margin-bottom:18px;

    }

    .footer-logo img{

        width:130px;

    }

    .footer-description{

        max-width:100%;

        font-size:13px;

        line-height:24px;

    }

    .footer-social{

        margin-bottom:10px;

    }

    .footer-title{

        font-size:13px;

        margin-top:10px;

        margin-bottom:18px;

    }

    .footer-links li{

        margin-bottom:10px;

    }

    .footer-links a{

        font-size:12px;

    }

    .footer-contact li{

        font-size:12px;

    }

    .footer-bottom{

        padding:18px 0;

        text-align:center;

    }

    .copyright{

        font-size:11px;

    }

    .footer-bottom-links{

        justify-content:center;

        gap:18px;

    }

    .footer-bottom-links a{

        font-size:11px;

    }

}


/*=========================================
576px
=========================================*/

@media(max-width:576px){

    .footer-main{

        padding:45px 0 25px;

    }

    .footer-widget{

        margin-bottom:20px;

    }

    .footer-description{

        font-size:12px;

        line-height:22px;

    }

    .footer-title{

        font-size:12px;

        letter-spacing:1px;

    }

    .footer-links a{

        font-size:11px;

    }

    .footer-contact li{

        font-size:11px;

    }

    .footer-social a{

        width:35px;

        height:35px;

        font-size:13px;

    }

}


/*=========================================
480px
=========================================*/

@media(max-width:480px){

    .footer-logo img{

        width:120px;

    }

    .footer-description{

        font-size:11px;

        line-height:21px;

    }

    .footer-title{

        font-size:11px;

    }

    .footer-links a{

        font-size:10px;

    }

    .footer-contact li{

        font-size:10px;

    }

    .footer-bottom-links{

        flex-direction:column;

        gap:7px;

    }

}


/*=========================================
375px
=========================================*/

@media(max-width:375px){

    .footer-main{

        padding:40px 0 20px;

    }

    .footer-logo img{

        width:110px;

    }

    .footer-description{

        font-size:10px;

        line-height:19px;

    }

    .footer-social a{

        width:32px;

        height:32px;

    }

}


/*=========================================
320px
=========================================*/

@media(max-width:320px){

    .footer-title{

        font-size:10px;

    }

    .footer-links a{

        font-size:9px;

    }

    .footer-contact li{

        font-size:9px;

    }

}



/*Start About Us*/

 /* =========================================================
   ABOUT US PAGE
   Navbar and Footer CSS NOT INCLUDED
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #18243d;
    background: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

:root {
    --navy: #071426;
    --navy-light: #18243d;
    --gold: #d89b1d;
    --gold-light: #f4b223;
    --text: #555;
    --light: #f8f9fb;
    --border: #e7e7e7;
}


/* =========================================================
   COMMON
========================================================= */

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

.section-subtitle {
    display: inline-block;
    margin-bottom: 15px;

    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-heading h2 {
    margin-bottom: 18px;

    color: var(--navy);
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


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

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    background: var(--gold);
    color: #fff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;

    transition: .35s ease;
}

.primary-btn:hover {
    background: var(--navy);
    color: #fff;
    transform: translateY(-3px);
}

.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

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

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    transition: .35s ease;
}

.outline-btn:hover {
    background: #fff;
    color: var(--navy);
}


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

.about-hero {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    inset: 0;

    background:
        url("../assets/img/about/about-banner.jpg")
        center center / cover no-repeat;

    transform: scale(1.03);

    transition: transform 8s ease;
}

.about-hero:hover .about-hero-image {
    transform: scale(1.08);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 18, 39, .98) 0%,
            rgba(4, 18, 39, .88) 40%,
            rgba(4, 18, 39, .45) 70%,
            rgba(4, 18, 39, .15) 100%
        );
}

.about-hero-content {
    position: relative;
    z-index: 2;

    max-width: 690px;

    padding: 100px 0;
}

.hero-subtitle {
    color: var(--gold-light);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-hero h1 {
    margin: 18px 0 25px;

    color: #fff;

    font-size: 66px;
    line-height: 1.05;
    font-weight: 700;
}

.about-hero h1 span {
    color: var(--gold-light);
}

.about-hero p {
    max-width: 600px;

    margin-bottom: 35px;

    color: rgba(255, 255, 255, .78);

    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.about-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.breadcrumb-content {
    min-height: 58px;

    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
}

.breadcrumb-content a {
    color: var(--gold);
}

.breadcrumb-content i {
    color: #999;
    font-size: 10px;
}

.breadcrumb-content span {
    color: #777;
}


/* =========================================================
   ABOUT COMPANY
========================================================= */

.about-company {
    background: #fff;
}

.about-image-wrap {
    position: relative;

    padding-right: 65px;
    padding-bottom: 55px;
}

.about-image-main {
    overflow: hidden;

    border-radius: 14px;

    box-shadow:
        0 20px 50px rgba(7, 20, 38, .13);
}

.about-image-main img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    transition: transform .7s ease;
}

.about-image-main:hover img {
    transform: scale(1.06);
}

.about-image-small {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 240px;
    height: 180px;

    overflow: hidden;

    border: 8px solid #fff;
    border-radius: 12px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .15);
}

.about-image-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.about-image-small:hover img {
    transform: scale(1.08);
}

.about-experience {
    position: absolute;

    left: -20px;
    top: 50px;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background: var(--gold);
    color: #fff;

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

    z-index: 3;

    box-shadow:
        0 12px 30px rgba(216, 155, 29, .3);
}

.about-experience strong {
    font-size: 36px;
    line-height: 1;
}

.about-experience span {
    margin-top: 7px;

    text-align: center;

    font-size: 11px;
    line-height: 1.4;
    letter-spacing: .7px;

    text-transform: uppercase;
}

.about-content {
    padding-left: 25px;
}

.about-content h2 {
    margin-bottom: 25px;

    color: var(--navy);

    font-size: 45px;
    line-height: 1.18;
    font-weight: 700;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content p {
    color: #666;

    font-size: 15px;
    line-height: 1.85;
}

.about-content .lead-text {
    color: #444;

    font-size: 17px;
    line-height: 1.8;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin: 28px 0 32px;
}

.about-point {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 13px;
    font-weight: 500;
}

.about-point i {
    width: 23px;
    height: 23px;

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

    border-radius: 50%;

    background: rgba(216, 155, 29, .12);
    color: var(--gold);

    font-size: 13px;
}


/* =========================================================
   COUNTERS
========================================================= */

.about-counter {
    background: var(--navy);
}

.about-counter-box {
    min-height: 130px;

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

    gap: 20px;

    border-right: 1px solid rgba(255, 255, 255, .18);
}

.about-counter-box:last-child {
    border-right: 0;
}

.counter-icon {
    color: var(--gold-light);
    font-size: 43px;
}

.about-counter-box h3 {
    margin: 0;

    color: var(--gold-light);

    font-size: 38px;
    font-weight: 700;
}

.about-counter-box p {
    margin: 3px 0 0;

    color: #fff;

    font-size: 13px;
}


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

.about-why {
    background: #fff;
}

.why-content h2 {
    margin-bottom: 25px;

    color: var(--navy);

    font-size: 52px;
    line-height: 1.08;
    font-weight: 700;
}

.why-content h2 span {
    color: var(--gold);
}

.why-content > p {
    margin-bottom: 30px;

    color: #666;

    font-size: 15px;
    line-height: 1.85;
}

.why-list {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.why-item {
    display: flex;
    gap: 15px;
}

.why-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

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

    border: 1px solid rgba(216, 155, 29, .4);
    border-radius: 50%;

    color: var(--gold);

    font-size: 20px;
}

.why-item h4 {
    margin: 0 0 4px;

    color: var(--navy);

    font-size: 16px;
    font-weight: 600;
}

.why-item p {
    margin: 0;

    color: #777;

    font-size: 13px;
    line-height: 1.6;
}

.why-image {
    position: relative;
    padding-left: 30px;
}

.why-image > img {
    width: 100%;
    height: 540px;

    object-fit: cover;

    border-radius: 16px;

    box-shadow:
        0 20px 50px rgba(7, 20, 38, .12);

    transition: transform .7s ease;
}

.why-image:hover > img {
    transform: scale(1.025);
}

.why-image-badge {
    position: absolute;

    left: 0;
    bottom: 40px;

    min-width: 230px;

    padding: 18px 22px;

    display: flex;
    align-items: center;

    gap: 14px;

    background: var(--navy);
    color: #fff;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, .18);
}

.why-image-badge i {
    color: var(--gold-light);
    font-size: 32px;
}

.why-image-badge strong {
    display: block;
    font-size: 15px;
}

.why-image-badge span {
    display: block;
    color: #aaa;
    font-size: 12px;
}


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

.mission-section {
    padding: 100px 0;
    background: #f8f9fb;
}

.purpose-card {
    height: 100%;

    display: flex;
    gap: 25px;

    padding: 40px;

    background: #fff;

    border: 1px solid #ededed;

    transition: .4s ease;
}

.purpose-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(7, 20, 38, .08);
}

.purpose-icon {
    width: 65px;
    height: 65px;

    flex: 0 0 65px;

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

    border-radius: 50%;

    background: rgba(216, 155, 29, .12);
    color: var(--gold);

    font-size: 28px;
}

.purpose-card span {
    color: var(--gold);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.purpose-card h3 {
    margin: 10px 0 12px;

    color: var(--navy);

    font-size: 24px;
    font-weight: 700;
}

.purpose-card p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   AV SOLUTIONS SWIPER
========================================================= */

.about-solutions {
    background: #fff;
}

.aboutSolutionsSwiper {
    width: 100%;
    overflow: hidden;
    padding-bottom: 50px;
}

.aboutSolutionsSwiper .swiper-wrapper {
    display: flex;
}

.aboutSolutionsSwiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.about-solution-card {
    height: 100%;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e8e8e8;
    border-radius: 8px;

    transition: .4s ease;
}

.about-solution-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 15px 35px rgba(7, 20, 38, .10);
}

.solution-image {
    position: relative;

    height: 220px;

    overflow: hidden;
}

.solution-image > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.about-solution-card:hover
.solution-image > img {
    transform: scale(1.08);
}

.solution-icon {
    position: absolute;

    left: 20px;
    bottom: -23px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #fff;
    border: 2px solid var(--gold);

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

    color: var(--gold);

    font-size: 19px;
}

.solution-content {
    padding: 38px 25px 25px;
}

.solution-content h3 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 18px;
    font-weight: 700;
}

.solution-content p {
    min-height: 50px;

    margin-bottom: 20px;

    color: #777;

    font-size: 13px;
    line-height: 1.7;
}

.solution-content a {
    color: var(--gold);

    font-size: 12px;
    font-weight: 600;
}

.solution-content a i {
    margin-left: 5px;

    transition: .3s ease;
}

.solution-content a:hover i {
    margin-left: 10px;
}

.aboutSolutionsSwiper
.swiper-pagination-bullet {
    background: #d6d6d6;
    opacity: 1;
}

.aboutSolutionsSwiper
.swiper-pagination-bullet-active {
    width: 30px;

    border-radius: 10px;

    background: var(--gold);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    position: relative;

    padding: 100px 0;

    background: var(--navy);
}

.process-section
.section-heading h2 {
    color: #fff;
}

.process-section
.section-heading p {
    color: rgba(255, 255, 255, .65);
}

.process-line {
    position: absolute;

    top: 285px;
    left: 15%;

    width: 70%;
    height: 1px;

    background: rgba(255, 255, 255, .18);
}

.process-item {
    position: relative;

    text-align: center;

    z-index: 2;
}

.process-number {
    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 13px;
    font-weight: 700;
}

.process-icon {
    width: 75px;
    height: 75px;

    margin: 0 auto 20px;

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

    border: 1px solid var(--gold);
    border-radius: 50%;

    background: var(--navy);

    color: var(--gold-light);

    font-size: 27px;
}

.process-item h3 {
    margin-bottom: 10px;

    color: #fff;

    font-size: 18px;
    font-weight: 600;
}

.process-item p {
    max-width: 230px;

    margin: auto;

    color: rgba(255, 255, 255, .58);

    font-size: 13px;
    line-height: 1.7;
}


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

.about-testimonials {
    padding: 100px 0;

    background: #fff;
}

.testimonial-wrapper {
    position: relative;

    padding: 0 100px;
}

.aboutTestimonialSwiper {
    width: 100%;
    overflow: hidden;

    padding-bottom: 45px;
}

.aboutTestimonialSwiper .swiper-wrapper {
    display: flex;
}

.aboutTestimonialSwiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.about-testimonial-card {
    width: 100%;
    max-width: 800px;

    min-height: 245px;

    margin: auto;

    padding: 35px 70px;

    background: #fff;

    border: 1px solid #f0f0f0;

    box-shadow:
        0 10px 35px rgba(7, 20, 38, .04);
}

.quote-icon {
    color: #f2d797;

    font-size: 48px;
    line-height: 1;
}

.about-testimonial-card > p {
    margin: 0 0 25px;

    color: #666;

    font-size: 16px;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;

    gap: 15px;
}

.client-image {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    border-radius: 50%;

    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1);

    transition: transform .5s ease;
}

.client-image:hover img {
    transform: scale(1.12);
}

.client-info h4 {
    margin: 0 0 3px;

    color: var(--navy);

    font-size: 16px;
    font-weight: 700;
}

.client-info span {
    color: #888;

    font-size: 12px;
}

.testimonial-prev,
.testimonial-next,
.partner-prev,
.partner-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

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

    border: 1px solid #ddd;
    border-radius: 50%;

    background: #fff;

    color: var(--navy);

    cursor: pointer;

    z-index: 5;

    transition: .3s ease;
}

.testimonial-prev {
    left: 15px;
}

.testimonial-next {
    right: 15px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--gold);

    transform:
        translateY(-50%)
        scale(1.08);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .08);
}

.aboutTestimonialSwiper
.swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
}

.aboutTestimonialSwiper
.swiper-pagination-bullet-active {
    background: var(--gold);
}


/* =========================================================
   PARTNERS
========================================================= */

.about-partners {
    padding: 65px 0;

    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;

    background: #fff;
}

.about-partners
.section-heading {
    margin-bottom: 25px;
}

.partners-wrapper {
    position: relative;

    padding: 0 75px;
}

.aboutPartnersSwiper {
    width: 100%;
    overflow: hidden;
}

.aboutPartnersSwiper .swiper-wrapper {
    display: flex;
}

.aboutPartnersSwiper .swiper-slide {
    height: 90px;

    flex-shrink: 0;

    border-right: 1px solid #e8e8e8;
}

.partner-item {
    width: 100%;
    height: 90px;

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

    overflow: hidden;
}

.partner-item img {
    max-width: 135px;
    max-height: 48px;

    object-fit: contain;

    opacity: .9;

    transform: scale(1);

    transition:
        transform .4s ease,
        opacity .4s ease;
}

.partner-item:hover img {
    transform: scale(1.14);
    opacity: 1;
}

.partner-prev {
    left: 0;
}

.partner-next {
    right: 0;
}

.partner-prev:hover,
.partner-next:hover {
    color: var(--gold);

    transform:
        translateY(-50%)
        scale(1.08);
}


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

.about-cta {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;

    background:
        url("../assets/img/about/about-cta.jpg")
        center / cover no-repeat;
}

.about-cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(7, 20, 38, .88);
}

.about-cta-content {
    position: relative;
    z-index: 2;
}

.about-cta h2 {
    margin-bottom: 18px;

    color: #fff;

    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.about-cta h2 span {
    color: var(--gold-light);
}

.about-cta p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, .7);

    font-size: 15px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(45px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.revealed {
    opacity: 1;

    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-left.revealed,
.reveal-right.revealed {
    transform: translateX(0);
}

.reveal:nth-child(2) {
    transition-delay: .1s;
}

.reveal:nth-child(3) {
    transition-delay: .2s;
}

.reveal:nth-child(4) {
    transition-delay: .3s;
}


/*Start Product List Section*/
/* =========================================================
   PRODUCT LIST SECTION
========================================================= */

.product-list-section {
    width: 100%;
    padding: 65px 0 80px;
    background: #f7f8fa;
}


/* =========================================================
   CONTAINER
========================================================= */

.product-list-section .container {
    max-width: 1320px;
}


/* =========================================================
   PRODUCT HEADING
========================================================= */

.product-heading {
    width: 100%;
    margin-bottom: 55px;
}


.product-heading-small {
    display: block;

    margin-bottom: 14px;

    color: #dfa116;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


.product-heading h1 {
    position: relative;

    margin: 0;

    padding-bottom: 18px;

    color: #071426;

    font-size: 52px;

    line-height: 1.05;

    font-weight: 800;

    text-transform: uppercase;
}


/* HEADING LINE */

.product-heading h1::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 1px;

    background: #e5e5e5;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

#productGrid {
    align-items: stretch;
}


.product-item {
    display: flex;
}


/* =========================================================
   COMPLETE PRODUCT CARD

   IMPORTANT:
   BORDER IS AROUND THE COMPLETE CARD
========================================================= */

.product-card {
    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    

    border-radius: 0;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* CARD HOVER */

.product-card:hover {
    transform: translateY(-6px);

    border-color: #c8c8c8;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.product-card-image {
    position: relative;

    width: 100%;

    height: 340px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   PRODUCT IMAGE

   CONTAIN = COMPLETE IMAGE ALWAYS VISIBLE
========================================================= */

.product-card-image .product-img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    padding: 18px;

    transition:
        transform 0.45s ease;
}


/* IMAGE HOVER */

.product-card:hover .product-img {
    transform: scale(1.04);
}


/* =========================================================
   PRODUCT HOVER BUTTONS
========================================================= */

.product-hover {
    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    padding: 15px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}


/* SHOW HOVER */

.product-card:hover .product-hover {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* HOVER BUTTON */

.product-hover a {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #071426;

    text-decoration: none;

    border-radius: 50%;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.15);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.product-hover a:hover {
    background: #dfa116;

    color: #ffffff;

    transform: translateY(-2px);
}


.product-hover a i {
    font-size: 16px;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.product-card-content {
    flex: 1;

    display: flex;

    flex-direction: column;

    padding: auto 3px;
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.product-card-content h2 {
    margin: 0;

    min-height: 54px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;

    text-align: left;
}


.product-card-content h2 a {
    color: #071426;

    text-decoration: none;
text-transform: uppercase;
    transition:
        color 0.3s ease;
}


.product-card-content h2 a:hover {
    color: #dfa116;
}


/* =========================================================
   PRODUCT BOTTOM
========================================================= */

.product-card-bottom {
    margin-top: auto;

    padding-top: 18px;

    margin-top: 22px;

    border-top: 1px solid #eeeeee;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* =========================================================
   GET QUOTE
========================================================= */

.product-card-bottom strong {
    color: #071426;

    font-size: 15px;

    font-weight: 700;
}


/* =========================================================
   VIEW BUTTON
========================================================= */

.product-card-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: #dfa116;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.product-card-bottom a:hover {
    color: #071426;
}


.product-card-bottom a i {
    font-size: 13px;

    transition:
        transform 0.3s ease;
}


.product-card-bottom a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   NO PRODUCT RESULT
========================================================= */

.product-no-result {
    width: 100%;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #dddddd;

    color: #687386;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   PAGINATION
========================================================= */

.product-pagination {
    margin-top: 55px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;
}


.product-pagination a {
    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    border: 1px solid #d9d9d9;

    color: #071426;

    font-size: 13px;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.product-pagination a:hover {
    background: #dfa116;

    border-color: #dfa116;

    color: #ffffff;
}


.product-pagination a.active {
    background: #dfa116;

    border-color: #dfa116;

    color: #ffffff;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.show {
    opacity: 1;

    transform: translateY(0);
}


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


/* ---------------------------------------------------------
   LARGE DESKTOP
--------------------------------------------------------- */

@media (max-width: 1399px) {

    .product-list-section .container {
        max-width: 1140px;
    }


    .product-heading h1 {
        font-size: 48px;
    }


    .product-card-image {
        height: 330px;
    }

}


/* ---------------------------------------------------------
   DESKTOP
--------------------------------------------------------- */

@media (max-width: 1199px) {

    .product-list-section {
        padding: 60px 0 70px;
    }


    .product-heading {
        margin-bottom: 45px;
    }


    .product-heading h1 {
        font-size: 44px;
    }


    .product-card-image {
        height: 310px;
    }


    .product-card-content {
        padding: 20px;
    }


    .product-card-content h3 {
        font-size: 19px;
    }

}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 991px) {

    .product-list-section {
        padding: 55px 0 65px;
    }


    .product-heading {
        margin-bottom: 40px;
    }


    .product-heading-small {
        font-size: 12px;
    }


    .product-heading h1 {
        font-size: 38px;
    }


    .product-card-image {
        height: 300px;
    }


    .product-card-image .product-img {
        padding: 15px;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .product-list-section {
        padding: 45px 0 60px;
    }


    .product-heading {
        margin-bottom: 35px;
    }


    .product-heading h1 {
        font-size: 32px;

        line-height: 1.1;
    }


    .product-card-image {
        height: 280px;
    }


    .product-card-content {
        padding: 18px;
    }


    .product-card-content h3 {
        min-height: auto;

        font-size: 18px;
    }


    .product-card-bottom {
        margin-top: 20px;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 575px) {

    .product-list-section {
        padding: 40px 0 55px;
    }


    .product-heading-small {
        margin-bottom: 10px;

        font-size: 11px;

        letter-spacing: 1.7px;
    }


    .product-heading h1 {
        font-size: 28px;
    }


    .product-card-image {
        height: 260px;
    }


    .product-card-image .product-img {
        padding: 12px;
    }


    .product-card-content {
        padding: 17px;
    }


    .product-card-content h3 {
        font-size: 17px;

        line-height: 1.4;
    }


    .product-card-bottom strong {
        font-size: 14px;
    }


    .product-pagination {
        margin-top: 40px;
    }

}


/* ---------------------------------------------------------
   EXTRA SMALL
--------------------------------------------------------- */

@media (max-width: 400px) {

    .product-card-image {
        height: 230px;
    }


    .product-card-content {
        padding: 15px;
    }


    .product-card-content h3 {
        font-size: 16px;
    }


    .product-card-bottom a {
        font-size: 10px;
    }

}



/*Product Details Page CSS*/


/* =========================================================
   GOOGLE FONT
========================================================= */

.product-details-section,
.enquiry-modal {

    font-family:
        "Poppins",
        sans-serif;

}



/* =========================================================
   COLORS
========================================================= */

.product-details-section {

    --navy: #071426;

    --navy-light: #10223a;

    --gold: #e4a514;

    --gold-dark: #c98b08;

    --gold-light: #f5bd32;

    --orange: #f47b00;

    --green: #149447;

    --white: #ffffff;

    --text: #46505c;

    --border: #dcdfe4;

    --light: #f7f8fa;

}



/* =========================================================
   MAIN SECTION
========================================================= */

.product-details-section {

    width: 100%;

    height: 650px;

    background: #ffffff;

    overflow: hidden;

}



/* =========================================================
   MAIN WRAPPER
========================================================= */

.product-details-wrapper {

    width: 100%;

    max-width: 1500px;

    height: 100%;

    margin: 0 auto;

    display: flex;

}



/* =========================================================
   LEFT COLUMN
========================================================= */

.product-left-column {

    width: 50%;

    flex: 0 0 50%;

    height: 100%;

    padding:
        18px
        20px
        18px
        25px;

}



/* =========================================================
   IMAGE OUTER BOX
========================================================= */

.product-image-box {

    width: 100%;

    height: 100%;

    background: #ffffff;

    border: 1px solid var(--border);

    box-shadow:
        0 12px 35px
        rgba(
            7,
            20,
            38,
            .08
        );

    overflow: hidden;

}



/* =========================================================
   IMAGE CENTER
========================================================= */

.product-image-container {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}



/* =========================================================
   PRODUCT IMAGE

   NO CROPPING
========================================================= */

.product-main-image {

    display: block;

    width: 100%;

    height: 100%;

    max-width: 100%;

    max-height: 100%;

    object-fit: contain;

    object-position: center center;

    padding: 12px;

}



/* =========================================================
   RIGHT COLUMN
========================================================= */

.product-right-column {

    width: 50%;

    flex: 0 0 50%;

    height: 100%;

    min-height: 0;

    display: flex;

    flex-direction: column;

    padding:
        0
        25px
        18px
        20px;

    overflow: hidden;

}



/* =========================================================
   STICKY HEADER
========================================================= */

.right-product-sticky-header {

    position: sticky;

    top: 0;

    z-index: 50;

    flex-shrink: 0;

    padding:
        8px
        0
        13px;

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

    border-bottom:
        1px solid
        #dedfe2;

    box-shadow:
        0 4px 14px
        rgba(
            7,
            20,
            38,
            .035
        );

}



/* =========================================================
   SMALL LABEL
========================================================= */

.right-product-title span {

    display: block;

    margin-bottom: 4px;

    color: var(--gold);

    font-size: 8px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 2px;

}



/* =========================================================
   PRODUCT TITLE
========================================================= */

.right-product-title h1 {

    margin: 0;

    max-width: 700px;

    color: var(--navy);

    font-size: 30px;

    line-height: 1.08;

    font-weight: 800;

    text-transform: uppercase;

}



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

.right-product-buttons {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 10px;

}



/* =========================================================
   BUTTON BASE
========================================================= */

.request-quote-btn,
.whatsapp-btn {

    min-width: 140px;

    height: 38px;

    padding:
        0
        15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 3px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 8px;

    line-height: 1;

    font-weight: 800;

    text-decoration: none;

    cursor: pointer;

    transition:
        all .25s ease;

}



/* =========================================================
   QUOTE BUTTON
========================================================= */

.request-quote-btn {

    border:
        1px solid
        var(--gold);

    background:
        linear-gradient(
            135deg,
            #e4a514,
            #f1b425
        );

    color: #fff;

    box-shadow:
        0 5px 12px
        rgba(
            228,
            165,
            20,
            .15
        );

}



.request-quote-btn:hover {

    background:
        linear-gradient(
            135deg,
            #d69608,
            #e8a817
        );

    border-color:
        var(--gold-dark);

    color: #071426;

    transform:
        translateY(-2px);

    box-shadow:
        0 7px 17px
        rgba(
            228,
            165,
            20,
            .22
        );

}



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

.whatsapp-btn {

    border:
        1px solid
        var(--green);

    background:
        #25d366;

    color:#fff;
    font-weight:bold;

}



.whatsapp-btn:hover {

    background:
        var(--green);

    color:
        #ffffff;

    transform:
        translateY(-2px);

    box-shadow:
        0 6px 15px
        rgba(
            20,
            148,
            71,
            .15
        );

}



/* =========================================================
   RIGHT CONTENT SCROLL
========================================================= */

.product-content-scroll {

    flex: 1;

    min-height: 0;

    overflow-y: auto;

    overflow-x: hidden;

    padding:
        20px
        7px
        30px
        0;

    scrollbar-width: none;

    -ms-overflow-style: none;

}



.product-content-scroll::-webkit-scrollbar {

    display: none;

    width: 0;

    height: 0;

}



/* =========================================================
   SHORT DESCRIPTION
========================================================= */

.product-short-description {

    margin-bottom: 17px;

    color: var(--text);

    font-size: 12px;

    line-height: 1.85;

    text-align: justify;

}



.product-short-description p {

    margin:
        0
        0
        14px;

    text-align: justify;

}



/* =========================================================
   DESCRIPTION
========================================================= */

.product-description {

    color: var(--text);

    font-size: 12px;

    line-height: 1.85;

    

}



.product-description p {

    margin:
        0
        0
        16px;

    text-align: justify;

}



/* =========================================================
   HEADINGS
========================================================= */

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4,
.product-description h5,
.product-description h6 {

    margin:
        22px
        0
        10px;

    color:
        var(--navy);

    font-weight:
        800;

    line-height:
        1.25;

}



/* =========================================================
   H2 GOLD UNDERLINE
========================================================= */

.product-description h2 {

    position: relative;

    padding-bottom: 8px;

}



.product-description h2::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 45px;

    height: 3px;

    background:
        var(--gold);

}



/* =========================================================
   UNORDERED LIST
========================================================= */

.product-description ul {

    margin:
        16px
        0
        20px;

    padding: 0;

    list-style: none;

}



.product-description ul li {

    position: relative;

    margin-bottom: 9px;

    padding:
        10px
        13px
        10px
        38px;

    background:
        #f8f9fa;

    border-left:
        3px solid
        var(--gold);

    color:
        var(--text);

    font-size:
        12px;

    line-height:
        1.6;

}



.product-description ul li::before {

    content:
        "\f26a";

    position:
        absolute;

    left:
        12px;

    top:
        10px;

    color:
        var(--gold);

    font-family:
        bootstrap-icons;

    font-size:
        12px;

}



/* =========================================================
   ORDERED LIST
========================================================= */

.product-description ol {

    margin:
        16px
        0
        20px;

    padding: 0;

    list-style: none;

    counter-reset:
        productCounter;

}



.product-description ol li {

    position: relative;

    counter-increment:
        productCounter;

    margin-bottom:
        9px;

    padding:
        10px
        13px
        10px
        43px;

    background:
        #f8f9fa;

    border-left:
        3px solid
        var(--gold);

    color:
        var(--text);

    font-size:
        12px;

    line-height:
        1.6;

}



.product-description ol li::before {

    content:
        counter(productCounter);

    position:
        absolute;

    left:
        9px;

    top:
        8px;

    width:
        24px;

    height:
        24px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        var(--navy);

    color:
        var(--gold);

    font-size:
        9px;

    font-weight:
        800;

}



/* =========================================================
   TABLE
========================================================= */

.product-description table {

    width:
        100% !important;

    margin:
        20px 0;

    border-collapse:
        separate !important;

    border-spacing:
        0;

    background:
        #ffffff;

    border:
        1px solid
        #d9dce1;

    font-size:
        11px;

    overflow:
        hidden;

}



/* TABLE HEADER */

.product-description table thead th {

    padding:
        11px
        12px;

    background:
        var(--navy);

    color:
        var(--gold);

    border: 0;

    font-weight:
        700;

    text-align:
        left;

}



/* TABLE BODY */

.product-description table tbody td {

    padding:
        10px
        12px;

    color:
        #3d4652;

    border-top:
        1px solid
        #e5e6e9;

    border-right:
        1px solid
        #e5e6e9;

    vertical-align:
        middle;

}



/* ZEBRA */

.product-description table tbody tr:nth-child(even) td {

    background:
        #f8f9fb;

}



/* HOVER */

.product-description table tbody tr:hover td {

    background:
        #fff8df;

}



/* =========================================================
   PDF
========================================================= */

.product-pdf {

    margin-top:
        22px;

    padding-top:
        18px;

    border-top:
        1px solid
        #e0e1e4;

}



.product-pdf a {

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    padding:
        10px
        15px;

    border:
        1px solid
        var(--navy);

    background:
        #ffffff;

    color:
        var(--navy);

    font-size:
        8px;

    font-weight:
        800;

    text-decoration:
        none;

    transition:
        .25s ease;

}



.product-pdf a:hover {

    background:
        var(--navy);

    color:
        var(--gold);

}



/* =========================================================
   VIDEO
========================================================= */

.product-video-section {

    margin-top:
        22px;

    padding-top:
        18px;

    border-top:
        1px solid
        #e0e1e4;

}



.product-video-section h3 {

    margin:
        0 0 10px;

    color:
        var(--navy);

    font-size:
        18px;

    font-weight:
        800;

}



.product-video {

    width:
        100%;

    aspect-ratio:
        16 / 9;

    background:
        var(--navy);

}



.product-video iframe {

    width:
        100%;

    height:
        100%;

    border:
        0;

    display:
        block;

}



/* =========================================================
   MODAL WIDTH
========================================================= */

.enquiry-modal-dialog {

    width:
        calc(100% - 30px);

    max-width:
        850px;

    margin:
        20px auto;

}



/* =========================================================
   MODAL
========================================================= */

.enquiry-modal {

    border:
        0;

    border-radius:
        4px;

    overflow:
        hidden;

    box-shadow:
        0 20px 60px
        rgba(
            7,
            20,
            38,
            .35
        );

}



/* =========================================================
   MODAL HEADER
========================================================= */

.enquiry-modal-header {

    min-height:
        70px;

    padding:
        14px
        20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    background:
        linear-gradient(
            135deg,
            #071426,
            #10243e
        );

}



/* =========================================================
   MODAL LABEL
========================================================= */

.enquiry-modal-header span {

    display:
        block;

    margin-bottom:
        4px;

    color:
        var(--gold);

    font-size:
        8px;

    line-height:
        1;

    font-weight:
        800;

    letter-spacing:
        2px;

}



/* =========================================================
   MODAL TITLE
========================================================= */

.enquiry-modal-header h2 {

    margin:
        0;

    color:
        #ffffff;

    font-size:
        21px;

    line-height:
        1.2;

    font-weight:
        800;

}



/* =========================================================
   CLOSE
========================================================= */

.enquiry-close {

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        0;

    background:
        transparent;

    color:
        #ffffff;

    opacity:
        .65;

    cursor:
        pointer;

    font-size:
        17px;

    transition:
        .2s ease;

}



.enquiry-close:hover {

    color:
        var(--gold);

    opacity:
        1;

    transform:
        rotate(90deg);

}



/* =========================================================
   MODAL BODY
========================================================= */

.enquiry-modal-body {

    padding:
        20px;

    background:
        #ffffff;

}



/* =========================================================
   FORM GRID
========================================================= */

.enquiry-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        13px;

}



/* =========================================================
   FORM FIELD
========================================================= */

.enquiry-field label {

    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--navy);

    font-size:
        10px;

    font-weight:
        700;

}



.enquiry-field label b {

    color:
        var(--orange);

}



.enquiry-field input,
.enquiry-field textarea {

    width:
        100%;

    border:
        1px solid
        #d5d8dd;

    border-radius:
        0;

    outline:
        none;

    background:
        #ffffff;

    color:
        var(--navy);

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        10px;

    transition:
        .2s ease;

}



.enquiry-field input {

    height:
        39px;

    padding:
        0
        11px;

}



.enquiry-field textarea {

    min-height:
        90px;

    padding:
        9px
        11px;

    resize:
        vertical;

}



.enquiry-field input:focus,
.enquiry-field textarea:focus {

    border-color:
        var(--gold);

    box-shadow:
        0 0 0 2px
        rgba(
            228,
            165,
            20,
            .10
        );

}



.enquiry-field input[readonly] {

    background:
        #f7f8fa;

}



/* =========================================================
   MESSAGE
========================================================= */

.enquiry-message-field {

    margin-top:
        13px;

}



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

.enquiry-modal-footer {

    margin-top:
        17px;

    padding-top:
        14px;

    border-top:
        1px solid
        #e1e2e5;

    display:
        flex;

    align-items:
        center;

    justify-content:
        flex-end;

    gap:
        8px;

}



/* =========================================================
   CLOSE BUTTON
========================================================= */

.enquiry-close-btn {

    height:
        37px;

    min-width:
        70px;

    padding:
        0
        14px;

    border:
        0;

    background:
        #f3f4f5;

    color:
        var(--navy);

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        9px;

    cursor:
        pointer;

}



/* =========================================================
   SEND BUTTON
========================================================= */

.send-enquiry-btn {

    height:
        37px;

    min-width:
        130px;

    padding:
        0
        14px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    border:
        1px solid
        var(--gold);

    border-radius:
        3px;

    background:
        linear-gradient(
            135deg,
            #e4a514,
            #f1b425
        );

    color:
        var(--navy);

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        8px;

    font-weight:
        800;

    cursor:
        pointer;

    transition:
        .25s ease;

}



.send-enquiry-btn:hover {

    background:
        linear-gradient(
            135deg,
            #d69608,
            #e8a817
        );

    transform:
        translateY(-1px);

}



/* =========================================================
   MODAL BACKDROP
========================================================= */

.modal-backdrop.show {

    opacity:
        .65;

}



/* =========================================================
   1200px
========================================================= */

@media (max-width:1199px) {

    .product-details-section {

        height:
            620px;

    }


    .product-right-column {

        padding-right:
            18px;

        padding-left:
            15px;

    }


    .right-product-title h1 {

        font-size:
            26px;

    }

}



/* =========================================================
   991px
========================================================= */

@media (max-width:991px) {

    .product-details-section {

        height:
            570px;

    }


    .product-left-column {

        padding-left:
            15px;

    }


    .product-right-column {

        padding-right:
            15px;

        padding-left:
            15px;

    }


    .right-product-title h1 {

        font-size:
            22px;

    }


    .request-quote-btn,
    .whatsapp-btn {

        min-width:
            115px;

        height:
            36px;

        font-size:
            7px;

    }


    .product-short-description,
    .product-description {

        font-size:
            11px;

    }

}



/* =========================================================
   MOBILE 767px
========================================================= */

@media (max-width:767px) {

    .product-details-section {

        height:
            auto;

        overflow:
            visible;

    }


    .product-details-wrapper {

        display:
            block;

        height:
            auto;

    }


    /* IMAGE */

    .product-left-column {

        width:
            100%;

        height:
            360px;

        padding:
            12px;

    }


    .product-image-box {

        height:
            100%;

    }


    /* RIGHT */

    .product-right-column {

        width:
            100%;

        height:
            auto;

        padding:
            0
            12px
            30px;

        overflow:
            visible;

    }


    /* STICKY */

    .right-product-sticky-header {

        position:
            sticky;

        top:
            0;

        padding:
            11px
            0
            12px;

    }


    .right-product-title h1 {

        font-size:
            20px;

    }


    .right-product-buttons {

        width:
            100%;

    }


    .request-quote-btn,
    .whatsapp-btn {

        flex:
            1;

        min-width:
            0;

    }


    /* CONTENT */

    .product-content-scroll {

        height:
            auto;

        overflow:
            visible;

        padding-top:
            18px;

    }


    /* TABLE */

    .product-description {

        overflow-x:
            auto;

        scrollbar-width:
            none;

    }


    .product-description::-webkit-scrollbar {

        display:
            none;

    }


    .product-description table {

        min-width:
            600px;

    }


    /* MODAL */

    .enquiry-modal-dialog {

        width:
            calc(100% - 20px);

        max-width:
            none;

        margin:
            10px auto;

    }


    .enquiry-modal-header {

        min-height:
            63px;

        padding:
            12px
            15px;

    }


    .enquiry-modal-header h2 {

        font-size:
            18px;

    }


    .enquiry-modal-body {

        padding:
            15px;

    }


    .enquiry-grid {

        grid-template-columns:
            1fr;

        gap:
            11px;

    }


    .enquiry-message-field {

        margin-top:
            11px;

    }

}



/* =========================================================
   MOBILE 575px
========================================================= */

@media (max-width:575px) {

    .product-left-column {

        height:
            320px;

        padding:
            10px;

    }


    .product-main-image {

        padding:
            5px;

    }


    .product-right-column {

        padding:
            0
            10px
            25px;

    }


    .right-product-title h1 {

        font-size:
            17px;

    }


    .right-product-buttons {

        gap:
            6px;

    }


    .request-quote-btn,
    .whatsapp-btn {

        height:
            35px;

        padding:
            0
            7px;

        font-size:
            6.8px;

    }


    .product-short-description,
    .product-description {

        font-size:
            10.5px;

        line-height:
            1.75;

    }


    .enquiry-modal-dialog {

        width:
            calc(100% - 12px);

        margin:
            6px auto;

    }


    .enquiry-modal-header {

        padding:
            11px
            13px;

    }


    .enquiry-modal-body {

        padding:
            13px;

    }


    .enquiry-field input {

        height:
            38px;

    }


    .enquiry-field textarea {

        min-height:
            82px;

    }


    .enquiry-modal-footer {

        margin-top:
            13px;

    }

}



/* =========================================================
   380px
========================================================= */

@media (max-width:380px) {

    .product-left-column {

        height:
            290px;

    }


    .right-product-title h1 {

        font-size:
            15px;

    }


    .request-quote-btn,
    .whatsapp-btn {

        font-size:
            6px;

    }


    .enquiry-modal-header h2 {

        font-size:
            16px;

    }

}



/*Contact Page CSS*/

.contact-page {

    --navy: #071426;
    --navy2: #10243d;

    --gold: #e4a514;
    --gold2: #f3b728;

    --green: #159447;

    --text: #4d5664;

    --border: #dedfe3;

    --light: #f7f8fa;

    --white: #ffffff;

    font-family:
        "Poppins",
        sans-serif;

    color:
        var(--text);

    background:
        #ffffff;

}



/* =========================================================
   GOLD HEADER
========================================================= */

.contact-header {

    position:
        relative;

    overflow:
        hidden;

    padding:
        38px 0 42px;

    background:
        linear-gradient(
            135deg,
            #e1a111,
            #f1b72b
        );

}



.contact-header::before {

    content:
        "";

    position:
        absolute;

    width:
        330px;

    height:
        330px;

    right:
        -150px;

    top:
        -230px;

    border:
        1px solid
        rgba(
            7,
            20,
            38,
            .16
        );

    border-radius:
        50%;

}



.contact-header::after {

    content:
        "";

    position:
        absolute;

    width:
        230px;

    height:
        230px;

    left:
        -150px;

    bottom:
        -190px;

    border:
        1px solid
        rgba(
            7,
            20,
            38,
            .13
        );

    border-radius:
        50%;

}



.contact-header-inner {

    position:
        relative;

    z-index:
        2;

    display:
        flex;

    align-items:
        flex-end;

    justify-content:
        space-between;

    gap:
        25px;

}



.header-label {

    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--navy);

    font-size:
        9px;

    font-weight:
        800;

    letter-spacing:
        3px;

}



.contact-header h1 {

    margin:
        0 0 6px;

    color:
        var(--navy);

    font-size:
        46px;

    line-height:
        1.05;

    font-weight:
        800;

}



.contact-header h1 span {

    color:
        #ffffff;

}



.contact-header p {

    max-width:
        650px;

    margin:
        0;

    color:
        rgba(
            7,
            20,
            38,
            .78
        );

    font-size:
        10px;

    line-height:
        1.7;

}



.breadcrumb-box {

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    padding-bottom:
        3px;

    white-space:
        nowrap;

}



.breadcrumb-box a,
.breadcrumb-box span {

    color:
        var(--navy);

    font-size:
        9px;

    font-weight:
        700;

    text-decoration:
        none;

}



.breadcrumb-box span {

    color:
        #ffffff;

}



.breadcrumb-box i {

    color:
        var(--navy);

    font-size:
        8px;

}



/* =========================================================
   CONTACT MAIN
========================================================= */

.contact-main {

    padding:
        55px 0;

    background:
        #ffffff;

}



/* =========================================================
   INFORMATION
========================================================= */

.contact-info-box {

    height:
        100%;

    padding:
        5px 25px 5px 0;

}



.section-label {

    display:
        block;

    margin-bottom:
        6px;

    color:
        var(--gold);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;

}



.contact-info-box h2 {

    margin:
        0 0 12px;

    color:
        var(--navy);

    font-size:
        32px;

    line-height:
        1.2;

    font-weight:
        800;

}



.contact-info-box h2 span {

    color:
        var(--gold);

}



.info-intro {

    margin:
        0 0 20px;

    color:
        var(--text);

    font-size:13px;

    line-height:
        1.8;

    text-align:
        justify;

}



/* =========================================================
   INFO ITEM
========================================================= */

.info-item {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        11px;

    margin-bottom:
        8px;

    border:
        1px solid
        var(--border);

    transition:
        .3s ease;

}



.info-item:hover {

    border-color:
        var(--gold);

    transform:
        translateX(4px);

    box-shadow:
        0 8px 25px
        rgba(
            7,
            20,
            38,
            .06
        );

}



.info-icon {

    width:
        40px;

    height:
        40px;

    flex:
        0 0 40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(
            228,
            165,
            20,
            .12
        );

    color:
        var(--gold);

}



.whatsapp-icon {

    color:
        var(--green);

    background:
        rgba(
            21,
            148,
            71,
            .10
        );

}



.info-text h3 {

    margin:
        0 0 2px;

    color:
        var(--navy);

    font-size:
        13px;

    font-weight:
        800;

}



.info-text p {

    margin:
        0;

    color:
        var(--text);

    font-size:
        13px;

    line-height:
        1.5;

}



.info-text a {

    color:
        var(--text);

    font-size:
        13px;

    text-decoration:
        none;

}



.info-text a:hover {

    color:
        var(--gold);

}



/* =========================================================
   HOURS
========================================================= */

.business-hours {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-top:
        15px;

    padding:
        13px;

    background:
        var(--navy);

}



.hours-icon {

    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    flex:
        0 0 40px;

    border-radius:
        50%;

    color:
        var(--gold2);

    background:
        rgba(
            228,
            165,
            20,
            .13
        );

}



.business-hours h3 {

    margin:
        0 0 2px;

    color:
        #ffffff;

    font-size:
        9px;

    font-weight:
        700;

}



.business-hours p {

    margin:
        0;

    color:
        rgba(
            255,
            255,
            255,
            .65
        );

    font-size:
        8px;

}



.business-hours strong {

    color:
        var(--gold2);

    font-size:
        8px;

}



/* =========================================================
   FORM CARD
========================================================= */

.contact-form-box {

    height:
        100%;

    padding:
        26px;

    border:
        1px solid
        var(--border);

    background:
        #ffffff;

    box-shadow:
        0 15px 45px
        rgba(
            7,
            20,
            38,
            .07
        );

}



.form-heading {

    padding-bottom:
        15px;

    margin-bottom:
        17px;

    border-bottom:
        1px solid
        var(--border);

}



.form-heading span {

    color:
        var(--gold);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;

}



.form-heading h2 {

    margin:
        4px 0 4px;

    color:
        var(--navy);

    font-size:
        24px;

    font-weight:
        800;

}



.form-heading h2 strong {

    color:
        var(--gold);

}



.form-heading p {

    margin:
        0;

    color:
        var(--text);

    font-size:
        8px;

}



/* =========================================================
   LABEL
========================================================= */

.contact-form-box label {

    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--navy);

    font-size:
        13px;

    font-weight:
        700;

}



.contact-form-box label b {

    color:
        #f47b00;

}



/* =========================================================
   INPUT
========================================================= */

.input-box {

    position:
        relative;

}



.input-box i {

    position:
        absolute;

    left:
        11px;

    top:
        50%;

    transform:
        translateY(-50%);

    color:
        var(--gold);

    font-size:
        11px;

    pointer-events:
        none;

}



.input-box input,
.input-box select {

    width:
        100%;

    height:
        40px;

    padding:
        0 10px 0 32px;

    border:
        1px solid
        var(--border);

    outline:
        none;

    border-radius:
        2px;

    color:
        var(--navy);

    background:
        #ffffff;

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        8px;

    transition:
        .25s ease;

}



.input-box input:focus,
.input-box select:focus {

    border-color:
        var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(
            228,
            165,
            20,
            .08
        );

}



.input-box select {

    appearance:
        none;

}



/* =========================================================
   TEXTAREA
========================================================= */

.textarea-box {

    position:
        relative;

}



.textarea-box i {

    position:
        absolute;

    top:
        11px;

    left:
        11px;

    color:
        var(--gold);

    font-size:
        11px;

}



.textarea-box textarea {

    width:
        100%;

    min-height:
        110px;

    padding:
        9px 10px 9px 32px;

    border:
        1px solid
        var(--border);

    outline:
        none;

    resize:
        vertical;

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        8px;

    color:
        var(--navy);

}



.textarea-box textarea:focus {

    border-color:
        var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(
            228,
            165,
            20,
            .08
        );

}



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

.form-buttons {

    display:
        flex;

    gap:
        8px;

    margin-top:
        15px;

}



.send-button,
.whatsapp-button {

    height:
        40px;

    min-width:
        140px;

    padding:
        0 17px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    border-radius:
        3px;

    font-family:
        "Poppins",
        sans-serif;

    font-size:
        8px;

    font-weight:
        800;

    cursor:
        pointer;

    transition:
        .3s ease;

}



.send-button {

    border:
        1px solid
        var(--gold);

    background:
        var(--gold);

    color:
        var(--navy);

}



.send-button:hover {

    background:
        var(--navy);

    border-color:
        var(--navy);

    color:
        #ffffff;

}



.whatsapp-button {

    border:
        1px solid
        var(--green);

    background:
        #ffffff;

    color:
        var(--green);

}



.whatsapp-button:hover {

    background:
        var(--green);

    color:
        #ffffff;

}



.form-note {

    margin-top:
        8px;

    color:
        #858b94;

    font-size:
        7px;

}



.form-note i {

    color:
        var(--green);

}



/* =========================================================
   MAP SECTION
========================================================= */

.map-section {

    padding:
        50px 0 60px;

    background:
        var(--light);

    border-top:
        1px solid
        #e6e7e9;

}



.map-heading {

    margin-bottom:
        20px;

}



.map-heading span {

    display:
        block;

    margin-bottom:
        4px;

    color:
        var(--gold);

    font-size:
        8px;

    font-weight:
        800;

    letter-spacing:
        2px;

}



.map-heading h2 {

    margin:
        0 0 4px;

    color:
        var(--navy);

    font-size:
        29px;

    line-height:
        1.2;

    font-weight:
        800;

}



.map-heading h2 strong {

    color:
        var(--gold);

}



.map-heading p {

    margin:
        0;

    color:
        var(--text);

    font-size:
        9px;

}



/* =========================================================
   MAP
========================================================= */

.map-wrapper {

    position:
        relative;

    width:
        100%;

    height:
        390px;

    overflow:
        hidden;

    border:
        1px solid
        #d9dce0;

    background:
        #eeeeee;

    box-shadow:
        0 15px 40px
        rgba(
            7,
            20,
            38,
            .08
        );

}



.map-wrapper iframe {

    width:
        100%;

    height:
        100%;

    display:
        block;

    border:
        0;

}



/* =========================================================
   MAP CARD
========================================================= */

.map-card {

    position:
        absolute;

    left:
        22px;

    bottom:
        22px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px 15px;

    min-width:
        250px;

    background:
        #ffffff;

    border-left:
        4px solid
        var(--gold);

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

}



.map-card-icon {

    width:
        38px;

    height:
        38px;

    flex:
        0 0 38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(
            228,
            165,
            20,
            .13
        );

    color:
        var(--gold);

}



.map-card h3 {

    margin:
        0 0 1px;

    color:
        var(--navy);

    font-size:
        9px;

    font-weight:
        800;

}



.map-card p {

    margin:
        0 0 3px;

    color:
        #68707b;

    font-size:
        7px;

}



.map-card a {

    color:
        var(--gold);

    font-size:
        7px;

    font-weight:
        700;

    text-decoration:
        none;

}



/* =========================================================
   BENEFITS
========================================================= */

.contact-benefits {

    padding:
        45px 0 60px;

    background:
        #ffffff;

}



.benefit-card {

    height:
        100%;

    padding:
        20px;

    border:
        1px solid
        var(--border);

    background:
        #ffffff;

    transition:
        .3s ease;

}



.benefit-card:hover {

    border-color:
        var(--gold);

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 30px
        rgba(
            7,
            20,
            38,
            .07
        );

}



.benefit-icon {

    width:
        42px;

    height:
        42px;

    margin-bottom:
        11px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    background:
        rgba(
            228,
            165,
            20,
            .12
        );

    color:
        var(--gold);

}



.benefit-card h3 {

    margin:
        0 0 4px;

    color:
        var(--navy);

    font-size:
        11px;

    font-weight:
        800;

}



.benefit-card p {

    margin:
        0;

    color:
        var(--text);

    font-size:
        13px;

    line-height:
        1.7;

}



/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width:1199px) {

    .contact-header h1 {

        font-size:
            42px;

    }


    .contact-info-box h2 {

        font-size:
            29px;

    }

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width:991px) {

    .contact-header-inner {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


    .breadcrumb-box {

        padding:
            0;

    }


    .contact-info-box {

        padding:
            0;

    }


    .contact-form-box {

        margin-top:
            10px;

    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width:767px) {

    .contact-header {

        padding:
            30px 0;

    }


    .contact-header h1 {

        font-size:
            36px;

    }


    .contact-main {

        padding:
            40px 0;

    }


    .contact-form-box {

        padding:
            20px;

    }


    .map-wrapper {

        height:
            330px;

    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width:575px) {

    .contact-header h1 {

        font-size:
            31px;

    }


    .contact-header p {

        font-size:
            9px;

    }


    .contact-info-box h2 {

        font-size:
            26px;

    }


    .contact-form-box {

        padding:
            16px;

    }


    .form-heading h2 {

        font-size:
            21px;

    }


    .form-buttons {

        flex-direction:
            column;

    }


    .send-button,
    .whatsapp-button {

        width:
            100%;

    }


    .map-wrapper {

        height:
            290px;

    }


    .map-card {

        left:
            10px;

        right:
            10px;

        bottom:
            10px;

        min-width:
            auto;

    }

}



/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width:380px) {

    .contact-header h1 {

        font-size:
            27px;

    }


    .contact-form-box {

        padding:
            13px;

    }


    .map-wrapper {

        height:
            260px;

    }

}

















