/* color palette */
:root {
    --dark-blue: #043c66;
    --primary-color: #004E89;    /* Deep blue — trust, clarity */
    --secondary-color: #00A6FB;  /* Light blue — freshness */
    --accent-color: #f4d35e;     /* Soft gold — luxury touch */
    --background-color: #F9FAFB; /* Clean light background */
    --text-color: #1E1E1E;       /* Dark readable text */
    --border-color: #DCE3E8;     /* Subtle line color */

    --heading-font: 'Poppins', sans-serif;
}

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

/* Body */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background-color);
    overflow-x: hidden;
}

/* Loader */
.loader {
    width: 48px;
    height: 48px;
    border: 3px solid var(--text-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid;
    border-color: var(--primary-color) transparent;
}

@keyframes rotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Main-btn */
.main-btn {
    padding: 11px 12px;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    color: var(--background-color);
    background-color: var(--primary-color);
    border-radius: 10px;
    font-size: 18px;
    transition: .4s ease;
}

.main-btn:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--background-color);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .main-btn {
        font-size: 16px;
        padding: 10px 11px;
    }
}

/* Main-title */
.main-title {
    text-align: center;
    margin: 30px;
}

.main-title span {
    background-color: rgba(169, 180, 18, 0.692);
    padding: 14px 8px;
    border-radius: 30px;
    color: var(--background-color);
    transition: .5s ease;
}

.main-title span:hover {
    background-color: rgba(0, 78, 137, 0.5);
}

.main-title h1 {
    margin-top: 10px;
    font-family: var(--heading-font);
    font-size: 50px;
    font-weight: 800;
}

@media (max-width: 590px) {
    .main-title h1 {
        margin-top: 20px;
        font-size: 40px;
    }
}

/* ============================================================== Navbar =========================================================== */
.navbar {
    backdrop-filter: blur(16px);
    padding: 25px 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(47, 88, 223, 0.25);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.4rem;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--background-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--secondary-color);
}

.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--border-color);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    box-shadow: 0 10px 20px rgba(5, 64, 141, 0.2);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    padding: 1rem 0;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu a i {
    color: var(--primary-color);
    width: 20px;
}

.mobile-menu a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-menu a.active {
    color: var(--text-color);
    font-weight: 900;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .nav-links {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .nav-links, .cta-container {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/* ==================================================================== Landing =================================================== */
.landing {
    padding: 50px 0;
    background-image: url(../imgs/abstract-3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 80vh;
    text-align: center;
}

.landing-text {
    width: 700px;
    margin: auto;
}

.landing-text h1 {
    font-family: var(--heading-font);
    font-weight: 900;
    text-transform: capitalize;
    animation: float 3s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0);
    }
}

.landing-text h1 span {
    color: var(--primary-color);
    text-decoration: underline;
}

.landing-text .links .contact-btn {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: bold;
    padding: 11px 12px;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    transition: .4s ease-out;
}

.landing-text .links .contact-btn:hover {
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    transform: scale(1.01);
}

@media (max-width: 600px) {
    .landing-text .links .contact-btn {
        font-size: 16px;
        padding: 10px 11px;
    }
}

@media (max-width: 992px) {
    .landing {
        height: 90vh;
    }

    .landing-text {
        width: 90%;
    }

    .landing-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .landing {
        height: 80vh;
        padding: 80px 20px;
    }

    .landing-text {
        width: 100%;
    }

    .landing-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .landing-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .landing-text h1 {
        font-size: 1.8rem;
    }

    .landing-text p {
        font-size: 0.95rem;
    }
}

/* ============================================================ About ============================================================== */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-color) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    /* background: radial-gradient(circle, var(--secondary-color) 0%, transparent 70%); */
    opacity: 0.1;
    border-radius: 50%;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
}

.about-details {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 2rem;
}

.about-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 78, 137, 0.25);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 60px -12px rgba(0, 78, 137, 0.35);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 50%);
    opacity: .5;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-text {
    flex: 0 0 45%;
    padding: 2rem 0;
}

.about-text h3 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h3 span {
    color: var(--secondary-color);
    position: relative;
}

.about-text h3 span::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.9;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0.7;
}

.values {
    margin-top: 2rem;
    flex-wrap: wrap;
}

.values p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    margin: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    margin-bottom: 0;
}

.values p:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 78, 137, 0.15);
    border-color: var(--secondary-color);
}

.values p i {
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.values p {
    border: 1px solid var(--accent-color);
}

.values p:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-details {
        gap: 3rem;
    }
    
    .about-text h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .about-details {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .about-image, 
    .about-text {
        flex: 0 0 100%;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .values {
        justify-content: center;
    }
    
    .values p {
        flex: 0 0 calc(33.333% - 1rem);
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }
    
    .about-details {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .values p {
        flex: 0 0 calc(50% - 1rem);
        min-width: 120px;
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 2rem 0;
    }
    
    .about-details {
        padding: 0 1rem;
        gap: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.75rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .values {
        flex-direction: column;
        align-items: center;
    }
    
    .values p {
        flex: 0 0 100%;
        max-width: 250px;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .values p {
        min-width: unset;
        width: 100%;
    }
}

/* ====================================================================== Why us =================================================== */
.why-us {
    background-color: var(--primary-color);
    padding: 40px 0;
    color: var(--background-color);
    overflow-x: hidden;
}

.why-us .row {
    text-align: center;
    padding: 0 20px;
    margin-top: 40px;
}

.why .icon {
    color: var(--secondary-color);
    font-size: 40px;
    height: 80px;
    width: 80px;
    margin: auto;
    border-radius: 50px;
    background-color: var(--background-color);
    margin-bottom: 15px;
    transition: .5s ease;
}

.why h3 {
    font-family: var(--heading-font);
}

.why p {
    opacity: .8;
}

.why:hover .icon {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

/* =============================================================== Testimonials =================================================== */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.testimonials-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 30s linear infinite;
    padding: 1rem 0;
}

.testimonial-scroll-item {
    flex: 0 0 400px;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(22, 119, 194, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
}

.testimonial-scroll-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.testimonial-scroll-item p {
    margin: 0;
    font-size: 1.2rem;
    color: var(--text-color);
    font-style: italic;
    line-height: 1.5;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 3 - 2rem * 3));
    }
}

/* Pause animation on hover */
.testimonials-track:hover {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-title h1 {
        font-size: 2.5rem;
    }
    
    .testimonial {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 992px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .main-title {
        margin-bottom: 3rem;
    }
    
    .main-title h1 {
        font-size: 2.2rem;
    }
    
    .testimonials-content .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .testimonial-scroll-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    @keyframes scrollTestimonials {
        100% {
            transform: translateX(calc(-280px * 3 - 2rem * 3));
        }
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }
    
    .main-title h1 {
        font-size: 2rem;
    }
    
    .main-title span {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .testimonial {
        padding: 1.8rem 1.2rem;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .testimonial .span-1,
    .testimonial .span-2 {
        font-size: 2.5rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
    }
    
    .testimonial-scroll-item {
        flex: 0 0 250px;
        min-width: 250px;
        padding: 1.2rem;
    }
    
    @keyframes scrollTestimonials {
        100% {
            transform: translateX(calc(-250px * 3 - 1.5rem * 3));
        }
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 2.5rem 0;
    }
    
    .main-title {
        margin-bottom: 2.5rem;
    }
    
    .main-title h1 {
        font-size: 1.8rem;
    }
    
    .main-title h1::after {
        width: 60px;
        bottom: -12px;
    }
    
    .testimonial {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .testimonial:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .testimonials-track {
        gap: 1rem;
    }
    
    .testimonial-scroll-item {
        flex: 0 0 220px;
        min-width: 220px;
        padding: 1rem;
    }
    
    .testimonial-scroll-item p {
        font-size: 0.9rem;
    }
    
    @keyframes scrollTestimonials {
        100% {
            transform: translateX(calc(-220px * 3 - 1rem * 3));
        }
    }
}

@media (max-width: 400px) {
    .main-title h1 {
        font-size: 1.6rem;
    }
    
    .testimonial-scroll-item {
        flex: 0 0 200px;
        min-width: 200px;
    }
    
    @keyframes scrollTestimonials {
        100% {
            transform: translateX(calc(-200px * 3 - 1rem * 3));
        }
    }
}

.client-testimonial {
    padding: 50px 20px;
    font-family: var(--heading-font);
}

.client-testimonial h3 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.client-testimonial h3 strong {
    color: var(--secondary-color);
}

.client-testimonial .form {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-testimonial .form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.client-testimonial .form .form-control {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 12px 15px;
    font-size: 14px;
    color: var(--text-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.client-testimonial .form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 78, 137, 0.5);
    outline: none;
}

.client-testimonial .main-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 35px;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
}

.client-testimonial .main-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.client-testimonial img {
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    max-width: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .client-testimonial .row {
        text-align: center;
    }
    .client-testimonial .send {
        text-align: center !important;
    }
}

/* ========================================================= Footer ================================================================ */
footer {
    padding: 40px 0;
    background-color: var(--text-color);
    color: var(--background-color);
    overflow-x: hidden;
}

footer .logo-desc .foot-logo {
    margin-bottom: 20px;
}

footer .logo-desc .foot-logo i{
    font-size: 50px;
    color: var(--accent-color);
}

.logo-desc .description {
    color: #b6b5b5;
}

.logo-desc .description strong {
    color: var(--accent-color);
}

footer .quick-links h3,
footer .contact-infos h3 {
    text-transform: uppercase;
    margin-bottom: 20px;
}

footer .quick-links .links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

footer .quick-links .links a {
    text-decoration: none;
    color: #b6b5b5;
    transition: .5s ease;
}

footer .quick-links .links a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

footer .contact-infos .infos div {
    padding: 10px 12px;
    background-color: #222121;
    margin: 10px 0;
    width: 70%;
    border-radius: 10px;
    color: #b6b5b5;
    font-family: var(--heading-font);
    transition: .3s ease;
}

footer .contact-infos .infos div:hover {
    color: var(--border-color);
}

@media (max-width: 768px) {
    footer .contact-infos .infos div {
        width: 100%;
        text-align: start;
    }
}

footer .contact-infos .infos div i {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 10px;
    transition: .4s ease;
}

footer .contact-infos .infos div:hover i {
    color: var(--secondary-color);
}

.rights .copyright strong {
    color: var(--secondary-color);
}

.rights .social-links a {
    text-decoration: none;
}

.rights .social-links a {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    color: var(--background-color);
    background-color: var(--primary-color);
    font-size: 22px;
}

.rights .social-links .facebook,
.rights .social-links .instagram {
    transition: .4s ease;
}

.rights .social-links .facebook:hover,
.rights .social-links .instagram:hover {
    background-color: var(--accent-color);
    color: var(--text-color);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--accent-color);
}

@media (max-width: 768px) {
    .rights {
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        gap: 15px;
    }
}

/* ================================================================== About page ================================================= */
.about-page {
    overflow-x: hidden;
}

.about-page-image img {
    height: 400px;
    width: 95%;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: sweetFloat 6s ease-in-out infinite;
}

/* Sweet animation */
@keyframes sweetFloat {
    0% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    25% {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    75% {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
}


.about-page-text h1 {
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-page-text h1 span {
    text-transform: uppercase;
    color: var(--primary-color);
}

.about-page-text p {
    line-height: 1.8;
    letter-spacing: 1.4;
}

.about-page-text p .brand-name {
    color: var(--primary-color);
    font-weight: bold;
}

.about-page-text p .special {
    color: var(--secondary-color);
    text-decoration: underline;
}

.about-page-text .vision {
    font-family: var(--heading-font);
    color: var(--text-color);
    font-weight: 700;
}

.about-page-text .counter {
    transition: all .4s ease;
}

@media (max-width: 768px) {
    .about-page-text h1 {
        width: 300px;
        margin: auto;
        margin-bottom: 15px;
    }

    .about-page-text p {
        width: 400px;
        text-align: start;
        margin: auto;
        margin-bottom: 15px;
    }

    .about-page-text .vision {
        width: 400px;
        margin: auto;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .about-page-image img {
        height: 300px;
    }
}

/* ================================================================= Services ==================================================== */
.service-card {
    border: 1px solid var(--border-color);
    position: relative;
    transition: 0.7s ease;
    overflow: hidden;
    border-radius: 15px;
    background-color: #fff;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #f1f1ef;
    border-radius: 15px;
    z-index: 0;
    transition: width 0.4s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-card.active::before {
    width: 100%;
}

.service-card * {
    position: relative;
    z-index: 1;
}

.service-card i {
    color: var(--dark-blue);
    font-size: 2rem;
    transition: color 0.6s ease;
}

.service-card h5 {
    font-weight: bolder;
    margin-top: 10px;
    transition: color 0.4s ease;
}

.service-card p {
    color: #797575;
    transition: color 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-card.active {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}

.service-card:hover h5,
.service-card:hover p,
.service-card.active h5,
.service-card.active p {
    color: var(--text-color);
}

.service-card.active i,
.service-card:hover i {
    color: var(--accent-color);
}

/* ============================================================= Contact Us ====================================================== */
.contact-page {
    background-color: var(--border-color);
    overflow-x: hidden;
    padding: 40px 0;
}

.contact-page-text .main {
    line-height: 1.6;
    font-size: 20px;
    font-family: var(--heading-font);
    font-weight: bold;
    color: var(--dark-blue);
}

.contact-page-text .links .link .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background-color);
    margin-bottom: 10px;
    transition: .4s ease;
}

.contact-page-text .links .link .icon:hover {
    transform: translateY(-3px) scale(1.02);
    background-color: var(--secondary-color);
}

.contact-page-text .links .link p  {
    display: inline;
    margin-left: 7px;
    font-style: italic;
}

.contact-page form {
    background-color: var(--background-color);
    padding: 15px 25px;
    border-radius: 20px;
}

.contact-page-text .links.follow {
    margin-top: 25px;
}

.contact-page-text .links.follow h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-page-text .links.follow .social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.contact-page-text .links.follow .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--background-color);
    background-color: var(--primary-color);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-page-text .links.follow .icon:hover {
    transform: scale(1.1);
    background-color: #0d6efd;
}

.contact-page-content form input,
.contact-page-content form textarea {
    width: 100%;
    border-radius: 25px;
    border: 1px solid #ccc;
    padding: 12px 18px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.contact-page-content form input::placeholder,
.contact-page-content form textarea::placeholder {
    opacity: 0.8;
    color: #888;
}

.contact-page-content form input:focus,
.contact-page-content form textarea:focus {
    border: 1px solid var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 5px rgba(230, 216, 28, 0.9);
}

.contact-page-content form textarea {
    resize: none;
    min-height: 120px;
}

@media (max-width: 768px) {
    .contact-page-text .links,
    .contact-page-text .links.follow .social-icons {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .contact-page-text .link {
        justify-content: center;
    }

    .contact-page-text .links.follow h3 {
        text-align: center;
    }

    .contact-page-text .links.follow .social-icons {
        justify-content: center;
    }

    .contact-page-content form {
        margin-top: 25px;
        width: 90%;
        margin: auto;
    }

    .contact-page-text .main {
        width: 80%;
        margin: auto;
        margin-bottom: 20px;
    }
}

.contact-map {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 40px;
}

.contact-map iframe {
    width: 80%;
    height: 350px;
    border-radius: 10px;
    border: none;
    transition: .5s ease;
}

.contact-map iframe:hover {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-map iframe {
        width: 95%;
        height: 300px;
    }
}
