/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #00004d; /* Dark blue background */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 77, 0.95); /* Dark blue with transparency */
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ffd700; /* Gold color for hover */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.button.primary {
    background: linear-gradient(45deg, #ffd700, #ffbf00); /* Gold gradient */
    color: #00004d; /* Dark blue text */
}

.button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700; /* Gold border */
}

.button.secondary:hover {
    background: #ffd700; /* Gold background */
    color: #00004d; /* Dark blue text */
}

.demo-btn {
    background: #ffd700; /* Gold color */
    color: #00004d; /* Dark blue text */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #00004d 0%, #000066 100%); /* Dark blue gradient */
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blood-red-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff; /* White for headline */
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.hero-cta {
    margin-bottom: 3rem;
}

.hero-cta .button {
    margin: 0 1rem;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.compliance-guarantee {
    background: rgba(255, 215, 0, 0.1); /* Gold with transparency */
    border: 1px solid #ffd700; /* Gold border */
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

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

.guarantee-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Social Proof Section */
.social-proof-section {
    background: #000055; /* Slightly lighter dark blue */
    padding: 60px 0;
    text-align: center;
}

.social-proof-section h2 {
    color: #fff;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.client-logo {
    height: 60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

/* Features Section */
.features-section {
    background: #00004d;
    padding: 80px 0;
    color: white;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-section h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 3rem;
}

.optimization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.optimization-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.optimization-card:hover {
    transform: translateY(-5px);
}

.optimization-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.optimization-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700; /* Gold color */
}

/* Solutions Section */
.solutions-section {
    background: #000055;
    padding: 80px 0;
    color: white;
}

.solutions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.solution-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-item h3 {
    color: #ffd700; /* Gold color */
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-section {
    background: #00004d;
    padding: 80px 0;
    color: white;
}

.industries-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card h3 {
    color: #ffd700; /* Gold color */
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #000055;
    padding: 80px 0;
    color: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-card cite {
    color: #ffd700; /* Gold color */
    font-weight: bold;
}

/* Pricing Section */
.pricing-section {
    background: #00004d;
    padding: 80px 0;
    color: white;
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.pricing-card.featured {
    border-color: #ffd700; /* Gold border */
    transform: scale(1.05);
}

.pricing-card h3 {
    color: #ffd700; /* Gold color */
    font-size: 2rem;
    margin-bottom: 1rem;
}

.best-for {
    color: #ccc;
    margin-bottom: 1rem;
}

.ad-spend, .management-fee {
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee {
    background: rgba(0, 255, 0, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
}

.outcome {
    color: #ccc;
    margin-bottom: 1.5rem;
}

.pricing-btn {
    width: 100%;
    text-align: center;
}

/* Service Details Section */
.service-details-section {
    background: #000055;
    padding: 80px 0;
    color: white;
}

.service-details-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.service-detail-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-detail-item h3 {
    color: #ffd700; /* Gold color */
    margin-bottom: 1rem;
}

.service-detail-item ul {
    list-style-position: inside;
}

.service-detail-item li {
    margin-bottom: 0.5rem;
}

/* Case Studies Section */
.case-studies-section {
    background: #00004d;
    padding: 80px 0;
    color: white;
}

.white-heading {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.case-study {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.case-study:hover {
    transform: translateY(-5px);
    border-color: #ffd700; /* Gold border */
}

.white-border {
    border-color: rgba(255, 255, 255, 0.3);
}

.case-study-header {
    margin-bottom: 1rem;
}

.case-study-header h3 {
    color: #ffd700; /* Gold color */
    margin-bottom: 0.5rem;
}

.success-badge {
    background: #00ff00;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.tactics-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tactics-list li {
    margin-bottom: 0.5rem;
}

.btn-glow-white {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    border: 1px solid white;
    display: inline-block;
}

/* FTD Counter Section */
.ftd-counter-section {
    background: #000055;
    padding: 40px 0;
    text-align: center;
}

.ftd-counter h3 {
    color: #ffd700; /* Gold color */
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.counter-disclaimer {
    color: #ccc;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background: #00004d;
    padding: 80px 0;
    color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    color: #ffd700; /* Gold color */
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ffd700; /* Gold color */
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

/* Company Section */
.company-section {
    background: #000055;
    padding: 80px 0;
    color: white;
}

.company-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.company-text h3 {
    color: #ffd700; /* Gold color */
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.company-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expertise-item h4 {
    color: #ffd700; /* Gold color */
    margin-bottom: 1rem;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat h3 {
    color: #ffd700; /* Gold color */
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact-section {
    background: #00004d;
    padding: 80px 0;
    color: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: #ffd700; /* Gold color */
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #ffd700; /* Gold color */
}

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

.contact-item a:hover {
    color: #ffd700; /* Gold color */
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    text-decoration: none;
    color: white;
    transition: background 0.3s;
}

.social-link:hover {
    background: #ffd700; /* Gold color */
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700; /* Gold color */
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700; /* Gold color */
}

/* Success Message */
.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid #00ff00;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.success-content {
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #00ff00;
    margin-bottom: 1rem;
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
}

.next-steps h4 {
    color: #ffd700; /* Gold color */
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style-position: inside;
}

.next-steps li {
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #000055;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    color: white;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ffd700; /* Gold color */
}

.case-study-details h2 {
    color: #ffd700; /* Gold color */
    margin-bottom: 2rem;
    text-align: center;
}

.case-study-details h3 {
    color: #ffd700; /* Gold color */
    margin: 2rem 0 1rem 0;
}

.case-overview,
.challenge,
.solution,
.results,
.timeline {
    margin-bottom: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.result-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-item h4 {
    color: #ffd700; /* Gold color */
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.main-footer {
    background: #00004d;
    padding: 40px 0 20px;
    color: white;
    border-top: 1px solid #333;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-bottom: 2rem;
}

.footer-nav li {
    margin: 0 1rem;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffd700; /* Gold color */
}

.compliance-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 77, 0.95); /* Dark blue with transparency */
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .blood-red-headline {
        font-size: 2.5rem;
    }
    
    .hero-cta .button {
        display: block;
        margin: 1rem 0;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .company-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .blood-red-headline {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .optimization-grid,
    .solutions-grid,
    .industries-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* Yellow Button Styling */
.yellow-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #0A2463 !important;
    font-weight: 700;
}

.yellow-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Pricing Button Styling */
.pricing-btn.yellow-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #0A2463 !important;
    font-weight: 700;
    border: none;
}

.pricing-btn.yellow-btn:hover {
    background: linear-gradient(135deg, #FFA500, #FFD700) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}


/* Blog Section Styling */
.blog-section {
    background: #001a4d;
    color: white;
    padding: 80px 0;
}

.blog-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-card h3 a:hover {
    color: #FFD700;
}

.blog-excerpt {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.blog-read-more {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #FFA500;
}

