/* Variables */
:root {
    --color-navy: #0A1833;
    --color-blue-dark: #0A1833;
    --color-blue-light: #1E3A8A;
    --color-gold: #c9a55c;
    --color-gold-hover: #b08f4b;
    --color-bg-light: #F8FAFC;
    --color-white: #FFFFFF;
    --color-text-dark: #1e293b;
    --color-text-gray: #64748b;
    --color-text-light: #cbd5e1;
    
    --font-main: 'Inter', sans-serif;
    
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --radius-card: 12px;
    --radius-btn: 6px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Accounts for sticky navbar height */
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Prevents horizontal scroll */
    width: 100%;
}

/* Global Responsive Images */
img, svg, canvas, video {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Navbar */
.navbar {
    background-color: var(--color-white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

/* Improved Touch Targets for Mobile */
.nav-links a, .btn-primary-small, .btn-gold, .btn-outline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-navy);
}

.logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-navy);
    font-size: 0.95rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown .dropbtn {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1001;
    border-radius: var(--radius-btn);
    padding: 10px 0;
    border-top: 3px solid var(--color-gold);
}

.dropdown-content a {
    color: var(--color-navy);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 1px solid #f1f1f1;
    white-space: normal; /* Allow wrapping in dropdown */
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: var(--color-gold);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Scrollable Dropdown for long lists */
.dropdown-content.scrollable {
    max-height: 500px;
    overflow-y: auto;
    width: 320px;
}

.dropdown-content.scrollable::-webkit-scrollbar {
    width: 6px;
}
.dropdown-content.scrollable::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.dropdown-content.scrollable::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.dropdown-header {
    padding: 12px 20px 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: var(--color-white);
    pointer-events: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-navy);
    cursor: pointer;
}

/* Buttons */
.btn-primary-small {
    background-color: var(--color-navy);
    color: var(--color-white) !important;
    padding: 8px 20px;
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
}

.btn-primary-small:hover {
    background-color: var(--color-blue-light);
}

.btn-gold {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-btn);
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* New Hero Section */
.hero-section-new {
    background: linear-gradient(to right, rgba(15, 30, 58, 0.9), rgba(28, 47, 82, 0.85)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Ensure left alignment */
    justify-content: center;
    padding: 80px 0 120px; /* Adjusted padding */
    position: relative;
}

.hero-content-new {
    max-width: 750px;
    margin-left: 0; /* Align to left edge of container */
}

.hero-badge {
    display: inline-block;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-section-new h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem); /* Scales between mobile and desktop */
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-section-new h1 span {
    color: var(--color-gold);
    display: block;
}

.hero-subtext {
    font-size: 1.125rem; /* 18px */
    color: #d1d5db;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start; /* Left align buttons */
    flex-wrap: wrap;
}

.btn-gold-outline {
    display: inline-block;
    background: transparent;
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    font-weight: 600;
    padding: 10px 26px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

/* Hero Grid Layout & Contact Form */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-grid-layout .hero-content-new {
    max-width: 100%;
}

.hero-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: var(--radius-card);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-contact-card h3 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.form-group-hero {
    margin-bottom: 15px;
}

.hero-contact-card input, 
.hero-contact-card select {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-btn);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.hero-contact-card input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-contact-card input:focus,
.hero-contact-card select:focus {
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.4);
}

.hero-contact-card select option {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.hero-contact-card .btn-gold {
    width: 100%;
    margin-top: 10px;
    font-size: 1rem;
    padding: 14px;
}

/* Stats Section */
.stats-container {
    position: absolute;
    bottom: -60px; /* Overlap */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--color-white);
    padding: 25px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--color-blue-dark);
    font-weight: 700;
}

.stat-card p {
    color: var(--color-text-gray);
    font-size: 0.9rem;
}


/* Hero Section (Small header placeholder) */
.hero-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue-light) 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
}
.hero-content h1 { font-size: 2.5rem; margin-bottom: 10px; }
.hero-content p { color: var(--color-text-light); }

/* Page Hero (For inner pages) */
.page-hero {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 80px 0;
}

.page-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-hero h1 span {
    color: var(--color-gold);
}

.page-hero p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.8;
}

/* ABOUT PAGE SPECIFIC STYLES */

/* About Hero */
.about-hero {
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.about-label {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.about-hero h1 span {
    color: var(--color-gold);
}

.about-hero p {
    color: var(--color-text-light);
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.8;
}

/* Trust Section */
.trust-section {
    background-color: var(--color-bg-light);
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-card {
    background: var(--color-white);
    padding: 40px 25px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.trust-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.trust-card h3 {
    color: var(--color-navy);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Founder Section */
.founder-section {
    background-color: var(--color-white);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.founder-card {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-card);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    background: var(--color-blue-dark);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.founder-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.founder-card p {
    color: var(--color-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-content h2 {
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.3;
}

.founder-content p {
    color: var(--color-text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Why Choose Vertical List */
.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.list-item {
    background: var(--color-bg-light);
    border: 1px solid #e2e8f0;
    padding: 20px 30px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s ease;
}

.list-item:hover {
    background: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-soft);
}

.list-item i {
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.list-item-content h4 {
    color: var(--color-navy);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.list-item-content p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Page Grid */
.contact-container-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Form is larger */
    gap: 50px;
    align-items: start;
}

.contact-section-page {
    background-color: #f5f5f5;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Mission & Vision Section */
.mission-vision-section {
    background-color: var(--color-white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-box, .vision-box {
    padding: 30px;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-card);
    border-left: 4px solid var(--color-gold);
}

.mission-box h3, .vision-box h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 15px;
    margin-top: 10px;
}

/* Team Section */
.team-section {
    background-color: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid var(--color-bg-light);
}

.team-info h4 {
    font-size: 1.2rem;
    color: var(--color-navy);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--color-gold);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Why Choose Us - Horizontal Boxes */
.why-choose-list-horizontal {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 40px auto 0;
    max-width: 900px;
}

.why-choose-box {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.why-choose-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(201, 165, 92, 0.5);
}

.why-choose-box i {
    color: var(--color-gold);
    font-size: 1.3rem;
}

.why-choose-box p {
    margin: 0;
    font-weight: 500;
}

.centered-cta {
    text-align: center;
    margin-top: 50px;
}

/* SECTION 1: SERVICES */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--color-text-gray);
}

.services-section {
    padding-top: 140px; /* Space for overlapping stats */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-gold);
}

.icon-wrapper {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
}

/* SECTION 2: WHY CHOOSE US */
.why-us-section {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.small-heading {
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-us-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.why-us-desc {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.why-us-list li i {
    color: var(--color-gold);
}

.why-us-content .btn-gold {
    margin-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius-card);
    transition: 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); /* Glow effect */
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-box i {
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-box h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* SECTION 3: CTA */
.cta-section {
    padding: 60px 20px;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-blue-light), var(--color-blue-dark));
    border-radius: 20px;
    padding: 60px 20px;
    text-align: center;
    color: var(--color-white);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* SECTION 4: FOOTER */
.footer {
    background: linear-gradient(145deg, #020617 0%, #0B1F3A 100%);
    color: #cbd5e1;
    padding-top: 80px;
    font-size: 0.95rem;
    position: relative;
    border-top: 4px solid var(--color-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    margin: 20px 0 25px;
    line-height: 1.8;
    opacity: 0.8;
    max-width: 90%;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    display: block;
}
.footer-logo span { color: var(--color-gold); }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: 0.5px;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--color-gold);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(5px);
}

/* Newsletter & Contact */
.newsletter-form {
    margin-bottom: 30px;
}

.newsletter-group {
    position: relative;
    display: flex;
}

.newsletter-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    color: white;
    border-radius: var(--radius-btn) 0 0 var(--radius-btn);
    outline: none;
    font-size: 0.9rem;
}

.newsletter-group input:focus {
    border-color: var(--color-gold);
}

.newsletter-group button {
    background: var(--color-gold);
    border: none;
    padding: 0 18px;
    color: white;
    border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-group button:hover {
    background: var(--color-gold-hover);
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: #94a3b8;
}

.footer-contact-info i {
    color: var(--color-gold);
    margin-top: 5px;
}

.footer-contact-info .fa-phone-alt {
    transform: scaleX(-1);
}

.footer-bottom { 
    padding: 25px 0; 
    background: rgba(0, 0, 0, 0.2);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.legal-links a { margin: 0 10px; }
.legal-links a:hover { color: var(--color-white); }

/* Testimonials Section */
.testimonials-section {
    background-color: #f5f5f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--color-gold);
}

.testimonial-card .fa-quote-left {
    font-size: 2.5rem;
    color: var(--color-gold);
    opacity: 0.4;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-gray);
    flex-grow: 1;
    margin-bottom: 25px;
    line-height: 1.7;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-author h4 {
    color: var(--color-navy);
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--color-text-gray);
    margin: 0;
}

/* Policy Pages */
.policy-section {
    background-color: var(--color-white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h3 {
    color: var(--color-navy);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.policy-content p, .policy-content li {
    color: var(--color-text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        position: static; /* Remove relative positioning on tablet/mobile */
        bottom: 0;
        transform: none;
        left: 0;
        margin: 40px auto 0;
    }
    .hero-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content-new {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-contact-card {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-section-new {
        min-height: auto;
        padding-bottom: 40px;
    }
    .services-section {
        padding-top: 80px;
    }
    .contact-container-grid { grid-template-columns: 1fr; }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    /* Mobile Sidebar & Toggle */
    .menu-toggle {
        display: flex !important; /* Force display to ensure visibility */
        align-items: center;
        justify-content: center;
        position: fixed; /* Fixed position for close button */
        top: 20px;
        right: 20px;
        z-index: 2000; /* Above sidebar */
        background: var(--color-white);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        border: none;
        cursor: pointer;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh; /* Fallback */
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background: var(--color-white);
        padding: 70px 0 50px; /* Optimized padding for better use of space */
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        overflow-y: auto; /* Allow scrolling within the menu */
        display: none; /* Changed from visibility to display to remove from flow */
        transform: translateX(100%); /* Hidden by default */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        gap: 0;
    }
    
    .nav-links.active { 
        display: flex;
        transform: translateX(0); /* Slide in */
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-links a { 
        font-size: 1rem; 
        padding: 12px 20px; /* More compact spacing */
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--color-navy);
        width: 100%;
        white-space: normal; /* Allow text wrapping */
    }
    
    .nav-links a:active {
        background-color: #f5f5f5;
    }
    
    /* Mobile Dropdown */
    .dropdown { 
        display: block; 
        width: 100%; 
        height: auto; /* Reset height to prevent stretching gaps */
    }
    
    .dropdown .dropbtn i {
        transition: transform 0.3s ease;
    }
    
    .dropdown.active .dropbtn i {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: static;
        display: block; /* Always block for animation */
        max-height: 0; /* Hidden by height */
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
        box-shadow: none;
        border-top: none;
        padding: 0;
        width: 100%;
        background-color: #f8fafc;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 3000px; /* Increased to accommodate large menus */
        opacity: 1;
        padding-bottom: 10px;
    }

    /* Disable hover on mobile to prevent conflict */
    .dropdown:hover .dropdown-content {
        display: block; /* Ensure it stays block, visibility controlled by height/active class */
    }

    .dropdown-content a {
        padding: 12px 25px 12px 40px; /* Indented items */
        font-size: 0.95rem;
        border-bottom: 1px solid #eee;
        color: var(--color-text-gray);
    }

    .dropdown-header {
        padding: 15px 25px 5px 40px;
    }
    
    .dropdown-content.scrollable {
        max-height: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    
    .features-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; }
    .bottom-flex { flex-direction: column; text-align: center; }
    
    .why-us-content h2 { font-size: 2rem; }
    
    .page-hero h1, .hero-section-new h1, .about-hero h1 {
        font-size: 2.2rem; /* readable heading size on mobile */
    }
    .list-item { flex-direction: column; text-align: center; }
    
    .service-row-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-left {
        align-items: center;
    }
    .service-right {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
    
    .trust-grid { grid-template-columns: 1fr; }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid { grid-template-columns: 1fr; }
    
    /* Blog Mobile Adjustments */
    .blog-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .search-container input {
        width: 100%;
        min-width: 0;
    }

    .section {
        padding: 50px 0; /* Reduce section padding for mobile */
    }

    /* Fix for Founder Section on Mobile */
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    /* Fix for Contact Form inputs on Mobile */
    .form-grid {
        grid-template-columns: 1fr;
    }

    /* Adjust Services Card Padding on Mobile */
    .service-left, .service-right {
        padding: 25px;
        text-align: left; /* Keep text readable */
    }
    
    /* Fix About Hero Padding on Mobile */
    .about-hero {
        padding: 60px 0 40px;
    }

    /* Ensure inputs are easy to tap on mobile */
    input, select, textarea, .btn-gold, .btn-outline {
        font-size: 16px !important; /* Prevents iOS zoom on focus */
        min-height: 48px;
    }
}

/* SERVICES PAGE: Horizontal Cards */
.detailed-services-section {
    background-color: var(--color-white);
}

.services-list-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: 0.3s ease;
}

.service-row-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.service-left h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.service-left p {
    color: var(--color-text-gray);
    margin-bottom: 25px;
}

.service-right {
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.5);
    border-left: 1px solid #e2e8f0;
}

.service-right h4 {
    color: var(--color-navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-gold);
    display: inline-block;
    padding-bottom: 5px;
}

.service-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--color-text-dark);
}

.service-check-list li i {
    color: var(--color-gold);
    font-size: 0.8rem;
}

/* CONTACT PAGE UPDATE */
.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 30px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-btn);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--color-bg-light);
    padding: 25px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--color-gold);
    width: 30px;
    text-align: center;
}

.info-card h4 {
    color: var(--color-navy);
    margin-bottom: 5px;
}

.info-card p {
    color: var(--color-text-gray);
    margin: 0;
    line-height: 1.5;
}

/* BLOGS PAGE UPDATE */

/* Update blog grid to 3 columns on desktop */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 30px;
}

/* Blog Category Badge */
.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: transparent;
}

/* Tablet Responsive for Blogs (2 columns) */
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Enhanced Blog Page */
.blog-page-section {
    background-color: #f5f5f5;
}

.blog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--color-white);
    border: 1px solid #ddd;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.filter-btn.active {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.search-container {
    position: relative;
}

.search-container input {
    padding: 10px 40px 10px 15px;
    border-radius: 50px;
    border: 1px solid #ddd;
    min-width: 250px;
    font-family: inherit;
}

.search-container i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-gray);
}

/* Update blog card to include image */
.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    overflow: hidden; /* To contain image border-radius */
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card:hover .blog-image-link img {
    transform: scale(1.05);
}

.blog-image-link {
    display: block;
    overflow: hidden;
}

.blog-image-link img {
    width: 90%;
    height: 210px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    color: var(--color-navy);
    margin-bottom: 10px;
}

.blog-content p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: var(--color-text-gray);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transform: translateX(5px);
}

/* Single Blog Post Page */
.blog-post-section {
    background-color: var(--color-white);
}

.post-meta {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-top: -10px;
}

.blog-post-container {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.blog-post-content .featured-image {
    width: 100%;
    border-radius: var(--radius-card);
    margin-bottom: 30px;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin: 25px 0 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--color-text-gray);
}

.blog-post-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.blog-post-content ul li {
    margin-bottom: 10px;
    color: var(--color-text-gray);
}

.blog-post-content blockquote {
    border-left: 4px solid var(--color-gold);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.social-share {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-share h4 {
    font-size: 1rem;
    color: var(--color-navy);
}

.social-share a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-navy);
    transition: all 0.3s ease;
}

.social-share a:hover {
    background-color: var(--color-gold);
    color: var(--color-white);
}

/* Sidebar */
.blog-sidebar .sidebar-widget {
    background-color: var(--color-bg-light);
    padding: 25px;
    border-radius: var(--radius-card);
    margin-bottom: 30px;
}

.sidebar-widget h4 {
    color: var(--color-navy);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.recent-posts-list li, .category-list li {
    margin-bottom: 15px;
}

.recent-posts-list li a, .category-list li a {
    color: var(--color-text-dark);
    font-weight: 500;
}

.recent-posts-list li a:hover, .category-list li a:hover {
    color: var(--color-gold);
}

/* Responsive for blog post */
@media (max-width: 1024px) {
    .blog-post-container {
        grid-template-columns: 1fr;
    }
}

/* Process Section */
.process-section {
    background-color: #f5f5f5;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    background: var(--color-white);
    padding: 30px;
    border-radius: var(--radius-card);
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 3px solid var(--color-white);
    box-shadow: 0 0 0 4px var(--color-gold);
}

.process-step h3 {
    color: var(--color-navy);
    margin-bottom: 10px;
}

/* Dashed line for process */
.process-grid::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 15%;
    right: 15%;
    height: 2px;
    background-image: linear-gradient(to right, var(--color-gold) 50%, transparent 50%);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    z-index: 0;
}


/* FAQ Section */
.faq-section {
    background-color: var(--color-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
    cursor: pointer;
    font-family: inherit;
}

.accordion-header i {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-content p {
    padding: 0 20px 20px;
    color: var(--color-text-gray);
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust as needed */
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-grid::before {
        display: none; /* Hide line on mobile */
    }

    /* Mobile Adjustments for Hero and Grid */
    .page-hero {
        padding: 50px 0 30px;
    }

    .ipr-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ipr-service-card {
        min-height: 140px;
        padding: 20px 10px;
    }
    
    .ipr-service-card i {
        font-size: 2rem;
    }
}

/* IPR and GST Page Specific Styles */
.ipr-category-title {
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 4px solid var(--color-gold);
}

.ipr-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.ipr-service-card {
    background: var(--color-white);
    padding: 30px 20px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.ipr-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ipr-service-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.ipr-service-card h4 {
    font-size: 1rem;
    color: var(--color-navy);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .ipr-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Fix for Blog Page Mobile Layout (Overriding Desktop Styles) */
@media (max-width: 768px) {
    .blog-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .search-container input {
        width: 100%;
    }

    /* Responsive Blog Grid & Card Fixes */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-card {
        width: 100%;
        height: auto; /* Remove fixed heights */
    }

    .blog-image-link img {
        width: 100%;
        height: auto; /* Allow image to scale proportionally */
        aspect-ratio: 16/9; /* Maintain consistent aspect ratio */
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 1.3rem; /* Optimize heading size for mobile */
        line-height: 1.4;
    }
}

/* Fix for Service Page Mobile Layout */
@media (max-width: 768px) {
    .service-row-card {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .service-left, .service-right {
        padding: 25px;
        border-left: none;
        width: 100%;
    }
    
    .service-right {
        border-top: 1px solid #e2e8f0;
    }
}

/* Fix for About Page Mobile Layout */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        padding: 25px;
    }
    
    .trust-card {
        padding: 25px;
    }
}

/* Fix for Registration (GST/IPR) Page Mobile Layout */
@media (max-width: 768px) {
    .ipr-services-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
    }
    
    .ipr-service-card {
        min-height: auto; /* Remove fixed height constraints */
    }
}

/* Fix for Compliances Page Mobile Layout */
@media (max-width: 768px) {
    /* Ensure services grid is stacked (if used on compliance page) */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ/Accordion Mobile Optimization */
    .accordion-header {
        padding: 15px;
        font-size: 1rem;
    }
    
    .accordion-content p {
        padding: 0 15px 15px;
    }

    /* Improve checklist readability */
    .service-check-list li {
        margin-bottom: 12px;
    }
}

/* Policy Table Styles */
.policy-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

.policy-table th, .policy-table td {
    border: 1px solid #e2e8f0;
    padding: 12px 15px;
    text-align: left;
}

.policy-table th {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-weight: 600;
}

.policy-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 990; /* High enough to float, low enough to be under mobile menu */
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    color: var(--color-white);
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--color-navy);
    border: 2px solid var(--color-gold);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Industries We Serve Section (New Replacement for Team) */
.industries-section {
    background-color: var(--color-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-card {
    background: var(--color-bg-light);
    padding: 35px 25px;
    border-radius: var(--radius-card);
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.industry-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--color-gold);
    transform: translateY(-5px);
}

.industry-card i {
    font-size: 2rem;
    color: var(--color-navy);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 165, 92, 0.15);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

.industry-card:hover i {
    background: var(--color-gold);
    color: var(--color-white);
}

.industry-card h4 {
    color: var(--color-navy);
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.industry-card p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}