:root {
    --primary-blue: #21407b;
    --primary-yellow: #fcde06;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
}

/* Topbar */
.topbar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 15px;
}

.topbar-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: var(--primary-yellow);
    font-size: 1rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.btn-quote {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-quote:hover {
    background-color: #e6c905;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Sticky Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 60px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0 20px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-yellow);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f2f5;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons i {
    font-size: 1.1rem;
    color: var(--primary-blue);
    transition: color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
}

.social-icons a:hover i {
    color: var(--primary-yellow);
}

/* Mobile Menu Button (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-blue);
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-logo {
    height: 50px;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav-list a {
    text-decoration: none;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.mobile-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: var(--primary-blue);
    font-size: 1.2rem;
    text-decoration: none;
}

/* Responsive Design */

/* Tablet View (max-width: 992px) */
@media screen and (max-width: 992px) {

    /* Topbar: Phone left, Button right. Hide address/email to fit. */
    .topbar {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .topbar-left {
        width: auto !important;
        justify-content: flex-start !important;
        margin-bottom: 0 !important;
    }

    .topbar-right {
        width: auto !important;
    }

    /* Hide address and email on tablet to ensure single row with phone and button */
    .hide-on-mobile {
        display: none !important;
    }

    /* Header: Logo left, Nav right. Hide socials. */
    .header {
        padding: 15px 2% !important;
        justify-content: space-between !important;
    }

    .nav-menu {
        gap: 20px !important;
        margin: 0 !important;
        font-size: 0.85rem !important;
        display: flex !important;
        /* Ensure nav is visible */
    }

    .nav-menu a {
        font-size: 0.85rem !important;
    }

    .desktop-socials {
        display: none !important;
    }

    .mobile-menu-btn {
        display: none !important;
        /* Ensure hamburger is hidden on tablet */
    }
}

/* Mobile View (max-width: 767px) */
@media screen and (max-width: 767px) {

    /* Topbar: Stack if needed, but usually phone+button fits. */
    .topbar {
        padding: 10px 5% !important;
    }

    /* Header: Hide desktop nav and socials, show hamburger */
    .desktop-nav,
    .desktop-socials {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block !important;
    }
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Adjust height as needed */
    overflow: hidden;
    background-color: #000;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content horizontally */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    text-align: left;
    /* Align text left within the centered container */
    color: var(--white);
    max-width: 1200px;
    width: 90%;
    padding: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out 0.5s;
    /* Delay for content animation */
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-badge {
    background-color: #0066cc;
    /* Example blue badge color */
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
    /* Dark text for contrast if needed, but bg is dark? User image has light text on dark overlay */
}

/* Override title color for dark background */
.slide-title {
    color: var(--white);
}

.slide-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #e0e0e0;
}

.slide-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, background-color 0.3s;
}

.slide-btn:hover {
    background-color: #e6c905;
    transform: translateY(-3px);
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-yellow);
}

/* Responsive Slider */

/* Mobile (Phones) */
@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-text {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .slide-content {
        width: 95%;
        padding: 15px;
        text-align: center;
    }

    .slide-btn {
        margin: 0 auto;
    }

    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

/* Tablet (Portrait/Landscape) */
@media (min-width: 577px) and (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
        /* Larger than mobile, slightly smaller than desktop */
        margin-bottom: 20px;
    }

    .slide-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .slide-content {
        width: 90%;
        padding: 20px;
        text-align: center;
        /* Keep centered as it looks good on tablet */
    }

    .slide-btn {
        margin: 0 auto;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
    }
}

/* Features Section */
.features-section {
    padding: 60px 5%;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background Number */
.feature-card::before {
    content: attr(data-number);
    position: absolute;
    right: -10px;
    bottom: -25px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: -1;
    transition: all 0.4s ease;
    font-family: sans-serif;
    /* Ensure a bold blocky font */
    line-height: 1;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    transition: all 0.4s ease;
    min-width: 50px;
    display: flex;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
    font-weight: 800;
    transition: color 0.3s;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s;
}

/* Hover Effects */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(33, 64, 123, 0.2);
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);

    .feature-card {
        padding: 25px;
    }
}

/* About Us Section */
.about-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Left Column: Stats */
.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--primary-blue);
    padding: 40px 20px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 10px 30px rgba(33, 64, 123, 0.3);
    position: relative;
    z-index: 2;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* For absolute positioning of plus */
}

.stat-number-wrapper {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    position: absolute;
    top: 5px;
    right: -20px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: 0.9;
}

/* ... (Middle and Right Column styles remain same) ... */

/* Responsive About Section */
@media (max-width: 992px) {
    /* ... (Tablet styles remain same) ... */
}

@media (max-width: 576px) {
    .about-stats {
        flex-direction: row;
        /* Keep row on mobile for compactness? Or column but smaller? User said "full screen view of 3 statistics doesn't seem very effective", implying they take up too much vertical space. Let's try row or grid for mobile to save vertical space, or just much smaller padding/font. */
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        padding: 20px;
    }

    .stat-item {
        flex: 1 1 100px;
        /* Allow wrapping */
    }

    .stat-number {
        font-size: 2rem;
        /* Smaller font on mobile */
    }

    .stat-plus {
        font-size: 1rem;
        top: 0;
        right: -15px;
    }

    .stat-label {
        font-size: 0.7rem;
        margin-top: 5px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Middle Column: Image */
.about-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-container:hover .image-wrapper {
    transform: perspective(1000px) rotateY(0deg);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right Column: Content */
.about-content {
    padding-left: 20px;
}

.section-subtitle {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    padding-left: 50px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.section-title {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.point-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.point-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background-color: rgba(33, 64, 123, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-text h5 {
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.point-text p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.btn-about {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-about:hover {
    background-color: #1a3365;
    color: var(--primary-yellow);
}

/* Responsive About Section */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        padding: 30px;
    }

    .about-image {
        min-height: 300px;
        order: -1;
        /* Image first on tablet/mobile? Or maybe after stats? Let's keep stats top or bottom. */
    }

    .image-wrapper {
        transform: none;
    }

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

@media (max-width: 576px) {
    .about-stats {
        flex-direction: column;
        gap: 0px;
    }

    .section-title {
        font-size: 2rem;
    }
}

.feature-card:hover::before {
    color: rgba(255, 255, 255, 0.05);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-yellow);
}

.feature-card:hover h3 {
    color: var(--white);
}

.feature-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Features */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 5%;
    background-color: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header .section-subtitle {
    padding-left: 0;
}

.services-header .section-subtitle::before {
    display: none;
}

.services-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    min-height: 500px;
    /* Ensure height consistency */
}

/* Services Tabs (Left) */
.services-tabs {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #f4f6f9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.service-tab i {
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
}

.service-tab span {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.service-tab:hover {
    background-color: #eef2f7;
    transform: translateX(5px);
}

.service-tab.active {
    background-color: var(--white);
    border-left-color: var(--primary-yellow);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-tab.active i {
    color: var(--primary-blue);
}

.service-tab.active span {
    color: var(--primary-blue);
}

/* Services Content (Right) */
.services-content-area {
    flex: 1;
    position: relative;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-content {
    display: none;
    /* Hidden by default */
    height: 100%;
    animation: fadeIn 0.5s ease;
}

.service-content.active {
    display: flex;
    flex-direction: column;
}

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

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

.service-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

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

.service-content:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.service-details {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444;
    font-weight: 500;
}

.service-list li i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.btn-service {
    align-self: flex-start;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background-color: #1a3365;
    color: var(--primary-yellow);
}

/* Responsive Services */
@media (max-width: 992px) {
    .services-container {
        flex-direction: column;
    }

    .services-tabs {
        flex: none;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 10px;
    }

    .service-tab {
        flex: 0 0 auto;
        min-width: 200px;
        border-left: none;
        border-bottom: 4px solid transparent;
    }

    .service-tab:hover {
        transform: translateY(-2px);
    }

    .service-tab.active {
        border-left: none;
        border-bottom-color: var(--primary-yellow);
    }
}

@media (max-width: 576px) {
    .service-details h3 {
        font-size: 1.5rem;
    }

    .service-tab {
        min-width: 160px;
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 100px 5%;
    background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 64, 123, 0.9), rgba(33, 64, 123, 0.7));
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-phone {
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--white);
}

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background-color: transparent;
    color: #25D366;
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* Process Section */
.process-section {
    padding: 100px 5%;
    background-color: #f9f9f9;
    text-align: center;
    overflow: hidden;
}

.process-header {
    margin-bottom: 80px;
}

.process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-line-container {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    pointer-events: none;
}

.process-line-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.process-path {
    animation: wobbleLine 4s ease-in-out infinite alternate;
    transform-origin: center;
}

@keyframes wobbleLine {
    0% {
        d: path("M0,50 C300,20 600,80 1200,50");
    }

    100% {
        d: path("M0,50 C300,80 600,20 1200,50");
    }
}

/* Note: 'd' property animation support is limited. 
   Fallback/Alternative: Transform scaleY */
@supports not (d: path("M0,0")) {
    .process-path {
        animation: wobbleTransform 3s ease-in-out infinite alternate;
    }
}

@keyframes wobbleTransform {
    0% {
        transform: scaleY(0.8);
    }

    100% {
        transform: scaleY(1.2);
    }
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    flex: 1;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    animation: floatIcon 3s ease-in-out infinite;
}

/* Stagger animations */
.process-step[data-step="1"] .step-icon-wrapper {
    animation-delay: 0s;
}

.process-step[data-step="2"] .step-icon-wrapper {
    animation-delay: 0.5s;
}

.process-step[data-step="3"] .step-icon-wrapper {
    animation-delay: 1s;
}

.process-step[data-step="4"] .step-icon-wrapper {
    animation-delay: 1.5s;
}

.step-icon {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.process-step:hover .step-icon {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(33, 64, 123, 0.15);
}

.process-step:hover .step-icon i {
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 250px;
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Process */
@media (max-width: 992px) {
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .process-step {
        flex: 0 0 45%;
    }

    .process-line-container {
        display: none;
        /* Hide complex line on tablet/mobile */
    }
}

@media (max-width: 576px) {
    .process-step {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .step-icon-wrapper {
        width: 100px;
        height: 100px;
    }

    .step-icon i {
        font-size: 2rem;
    }

    .step-icon i {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: var(--white);
    overflow: hidden;
}

.contact-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

/* Left Column: Visuals */
.contact-visuals {
    flex: 1;
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    /* Allow shapes to protrude */
}

.contact-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.contact-image:hover {
    transform: translateY(-10px);
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background-color: var(--primary-yellow);
    top: -30px;
    left: -30px;
    opacity: 0.5;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background-color: var(--primary-blue);
    bottom: -20px;
    right: -20px;
    opacity: 0.1;
    animation: floatShape 5s ease-in-out infinite reverse;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

/* Right Column: Form */
.contact-form-wrapper {
    flex: 1;
}

.contact-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(33, 64, 123, 0.1);
}

.btn-submit {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: #e6c805;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 222, 6, 0.3);
}

/* Custom Contact Actions */
.contact-actions-custom {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Phone Wrapper */
.phone-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.phone-wrapper:hover {
    transform: translateY(-2px);
}

.phone-icon-circle {
    width: 50px;
    height: 50px;
    background-color: #0d1b3e;
    /* Dark blue from screenshot */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.phone-text-group {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0d1b3e;
    letter-spacing: 0.5px;
}

/* WhatsApp Custom Button */
.btn-whatsapp-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-yellow);
    color: #0d1b3e;
    /* Dark text on yellow */
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(252, 222, 6, 0.2);
}

.btn-whatsapp-custom:hover {
    background-color: #e6c805;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(252, 222, 6, 0.3);
}

.btn-whatsapp-custom i {
    font-size: 1.3rem;
}

/* Responsive Contact */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .contact-visuals {
        order: -1;
        width: 100%;
        max-width: 500px;
    }

    .contact-form-wrapper {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.8rem;
    }

    .contact-actions-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .btn-whatsapp-custom {
        width: 100%;
        justify-content: center;
    }
}

/* Team Section */
.team-section {
    padding: 100px 5%;
    background-color: #f4f6f9;
    text-align: center;
}

.team-header {
    margin-bottom: 60px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(100%);
}

.team-card:hover .team-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 64, 123, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.team-social {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    position: relative;
    z-index: 2;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

.team-card:hover .team-info {
    background-color: var(--primary-blue);
}

.team-role {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.team-card:hover .team-role {
    color: var(--primary-yellow);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--white);
}

.team-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.team-card:hover .team-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Team */
@media (max-width: 768px) {
    .team-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .team-image-wrapper {
        height: 300px;
    }
}

/* Partner Showcase Section */
.partner-showcase {
    padding: 60px 0;
    background-color: var(--white);
    overflow: hidden;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.partner-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 80px;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile Adjustments for Partners */
@media (max-width: 768px) {
    .partner-track {
        gap: 40px;
    }

    .partner-logo img {
        height: 40px;
    }
}

/* Footer Section */
.site-footer {
    background-color: #0d1b3e;
    /* Dark Blue */
    color: var(--white);
    padding: 60px 5% 30px;
    text-align: center;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    /* Make logo white */
    opacity: 0.9;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Footer */
@media (max-width: 576px) {
    .site-footer {
        padding: 50px 5% 25px;
    }

    .footer-logo {
        height: 50px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Custom Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 204, 0, 0.3);
    /* Semi-transparent yellow */
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    mix-blend-mode: difference;
    /* Cool effect over different backgrounds */
}

.cursor-follower.active {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 204, 0, 0.1);
    border-color: var(--white);
}

@media (max-width: 992px) {
    .cursor-follower {
        display: none;
        /* Hide on touch devices */
    }
}