/* =========================
ROOT VARIABLES
========================= */

:root{
    --primary-color: rgba(233, 178, 90, 1);
    --primary-dark: rgba(210, 155, 65, 1);

    --secondary-color: rgba(3, 79, 92, 1);
    --secondary-light: rgba(6, 102, 118, 1);

    --white-color: #ffffff;
    --black-color: #000000;
    --text-color: #5f6b6d;

    --transition: 0.4s ease;
    --container-width: 85%;
}



/* =========================
COMMON CONTAINER WIDTH
========================= */

.custom-container{
    width: var(--container-width);
    margin: auto;
}



/* =========================
TOP RIBBON
========================= */

.top-ribbon{
    background: var(--secondary-color);
    overflow: hidden;
    padding: 12px 0;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ribbon-track{
    display: flex;
    gap: 60px;
    width: max-content;
    animation: slideRibbon 25s linear infinite;
}

.ribbon-item{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
}

.ribbon-item i{
    color: var(--primary-color);
    font-size: 18px;
}

@keyframes slideRibbon{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

/* =========================
UPDATED NAVBAR DESIGN
========================= */

.custom-navbar{
    /* padding: 18px 0; */
    background: var(--white-color);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
}

.logo-text{
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.logo-text:hover{
    color: var(--secondary-color);
}

.navbar-nav{
    gap: 22px;
}

.nav-link{
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active{
    color: var(--primary-color);
}
.navbar-brand img{
    width: 200px;
    height: 80px;

}
.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after{
    width: 100%;
}



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

.custom-dropdown{
    border: none;
    border-radius: 12px;
    padding: 14px 0;
    min-width: 250px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    margin-top: 15px;
    overflow: hidden;
}

.dropdown-item{
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.dropdown-item:hover{
    background: rgba(233, 178, 90, 0.12);
    color: var(--primary-color);
    padding-left: 28px;
}



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

.navbar-toggler i{
    font-size: 32px;
    color: var(--secondary-color);
}



/* =========================
DESKTOP DROPDOWN HOVER
========================= */

@media(min-width:992px){

    .dropdown:hover .dropdown-menu{
        display: block;
        animation: dropdownFade 0.3s ease;
    }

}

@keyframes dropdownFade{

    from{
        opacity: 0;
        transform: translateY(10px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }

}



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

@media(max-width:991px){

    .navbar-nav{
        padding-top: 20px;
        gap: 10px;
        align-items: flex-start !important;
    }

    .logo-text{
        font-size: 28px;
    }

    .custom-dropdown{
        box-shadow: none;
        border-radius: 0;
        padding-top: 5px;
    }

    .dropdown-item{
        padding: 12px 10px;
    }

}

/* =========================
HERO BANNER SECTION
========================= */

.hero-banner{
    position: relative;
}

.banner-img{
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.banner-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(3, 79, 92, 0.88),
        rgba(3, 79, 92, 0.35)
    );
}

.custom-caption{
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    text-align: left;
}

.banner-tagline{
    display: inline-block;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.banner-heading{
    color: var(--white-color);
    font-size: 68px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 760px;
    margin-bottom: 30px;
}

.banner-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.banner-btn:hover{
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.carousel-control-prev,
.carousel-control-next{
    width: 8%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width: 3rem;
    height: 3rem;
}



/* =========================
CAROUSEL INDICATORS
========================= */

.carousel-indicators [data-bs-target]{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white-color);
    opacity: 0.5;
}

.carousel-indicators .active{
    background-color: var(--primary-color);
    opacity: 1;
}



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

@media(max-width:991px){

    .navbar-nav{
        padding-top: 20px;
        gap: 12px;
        align-items: flex-start !important;
    }

    .logo-text{
        font-size: 28px;
    }

    .ribbon-item{
        font-size: 14px;
    }

    .banner-img{
        height: 75vh;
    }

    .banner-heading{
        font-size: 44px;
        max-width: 100%;
    }

    .banner-tagline{
        font-size: 15px;
    }

}

@media(max-width:576px){

    .banner-img{
        height: 70vh;
    }

    .banner-heading{
        font-size: 30px;
        line-height: 1.35;
    }

    .banner-btn{
        padding: 12px 26px;
        font-size: 15px;
    }

}

/* =========================
ABOUT US SECTION
========================= */

.about-section{
    padding: 110px 0;
    background: #f7fafb;
}

.about-content{
    padding-right: 30px;
}

.section-tag{
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary-color);
    margin-bottom: 28px;
}

.about-text{
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 18px;
}

.about-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 15px 36px;
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: var(--transition);
}

.about-btn:hover{
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.about-image-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image{
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image{
    transform: scale(1.05);
}



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

@media(max-width:991px){

    .about-section{
        padding: 80px 0;
    }

    .about-content{
        padding-right: 0;
    }

    .section-heading{
        font-size: 38px;
    }

    .about-image{
        height: 500px;
    }

}

@media(max-width:576px){

    .section-heading{
        font-size: 30px;
        line-height: 1.4;
    }

    .about-text{
        font-size: 15px;
    }

    .about-image{
        height: 380px;
    }

    .about-btn{
        padding: 13px 28px;
        font-size: 15px;
    }

}






/* =========================
SERVICES SECTION
========================= */

.services-section{
    padding: 40px 0;
    background: var(--white-color);
}

.services-heading{
    margin-bottom: 60px;
}

.service-card{
    background: var(--white-color);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(3,79,92,0.08);
    height: 100%;
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(3,79,92,0.12);
}

.service-img-wrapper{
    overflow: hidden;
}

.service-img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img{
    transform: scale(1.08);
}

.service-content{
    padding: 28px;
}

.service-title{
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 22px;
}

.service-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
}

.service-btn:hover{
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: var(--secondary-color);
}



/* =========================
SLIDER ARROWS
========================= */

.services-arrow{
    width: 5%;
}

.services-arrow .carousel-control-prev-icon,
.services-arrow .carousel-control-next-icon{
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 22px;
}



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

@media(max-width:991px){

    .services-section{
        padding: 80px 0;
    }

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

    .service-title{
        font-size: 22px;
    }

}

@media(max-width:576px){

    .service-content{
        padding: 22px;
    }

    .service-title{
        font-size: 20px;
    }

    .service-img{
        height: 220px;
    }

    .service-btn{
        width: 100%;
    }

    .services-arrow{
        display: none;
    }

}


/* =========================
SERVICES CARDS SECTION
========================= */

.services-cards-section{
    padding: 40px 0;
    background: #f8fbfc;
}

.services-top-content{
    margin-bottom: 60px;
}



/* =========================
SERVICE CARD
========================= */

.service-box{
    background: var(--white-color);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(3,79,92,0.08);
}

.service-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(3,79,92,0.12);
}



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

.service-image-wrapper{
    position: relative;
    overflow: hidden;
}

.service-box-image{
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.7s ease;
}

.service-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3,79,92,0.55),
        rgba(3,79,92,0.05)
    );
    opacity: 0;
    transition: var(--transition);
}

.service-box:hover .service-box-image{
    transform: scale(1.08) rotate(1deg);
}

.service-box:hover .service-overlay{
    opacity: 1;
}



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

.service-box-content{
    padding: 30px;
}

.service-box-title{
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-box-text{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}



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

.service-box-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-box-btn::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: 0;
    
}

.service-box-btn span{
    position: relative;
    z-index: 2;
}

.service-box-btn:hover::before{
    width: 100%;

}

.service-box-btn:hover{
    /* color: var(--secondary-color); */
    color: #ffffff;
}



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

@media(max-width:991px){

    .services-cards-section{
        padding: 80px 0;
    }

    .services-top-content{
        margin-bottom: 45px;
    }

    .service-box-title{
        font-size: 24px;
    }

    .service-box-image{
        height: 240px;
    }

}

@media(max-width:576px){

    .service-box-content{
        padding: 24px;
    }

    .service-box-title{
        font-size: 22px;
    }

    .service-box-text{
        font-size: 14px;
    }

    .service-box-btn{
        width: 100%;
    }

}

/* =========================
FAQ SECTION
========================= */

.faq-section{
    padding: 40px 0;
    background: var(--white-color);
}



/* =========================
FAQ IMAGE
========================= */

.faq-image-wrapper{
    position: relative;
}

.faq-image{
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.faq-image-shape{
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--primary-color);
    right: -20px;
    bottom: -20px;
    border-radius: 20px;
    z-index: 1;
}



/* =========================
FAQ CONTENT
========================= */

.faq-content{
    padding-left: 30px;
}



/* =========================
ACCORDION
========================= */

.custom-accordion{
    margin-top: 35px;
}

.accordion-item{
    border: none;
    margin-bottom: 18px;
    border-radius: 14px !important;
    overflow: hidden;
    background: #f8fbfc;
    box-shadow: 0 8px 25px rgba(3,79,92,0.06);
}

.accordion-button{
    background: var(--white-color);
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    padding: 22px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed){
    background: var(--secondary-color);
    color: var(--white-color);
}

.accordion-button::after{
    filter: brightness(0) saturate(100%);
}

.accordion-button:not(.collapsed)::after{
    filter: brightness(0) invert(1);
}

.accordion-body{
    padding: 22px 24px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-color);
    background: var(--white-color);
}



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

@media(max-width:991px){

    .faq-section{
        padding: 80px 0;
    }

    .faq-content{
        padding-left: 0;
    }

    .faq-image{
        height: 500px;
    }

    .accordion-button{
        font-size: 16px;
        padding: 18px 20px;
    }

}

@media(max-width:576px){

    .faq-image{
        height: 360px;
    }

    .faq-image-shape{
        width: 120px;
        height: 120px;
    }

    .accordion-button{
        font-size: 15px;
        line-height: 1.6;
    }

    .accordion-body{
        font-size: 14px;
    }

}

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

.why-choose-section{
    padding: 80px 0;
    background: #f6f8f9;
}



/* =========================
SECTION HEADING
========================= */

.why-choose-heading{
    margin-bottom: 70px;
}

.why-subtitle{
    display: inline-block;
    padding: 14px 34px;
    border: 1px solid rgba(233, 178, 90, 0.25);
    color: var(--primary-color);
    background: rgba(233, 178, 90, 0.06);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.why-main-title{
    font-size: 68px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin: 0;
}



/* =========================
WHY CARD
========================= */

.why-box{
    background: var(--white-color);
    border: 1px solid rgba(3,79,92,0.08);
    padding: 35px 30px;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-box::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.why-box:hover::before{
    transform: scaleX(1);
}

.why-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(3,79,92,0.10);
}



/* =========================
ICON BOX
========================= */

.why-box-icon{
    width: 72px;
    height: 72px;
    background: var(--primary-color);
    margin: auto;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-box:hover .why-box-icon{
    background: var(--secondary-color);
    transform: rotate(-8deg);
}

.why-box-icon i{
    font-size: 36px;
    color: var(--white-color);
}



/* =========================
TEXT CONTENT
========================= */

.why-box-number{
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.why-box-title{
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.why-box-text{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
}



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

@media(max-width:991px){

    .why-choose-section{
        padding: 80px 0;
    }

    .why-main-title{
        font-size: 50px;
    }

    .why-box{
        padding: 40px 25px;
    }

}

@media(max-width:576px){

    .why-main-title{
        font-size: 34px;
        line-height: 1.4;
    }

    .why-subtitle{
        font-size: 13px;
        padding: 12px 24px;
        letter-spacing: 2px;
    }

    .why-box-number{
        font-size: 48px;
    }

    .why-box-title{
        font-size: 20px;
    }

    .why-box-text{
        font-size: 14px;
    }

}

/* =========================
CONTACT SECTION
========================= */

.contact-section{
    padding: 20px 0;
    background: #f8fbfc;
}



/* =========================
LEFT CONTENT
========================= */

.contact-text{
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin: 25px 0 35px;
}



/* =========================
CONTACT INFO
========================= */

.contact-info-box{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item{
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon{
    width: 62px;
    height: 62px;
    min-width: 62px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon{
    background: var(--primary-color);
}

.contact-icon i{
    font-size: 24px;
    color: var(--white-color);
}

.contact-info-item h5{
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.contact-info-item p{
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
}



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

.contact-form-wrapper{
    background: var(--white-color);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(3,79,92,0.08);
}

.custom-input{
    width: 100%;
    height: 60px;
    border: 1px solid rgba(3,79,92,0.12);
    border-radius: 10px;
    padding: 0 20px;
    font-size: 15px;
    color: var(--secondary-color);
    box-shadow: none !important;
    transition: var(--transition);
}

.custom-input:focus{
    border-color: var(--primary-color);
}

.custom-textarea{
    height: 170px;
    resize: none;
    padding-top: 18px;
}



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

.contact-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border: none;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    border-radius: 8px;
}

.contact-btn:hover{
    background: var(--secondary-color);
    color: var(--white-color);
}



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

.contact-map{
    margin-top: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(3,79,92,0.08);
}

.contact-map iframe{
    width: 100%;
    height: 500px;
    border: 0;
}



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

@media(max-width:991px){

    .contact-section{
        padding: 80px 0;
    }

    .contact-form-wrapper{
        padding: 35px;
    }

    .contact-map{
        margin-top: 60px;
    }

}

@media(max-width:576px){

    .contact-form-wrapper{
        padding: 25px;
    }

    .custom-input{
        height: 55px;
        font-size: 14px;
    }

    .custom-textarea{
        height: 150px;
    }

    .contact-btn{
        width: 100%;
    }

    .contact-map iframe{
        height: 350px;
    }

}


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

.testimonials-section{
    padding: 80px 0 30px 0;
    background: #f8fbfc;
}

.testimonials-top{
    margin-bottom: 60px;
}



/* =========================
TESTIMONIAL CARD
========================= */

.testimonial-card{
    background: var(--white-color);
    padding: 40px 35px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(3,79,92,0.08);
    transition: var(--transition);
}

.testimonial-card::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0%;
    background: var(--primary-color);
    transition: var(--transition);
}

.testimonial-card:hover::before{
    height: 100%;
}

.testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(3,79,92,0.10);
}



/* =========================
STARS
========================= */

.testimonial-stars{
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
}

.testimonial-stars i{
    color: var(--primary-color);
    font-size: 16px;
}



/* =========================
TEXT
========================= */

.testimonial-text{
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 30px;
}



/* =========================
USER INFO
========================= */

.testimonial-user{
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user-img{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-name{
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.testimonial-role{
    font-size: 14px;
    color: var(--text-color);
}



/* =========================
ARROWS
========================= */

.testimonial-arrow{
    width: 55px;
    height: 55px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev.testimonial-arrow{
    left: -25px;
}

.carousel-control-next.testimonial-arrow{
    right: -25px;
}

.testimonial-arrow i{
    font-size: 20px;
    color: var(--white-color);
}

.testimonial-arrow:hover{
    background: var(--primary-color);
}

.testimonial-arrow:hover i{
    color: var(--secondary-color);
}



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

@media(max-width:991px){

    .testimonials-section{
        padding: 80px 0;
    }

    .testimonial-card{
        padding: 30px 25px;
    }

}

@media(max-width:576px){

    .testimonial-card{
        padding: 25px 20px;
    }

    .testimonial-text{
        font-size: 14px;
    }

    .testimonial-arrow{
        display: none;
    }

}

/* =========================
FOOTER SECTION
========================= */

.footer-section{
    background: var(--secondary-color);
    padding-top: 90px;
    color: var(--white-color);
    position: relative;
}



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

.footer-logo{
    display: inline-block;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo:hover{
    color: var(--primary-color);
}



/* =========================
ABOUT TEXT
========================= */

.footer-about-text{
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
}



/* =========================
SOCIAL ICONS
========================= */

.footer-socials{
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social-icon{
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-icon i{
    color: var(--white-color);
    font-size: 18px;
}

.footer-social-icon:hover{
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-social-icon:hover i{
    color: var(--secondary-color);
}



/* =========================
FOOTER TITLES
========================= */

.footer-title{
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 55px;
    height: 3px;
    background: var(--primary-color);
}



/* =========================
LINKS
========================= */

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

.footer-links ul li{
    margin-bottom: 16px;
}

.footer-links ul li a{
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.footer-links ul li a:hover{
    color: var(--primary-color);
    padding-left: 8px;
}



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

.footer-contact-item{
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
}

.footer-contact-icon{
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(233,178,90,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-icon i{
    color: var(--primary-color);
    font-size: 18px;
}

.footer-contact-item a,
.footer-contact-item p{
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.8;
    text-decoration: none;
    margin: 0;
    transition: var(--transition);
}

.footer-contact-item a:hover{
    color: var(--primary-color);
}



/* =========================
BOTTOM FOOTER
========================= */

.footer-bottom{
    margin-top: 10px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p{
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
}



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

@media(max-width:991px){

    .footer-section{
        padding-top: 70px;
    }

    .footer-title{
        font-size: 22px;
    }

}

@media(max-width:576px){

    .footer-logo{
        font-size: 28px;
    }

    .footer-title{
        font-size: 20px;
    }

    .footer-about-text,
    .footer-links ul li a,
    .footer-contact-item a,
    .footer-contact-item p{
        font-size: 14px;
    }

    .footer-social-icon{
        width: 42px;
        height: 42px;
    }

}

.ps-40{
    padding-left: 100px;
}

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

.floating-whatsapp{
    position: fixed;
    right: 25px;
    bottom: 95px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    animation: beatWhatsapp 1.5s infinite;
    box-shadow: 0 10px 30px rgba(37,211,102,0.35);
    transition: var(--transition);
}

.floating-whatsapp i{
    font-size: 34px;
    color: #ffffff;
}

.floating-whatsapp:hover{
    transform: scale(1.1);
}



/* =========================
FLOATING CONTACT ICONS
========================= */

.floating-contact-icons{
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;

    /* call above + whatsapp below */
    flex-direction: column-reverse;

    gap: 19px;
}



/* COMMON STYLE */

.floating-contact-icons a{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: beatIcon 1.5s infinite;
    transition: 0.4s ease;
}

.floating-contact-icons a i{
    font-size: 28px;
    color: #fff;
}



/* CALL BUTTON */

.call-icon{
    background: var(--secondary-color);
}



/* WHATSAPP BUTTON */

.whatsapp-icon{
    background: #25D366;
}



/* HOVER */

.floating-contact-icons a:hover{
    transform: translateY(-5px) scale(1.05);
}



/* ANIMATION */

@keyframes beatIcon{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1);
    }

}





/* =========================
CALL FLOATING BUTTON
========================= */

/* .floating-call{

    
    position: fixed;
    right: 25px;
    bottom: 20px;
    width: 65px;
    height: 65px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    animation: beatCall 1.5s infinite;
    box-shadow: 0 10px 30px rgba(3,79,92,0.35);
    transition: var(--transition);
}

.floating-call i{
    font-size: 28px;
    color: var(--white-color);
}

.floating-call:hover{
    background: var(--primary-color);
    transform: scale(1.1);
}

.floating-call:hover i{
    color: var(--secondary-color);
} */



/* =========================
BEAT ANIMATION
========================= */

/* @keyframes beatWhatsapp{

    0%{
        transform: scale(1);
    }

    25%{
        transform: scale(1.08);
    }

    40%{
        transform: scale(1);
    }

    60%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1);
    }

} */

/* @keyframes beatCall{

    0%{
        transform: scale(1);
    }

    25%{
        transform: scale(1.08);
    }

    40%{
        transform: scale(1);
    }

    60%{
        transform: scale(1.12);
    }

    100%{
        transform: scale(1);
    }

} */



/* =========================
RIPPLE EFFECT
========================= */

/* .floating-whatsapp::before,
.floating-call::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    z-index: -1;
    animation: ripple 1.8s infinite;
}

@keyframes ripple{

    0%{
        transform: scale(1);
        opacity: 0.5;
    }

    100%{
        transform: scale(1.8);
        opacity: 0;
    }

} */



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

/* @media(max-width:576px){

    .floating-whatsapp,
    .floating-call{
        width: 58px;
        height: 58px;
        right: 18px;
    }

    .floating-whatsapp{
        bottom: 88px;
    }

    .floating-whatsapp i{
        font-size: 30px;
    }

    .floating-call i{
        font-size: 24px;
    }

}

.floating-whatsapp{
    bottom: 104px;
}

.floating-call{
    bottom: 20px;
} */

/* ===================================================================================================about============================================================ */


/* =========================
ABOUT PAGE BANNER
========================= */

.about-page-banner{
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
}



/* =========================
BACKGROUND IMAGE
========================= */

.about-page-banner-image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* =========================
OVERLAY
========================= */

.about-page-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(3,79,92,0.88),
        rgba(3,79,92,0.35)
    );
}



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

.about-page-banner-content{
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.about-page-tag{
    display: inline-block;
    padding: 12px 28px;
    background: rgba(233,178,90,0.12);
    border: 1px solid rgba(233,178,90,0.25);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.about-page-heading{
    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white-color);
    margin-bottom: 30px;
}



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

.about-page-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.about-page-btn:hover{
    background: var(--white-color);
    color: var(--secondary-color);
    transform: translateY(-4px);
}



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

@media(max-width:991px){

    .about-page-banner{
        height: 360px;
    }

    .about-page-heading{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .about-page-banner{
        height: 320px;
    }

    .about-page-heading{
        font-size: 30px;
        line-height: 1.4;
    }

    .about-page-tag{
        font-size: 12px;
        padding: 10px 20px;
    }

    .about-page-btn{
        padding: 13px 28px;
        font-size: 14px;
    }

}

/* =========================
ABOUT DETAILS SECTION
========================= */

.about-details-section{
    padding: 80px 0 40px 0;
    background: #f8fbfc;
}



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

.about-details-image-wrapper{
    position: relative;
}

.about-details-image{
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 24px;
}



/* =========================
EXPERIENCE BOX
========================= */

.experience-box{
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: var(--secondary-color);
    padding: 28px 35px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(3,79,92,0.15);
}

.experience-box h3{
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.experience-box p{
    color: var(--white-color);
    margin: 0;
    font-size: 16px;
}



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

.about-details-content{
    padding-left: 30px;
}

.about-details-text{
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 24px;
}



/* =========================
HIGHLIGHTS
========================= */

.about-highlights{
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 35px 0;
}

.highlight-item{
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-item i{
    color: var(--primary-color);
    font-size: 20px;
}

.highlight-item span{
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
}



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

.about-details-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.about-details-btn:hover{
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-4px);
}



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

@media(max-width:991px){

    .about-details-section{
        padding: 80px 0;
    }

    .about-details-content{
        padding-left: 0;
    }

    .about-details-image{
        height: 500px;
    }

}

@media(max-width:576px){

    .about-details-image{
        height: 380px;
    }

    .experience-box{
        left: 20px;
        bottom: 20px;
        padding: 20px 24px;
    }

    .experience-box h3{
        font-size: 36px;
    }

    .about-details-text{
        font-size: 14px;
    }

    .highlight-item span{
        font-size: 14px;
    }

    .about-details-btn{
        width: 100%;
    }

}

/* =========================
ABOUT FEATURES SECTION
========================= */

.about-features-section{
    padding: 40px 0;
    background: var(--white-color);
}

.about-feature-row{
    margin-bottom: 40px;
}



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

.about-feature-image-wrapper{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.about-feature-image{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.7s ease;
}

.about-feature-image-wrapper:hover .about-feature-image{
    transform: scale(1.06);
}



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

.about-feature-content{
    padding-right: 30px;
}

.flex-lg-row-reverse .about-feature-content{
    padding-right: 0;
    padding-left: 30px;
}

.about-feature-text{
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 24px;
}



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

.about-feature-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 10px;
}

.about-feature-btn:hover{
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-4px);
}



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

@media(max-width:991px){

    .about-features-section{
        padding: 80px 0;
    }

    .about-feature-row{
        margin-bottom: 80px;
    }

    .about-feature-content,
    .flex-lg-row-reverse .about-feature-content{
        padding: 0;
    }

    .about-feature-image{
        height: 450px;
    }

}

@media(max-width:576px){

    .about-feature-image{
        height: 340px;
        border-radius: 18px;
    }

    .about-feature-text{
        font-size: 14px;
    }

    .about-feature-btn{
        width: 100%;
    }

}



/* =========================
GALLERY SECTION
========================= */

.gallery-section{
    padding: 40px 0;
    background: #f8fbfc;
}

.gallery-top-content{
    margin-bottom: 60px;
}



/* =========================
GALLERY CARD
========================= */

.gallery-card{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
}

.gallery-image{
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.7s ease;
}



/* =========================
HOVER EFFECT
========================= */

.gallery-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3,79,92,0.45),
        rgba(3,79,92,0.05)
    );
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
    border-radius: 24px;
}

.gallery-card:hover::before{
    opacity: 1;
}

.gallery-card:hover .gallery-image{
    transform: scale(1.08);
}



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

@media(max-width:991px){

    .gallery-section{
        padding: 80px 0;
    }

    .gallery-image{
        height: 340px;
    }

}

@media(max-width:576px){

    .gallery-image{
        height: 260px;
        border-radius: 18px;
    }

    .gallery-card{
        border-radius: 18px;
    }

}

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

.why-choose-section{
    padding: 40px 0;
    background: #f8fbfc;
}

.why-choose-top{
    margin-bottom: 60px;
}



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

.why-card{
    background: var(--white-color);
    padding: 45px 30px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(3,79,92,0.08);
}

.why-card::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    transition: 0.5s ease;
    z-index: 0;
}

.why-card:hover::before{
    height: 100%;
}

.why-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(3,79,92,0.12);
}



/* =========================
ICON
========================= */

.why-icon{
    width: 85px;
    height: 85px;
    background: rgba(233,178,90,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 28px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.why-icon i{
    font-size: 36px;
    color: var(--primary-color);
}

.why-card:hover .why-icon{
    background: rgba(255,255,255,0.12);
}



/* =========================
TEXT
========================= */

.why-title{
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.why-text{
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}



/* =========================
HOVER TEXT
========================= */

.why-card:hover .why-title,
.why-card:hover .why-text{
    color: var(--white-color);
}



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

@media(max-width:991px){

    .why-choose-section{
        padding: 80px 0;
    }

}

@media(max-width:576px){

    .why-card{
        padding: 35px 25px;
    }

    .why-title{
        font-size: 22px;
    }

    .why-text{
        font-size: 14px;
    }

}

/* =========================
STRATEGY SECTION
========================= */

.strategy-section{
    padding: 40px 0;
    background: #f8fbfc;
}



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

.strategy-content{
    padding-right: 30px;
}

.strategy-text{
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 24px;
}



/* =========================
FORMULA BOX
========================= */

.strategy-formula{
    background: var(--secondary-color);
    padding: 35px;
    border-radius: 24px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.strategy-formula::before{
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 140px;
    height: 140px;
    background: rgba(233,178,90,0.12);
    border-radius: 50%;
}

.strategy-formula h3{
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.strategy-formula span{
    font-size: 18px;
    color: var(--white-color);
    position: relative;
    z-index: 2;
}



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

.strategy-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.strategy-btn:hover{
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-4px);
}



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

.strategy-image-wrapper{
    overflow: hidden;
    border-radius: 24px;
}

.strategy-image{
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.7s ease;
}

.strategy-image-wrapper:hover .strategy-image{
    transform: scale(1.06);
}



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

@media(max-width:991px){

    .strategy-section{
        padding: 80px 0;
    }

    .strategy-content{
        padding-right: 0;
    }

    .strategy-image{
        height: 420px;
    }

}

@media(max-width:576px){

    .strategy-text{
        font-size: 14px;
    }

    .strategy-formula{
        padding: 28px 24px;
    }

    .strategy-formula h3{
        font-size: 22px;
        line-height: 1.5;
    }

    .strategy-formula span{
        font-size: 15px;
    }

    .strategy-image{
        height: 320px;
        border-radius: 18px;
    }

    .strategy-btn{
        width: 100%;
    }

}

/* =========================
HOW WE WORK SECTION
========================= */

.work-process-section{
    padding: 40px 0;
    background: #f8fbfc;
}

.work-process-top{
    margin-bottom: 70px;
}



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

.process-flow-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
}



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

.process-box{
    width: 230px;
    background: var(--white-color);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(3,79,92,0.08);
    overflow: hidden;
}



/* Top Border Animation */

.process-box::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: 0.5s ease;
    transform-origin: left;
}

.process-box:hover::before{
    transform: scaleX(1);
}



.process-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(3,79,92,0.10);
}



/* Curve Layout */

/* .process-down{
    margin-top: 90px;
} */



/* =========================
NUMBER ICON
========================= */

.process-icon{
    width: 75px;
    height: 75px;
    background: var(--secondary-color);
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    transition: var(--transition);
}

.process-box:hover .process-icon{
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(8deg) scale(1.08);
}



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

.process-box h3{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--secondary-color);
    margin: 0;
}



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

@media(max-width:991px){

    .process-box{
        width: 200px;
    }

}

@media(max-width:768px){

    .process-flow-wrapper{
        flex-direction: column;
        align-items: center;
    }

    .process-down{
        margin-top: 0;
    }

}

@media(max-width:576px){

    .process-box{
        width: 100%;
        padding: 30px 22px;
    }

    .process-box h3{
        font-size: 20px;
    }

}

/* ==================================================HOME SERVICES ==================================================== */

/* =========================
HOME INTERIOR SERVICES
========================= */

.home-services-section{
    padding: 110px 0;
    background: #f8fbfc;
}

.home-services-top{
    margin-bottom: 60px;
}



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

.home-service-card{
    background: var(--white-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(3,79,92,0.08);
}

.home-service-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(3,79,92,0.10);
}



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

.home-service-image-wrapper{
    overflow: hidden;
}

.home-service-image{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.7s ease;
}

.home-service-card:hover .home-service-image{
    transform: scale(1.08);
}



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

.home-service-content{
    padding: 32px 28px;
}

.home-service-content h3{
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.home-service-content p{
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 24px;
}



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

.home-service-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.home-service-btn:hover{
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}



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

@media(max-width:991px){

    .home-services-section{
        padding: 80px 0;
    }

}

@media(max-width:576px){

    .home-service-image{
        height: 220px;
    }

    .home-service-content{
        padding: 28px 22px;
    }

    .home-service-content h3{
        font-size: 22px;
    }

    .home-service-content p{
        font-size: 14px;
    }

}

/* =====================================================projects======================================== */


/* =========================
FILTER PROJECTS SECTION
========================= */

.filter-projects-section{
    padding: 110px 0;
    background: #f8fbfc;
}

.filter-projects-top{
    margin-bottom: 50px;
}



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

.project-filter-buttons{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 60px;
}

.filter-btn{
    padding: 14px 30px;
    border: none;
    background: var(--white-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid rgba(3,79,92,0.08);
}

.filter-btn:hover,
.filter-btn.active{
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-3px);
}



/* =========================
PROJECT CARD
========================= */

.project-card{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    cursor: pointer;
}

.project-image{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    transition: 0.7s ease;
}



/* =========================
OVERLAY
========================= */

.project-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3,79,92,0.92),
        rgba(3,79,92,0.15)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay{
    opacity: 1;
}

.project-card:hover .project-image{
    transform: scale(1.08);
}



.project-overlay h3{
    font-size: 28px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 10px;
}

.project-overlay span{
    color: var(--primary-color);
    font-size: 15px;
    letter-spacing: 1px;
}



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

@media(max-width:991px){

    .filter-projects-section{
        padding: 80px 0;
    }

    .project-image{
        height: 340px;
    }

}

@media(max-width:576px){

    .project-filter-buttons{
        gap: 12px;
    }

    .filter-btn{
        padding: 12px 24px;
        font-size: 14px;
    }

    .project-image{
        height: 280px;
        border-radius: 18px;
    }

    .project-card{
        border-radius: 18px;
    }

    .project-overlay{
        padding: 25px;
    }

    .project-overlay h3{
        font-size: 22px;
    }

}


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

/* =========================
CONTACT INFO SECTION
========================= */

.contact-info-section{
    padding: 110px 0;
    background: #f8fbfc;
}

.contact-info-top{
    margin-bottom: 60px;
}



/* =========================
CONTACT CARD
========================= */

.contact-info-card{
    background: var(--white-color);
    padding: 45px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(3,79,92,0.08);
}

.contact-info-card::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: var(--secondary-color);
    transition: 0.5s ease;
    z-index: 0;
}

.contact-info-card:hover::before{
    height: 100%;
}

.contact-info-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(3,79,92,0.10);
}



/* =========================
ICON
========================= */

.contact-info-icon{
    width: 85px;
    height: 85px;
    background: rgba(233,178,90,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 28px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.contact-info-icon i{
    font-size: 34px;
    color: var(--primary-color);
}

.contact-info-card:hover .contact-info-icon{
    background: rgba(255,255,255,0.12);
}



/* =========================
TEXT
========================= */

.contact-info-card h3{
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.contact-info-card p{
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}



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

.contact-info-card a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.contact-info-card a:hover{
    background: var(--white-color);
    color: var(--secondary-color);
}



/* =========================
HOVER TEXT COLOR
========================= */

.contact-info-card:hover h3,
.contact-info-card:hover p{
    color: var(--white-color);
}



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

@media(max-width:991px){

    .contact-info-section{
        padding: 80px 0;
    }

}

@media(max-width:576px){

    .contact-info-card{
        padding: 35px 25px;
    }

    .contact-info-card h3{
        font-size: 22px;
    }

    .contact-info-card p{
        font-size: 14px;
    }

}