@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;600;700;800;900&display=swap');

:root {
    --bg-white: #ffffff;
    --primary-blue: #003366; /* Deep Navy */
    --secondary-blue: #0056b3; /* Professional Blue */
    --accent-blue: #007bff; /* Bright Blue */
    --light-blue: #eef6ff; /* Very soft blue for backgrounds */
    --text-main: #1a1a1a;
    --text-muted: #4a4a4a;
    --transition: all 0.3s ease;
    --container-width: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
}

/* Typography System - Different Types of Blue */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

h1 { color: var(--primary-blue); font-weight: 900; }
h2 { color: var(--secondary-blue); font-weight: 700; }
h3 { color: var(--accent-blue); font-weight: 600; }

.text-blue-light { color: var(--accent-blue); }
.text-blue-deep { color: var(--primary-blue); }

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
}

.bg-blue-section {
    background-color: var(--primary-blue);
    color: #ffffff;
}

.bg-blue-section h1, 
.bg-blue-section h2, 
.bg-blue-section h3, 
.bg-blue-section h4 {
    color: #ffffff;
}

.bg-blue-section .text-muted {
    color: rgba(255, 255, 255, 0.8);
}

.bg-blue-section .service-card,
.bg-blue-section .info-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.bg-blue-section .service-card p,
.bg-blue-section .info-block p {
    color: rgba(255, 255, 255, 0.8);
}

.bg-blue-section .styled-list li {
    color: #ffffff;
}

/* Header */
header.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
}

.nav-wrapper {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-blue);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section - Balanced and Clean */
.hero-section {
    position: relative;
    padding-top: 220px;
    padding-bottom: 140px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.exit {
    opacity: 0;
    transform: translateX(-100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75); /* Light overlay to keep the white theme */
    z-index: -1;
}

.hero-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 850px;
}

.hero-text h1 {
    font-size: 64px;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-muted);
    margin: 0 auto 40px;
    max-width: 650px;
}


/* Buttons */
.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 51, 102, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Services Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.clickable-card {
    cursor: pointer;
    text-align: center;
}

.clickable-card:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
    transform: translateY(-8px);
}

.read-more {
    font-size: 14px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-top: 10px;
    display: block;
    opacity: 0.8;
}

.service-card i {
    font-size: 32px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
}

/* Info Section */
.info-block {
    background-color: var(--light-blue);
    border-radius: 32px;
    padding: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Lists */
.styled-list {
    list-style: none;
    margin-top: 24px;
}

.styled-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--primary-blue);
}

.styled-list li i {
    color: var(--accent-blue);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-item i {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.icon-gold { color: #FFB100; }
.icon-blue { color: #007bff; }
.icon-purple { color: #A084E8; }
.icon-teal { color: #00C1D4; }

.value-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 26, 51, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 95%;
    max-width: 1100px;
    padding: 60px;
    border-radius: 32px;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--light-blue);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-blue);
    font-size: 20px;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--primary-blue);
    color: white;
}

#modalBody h2 {
    margin-bottom: 24px;
}

#modalBody p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.8;
}

/* Instagram Section */
.insta-container {
    max-width: 900px;
    margin: 0 auto;
}



/* Footer */
footer {
    background: #001a33;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-bottom {
    padding-top: 40px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .hero-grid, .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-text p {
        margin: 0 auto 40px;
    }
    .btn-group {
        justify-content: center;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        display: flex;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hero-section {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .hero-text p {
        font-size: 16px;
    }
    .grid-3, .grid-4, .values-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 60px 0;
    }
    .info-block {
        padding: 40px 20px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

/* Floating Instagram Button */
.insta-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    right: 40px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(214, 36, 159, 0.3);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.insta-float:hover {
    transform: scale(1.1) rotate(-10deg);
    filter: brightness(1.1);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128c7e;
}

@keyframes pulse-green {
    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);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .insta-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Pulsating Section */
.pulsate-section {
    padding: 40px 0;
    text-align: center;
    background: #fff;
}

.pulsate-text {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--secondary-blue);
    text-decoration: none;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
    cursor: pointer;
    line-height: 1.2;
    transition: var(--transition);
}

.pulsate-text:hover {
    color: var(--primary-blue);
    animation-play-state: paused;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); text-shadow: 0 0 20px rgba(0, 86, 179, 0.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .pulsate-text {
        font-size: 28px;
    }
}

/* FAQ & Form Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-item.active .ph-caret-down {
    transform: rotate(180deg);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 16px;
}
/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-blue);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-container {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 50s linear infinite;
}

.marquee-container:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    width: 400px;
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.05);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 86, 179, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.1);
}

.stars {
    color: #FFB100;
    display: flex;
    gap: 4px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.author-info h4 {
    color: var(--primary-blue);
    font-size: 17px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 14px;
    color: var(--accent-blue);
    font-weight: 500;
}


@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 30px;
    }
    .testimonials-section {
        padding: 60px 0;
    }
}


.avatar-circle {
    width: 48px;
    height: 48px;
    background-color: var(--secondary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .section-title {
        font-size: 28px;
    }
    .pulsate-text {
        font-size: 22px;
    }
}
