/*==================================================
GOOGLE FONT
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
ROOT VARIABLES
==================================================*/

:root{

    --primary:#082b57;
    --secondary:#d7ab45;
    --white:#ffffff;
    --black:#222;
    --text:#666;
    --light:#f8f8f8;
    --border:#ececec;

}


/*==================================================
RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--black);
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

section{

    padding:80px 0;

}

.container{

    max-width:1200px;

}


/*==================================================
COMMON TITLE
==================================================*/

.section-tag{

    color:var(--secondary);
    font-weight:600;
    display:inline-block;
    margin-bottom:10px;

}

.section-tag::before{

    content:"";
    width:35px;
    height:2px;
    background:var(--secondary);
    display:inline-block;
    margin-right:10px;
    vertical-align:middle;

}

h1,h2,h3,h4,h5{

    font-weight:700;
    color:var(--primary);

}

p{

    color:var(--text);
    line-height:30px;

}


/*==================================================
TOP HEADER
==================================================*/

.top-header{

    background:var(--primary);
    padding:10px 0;
    font-size:14px;

}

.welcome-text{

    color:#fff;

}

.top-contact{

    display:flex;
    justify-content:flex-end;
    gap:25px;

}

.top-contact a{

    color:#fff;
    transition:.3s;

}

.top-contact a:hover{

    color:var(--secondary);

}
.testimonial-user{

    width:70px;
    height:70px;

    border-radius:50%;

    background:#fff8e7;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d4af37;

    font-size:42px;

    border:3px solid #d4af37;

    margin-right:15px;

}
.top-contact i{

    margin-right:6px;

}


/*==================================================
NAVBAR
==================================================*/

.navbar{

    padding:18px 0;
    background:#fff !important;
    transition:.3s;
    z-index:999;

}

.navbar-brand img{

    width:180px;

}

.navbar-nav{

    gap:12px;

}
/*==========================================
NAVBAR LOGO
==========================================*/

.navbar{
    background:#fff;
    padding:12px 0;
    transition:0.3s ease;
}

.navbar-brand{
    display:flex;
    align-items:center;
}

.navbar-brand img{
    width:180px;
    height:auto;
    object-fit:contain;
    transition:0.3s ease;
}

/* Optional - Shrink logo on sticky navbar */
.navbar.sticky-top{
    z-index:999;
}

.navbar.scrolled{
    padding:8px 0;
}

.navbar.scrolled .navbar-brand img{
    width:160px;
}

/*==============================
Mobile
==============================*/

@media (max-width:991px){

    .navbar{
        padding:10px 0;
    }

    .navbar-brand img{
        width:140px;
    }

}

@media (max-width:576px){

    .navbar-brand img{
        width:120px;
    }

}
.nav-link{

    color:var(--primary)!important;
    font-weight:500;
    position:relative;
    transition:.3s;

}

.nav-link:hover{

    color:var(--secondary)!important;

}

.nav-link.active{

    color:var(--secondary)!important;

}

.nav-link::after{

    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--secondary);
    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}


/*==================================================
JOIN BUTTON
==================================================*/

.join-btn{

    background:var(--primary);
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    transition:.3s;
    font-weight:600;

}

.join-btn:hover{

    background:var(--secondary);
    color:#fff;

}


/*==================================================
HERO
==================================================*/
/* ===========================
   ABOUT HERO SECTION
=========================== */

.about-hero-section{
    background:linear-gradient(to right,#ffffff,#faf7ef);
    padding:90px 0;
    overflow:hidden;
}

.about-hero-content{
    padding-right:60px;
}

.about-hero-subtitle{
    display:inline-block;
    color:#D4A017; /* Mustard Yellow */
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:0.5px;
    text-transform:uppercase; /* Optional - remove if not needed */
}

.about-hero-title{
    font-size:50px;
    line-height:72px;
    font-weight:800;
    color:#163b74;
    margin-bottom:25px;
}

.about-hero-heading{
    font-size:24px;
    line-height:48px;
    color:#D4A017;
    font-weight:700;
    margin-bottom:25px;
}

.about-hero-text{
    font-size:18px;
    line-height:34px;
    color:#555;
    margin-bottom:35px;
}

.about-hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.about-hero-image{
    width:100%;
    max-width:700px;
    height:auto;
    animation:float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}

/* ===========================
   Tablet
=========================== */

@media (max-width:991px){

    .about-hero-section{
        padding:70px 0;
        text-align:center;
    }

    .about-hero-content{
        padding-right:0;
        margin-bottom:50px;
    }

    .about-hero-title{
        font-size:46px;
        line-height:56px;
    }

    .about-hero-heading{
        font-size:28px;
        line-height:40px;
    }

    .about-hero-text{
        font-size:17px;
        line-height:30px;
    }

    .about-hero-buttons{
        justify-content:center;
    }

    .about-hero-image{
        max-width:550px;
    }

}

/* ===========================
   Mobile
=========================== */

@media (max-width:576px){

    .about-hero-section{
        padding:50px 0;
    }

    .about-hero-subtitle{
        font-size:18px;
    }

    .about-hero-title{
        font-size:34px;
        line-height:42px;
    }

    .about-hero-heading{
        font-size:22px;
        line-height:32px;
    }

    .about-hero-text{
        font-size:16px;
        line-height:28px;
    }

    .about-hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .about-hero-buttons a{
        width:100%;
        max-width:260px;
        text-align:center;
    }

    .about-hero-image{
        max-width:100%;
    }

}


/*==================================================
BUTTONS
==================================================*/

.btn-primary-custom{

    background:var(--primary);
    color:#fff;
    padding:15px 34px;
    border-radius:40px;
    transition:.3s;
    display:inline-block;
    font-weight:600;

}

.btn-primary-custom:hover{

    background:var(--secondary);
    color:#fff;

}

.btn-outline-custom{

    border:2px solid var(--secondary);
    color:var(--primary);
    padding:15px 34px;
    border-radius:40px;
    transition:.3s;
    display:inline-block;
    font-weight:600;

}

.btn-outline-custom:hover{

    background:var(--secondary);
    color:#fff;

}


/*==================================================
ANIMATION
==================================================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}


/*==================================================
STICKY NAVBAR
==================================================*/

.sticky-top{

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.navbar-brand img{

    width:150px;

}

.navbar-nav{

    text-align:center;
    padding:20px 0;

}

.join-btn{

    display:block;
    margin-top:15px;
    text-align:center;

}

.hero-section{

    text-align:center;

}

.hero-title{

    font-size:42px;
    line-height:54px;

}

.hero-buttons{

    justify-content:center;

}

.hero-image{

    margin-top:40px;

}

.top-contact{

    justify-content:center;
    flex-wrap:wrap;
    gap:12px;

}

}

@media(max-width:768px){

section{

    padding:60px 0;

}

.hero-title{

    font-size:34px;
    line-height:46px;

}

.hero-heading{

    font-size:22px;

}

.hero-text{

    font-size:15px;

}

.btn-primary-custom,
.btn-outline-custom{

    width:100%;
    text-align:center;

}

.top-header{

    text-align:center;

}

}
/*==================================================
COUNTER SECTION
==================================================*/

.counter-section{

    background:#fff;
    padding:40px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

.counter-box{

    text-align:center;
    padding:20px 10px;
    transition:.3s;

}

.counter-box:hover{

    transform:translateY(-8px);

}

.counter-box i{

    width:70px;
    height:70px;
    background:#fff7e8;
    color:var(--secondary);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    font-size:30px;
    margin-bottom:18px;

}

.counter-box h3{

    color:var(--primary);
    font-size:34px;
    font-weight:700;
    margin-bottom:8px;

}

.counter-box p{

    font-size:15px;
    color:#666;
    margin:0;

}


/*==================================================
ABOUT SECTION
==================================================*/

.about-section{

    background:#f9fafc;
    padding:90px 0;

}

.about-content{

    padding:50px;

}

.about-content h2{

    font-size:42px;
    margin-bottom:20px;
    line-height:54px;

}

.about-content p{

    margin-bottom:30px;

}

.about-img{

    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);

}


/*==================================================
EXPERIENCE BOX
==================================================*/

.experience{

    position:absolute;
    left:-40px;
    bottom:40px;

    background:var(--secondary);
    color:#fff;

    width:170px;
    height:170px;

    border-radius:50%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    border:8px solid #fff;

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

.experience h2{

    color:#fff;
    font-size:48px;
    margin:0;

}

.experience span{

    text-align:center;
    font-size:15px;
    line-height:24px;

}


/*==================================================
GOLD BUTTON
==================================================*/

.gold-btn{

    background:var(--secondary);
    color:#fff;

    padding:14px 35px;

    border-radius:40px;

    display:inline-block;

    transition:.3s;

    font-weight:600;

}

.gold-btn:hover{

    background:var(--primary);
    color:#fff;

}


/* Gallery Section */

.gallery-section{
    background:#f8f9fa;
}

.gallery-card{
    width:100%;
    height:650px;          /* Same height for both cards */
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.gallery-img{
    width:100%;
    height:100%;
    object-fit:contain;    /* Shows the complete image */
}


.gallery-box{
    height:700px;          /* Same height for both */
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px;
}

.gallery-img{
    width:100%;
    height:100%;
    object-fit:contain;    /* Shows the complete poster */
}
.gallery-img,
.gallery-video{
    width:100%;
    height:650px;
    object-fit:contain;
    background:#fff;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    padding:10px;
}

.gallery-video{
    background:#000;
}

.gallery-card img:hover{
    transform:scale(1.04);
}




/*==================================================
PRODUCTS
==================================================*/

.products{

    background:#fff;
    padding:90px 0;

}

.products h2{

    margin-top:10px;
    margin-bottom:10px;

}


/*==================================================
PRODUCT CARD
==================================================*/

.product-card{

    background:#fff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    border:1px solid #ececec;

    transition:.35s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.product-card:hover{

    transform:translateY(-10px);

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    border-color:var(--secondary);

}

.product-card img{

    width:120px;
    height:120px;
    object-fit:contain;

    margin:auto;
    margin-bottom:20px;

}

.product-card h5{

    font-size:17px;
    font-weight:600;
    line-height:28px;
    min-height:60px;

}


/*==================================================
CIRCLE BUTTON
==================================================*/

.circle{

    width:42px;
    height:42px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:20px auto 0;

    transition:.3s;

}

.product-card:hover .circle{

    background:var(--secondary);

}

.circle i{

    font-size:18px;

}


/*==================================================
PRODUCT HOVER EFFECT
==================================================*/

.product-card::before{

    content:"";

    position:absolute;

    width:100%;
    height:4px;

    left:0;
    top:0;

    background:var(--secondary);

    transform:scaleX(0);

    transition:.4s;

}

.product-card:hover::before{

    transform:scaleX(1);

}


/*==================================================
SECTION SPACING
==================================================*/

.products .row{

    justify-content:center;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.about-content{

    padding:20px;
    text-align:center;

}

.about-content h2{

    font-size:34px;
    line-height:45px;

}

.about-img{

    margin-top:40px;

}

.experience{

    left:50%;
    transform:translateX(-50%);
    bottom:-35px;

}

.products{

    padding-top:120px;

}

}


@media(max-width:768px){

.counter-box{

    margin-bottom:20px;

}

.counter-box h3{

    font-size:28px;

}

.about-section{

    padding:60px 0;

}

.about-content{

    padding:15px;

}

.about-content h2{

    font-size:28px;
    line-height:40px;

}

.experience{

    width:130px;
    height:130px;

}

.experience h2{

    font-size:34px;

}

.experience span{

    font-size:13px;

}

.product-card{

    padding:18px;

}

.product-card img{

    width:90px;
    height:90px;

}

.product-card h5{

    font-size:15px;
    min-height:50px;

}

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-section{

    padding:90px 0;
    background:#f8f9fb;

}

.section-text{

    max-width:700px;
    margin:15px auto 50px;
    color:#666;
    line-height:30px;

}

.why-card{

    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    height:100%;
    border:1px solid #eee;

}

.why-card:hover{

    transform:translateY(-10px);
    border-color:var(--secondary);

}

.why-icon{

    width:85px;
    height:85px;

    margin:auto;

    border-radius:50%;

    background:#fff7e8;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--secondary);

    font-size:34px;

    margin-bottom:20px;

}

.why-card h5{

    font-weight:700;
    margin-bottom:15px;

}

.why-card p{

    font-size:15px;
    line-height:28px;

}


/*==================================================
BUSINESS STATS
==================================================*/

.business-section{

    background:#082b57;
    border-radius:20px;
    padding:45px 25px;
    color:#fff;
    margin:80px auto;

}

.business-box{

    text-align:center;
    padding:15px;
    border-right:1px solid rgba(255,255,255,.15);

}

.business-box:last-child{

    border-right:none;

}

.business-box i{

    color:#d7ab45;
    font-size:40px;
    margin-bottom:15px;

}

.business-box h3{

    color:#fff;
    font-size:34px;
    margin-bottom:5px;

}

.business-box p{

    color:#d5d5d5;
    font-size:15px;
    margin:0;

}


/*==================================================
TESTIMONIAL
==================================================*/

.testimonial-section{

    background:#fff;
    padding:90px 0;

}

.testimonial-card{

    background:#fff;

    border-radius:15px;

    padding:25px;

    border:1px solid #ececec;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.testimonial-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);

}

.testimonial-card img{

    width:70px;
    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid var(--secondary);

    margin-bottom:15px;

}

.testimonial-card h5{

    margin-bottom:8px;
    color:var(--primary);

}

.testimonial-card p{

    font-size:15px;
    line-height:28px;
    margin-top:10px;

}

.stars{

    color:#f5b301;
    margin-top:10px;
    font-size:18px;

}

.testimonial-card:hover .stars{

    letter-spacing:2px;
    transition:.3s;

}


/*==================================================
CONTACT CTA
==================================================*/

.contact-strip{

    margin:80px 0;

    background:#fff;

    border-radius:18px;

    padding:35px 40px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.contact-strip h3{

    color:var(--primary);
    font-size:30px;
    margin:0;

}

.contact-strip p{

    margin-top:8px;
    margin-bottom:0;

}

.contact-strip .gold-btn{

    background:var(--secondary);

    color:#fff;

    padding:15px 35px;

    border-radius:40px;

    transition:.3s;

    display:inline-block;

    font-weight:600;

}

.contact-strip .gold-btn:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.business-box{

    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.15);
    margin-bottom:20px;
    padding-bottom:20px;

}

.business-box:last-child{

    border-bottom:none;

}

.contact-strip{

    text-align:center;

}

.contact-strip h3{

    font-size:24px;
    margin-bottom:20px;

}

}

@media(max-width:768px){

.why-section{

    padding:60px 0;

}

.why-card{

    margin-bottom:20px;

}

.business-section{

    margin:60px 15px;
    padding:35px 20px;

}

.business-box h3{

    font-size:28px;

}

.business-box i{

    font-size:34px;

}

.testimonial-section{

    padding:60px 0;

}

.testimonial-card{

    margin-bottom:20px;

}

.contact-strip{

    padding:25px 20px;

}

.contact-strip h3{

    font-size:22px;

}

}
/*==================================================
FOOTER
==================================================*/

.footer{

    background:#082b57;
    color:#fff;
    padding:80px 0 0;

}

.footer-logo img{

    width:180px;
    margin-bottom:20px;

}

.footer-about{

    color:#d8d8d8;
    line-height:30px;
    margin-bottom:25px;

}

.footer-title{

    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;

}

.footer-title::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:3px;
    background:#d7ab45;

}

.footer-links{

    padding:0;
    margin:0;

}

.footer-links li{

    list-style:none;
    margin-bottom:14px;

}

.footer-links li a{

    color:#d8d8d8;
    transition:.3s;

}

.footer-links li a:hover{

    color:#d7ab45;
    padding-left:8px;

}


/*==================================================
CONTACT INFO
==================================================*/

.footer-contact{

    padding:0;
    margin:0;

}

.footer-contact li{

    list-style:none;
    display:flex;
    margin-bottom:18px;
    color:#d8d8d8;

}

.footer-contact i{

    width:40px;
    color:#d7ab45;
    font-size:18px;

}


/*==================================================
SOCIAL ICONS
==================================================*/

.social-icons{

    display:flex;
    gap:12px;
    margin-top:25px;

}

.social-icons a{

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s;

}

.social-icons a:hover{

    background:#d7ab45;
    transform:translateY(-5px);

}


/*==================================================
PAYMENT METHODS
==================================================*/

.payment-methods{

    display:flex;
    gap:12px;
    margin-top:20px;
    flex-wrap:wrap;

}

.payment-methods img{

    width:58px;
    height:36px;
    object-fit:contain;

    background:#fff;

    padding:5px;

    border-radius:5px;

}


/*==================================================
FOOTER BOTTOM
==================================================*/

.footer-bottom{

    margin-top:50px;

    border-top:1px solid rgba(255,255,255,.1);

    padding:20px 0;

}

.footer-bottom p{

    color:#d8d8d8;
    margin:0;

}

.footer-bottom a{

    color:#d7ab45;

}


/*==================================================
WHATSAPP
==================================================*/

.whatsapp{

    position:fixed;

    right:20px;

    bottom:90px;

    width:58px;
    height:58px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    z-index:999;

    transition:.3s;

}

.whatsapp:hover{

    transform:scale(1.1);

}


/*==================================================
SCROLL TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:20px;

    bottom:20px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:#d7ab45;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    transition:.3s;

    z-index:999;

}

.scroll-top:hover{

    background:#082b57;

}


/*==================================================
COMMON HOVER
==================================================*/

img{

    transition:.4s;

}

.product-card:hover img,
.about-img:hover,
.hero-image:hover{

    transform:scale(1.05);

}

.gold-btn,
.join-btn,
.btn-primary-custom{

    transition:.35s;

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px){

.footer{

    text-align:center;

}

.footer-title::after{

    left:50%;
    transform:translateX(-50%);

}

.footer-contact li{

    justify-content:center;

}

.social-icons{

    justify-content:center;

}

.payment-methods{

    justify-content:center;

}

.footer-logo img{

    margin:auto auto 20px;

}

}


@media(max-width:768px){

.footer{

    padding:60px 0 0;

}

.footer-title{

    margin-top:35px;

}

.footer-contact li{

    flex-direction:column;
    gap:8px;

}

.footer-contact i{

    width:auto;

}

.payment-methods img{

    width:52px;
    height:32px;

}

.footer-bottom{

    text-align:center;

}

.whatsapp{

    width:52px;
    height:52px;

    font-size:24px;

}

.scroll-top{

    width:45px;
    height:45px;

}

}
/*=========================================
STATISTICS BAR
==========================================*/

.stats-bar{

    background:#082b57;

    border-radius:18px;

    padding:35px 25px;

    margin-top:70px;

    color:#fff;

}

.stat-item{

    display:flex;

    align-items:center;

    gap:15px;

    border-right:1px solid rgba(255,255,255,.15);

    padding:10px 20px;

    height:100%;

}

.stat-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(215,171,69,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#d7ab45;

    font-size:24px;

}

.stat-item h3{

    color:#fff;

    font-size:30px;

    margin-bottom:3px;

    font-weight:700;

}

.stat-item p{

    margin:0;

    color:#ddd;

    font-size:14px;

    line-height:22px;

}

.border-0{

    border-right:none !important;

}

@media(max-width:991px){

.stat-item{

border-right:none;

border-bottom:1px solid rgba(255,255,255,.12);

padding:18px;

}

}

@media(max-width:768px){

.stats-bar{

padding:20px;

}

.stat-item{

padding:15px 5px;

}

.stat-item h3{

font-size:24px;

}

.stat-icon{

width:48px;

height:48px;

font-size:20px;

}

}

/*=========================================
TESTIMONIAL
==========================================*/

.testimonial-section{

    padding:80px 0;
    background:#ffffff;

}

.section-heading{

    margin-bottom:50px;

}

.section-heading h2{

    color:#082b57;
    font-size:34px;
    margin-top:10px;

}

.testimonial-wrapper{

    position:relative;

}

.testimonial-card{

    background:#fff;

    border:1px solid #e9e9e9;

    border-radius:15px;

    padding:25px;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(0,0,0,.10);

}

.testimonial-header{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:20px;

}

.testimonial-header img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #d7ab45;

}

.testimonial-header h5{

    margin:0;

    color:#082b57;

    font-size:18px;

}

.stars{

    color:#f4b400;

    margin-top:6px;

    font-size:15px;

}

.testimonial-card p{

    color:#666;

    line-height:30px;

    margin:0;

}

/* Slider Buttons */

.slider-btn{

    position:absolute;

    top:45%;

    width:45px;

    height:45px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#082b57;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    z-index:10;

    transition:.3s;

}

.slider-btn:hover{

    background:#d7ab45;

    color:#fff;

}

.slider-btn.left{

    left:-22px;

}

.slider-btn.right{

    right:-22px;

}

/* Mobile */

@media(max-width:991px){

.slider-btn{

display:none;

}

.testimonial-card{

margin-bottom:20px;

}

}

/*=========================================
CONTACT CTA
==========================================*/

.contact-cta{

    padding:70px 0;

    background:#f7f8fb;

}

.contact-box{

    background:#fff;

    border-radius:20px;

    padding:30px 35px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-left{

    display:flex;

    align-items:center;

    gap:18px;

}

.contact-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#fff8e7;

    color:#d7ab45;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.contact-left small{

    color:#888;

    font-size:14px;

}

.contact-left h4{

    margin-top:5px;

    color:#082b57;

    font-size:22px;

    font-weight:700;

}

.phone-number{

    color:#082b57;

    font-size:34px;

    font-weight:700;

    margin-top:8px;

}

.phone-number i{

    color:#d7ab45;

    margin-right:8px;

}

.join-btn-footer{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#d7ab45;

    color:#fff;

    padding:16px 35px;

    border-radius:40px;

    font-weight:600;

    transition:.3s;

}

.join-btn-footer:hover{

    background:#082b57;

    color:#fff;

}

.join-btn-footer i{

    transition:.3s;

}

.join-btn-footer:hover i{

    transform:translateX(5px);

}


/* Mobile */

@media(max-width:991px){

.contact-left{

justify-content:center;

margin-bottom:25px;

text-align:center;

flex-direction:column;

}

.phone-number{

margin:25px 0;

font-size:30px;

}

.text-lg-end{

text-align:center !important;

}

}

@media(max-width:768px){

.contact-box{

padding:25px 20px;

}

.contact-icon{

width:60px;

height:60px;

font-size:28px;

}

.contact-left h4{

font-size:18px;

}

.phone-number{

font-size:26px;

}

.join-btn-footer{

width:100%;

justify-content:center;

}

}

/*=========================================
FOOTER
==========================================*/

.footer{

background:#082b57;

padding:70px 0 20px;

color:#fff;

}

.footer-logo{

width:180px;

margin-bottom:20px;

}

.footer-text{

color:#d5d5d5;

line-height:30px;

margin-top:20px;

}

.footer h4{

font-size:22px;

margin-bottom:20px;

color:#fff;

font-weight:600;

}

.footer ul{

padding:0;

margin:0;

list-style:none;

}

.footer ul li{

margin-bottom:14px;

}

.footer ul li a{

color:#d5d5d5;

transition:.3s;

}

.footer ul li a:hover{

color:#d7ab45;

padding-left:8px;

}

.footer-contact li{

display:flex;

gap:12px;

align-items:flex-start;

color:#d5d5d5;

}

.footer-contact i{

color:#d7ab45;

font-size:18px;

margin-top:4px;

}

.footer-social{

display:flex;

gap:12px;

margin-top:25px;

}

.footer-social a{

width:42px;

height:42px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.08);

color:#fff;

transition:.3s;

}

.footer-social a:hover{

background:#d7ab45;

transform:translateY(-5px);

}

.footer hr{

border-color:rgba(255,255,255,.15);

margin:40px 0 20px;

}

.footer-bottom{

text-align:center;

}

.footer-bottom p{

margin:0;

color:#ddd;

font-size:15px;

}


/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

.footer-contact li{

justify-content:center;

}

.footer h4{

margin-top:30px;

}

}

@media(max-width:768px){

.footer{

padding:50px 0 20px;

}

.footer-logo{

width:150px;

margin:auto auto 20px;

}

.footer h4{

font-size:20px;

}

}