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

:root {
    --primary-color: #0F1B2D;
    --bg-gradient-start: #0B1426;
    --bg-gradient-end: #16233B;
    --gold: #D4AF37;
    --gold-light: #F1D27A;
    --neutral-bg: #F5F7FA;
    --neutral-secondary: #C8CDD6;
    --white: #FFFFFF;
    --dark-text: #0F1B2D;
    --light-text: #4A5568;
    --shadow: 0 4px 20px rgba(15, 27, 45, 0.08);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.2);
    --gold-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

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

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1E2A32;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2872A1;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2872A1;
}

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

.cta-btn {
    background: #D4AF37;
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    background: #C19F2F;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-menu-toggle span {
    width: 26px;
    height: 3px;
    background: #1E2A32;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('mainbackground.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 31, 59, 0.9) 0%, rgba(7, 20, 38, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.hero-content::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 28px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 72px;
    margin-bottom: 32px;
    line-height: 1.1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-title-line1 {
    color: var(--white);
    display: block;
}

.hero-title-line2 {
    color: var(--gold);
    display: block;
}

.hero-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #E0BD4A;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-primary.large {
    padding: 20px 48px;
    font-size: 18px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 8px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.8s ease;
}

.section-header.animate .section-label::after {
    width: 60px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 22px;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--neutral-secondary);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:nth-child(1).animate { transition-delay: 0.1s; }
.stat-card:nth-child(2).animate { transition-delay: 0.2s; }
.stat-card:nth-child(3).animate { transition-delay: 0.3s; }
.stat-card:nth-child(4).animate { transition-delay: 0.4s; }

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--gold);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-card h4 {
    font-size: 18px;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.stat-card p {
    color: var(--light-text);
    font-size: 14px;
    line-height: 1.6;
}

/* Excellence Section */
.excellence {
    background: var(--neutral-bg);
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.excellence-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--neutral-secondary);
    opacity: 0;
    transform: translateY(30px);
}

.excellence-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.excellence-card:nth-child(1).animate { transition-delay: 0.1s; }
.excellence-card:nth-child(2).animate { transition-delay: 0.2s; }
.excellence-card:nth-child(3).animate { transition-delay: 0.3s; }
.excellence-card:nth-child(4).animate { transition-delay: 0.4s; }
.excellence-card:nth-child(5).animate { transition-delay: 0.5s; }

.excellence-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--gold);
}

.excellence-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.excellence-icon svg {
    width: 100%;
    height: 100%;
}

.excellence-card h3 {
    font-size: 20px;
    color: var(--dark-text);
    margin-bottom: 12px;
    font-weight: 600;
}

.excellence-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 15px;
}

.stat-card p {
    color: var(--dark-text);
    font-weight: 500;
}

/* Founders Section */
.founders {
    background: var(--white);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.founder-card {
    text-align: center;
}

.founder-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.founder-name {
    font-size: 22px;
    color: var(--dark-text);
    margin: 0;
    font-weight: 600;
}

.founder-title {
    font-size: 14px;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 16px;
}

.founder-bio {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 0;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--light-text);
    transition: all 0.3s;
    border-radius: 4px;
    flex-shrink: 0;
}

.founder-linkedin:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.founder-linkedin svg {
    width: 20px;
    height: 20px;
}

.founder-photo {
    width: 100%;
    max-width: 280px;
    height: 400px;
    margin: 0 auto 20px;
    overflow: hidden;
    transition: all 0.3s;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

.founder-photo:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.2));
}

.founder-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    filter: brightness(1.05) contrast(1.02) saturate(1.1);
}

.leadership-content {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.leadership-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

.leadership-content p:last-child {
    margin-bottom: 0;
}

/* Closing Section */
.methodology {
    background: var(--neutral-bg);
    padding: 100px 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 10px;
}

.methodology-card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 12px;
    border: 2px solid var(--neutral-secondary);
    border-top: 3px solid var(--gold);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--gold);
}

.methodology-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.methodology-card p {
    font-size: 15.5px;
    color: var(--light-text);
    line-height: 1.85;
}

/* Services Section */
.services {
    background: var(--neutral-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-text);
    letter-spacing: 0.3px;
    font-weight: 700;
}

.service-tagline {
    color: var(--primary-color);
    font-size: 13.5px;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.5;
    padding-left: 10px;
    border-left: 3px solid var(--gold);
}

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

.service-list li {
    color: var(--light-text);
    font-size: 14.5px;
    line-height: 1.7;
    padding-left: 16px;
    margin-bottom: 6px;
    position: relative;
}

.service-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Industries Section */
.industries {
    background: var(--white);
}

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

.industry-card {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--gold);
}

.industry-card h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
}

.why-intro {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}

.why-intro p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.9;
    margin-bottom: 16px;
}

.why-intro p:last-child {
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    position: relative;
    padding: 36px 30px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--neutral-secondary);
    border-top: 3px solid var(--gold);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(1).animate { transition-delay: 0.1s; }
.feature-card:nth-child(2).animate { transition-delay: 0.2s; }
.feature-card:nth-child(3).animate { transition-delay: 0.3s; }

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--gold);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark-text);
    letter-spacing: 0.2px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    background: var(--secondary-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: var(--light-text);
    font-size: 14px;
}

/* Insights Section */
.insights {
    background: var(--neutral-bg);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.insight-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--neutral-secondary);
    opacity: 0;
    transform: translateY(30px);
}

.insight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--gold);
}

.insight-meta {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.insight-card h3 {
    font-size: 22px;
    color: var(--dark-text);
    margin-bottom: 14px;
    font-weight: 700;
}

.insight-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

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

.insight-link:hover {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: var(--light-text);
    line-height: 1.8;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group.full {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    padding: 16px;
    border: 2px solid var(--neutral-secondary);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    border-top: 2px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.social-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
}

.social-link:hover .social-icon {
    transform: translateY(-2px);
}

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s;
    margin-top: 4px;
}

.linkedin-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #FFFFFF;
        flex-direction: column;
        padding: 120px 40px 40px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 0;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
        margin-bottom: 8px;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

    .nav-links a {
        display: block;
        padding: 16px 20px;
        font-size: 17px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s;
        color: #1E2A32;
    }

    .nav-links a:hover {
        background: rgba(40, 114, 161, 0.08);
        color: #2872A1;
        transform: translateX(8px);
        border-left: 3px solid #2872A1;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-btn {
        display: none;
    }

    .mobile-cta {
        display: block;
        margin-top: 30px;
        padding: 16px 32px;
        background: #D4AF37;
        color: #FFFFFF;
        text-align: center;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
    }

    .mobile-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.35);
        background: #C19F2F;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leadership-content {
        order: -1;
        padding: 0;
        text-align: center;
    }

    .services-grid,
    .industries-grid,
    .features-grid,
    .testimonials-grid,
    .insights-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .btn-primary.large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
}

/* Hero Trust Indicators */
.hero-trust-indicators {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-trust-indicators span {
    display: inline;
}

.hero-trust-indicators .divider {
    color: rgba(212, 175, 55, 0.5);
    margin: 0 8px;
}

/* Override navbar scrolled state for white background */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

.navbar.scrolled .nav-links a {
    color: #0F1B2D !important;
}

.navbar.scrolled .nav-links a::after {
    background: #D4AF37 !important;
}

/* Premium Hero Typography */
.hero-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 76px;
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.1;
    max-width: 850px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-title-line1 {
    color: var(--white);
    display: block;
}

.hero-title-line2 {
    color: var(--gold);
    display: block;
}

.hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 520px;
}

.btn-primary, .btn-secondary {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.hero-trust-indicators {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Premium Hero Typography Improvements */
.hero-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 76px !important;
    font-weight: 700 !important;
    margin-bottom: 36px !important;
    line-height: 1.1 !important;
    max-width: 850px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.hero-title-line1 {
    color: #FFFFFF !important;
    display: block !important;
}

.hero-title-line2 {
    color: #D4AF37 !important;
    display: block !important;
}

.hero-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 48px !important;
    line-height: 1.8 !important;
    max-width: 520px !important;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

.hero-trust-indicators {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 52px !important;
    }
    
    .hero-label {
        font-size: 12px !important;
        letter-spacing: 2px !important;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 42px !important;
    }
}



/* Hero Label Premium Styling */
.hero-label {
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #D4AF37 !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    margin-bottom: 28px !important;
    opacity: 0.95 !important;
}

/* Hero Background Gradient for Logo Visibility */
.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        to right,
        rgba(11, 31, 59, 0.75) 0%,
        rgba(7, 20, 38, 0.9) 20%,
        rgba(7, 20, 38, 0.95) 50%,
        rgba(7, 20, 38, 0.9) 80%,
        rgba(11, 31, 59, 0.75) 100%
    ) !important;
    z-index: 1 !important;
}

/* Additional top gradient for header area */
.hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 150px !important;
    background: linear-gradient(
        to bottom,
        rgba(11, 31, 59, 0.6) 0%,
        transparent 100%
    ) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Disclaimer Popup */
.disclaimer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.disclaimer-modal {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 48px 40px 40px;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-top: 4px solid #D4AF37;
}

.disclaimer-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #0F1B2D;
    margin-bottom: 24px;
    text-align: center;
}

.disclaimer-body {
    max-height: 260px;
    overflow-y: auto;
    margin-bottom: 32px;
    padding-right: 8px;
}

.disclaimer-body::-webkit-scrollbar {
    width: 4px;
}

.disclaimer-body::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

.disclaimer-body p {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.disclaimer-body p:last-child {
    margin-bottom: 0;
}

.disclaimer-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #D4AF37;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.disclaimer-btn:hover {
    background: #C19F2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.disclaimer-overlay.hidden {
    display: none;
}

/* Thank You Popup */
.thankyou-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.thankyou-overlay.hidden {
    display: none;
}

.thankyou-modal {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 56px 48px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    border-top: 4px solid #D4AF37;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.85); }
    to   { opacity: 1; transform: scale(1); }
}

.thankyou-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #D4AF37, #F1D27A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.thankyou-icon svg {
    width: 36px;
    height: 36px;
    color: #FFFFFF;
    stroke-width: 2.5;
}

.thankyou-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #0F1B2D;
    margin-bottom: 16px;
}

.thankyou-modal p {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.8;
    margin-bottom: 36px;
}

.thankyou-btn {
    display: inline-block;
    background: #D4AF37;
    color: #FFFFFF;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.thankyou-btn:hover {
    background: #C19F2F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

/* Subscribe Forms */
.subscribe-box {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 12px;
    max-width: 600px;
    margin: 32px auto 0;
}
.subscribe-box p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}
.subscribe-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}
.subscribe-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    color: var(--text-primary);
    background: #fafafa;
    border-radius: 8px;
}
.subscribe-form input:focus {
    border-color: var(--gold);
    background: #fff;
}
.subscribe-form .btn-primary {
    padding: 14px 24px;
    font-size: 14px;
    white-space: nowrap;
    border-radius: 8px;
    width: auto;
}
.subscribe-form button:hover { background: var(--gold); color: #fff; }
.subscribe-msg { font-size: 13px; margin-top: 12px; min-height: 18px; }

/* Footer subscribe */
.footer-col .subscribe-form {
    box-shadow: none;
    margin: 0;
}
.footer-col .subscribe-form input {
    background: #2a2a3e;
    border-color: #444;
    color: #fff;
}
.footer-col .subscribe-form input::placeholder { color: #aaa; }
.footer-col .subscribe-msg { color: #aaa; }

@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }
    .subscribe-form input,
    .subscribe-form .btn-primary {
        width: 100%;
    }
}
