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

/*--------VARIABLES----------- */
:root {
    --primary-color: #00afd4;
    /* --secondary-color: #0e1137; */
    --secondary-color: #09192e;
    --background-color-light: #f8f9fa;
    --header-font-family: 'Noto Sans';

    --title-font-family: 'STIX Two Text';
    --description-font-family: 'Noto Sans';
}

/*--------BODY CSS----------- */
body {
    font-family: var(--header-font-family), 'Roboto Slab';
}

/*--------COMMON CSS----------- */
.df {
    display: flex !important;
}

.visible {
    display: block !important;
}

.hidden {
    display: none !important;
}

.df-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.df-jcsb-agcenter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    font-weight: 500;
    font-family: 'Noto Sans';
    cursor: pointer;
    font-size: 16px;
}

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

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 10px 24px;
    border: var(--primary-color) 1px solid;
    font-weight: 500;
    font-family: 'Noto Sans';
    cursor: pointer;
    font-size: 16px;
}

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

/*--------NAVBAR SECTION CSS----------- */
.navbar-section {
    padding: 30px 60px;
    /* position: sticky;
    top: 0;
    z-index: 1000;
    background: white; */
}

.desktop-navbar-section {
    padding-left: 20px;
    width: 100%;
}

.navbar-logo {
    width: 60px;
    height: 60px;
}

.navbar-list {
    list-style: none;
}

.navbar-list-item {
    font-weight: 500;
    cursor: pointer;
    color: var(--secondary-color)
}

.navbar-list-item a {
    text-decoration: none;
    color: inherit;
}

.navbar-list-item:hover {
    color: var(--primary-color);
}

.navbar-list-item.desktop {
    padding: 10px;
}

.navbar-list-item.mobile {
    padding: 5px 0;
}

.navbar-list-item.active {
    color: var(--primary-color);
}

.navbar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
}

.navbar-menu-btn span {
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

.navbar-menu-close-icon {
    font-size: 30px;
    color: #333;
    display: none;
}

/* Toggle visibility with a class */
.mobile-navbar-section.open .navbar-menu-btn {
    display: none;
}

.mobile-navbar-section.open .navbar-menu-close-icon {
    display: block;
}

.mobile-navbar-section,
.mobile-navbar-menu {
    display: none;
}

.mobile-navbar-menu {
    height: 100vh;
    overflow-y: auto;
    padding-left: 30px;
}

@media (max-width: 768px) {
    .navbar-logo {
        width: 50px;
        height: 50px;
    }

    .navbar-section {
        padding: 30px;
    }

    .desktop-navbar-section {
        display: none;
    }

    .mobile-navbar-section {
        display: flex;
        justify-content: space-between;
    }

    .connect-with-us-btn.mobile {
        margin-top: 10px;
    }
}

/*--------HERO SECTION CSS----------- */
.hero-section {
    padding: 60px 60px;
    flex-direction: column;
    text-align: center;
}

.hero-section-title {
    font-size: 64px;
    font-weight: 700;
    font-family: 'STIX Two Text';
    line-height: 1.2;
    color: var(--secondary-color);
}

.hero-section-title p {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    /* background: linear-gradient(to right, #00afd4, #00c1cc, #00d2c4); */
    background: linear-gradient(to right,
            #ffd700,
            /* gold */
            #ff6ec4,
            /* pink */
            #5f7fff,
            /* bluish purple */
            #00afd4,
            /* your cyan */
            #00cba9,
            /* teal */
            #ffd700
            /* gold again */
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-size: 300% auto;
    animation: shimmerFlow 6s ease infinite;
}

@keyframes shimmerFlow {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.hero-section-description {
    padding-top: 20px;
    font-family: 'Noto Sans';
    font-size: 18px;
    line-height: 1.5;
    padding: 0;
}

.hero-section-links {
    padding-top: 30px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 16px;
    }

    .hero-section-title {
        font-size: 36px;
    }

    .hero-section-title p {
        font-size: 24px;
        padding: 10px 30px;
    }

    .hero-section-description {
        font-size: 16px;
        margin-top: -10px;
        line-height: 1.6;
    }

    .hero-section-links {
        padding-top: 20px;
    }
}

/*--------GET A QUOTE SECTION CSS----------- */
.get-quote-section {
    background-color: black;
    color: white;
    padding: 60px;
    line-height: 1.5;
}

.get-quote-title {
    /* background-color: green; */
    font-family: 'STIX Two Text';
    /* font-size: 36px; */
    font-size: 2.4rem;
    font-weight: 600;
}

.get-quote-subtitle {
    /* background-color: yellow; */
    font-family: 'Noto Sans';
    font-size: 18px;
    padding-top: 10px;
    word-spacing: 1.5px;
}

.get-quote-btn {
    text-align: right;
}

@media (max-width: 900px) {
    .get-quote-section {
        padding: 36px 18px;
    }

    .get-quote-title {
        font-size: 28px;
    }

    .get-quote-subtitle {
        font-size: 16px;
    }

    .get-quote-btn {
        margin-top: 18px;
        text-align: right;
    }
}

@media (max-width: 600px) {
    .get-quote-section {
        padding: 24px 16px;
    }

    .get-quote-title {
        font-size: 22px;
    }

    .get-quote-subtitle {
        font-size: 15px;
    }

    .get-quote-btn {
        margin-top: 18px;
        text-align: right;
    }
}

/*--------TESTIMONIALS SECTION CSS----------- */
.testimonials-section {
    /* background: #f8f9fb; */
    background: var(--background-color-light);
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    font-size: 2.5rem;
    /* font-weight: 700; */
    font-weight: bold;
    letter-spacing: 2px;
    /* margin-bottom: 16px; */
    color: var(--secondary-color);
    text-align: center;
    font-family: var(--title-font-family);
}

.testimonials-slider-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 32px;
    position: relative;
}

.testimonials-nav-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: #e0e7ef;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin: 0 5px;
}

.testimonials-nav-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.testimonials-slider-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-slider {
    display: flex;
    gap: 32px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    /* padding: 0 16px; */
    /* background-color: red; */
    padding: 20px 0;
}

.testimonial-card {
    background: #fff;
    /* background: palegreen; */
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 32px 24px;
    min-width: 260px;
    max-width: 280px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0.85;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-card:hover {
    transform: scale(1.06) translateY(-10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    opacity: 1;
}

.testimonial-photo {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #e0e7ef;
}

.testimonial-card.testimonial-photo,
.testimonial-card:hover .testimonial-photo {
    border-color: var(--secondary-color)
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.testimonial-desc {
    font-size: 1rem;
    color: #555;
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .testimonial-card {
        max-width: 315px;
    }

    .testimonials-title {
        font-size: 1.4rem;
    }
}

/*--------FOOTER SECTION CSS----------- */
.footer-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: var(--secondary-color);
    color: #fff;
    padding: 48px 32px 32px 32px;
    font-family: 'Noto Sans', sans-serif;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
    margin-right: 24px;
}

.footer-col-title {
    font-weight: 600;
    font-size: 1.2rem;
    padding: 10px 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 48px;
    height: 48px;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 1rem;
    color: #bdbdbd;
    margin-top: 8px;
    line-height: 1.5;
}

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

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

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

.footer-social-icons {
    width: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.round-social-icons {
    width: 26px;
}

.footer-address {
    font-size: 1rem;
    color: #bdbdbd;
    margin-bottom: 18px;
    line-height: 1.6;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: white;
    border: none;
    opacity: 0.3;
}

.footer-bottom-links a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

@media (max-width: 900px) {
    .footer-section {
        /* background-color: red; */
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 32px 20px;
        /* Optional: tighter padding */
    }

    .footer-col {
        margin-right: 0;
        flex: 1 1 auto;
        min-width: unset;
        /* background-color: green; */
    }

    .footer-divider {
        margin: 16px 0;
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        display: block;
        margin-top: 8px;
    }
}