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

:root {
    --primary-color: #2A4C9B;      /* Your blue: R42 G76 B155 */
    --accent-color: #F0B042;        /* Your orange: R240 G176 B66 */
    --secondary-color: #1e3a7a;     /* Darker blue for gradients */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0.8rem 0;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-cta-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}

.nav-cta-btn:hover {
    background: #e09f2d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 176, 66, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 3rem 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1.1rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    letter-spacing: 0.3px;
    display: inline-block;
}

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

.btn-primary:hover {
    background: #e09f2d;
    border-color: #e09f2d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 176, 66, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Trusted By Section */
.trusted-by {
    padding: 5rem 3rem;
    background: var(--white);
    border-bottom: 1px solid #f0f0f0;
}

.trusted-by h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: -0.3px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    position: relative;
}

.client-logo::after {
    content: attr(data-info);
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;  /* CHANGED from var(--primary-color) */
    color: #333;  /* CHANGED to black */
    padding: 0.6rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;  /* SMALLER */
     white-space: pre-line; 
 min-width: 180px;  /* Add this line too */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);  /* ADDED shadow so white box is visible */
    text-align: center;
    line-height: 1.4;
}

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

.client-logo img {
    height: 60px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 1.0;
    transition: all 0.3s;
}

.client-logo img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 6rem 3rem;
}
.services-preview {
    padding-top: 3rem;  /* Reduces top padding specifically */
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
}


/* Why Choose Us */
.why-choose {
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

/* Services Preview */
.services-preview {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #e0e0e0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #d63850;
}

/* Founder Section */
.founder-section {
    background: var(--white);
    padding: 6rem 3rem;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.founder-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.founder-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.founder-text p {
    margin-bottom: 1.5rem;
}

.founder-text .quote {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    margin: 2.5rem 0;
    color: var(--accent-color);
    padding: 1.5rem;
    background: var(--light-bg);
}

.founder-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.founder-link:hover {
    border-bottom-color: var(--accent-color);
}

.founder-cta {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Philosophy Section */
.philosophy {
    background: var(--primary-color);
    color: var(--white);
}

.philosophy h2 {
    color: var(--white);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-text {
    font-size: 1.1rem;
    line-height: 1.9;
}

.philosophy-text p {
    margin-bottom: 1.5rem;
}

.philosophy-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
}

.philosophy-text .quote {
    font-size: 1.5rem;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    color: var(--accent-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d63850 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 3rem;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 3rem 2rem;
}

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: 5rem 3rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* About Page Specific */
.about-founder {
    padding: 6rem 3rem;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.founder-cta-box {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.founder-cta-box p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.our-story {
    padding: 6rem 3rem;
    background: var(--light-bg);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-align: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.differentiators {
    padding: 6rem 3rem;
    background: var(--white);
}

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

.diff-card {
    text-align: center;
    padding: 2rem;
}

.diff-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.diff-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.diff-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
}

.philosophy-about {
    padding: 6rem 3rem;
    background: var(--primary-color);
    color: var(--white);
}

.philosophy-about h2 {
    color: var(--white);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.philosophy-about .philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-about blockquote {
    font-size: 1.8rem;
    font-style: italic;
    text-align: center;
    margin: 2rem 0 3rem;
    color: var(--accent-color);
    padding: 2rem;
    background: rgba(255,255,255,0.05);
}

.philosophy-about p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    line-height: 1.8;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* Service Detail Pages */
.service-detail {
    padding: 4rem 3rem;
}

.service-detail.alt-bg {
    background: var(--light-bg);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: -1rem;
}

.service-detail-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.service-detail h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-detail-text .lead {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.9;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.service-detail-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 2.5rem 0 1.5rem;
}

.service-detail-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    border-radius: 5px;
}

.service-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* Reviews Page */
.reviews-intro {
    padding: 4rem 3rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.reviews-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.reviews-intro .lead {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.9;
}

.reviews-page {
    padding: 5rem 3rem;
    min-height: 60vh;
}

.reviews-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.review-card .event-type {
    font-size: 0.75rem;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.review-card .stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.review-card .reviewer {
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    font-size: 0.9rem;
}

.reviews-loader {
    grid-column: 1 / -1;
    text-align: center;
    color: #999;
    padding: 3rem;
    font-size: 1.1rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 3rem;
    background: var(--light-bg);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info .lead {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    line-height: 1.7;
}

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

.contact-text a:hover {
    text-decoration: underline;
}

.why-contact-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.why-contact-box h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-contact-box ul {
    list-style: none;
    padding: 0;
}

.why-contact-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.why-contact-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .logo-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .reviews-grid-full {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 1rem;
    }
    
    .client-logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
