:root {
    --color-navy: #0A1128;
    --color-burgundy: #800020;
    --color-gold: #D4AF37;
    --color-silver: #C0C0C0;
    --color-white: #FFFFFF;
    --color-dark-text: #333333;
    --color-light-bg: #F8F8F8; /* Subtle light background */

    --font-primary: 'Baskerville Display PT', 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Georgia', 'Times New Roman', serif; /* For body text, if Baskerville is too decorative */

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    --max-width-content: 1200px;
    --border-radius-sm: 5px;
    --transition-speed: 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--color-dark-text);
    background-color: var(--color-white);
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
}

a {
    text-decoration: none;
    color: var(--color-gold);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--color-burgundy);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-navy);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
p { font-size: 1.1rem; margin-bottom: var(--spacing-sm); }

.section-container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-spacing {
    padding: var(--spacing-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--color-navy);
}

.section-description {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: 1.2rem;
    color: var(--color-dark-text);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bg-dark {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.bg-light {
    background-color: var(--color-light-bg);
}

.text-white {
    color: var(--color-white);
}

.text-silver {
    color: var(--color-silver);
}

/* Header & Navigation */
.main-header {
    background-color: rgba(10, 17, 40, 0.95); /* Semi-transparent navy */
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--color-gold);
    font-weight: bold;
    letter-spacing: 0.05em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    padding: var(--spacing-xs) 0;
    position: relative;
    transition: color var(--transition-speed);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-speed);
}

.nav-links a:hover {
    color: var(--color-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh; /* Compact height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(10, 17, 40, 0.7), rgba(10, 17, 40, 0.7)), url('images/image_18.jpg') center/cover no-repeat;
    color: var(--color-white);
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    padding: var(--spacing-md);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold);
    line-height: 1.1;
    letter-spacing: 0.03em;
}

.hero-content p {
    font-size: 1.8rem;
    color: var(--color-silver);
    font-family: var(--font-secondary);
    letter-spacing: 0.02em;
}

/* Mission Section (TWO COLUMN) */
.mission-section {
    background-color: var(--color-white);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text h2 {
    color: var(--color-burgundy);
    margin-bottom: var(--spacing-md);
}

.story-text p {
    margin-bottom: var(--spacing-md);
    font-size: 1.15rem;
    line-height: 1.8;
}

.team-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    position: relative;
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.team-img-1 { grid-column: 1 / 3; }
.team-img-2 { grid-column: 2 / 3; }

.team-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Solutions Section (ICON WITH TEXT) */
.solutions-section {
    color: var(--color-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.solution-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.solution-item:hover {
    background-color: rgba(212, 175, 55, 0.1); /* Gold tint */
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.solution-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold); /* Icons can be gold */
}

.solution-item h3 {
    color: var(--color-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.7rem;
}

.solution-item p {
    color: var(--color-silver);
    font-size: 1rem;
}

/* Portfolio Section (INTERACTIVE SHOWCASE) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards on desktop */
    gap: var(--spacing-md);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 17, 40, 0.85); /* Navy overlay */
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.5s ease;
    padding: var(--spacing-md);
    text-align: center;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-xs);
}

.overlay p {
    color: var(--color-silver);
    font-size: 1.1rem;
}

/* Clients Section (VIDEO TESTIMONIALS) */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards on desktop */
    gap: var(--spacing-lg);
}

.video-testimonial {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.video-testimonial:hover {
    transform: translateY(-5px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: var(--color-navy);
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    z-index: 2;
}

.video-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(212, 175, 55, 0.9); /* Gold with transparency */
    color: var(--color-navy);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.video-wrapper .play-button:hover {
    background-color: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonial-caption {
    padding: var(--spacing-md);
    font-style: italic;
    color: var(--color-dark-text);
    font-size: 1.1rem;
    text-align: center;
    min-height: 80px; /* Ensure consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Section (GRID WITH CAPTIONS) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards on desktop */
    gap: var(--spacing-md);
}

.gallery-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform var(--transition-speed);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item figcaption {
    padding: var(--spacing-md);
    text-align: center;
    font-weight: bold;
    color: var(--color-navy);
    font-size: 1.1rem;
}

/* Pricing Section (THREE TIER) */
.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 cards on desktop */
    gap: var(--spacing-lg);
    align-items: stretch;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-sm);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
}

.pricing-card.premium {
    background-color: var(--color-burgundy);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px) scale(1.03);
    border: 2px solid var(--color-gold);
}

.pricing-card:hover:not(.premium) {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.pricing-card h3 {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.pricing-card .price {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-silver);
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: var(--spacing-lg);
    flex-grow: 1; /* Make list grow to fill space */
}

.pricing-card ul li {
    padding: var(--spacing-xs) 0;
    color: var(--color-silver);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card .note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-md);
}

/* FAQ Section (INTERACTIVE CHAT - static visual) */
.chat-interface {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.chat-message {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    max-width: 80%;
    font-size: 1.05rem;
    line-height: 1.5;
}

.chat-message.bot {
    background-color: var(--color-light-bg);
    align-self: flex-start;
    border-bottom-left-radius: 0;
    color: var(--color-dark-text);
}

.chat-message.user {
    background-color: var(--color-navy);
    color: var(--color-white);
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.chat-message p {
    margin: 0;
}

/* Support Section (Social Focus - text-focused) */
.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.support-text h3, .contact-options h3 {
    color: var(--color-burgundy);
    margin-bottom: var(--spacing-md);
}

.support-text p, .contact-options p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.contact-options .connect-hint {
    color: var(--color-gold);
    font-weight: bold;
    margin-top: var(--spacing-md);
}

/* Newsletter Section (Informational) */
.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content p {
    color: var(--color-silver);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

/* Footer */
.main-footer {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
    border-top: 2px solid var(--color-burgundy);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: bold;
    margin-bottom: var(--spacing-xs);
}

.footer-content p {
    font-size: 0.9rem;
    color: var(--color-silver);
    margin: 0;
}

.footer-links {
    margin-top: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--color-white);
    font-size: 1rem;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--color-gold);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: var(--spacing-md);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.5rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .team-images {
        grid-template-columns: 1fr;
    }

    .team-img-1, .team-img-2 {
        grid-column: auto;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    h3 { font-size: 1.6rem; }
    p { font-size: 1rem; }

    .nav-links {
        display: none; /* Hide navigation on small screens, can implement hamburger menu if desired */
    }

    .main-nav {
        justify-content: center;
    }

    .logo {
        font-size: 1.8rem;
    }

    .hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .section-spacing {
        padding: var(--spacing-lg) 0;
    }

    .section-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .solutions-grid,
    .portfolio-grid,
    .testimonials-grid,
    .gallery-grid,
    .pricing-tiers {
        grid-template-columns: 1fr; /* Stacks to 1 column on mobile */
    }

    .solution-icon {
        font-size: 3rem;
    }

    .solution-item, .pricing-card {
        padding: var(--spacing-md);
    }

    .pricing-card.premium {
        transform: translateY(0) scale(1.02);
    }

    .chat-interface {
        padding: var(--spacing-sm);
    }

    .chat-message {
        max-width: 90%;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}


javascript
// script.js
    // Smooth scrolling for navigation links
            e.preventDefault();


            if (targetElement) {
                // Get the height of the fixed header
                // Calculate the position to scroll to, accounting for the header

                    top: offsetPosition,
                    behavior: 'smooth'
                });
            }
        });
    });

    // Video Testimonial Play Functionality

        if (playButton && videoIframe && videoThumbnail) {
                videoThumbnail.style.display = 'none';
                playButton.style.display = 'none';
                videoIframe.style.display = 'block';

                // Autoplay the video
                // Ensure autoplay is enabled and controls are hidden (as per the src in HTML)
                if (src.indexOf('autoplay=1') === -1) {
                    src += (src.indexOf('?') > -1 ? '&' : '?') + 'autoplay=1';
                }
                videoIframe.src = src;
            });
        }
    });

    // FAQ Section - This is visually a chat interface but static.
    // No dynamic interaction or input fields as per requirements.
    // The content is displayed directly in a chat-like format.
});

/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
