/*
 * One Sphere Solutions - Consolidated CSS
 * This file contains all styles for the One Sphere Solutions website
 * Includes styles from: style.css, blog.css, privacy.css, form-styles.css
 */

/* ======================================
   1. GLOBAL STYLES
====================================== */
:root {
    /* Main color variables */
    --primary-color: #0056b3;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-color: #222;
    --light-color: #f9f9f9;

    /* Brand colors */
    --brand-blue: #283848;
    --brand-gold: #d9a442;

    /* Text colors */
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #888;

    /* Border and shadow */
    --border-color: #e0e0e0;
    --card-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-dark);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background-color: white;
}

/* Let browser handle scrollbar styling */
html {
    overflow-y: auto;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-y: auto; /* Ensure scrollbar is visible */
}

/* ======================================
   2. LAYOUT STYLES
====================================== */
.main-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    max-width: 100%;
    background-color: white;
    min-height: auto;
    padding-top: 0; /* No padding needed since navbar is not fixed */
}

/* ======================================
   3. NAVIGATION STYLES
====================================== */
/* Navbar placeholder to prevent content jump when navbar becomes fixed */
.navbar-placeholder {
    display: none;
    height: 80px;
    width: 100%;
}

.navbar-placeholder.active {
    display: block;
}

.nav-bar {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    align-items: center;
    background-color: #000;
    transition: var(--transition);
    height: 100px;
    will-change: transform, position, box-shadow;
    margin-top: 0;
    border-bottom: 1px solid #222;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Styles for fixed navbar when scrolled */
.nav-bar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.35s ease-out;
    border-bottom: 1px solid #eaeaea;
}

/* Animation for navbar sliding down */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Right section with logo and contact info */
.nav-right-section {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 0;
}

/* Navbar logo styling */
.navbar-logo {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px 0 0; /* Reduced right padding */
}

.navbar-logo img {
    width: 210px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    /* background-color: #fff; */
}

.nav-left {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 0;
}

.nav-left-section {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 0;
}

.nav-left .nav-button {
    margin-right: 30px;
}

.nav-left a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600; /* Slightly bolder */
    margin-right: 25px; /* Reduced spacing between menu items */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    letter-spacing: 0.5px; /* Improved letter spacing */
    padding: 8px 0; /* Add padding for hover effect */
    position: relative; /* For hover underline effect */
    transition: color 0.3s ease;
}

/* Menu items styling - black navbar */
.nav-bar .nav-left a {
    color: #fff !important;
}

.nav-bar .nav-button {
    background-color: var(--dark-color) !important;
    color: #fff !important;
}

.nav-bar .hamburger-menu span {
    background-color: #d9a442 !important; /* Brand gold color */
}

/* Add underline effect on hover */
.nav-left a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

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

/* Underline effect - consistent styling */
.nav-bar .nav-left a::after {
    background-color: #fff !important;
}

.nav-bar .nav-button:hover {
    background-color: var(--brand-gold) !important;
    color: #fff !important;
}

.nav-left a:last-child {
    margin-right: 0; /* Remove margin from last item */
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
    margin-right: 25px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0; /* Removed gap between text and icon */
    cursor: pointer;
    font-size: 14px;
    position: relative;
    padding: 8px 0;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--brand-gold);
    margin-left: 2px; /* Small space after text */
    position: relative;
    top: 1px; /* Move arrow down slightly */
    left: 0; /* Reset left position since we removed the space in HTML */
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 2px solid var(--brand-gold);
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    margin-top: 5px;
    overflow: hidden;
}

/* Support both hover and click activation */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu,
.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 12px 18px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.dropdown-item:hover {
    background-color: rgba(217, 164, 66, 0.15);
    color: var(--brand-gold);
    padding-left: 24px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--brand-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

/* Mobile Submenu Styles */
.mobile-submenu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.19, 1, 0.22, 1),
                opacity 0.4s ease,
                transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    max-height: 0;
    opacity: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    z-index: 1002; /* Ensure it's above other elements */
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    margin-bottom: 8px;
    /* Ensure all items are visible */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-submenu.active {
    max-height: 600px; /* Further increased to ensure all items are visible */
    opacity: 1;
    transform: translateY(0);
}

.mobile-submenu-item {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 16px 20px; /* Increased padding for better tap target */
    font-size: 14px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 44px; /* Minimum height for accessibility */
}

.mobile-submenu-item:last-child {
    border-bottom: none;
}

.mobile-submenu-item:hover,
.mobile-submenu-item:active {
    color: var(--brand-gold);
    background-color: rgba(217, 164, 66, 0.15);
    padding-left: 25px;
}

.mobile-submenu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--brand-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-submenu-item:hover::before,
.mobile-submenu-item:active::before {
    opacity: 1;
}

.mobile-dropdown-icon {
    font-size: 12px;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    color: var(--brand-gold);
    margin-left: 0; /* Remove margin to prevent affecting alignment */
}

/* Style for the services link in mobile menu */
.mobile-menu-content a[href="services.php"] {
    display: flex;
    justify-content: center; /* Center the text like other menu items */
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1003; /* Higher than submenu */
    min-height: 44px; /* Minimum height for accessibility */
    padding: 12px 15px; /* Increased padding for better tap target */
    text-align: center; /* Center text */
}

/* Position the dropdown icon absolutely to maintain text centering */
.mobile-menu-content a[href="services.php"] .mobile-dropdown-icon {
    position: absolute;
    right: 20px; /* Position on the right side */
    top: 50%;
    transform: translateY(-50%);
}

/* Contact info in navbar */
.nav-contact-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 20px; /* Add space between contact items */
}

.nav-contact-item {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    line-height: normal;
    white-space: nowrap;
    padding: 5px 0;
}

.nav-contact-item i {
    margin-right: 8px;
    color: var(--brand-gold);
    font-size: 14px;
}

.nav-contact-item:hover {
    color: var(--brand-gold);
}

/* Responsive styles for contact info */
@media (max-width: 1200px) {
    .nav-contact-info {
        gap: 15px;
    }

    .nav-contact-item {
        font-size: 12px;
    }
}

@media (max-width: 1100px) {
    .hamburger-menu {
        display: flex !important;
        visibility: visible !important;
        margin-top: 0;
        z-index: 9999 !important;
        filter: drop-shadow(0 0 1px #ffffff) !important; /* Add white glow around entire menu */
    }
    
    .nav-left {
        display: none;
    }

    .nav-dropdown {
        display: none;
    }

    .nav-contact-info {
        display: none !important; /* Hide contact info on smaller screens */
        visibility: hidden !important;
    }

    .nav-bar {
        padding: 0 15px;
        position: relative !important;
    }
}

/* Mobile contact info */
.mobile-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.mobile-contact-item {
    color: white;
    font-size: 12px; /* Reduced from 14px */
    margin: 8px 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.mobile-contact-item i {
    margin-right: 8px;
    color: var(--brand-gold);
}

.nav-button {
    background-color: var(--dark-color);
    color: white;
    border: none;
    padding: 10px 20px; /* Increased padding for larger button */
    font-size: 14px;
    border-radius: 25px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600; /* Slightly bolder */
    letter-spacing: 0.5px; /* Improved letter spacing */
}

.nav-button:hover {
    background-color: var(--brand-gold);
    transform: translateY(-2px); /* Slight lift effect */
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
}

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

.logo {
    position: absolute;
    top: 15px;
    right: 40px; /* Increased right margin to avoid covering scrollbar */
    z-index: 100;
    width: 70px;
    height: 70px;
}

.logo img {
    width: 100%;
    height: auto;
}

/* Services logo styling - hidden as we only want one logo */
.services-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.header-button {
    background-color: #222;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Main Content Styles */
.main-content {
    display: flex;
    height: 400px;
}

.text-section {
    flex: 1;
    background-color: #f9f9f9;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-section, .content-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.image-section img, .content-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content sections */
.content-left {
    width: 50%;
    background-color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-left h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #333;
    max-width: 90%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.content-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    max-width: 90%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.action-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0 30px;
    flex-wrap: wrap;
    gap: 20px;
    text-decoration: none;
}

@media (max-width: 480px) {
    .action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        text-decoration: none;
    }
}

.cta-buttons {
    margin: 0;
}

.cta-buttons button, .cta-buttons .cta-link {
    background-color: #222;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-buttons button:hover, .cta-buttons .cta-link:hover {
    background-color: var(--brand-gold);
    color: white;
    text-decoration: none;
}

.specialties {
    text-transform: uppercase;
    font-size: 14px;
    color: #444;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-decoration: none;
    border: 2px solid #444;
    border-radius: 30%;
    background-color: transparent;
}

.specialties:hover {
    color: white;
    background-color: #444;
    text-decoration: none;
    border-color: #444;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
}

.subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
}

.cta-section {
    margin-top: 20px;
}

.cta-button {
    background-color: #222;
    color: white;
    padding: 12px 25px;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 15px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--brand-gold);
}

.subheading {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    margin-top: 30px;
    letter-spacing: 1px;
}


.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-company {
    flex: 1 1 300px;
}

.footer-contact {
    flex: 1 1 250px;
}

.footer-links-column {
    flex: 1 1 200px;
}

.footer-newsletter {
    flex: 1 1 250px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-brand h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--brand-gold);
    bottom: 0;
    left: 0;
}

.footer-brand span {
    font-weight: 300;
}

.company-info p {
    margin: 15px 0;
    font-size: 10px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--brand-gold);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--brand-gold);
    bottom: 0;
    left: 0;
}

.footer-contact-info p {
    margin: 12px 0;
    font-size: 10px;
    line-height: 1.6;
    color: #cccccc;
    display: flex;
    align-items: center;
}

.footer-contact-info p i {
    margin-right: 10px;
    color: var(--brand-gold);
    width: 16px;
    text-align: center;
}

.footer-contact-info a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--brand-gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 10px;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--brand-gold);
    font-size: 10px;
    line-height: 14px;
}

.footer-links a:hover {
    color: var(--brand-gold);
    padding-left: 18px;
}

.newsletter-form p {
    margin-bottom: 15px;
    font-size: 10px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-subscribe-form input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

.footer-subscribe-form input:focus {
    outline: none;
    border-color: var(--brand-gold);
}

.subscribe-btn {
    padding: 12px 20px;
    background-color: var(--brand-gold);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscribe-btn:hover {
    background-color: #c69539;
}

.footer-bottom {
    width: 100%;
    background-color: #1a1a1a;
    padding: 20px 0;
    margin-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #999999;
}

.copyright p {
    margin: 0;
}



h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #003d7a;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #003d7a;
    border-color: #003d7a;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
}

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

.logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.logo img {
    width: 100px;
    height: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.header-button {
    background-color: var(--dark-color);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
}

/* Main Content Styles */
.main-content {
    display: flex;
    height: 400px;
}

.text-section {
    flex: 1;
    background-color: var(--light-color);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-section {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.2;
}

.subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
}

.cta-section {
    margin-top: 20px;
}

.cta-button {
    background-color: var(--dark-color);
    color: white;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-right: 15px;
}

.subheading {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    color: #666;
    margin-top: 30px;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.service-card {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background-color: white;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

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

/* Solutions Section */
.solutions-section {
    padding: 5rem 0;
}

/* Our Reach Section */
.our-reach-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.counter-box {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Case Study Section */
.case-study-section {
    padding: 5rem 0;
}

.case-study-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.case-study-img {
    height: 250px;
    object-fit: cover;
}

.case-study-content {
    padding: 1.5rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
    width: 100%;
}

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

.blog-header {
    text-align: left;
    margin-bottom: 30px;
}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #242424;
    position: relative;
    display: inline-block;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    width: 100%;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.blog-post {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
    animation: fadeIn 0.8s ease-in-out;
    transition: background-color 0.3s ease;
}

.blog-post:hover {
    background-color: #f9f9f9;
}

.blog-divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.blog-post-left {
    flex: 0 0 20%;
    padding-right: 20px;
}

.blog-post-middle {
    flex: 0 0 25%;
    padding: 0 10px;
}

.blog-post-right {
    flex: 0 0 55%;
    padding-left: 20px;
}

.blog-post-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.blog-post:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #242424;
    line-height: 1.3;
}

.blog-post-date {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

.blog-post-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.blog-post-read-more {
    color: #242424;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    text-align: right;
    display: block;
}

.blog-post-read-more:hover {
    color: #0056b3;
}

/* Responsive styles for Blog Section */
@media (max-width: 991px) {
    .blog-section {
        padding: 60px 0;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-post-title {
        font-size: 20px;
    }

    .blog-post-left {
        flex: 0 0 25%;
    }

    .blog-post-middle {
        flex: 0 0 30%;
    }

    .blog-post-right {
        flex: 0 0 45%;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 0;
    }

    .blog-post {
        flex-direction: column;
    }

    .blog-post-left,
    .blog-post-middle,
    .blog-post-right {
        flex: 0 0 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .blog-post-image {
        height: 200px;
    }

    .blog-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-header {
        margin-bottom: 20px;
    }

    .blog-title {
        font-size: 24px;
        padding-bottom: 10px;
    }

    .blog-post-image {
        height: 180px;
    }

    .blog-post-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .blog-post-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .blog-post-date {
        font-size: 13px;
    }

    .blog-post-read-more {
        font-size: 13px;
    }
}

/* Contact Section */
.contact-section {
    padding: 2rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 80px auto 0;
}

.contact-container {
    width: 100%;
    padding: 0 20px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    color: #333;
    width: 100%;
}

.contact-layout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
    width: 100%;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    margin-bottom: 30px;
}

.find-us-map-container {
    flex: 1.5;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.contact-info-label {
    flex: 0 0 100px;
    color: #333;
    font-size: 22px;
    font-weight: 500;
}

.contact-info-value {
    flex: 1;
    color: #333;
    font-size: 22px;
    font-weight: 500;
}

/* Contact info styles are now handled by .contact-info-label and .contact-info-value */

.map-container {
    width: 100%;
    margin: 10px 0;
}

.map-container iframe {
    width: 100%;
    height: 180px;
    display: block;
    border-radius: 0;
    border: none;
    margin-top: 20px;
}
/* Social Media Section */
.social-media-section {
    margin: 30px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #ddd;
    width: 100%;
}

.social-media-section h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
    display: block;
    text-decoration: none;
    margin-right: 20px;
}

/* Social icon hover colors */
.social-icon.facebook:hover {
    color: #3b5998;
}

.social-icon.twitter:hover {
    color: #1da1f2;
}

.social-icon.instagram:hover {
    color: #e1306c;
}

.social-icon.linkedin:hover {
    color: #0077b5;
}


.contact-form-section {
    margin: 40px 0;
}

.form-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    background-color: #f9f9f9;
    padding: 20px;
}

.form-left {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-left h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}

.logo-container {
    max-width: 200px;
    margin-top: auto;
}

.form-logo {
    width: 100%;
    height: auto;
}

.form-right {
    flex: 2 1 500px;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
}

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

.form-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.file-upload-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #333;
    color: white;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.file-upload-btn:hover {
    background-color: #555;
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-checkbox label {
    font-size: 12px;
    color: #666;
}

.form-submit {
    text-align: right;
}

.submit-btn {
    padding: 12px 30px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #333;
}

/* Responsive styles for contact page */
@media (min-width: 768px) {
    .contact-info-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .contact-info-item {
        flex: 1;
        padding: 0 15px;
        border-bottom: none;
        border-right: 1px solid #eee;
    }

    .contact-info-item:last-child {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .contact-title {
        font-size: 22px;
    }

    .contact-layout-container {
        flex-direction: column;
    }

    .contact-info-row {
        padding: 12px 0;
    }

    .contact-info-label {
        flex: 0 0 80px;
        font-size: 14px;
    }

    .contact-info-value {
        font-size: 14px;
    }

    .social-media-section {
        flex: 1;
        min-width: 100%;
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #ddd;
    }

    .form-container {
        flex-direction: column;
    }

    .form-left {
        order: 2;
    }

    .form-right {
        order: 1;
    }

    .logo-container {
        margin: 30px auto 0;
    }

    .form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .terms-checkbox {
        margin-top: 15px;
    }

    .form-submit {
        text-align: center;
    }
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}


/* Footer Styles */
.main-footer {
    background-color: #222222;
    color: #ffffff;
    width: 100%;
    padding: 40px 0 0;
    margin-top: auto;
    position: relative;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-column {
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1 1 250px;
}

.footer-middle {
    flex: 1 1 200px;
}

.footer-social {
    flex: 1 1 200px;
}

.footer-right {
    flex: 0 1 150px;
    display: flex;
    justify-content: flex-end;
}

.footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-brand span {
    font-weight: 300;
}


.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #cccccc;
}

.footer-links i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-logo img {
    width: 120px;
    height: auto;
    border-radius: 5px;
    margin-top: 10px;
}

.footer-bottom {
    width: 100%;
    background-color: #1a1a1a;
    padding: 15px 0;
    margin-top: 20px;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: #ffffff;
}

.copyright p {
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-left {
        flex: 1 1 45%;
    }

    .footer-middle {
        flex: 1 1 45%;
    }

    .footer-social {
        flex: 1 1 45%;
        margin-top: 20px;
    }

    .footer-right {
        flex: 1 1 45%;
        margin-top: 20px;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-column {
        width: 48%;
        margin-bottom: 20px;
    }

    .footer-left {
        flex: 1 1 48%;
    }

    .footer-middle {
        flex: 1 1 48%;
    }

    .footer-social {
        flex: 1 1 48%;
    }

    .footer-right {
        flex: 1 1 48%;
        justify-content: flex-end;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 15px;
        flex-direction: column;
    }

    .footer-column {
        width: 100%;
        padding: 0;
        margin-bottom: 25px;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .footer-brand h3 {
        font-size: 20px;
    }


    .footer-links a {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .footer-logo img {
        width: 80px;
    }
}


/* For backward compatibility */
.footer-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
}

.footer-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 12px;
    margin: 0 15px;
    min-width: 80px;
}

.footer-icon i {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-icon img {
    height: 35px;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.footer-icon:hover img {
    transform: scale(1.1);
}

/* ======================================
   4. FORM STYLES
====================================== */

/* Form Container */
.os-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Form Group */
.os-form-group {
    margin-bottom: 20px;
    position: relative;
}

/* Form Labels */
.os-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--brand-blue);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Form Inputs */
.os-form-group input,
.os-form-group select,
.os-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: var(--text-dark);
    transition: var(--transition);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.os-form-group input:focus,
.os-form-group select:focus,
.os-form-group textarea:focus {
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(217, 164, 66, 0.2);
    outline: none;
}

/* Textarea */
.os-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Form Actions */
.os-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

/* Submit Button */
.os-submit-btn {
    padding: 12px 30px;
    background-color: var(--brand-gold);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.os-submit-btn:hover {
    background-color: #c89538;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 164, 66, 0.3);
}

.os-submit-btn:active {
    transform: translateY(0);
}

/* Reset Button */
.os-reset-btn {
    padding: 12px 30px;
    background-color: #f5f5f5;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.os-reset-btn:hover {
    background-color: #eee;
}

/* Error Styles */
.os-form-group input.is-invalid,
.os-form-group select.is-invalid,
.os-form-group textarea.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 14px;
    color: #dc3545;
}

/* Required Field Indicator */
.required-field::after {
    content: '*';
    color: #dc3545;
    margin-left: 4px;
}

/* Form Header */
.os-form-header {
    margin-bottom: 30px;
    text-align: center;
}

.os-form-header h2 {
    font-size: 28px;
    color: var(--brand-blue);
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.os-form-header p {
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ======================================
   5. ANIMATION STYLES
====================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Services Page Specific Styles */
.services-page-wrapper {
    display: flex;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: white;
    min-height: auto;
    margin-top: 80px; /* Add space for the navbar */
}

.services-content-left {
    width: 50%;
    background-color: white;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-content-left h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #333;
    max-width: 90%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.services-content-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
    max-width: 90%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.services-content-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: visible;
}

.services-content-right img {
    width: 150%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-left: -20%; /* Move the image more to the left */
    transform: translateX(-10%); /* Additional shift to the left */
    position: absolute;
    right: -20%; /* Make image extend beyond the right edge */
    top: 0;
}

/* Ensure map image is visible on mobile */
@media (max-width: 768px) {
    .services-content-right {
        height: 300px;
        order: -1; /* Show image first on mobile */
        overflow: hidden;
    }

    .services-content-right img {
        width: 120%;
        height: 100%;
        position: relative;
        right: 0;
        margin-left: -10%;
        transform: translateX(0);
    }

    .services-page-wrapper {
        flex-direction: column;
    }

    .services-content-left, .services-content-right {
        width: 100%;
    }

    .services-logo {
        width: 60px;
        height: 60px;
    }

    .nav-bar {
        padding: 10px 20px;
        height: 65px; /* Increased to match mobile-header.css */
    }

    .nav-left a {
        display: none; /* Hide navigation links on mobile */
    }
}

@media (max-width: 576px) {
    .services-content-right {
        height: 250px;
    }
}

/* Logo styling for services page - hidden as we only want one logo */
.services-logo {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Adjust logo position on small screens */
@media (max-width: 576px) {
    .services-logo {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .nav-bar {
        padding: 10px 15px;
        height: 60px; /* Increased from 50px to match mobile-header.css */
        margin-top: 0;
    }

    /* Blog page header on mobile */
    .blog-page-header {
        padding-top: 20px !important;
        margin-top: 0 !important;
    }
}

/* Remove underline from specialties link */
.specialties {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    white-space: nowrap; /* Prevent text wrapping */
    padding: 10px 15px; /* Add some padding for better clickability */
    border-radius: 5px; /* Slight rounding of corners */
    transition: background-color 0.3s ease;
}

.specialties:hover {
    color: #555; /* Different color than primary on hover */
    background-color: rgba(0, 0, 0, 0.05); /* Subtle background on hover */
}

.services-action-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0 30px;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 20px;
    flex-direction: row; /* Ensure horizontal alignment */
}

.services-action-row a {
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease, background-color 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.services-action-row a:hover {
    color: #555; /* Use neutral color on hover instead of primary */
}

.services-action-row .nav-button:hover {
    background-color: #444; /* Use darker gray instead of primary color */
    color: white;
}

/* Service Cards Section Styles */
.services-cards-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    
}

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

.services-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.services-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Responsive Styles for Services Page */
@media (max-width: 991px) {
    .services-content-left h1 {
        font-size: 36px;
    }

    .services-content-left p {
        font-size: 15px;
    }

    .services-card h3 {
        font-size: 22px;
    }

    .services-card p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .services-page-wrapper {
        flex-direction: column;
    }

    .services-content-left, .services-content-right {
        width: 100%;
    }

    .services-content-right {
        height: 300px;
        order: -1; /* Show image first on mobile */
    }

    .services-content-left {
        padding: 40px 30px;
    }

    .services-content-left h1 {
        font-size: 32px;
    }

    .services-content-left p {
        font-size: 14px;
    }

    .services-action-row {
        flex-direction: row; /* Keep in row even on mobile */
        align-items: center;
        justify-content: flex-start;
        gap: 15px; /* Slightly smaller gap on mobile */
    }

    .services-cards-section {
        padding: 40px 0;
    }

    .services-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .services-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .services-card p {
        font-size: 14px;
    }

    .col-md-4 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 576px) {
    .services-content-right {
        height: 250px;
    }

    .services-content-left {
        padding: 30px 20px;
    }

    .services-content-left h1 {
        font-size: 28px;
    }

    .services-content-left p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .services-logo {
        width: 60px;
        height: 60px;
        top: 20px; /* Positioned even lower on very small screens */
        right: 15px;
    }

    .services-cards-section {
        padding: 30px 0;
    }

    .services-card {
        padding: 20px;
    }

    .services-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .services-card p {
        font-size: 14px;
        line-height: 1.5;
    }

    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Apply animations to elements */
.content-left h1 {
    animation: fadeInUp 1s ease-out;
}

.content-left p {
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.action-row {
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.content-right {
    animation: fadeInRight 1s ease-out;
}

.logo {
    animation: fadeIn 1s ease-out 0.8s, float 3s ease-in-out infinite 1.8s;
    animation-fill-mode: both;
}

.animated-logo {
    animation: float 3s ease-in-out infinite;
}

.blog-post {
    animation: fadeIn 0.8s ease-in-out;
}

.blog-post:nth-child(odd) {
    animation-delay: 0.2s;
}

.btn-view-all {
    animation: pulse 2s infinite;
}

.contact-us-content {
    animation: fadeInLeft 1s ease-out;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in.active {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .main-content {
        height: auto;
    }

    .text-section, .content-left {
        padding: 60px 30px;
    }

    h1, .content-left h1 {
        font-size: 36px;
    }

    .subtext, .content-left p {
        font-size: 15px;
    }

    .nav-bar {
        padding: 15px 30px;
    }

    .nav-contact-info {
        margin-left: 80px;
    }

    .nav-contact-item {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .main-wrapper {
        flex-direction: column;
    }

    .text-section, .image-section, .content-left, .content-right {
        flex: none;
        width: 100%;
    }

    .image-section, .content-right {
        height: 300px;
        order: -1; /* Show image first on mobile */
    }

    .footer-icons {
        flex-wrap: wrap;
    }

    .footer-icon {
        width: 25%;
        margin-bottom: 15px;
    }

    header {
        padding: 10px 15px;
    }

    nav ul li {
        margin-left: 15px;
    }

    nav ul li a, .nav-left a {
        font-size: 14px;
    }

    .nav-button {
        padding: 8px 15px;
        font-size: 12px;
    }

    .action-row {
        flex-direction: row;
        justify-content: flex-start;
        gap: 15px;
        text-decoration: none;
    }

    .specialties {
        margin-top: 15px;
    }

    .nav-bar {
        padding: 15px 20px;
        height: auto;
    }

    .nav-left {
        flex-wrap: wrap;
    }

    .nav-left a {
        margin-top: 10px;
    }

    .nav-contact-info {
        display: none; /* Hide contact info on mobile - it will be in the mobile menu */
    }

    .services-logo {
        top: 15px;
        right: 60px; /* Move logo away from hamburger menu */
    }

    .services-logo img {
        width: 60px;
    }
}

/* Footer responsive styles for tablets */
@media (max-width: 991px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-company {
        flex: 1 1 45%;
    }

    .footer-contact {
        flex: 1 1 45%;
    }

    .footer-links-column {
        flex: 1 1 45%;
        margin-top: 20px;
    }

    .footer-newsletter {
        flex: 1 1 45%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-company,
    .footer-contact,
    .footer-links-column,
    .footer-newsletter {
        flex: 1 1 100%;
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .footer-icon {
        width: 50%;
    }

    /* Reduce mobile contact item font size even more on small screens */
    .mobile-contact-item {
        font-size: 11px;
    }

    /* Reduce icon size to match smaller text */
    .mobile-contact-item i {
        font-size: 12px;
    }

    /* Heading styles are defined below */

    .text-section, .content-left {
        padding: 30px 20px;
    }

    .content-left h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .content-left p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 15px;
        width: 100%;
    }

    nav ul {
        justify-content: space-between;
        width: 100%;
        padding: 0;
    }

    nav ul li {
        margin-left: 0;
    }

    .logo {
        top: 10px;
        right: 20px;
        z-index: 100;
    }

    .nav-bar {
        padding: 15px 15px;
        justify-content: flex-start;
    }

    .nav-left {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-button {
        padding: 8px 15px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .nav-left a {
        font-size: 14px;
        margin: 5px 0;
    }

    .logo img {
        width: 60px;
    }

    .services-logo {
        top: 10px;
        right: 50px;
    }

    .services-logo img {
        width: 50px;
    }

    /* Adjust main content padding to account for taller navbar */
    .main-wrapper {
        padding-top: 80px;
    }

    .action-row {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        text-decoration: none;
    }

    .cta-buttons button {
        padding: 10px 15px;
        font-size: 12px;
        white-space: nowrap;
    }

    .specialties {
        padding: 8px 15px;
        font-size: 12px;
        white-space: nowrap;
    }

    .footer-container {
        padding: 0 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-left, .footer-center, .footer-right {
        width: 48%;
        padding: 0;
        margin-bottom: 20px;
    }

    .footer-brand h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }



    .footer-links {
        flex-direction: column;
        margin-top: 15px;
    }

    .link-column {
        margin-bottom: 10px;
    }

    .link-column a {
        font-size: 12px;
        margin-bottom: 8px;
        display: block;
    }

    .footer-right {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .footer-logo img {
        width: 80px;
    }
}



/* Extra small devices (phones, 375px and down) */
@media (max-width: 375px) {
    .nav-bar {
        padding: 15px 15px;
    }

    .content-right {
        height: 250px;
    }

    .content-left {
        padding: 20px 15px 30px;
        background-color: white;
    }

    .content-left h1 {
        font-size: 18px;
        line-height: 1.3;
        margin-top: 0; /* Remove extra space since image is now first */
    }

    .content-left p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 15px;
    }

    .cta-buttons button {
        padding: 8px 15px;
        font-size: 11px;
        white-space: nowrap;
        width: auto;
        display: inline-block;
    }

    .specialties {
        font-size: 11px;
        white-space: nowrap;
        text-align: left;
        margin-top: 5px;
        text-decoration: none;
    }

    /* Footer styles for extra small devices */
    .footer-container {
        padding: 0 15px;
    }

    .main-footer {
        padding: 30px 0 0 0;
    }

    .footer-column {
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 15px;
        padding: 12px 0;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 12px;
    }


    .footer-links a {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .newsletter-form p {
        font-size: 12px;
    }

    .footer-subscribe-form input,
    .subscribe-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
    }


}


/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px; /* Increased height */
    cursor: pointer;
    z-index: 1000;
    margin-top: 0; /* Remove margin for better alignment */
}

.hamburger-menu span {
    display: block !important;
    height: 5px !important; /* Increased thickness for better visibility */
    width: 100% !important;
    background-color: #d9a442 !important; /* Forced gold color */
    border-radius: 3px !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 3px rgba(226, 34, 34, 0.2), 0 0 0 1px rgba(238, 15, 15, 0.1) !important; /* Stronger shadow and outline */
    opacity: 1 !important;
    visibility: visible !important;
    margin-bottom: 6px !important; /* Increased spacing between lines */
}

.hamburger-menu.active {
    z-index: 1001; /* Ensure it's above the mobile menu */
}

.hamburger-menu.active span {
    background-color: #d9a442 !important; /* Keep gold color when active */
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Slightly more transparent for blur effect */
    backdrop-filter: blur(8px); /* Add backdrop blur for modern browsers */
    -webkit-backdrop-filter: blur(8px); /* For Safari */
    z-index: 1001; /* Higher than nav-bar to ensure it appears on top */
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease, backdrop-filter 0.4s ease;
    overflow-y: auto; /* Allow scrolling if menu items don't fit */
    padding-top: 0; /* No padding needed with centered content */
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
}

/* Position close button in top left corner */
.mobile-menu-close {
    top: 20px;
    left: 20px; /* Position on the left side instead of right */
    background-color: rgba(217, 164, 66, 0.9); /* Gold background */
    border-radius: 50%; /* Make it circular */
    width: 40px;
    height: 40px;
    z-index: 1003; /* Higher than logo */
}

/* Hide logo and scroll-to-top button when mobile menu is active */
body:has(.mobile-menu.active) .services-logo,
body:has(.mobile-menu.active) .scroll-to-top {
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-close span {
    color: white;
    font-size: 40px; /* Larger for better visibility */
    font-weight: 300;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Add shadow for better visibility */
}

.mobile-menu-close:hover span {
    color: white;
    transform: scale(1.1) rotate(90deg);
    text-shadow: 0 0 15px rgba(217, 164, 66, 0.7);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%; /* Ensure full width */
    max-width: 350px; /* Increased width for better appearance */
    transform: translateY(20px); /* Start slightly below for animation */
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
    padding: 30px 15px; /* Added padding for better spacing */
}

.mobile-menu.active .mobile-menu-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.1s; /* Slightly reduced delay for faster appearance */
}

.mobile-menu-content .nav-button {
    margin-bottom: 25px;
    margin-top: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--brand-gold);
    color: white;
    border: none;
    padding: 14px 28px; /* Increased padding for better tap target */
    font-size: 14px;
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    font-weight: 600;
    min-height: 44px; /* Minimum height for accessibility */
    width: auto; /* Allow button to size naturally */
}

.mobile-menu-content .nav-button:hover,
.mobile-menu-content .nav-button:active {
    background-color: white;
    color: var(--brand-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 164, 66, 0.3);
}

.mobile-menu-content a {
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    margin: 8px 0; /* Reduced margin for tighter menu */
    transition: all 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    padding: 12px 15px; /* Increased padding for better tap target */
    position: relative;
    letter-spacing: 1px;
    border-radius: 8px; /* Rounded corners for menu items */
    width: 100%; /* Full width for better tap target */
    min-height: 44px; /* Minimum height for accessibility */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Ensure text is centered */
}

.mobile-menu-content a:not([href="services.php"])::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 6px;
    left: 50%;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu-content a:hover,
.mobile-menu-content a:active {
    color: var(--brand-gold);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.mobile-menu-content a:not([href="services.php"]):hover::after,
.mobile-menu-content a:not([href="services.php"]):active::after {
    width: 50%;
    background-color: var(--brand-gold);
}

@media (max-width: 768px) {
    /* Mobile-specific navbar height */
    .nav-bar {
        margin-top: 0;
        height: 70px;
        justify-content: space-between;
    }

    .nav-bar.scrolled {
        height: 60px;
    }

    .navbar-placeholder {
        height: 60px;
    }

    .nav-right-section {
        height: 60px;
    }

    .navbar-logo {
        height: 60px;
        padding: 0;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 1001;
    }

    .navbar-logo img {
        width: auto;
        max-width: 150px;
        max-height: 45px;
        display: block !important;
    }

    /* Additional mobile-specific styles */
    .mobile-menu-content {
        padding: 20px;
    }

    .mobile-submenu {
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* Animation Styles */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Animation Classes */
.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}



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

/* Apply animations to elements */
.cta-buttons button {
    transition: all 0.3s ease;
}

.cta-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.content-right img {
    transition: all 0.5s ease;
}

.content-right:hover img {
    transform: scale(1.02);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in.active {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Our Reach Section Styles */
.our-reach-section {
    width: 100%;
    padding: 50px 0;
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.our-reach-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 10%;
}


.our-reach-section .section-title {
    text-align: left;
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-left: 30px; /* Add left margin to move heading to the right */
}

.our-reach-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--brand-gold);
}

.stats-container {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    gap: 25px !important;
    padding: 10px 5px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.stat-item {
    flex: 0 0 calc(50% - 15px) !important;
    width: calc(50% - 15px) !important;
    min-width: calc(50% - 15px) !important;
    max-width: calc(50% - 15px) !important;
    padding: 35px 30px !important;
    background-color: white !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 10px !important;
}

.stat-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(36, 36, 36, 0.15) !important;
}

.stat-item h3 {
    display: inline-block;
    font-size: 46px;
    font-weight: 700;
    color: #242424;
    margin-bottom: 5px;
    line-height: 1.1;
}

.counter-number, .stat-suffix {
    display: inline-block;
}

.stat-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
}

.stat-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #242424;
    opacity: 0.3;
}

.stat-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Responsive styles for Our Reach section */
@media (max-width: 1200px) {
    .stats-container {
        justify-content: space-between !important;
    }
    .stat-item {
        flex: 0 0 calc(50% - 15px) !important;
        width: calc(50% - 15px) !important;
        min-width: calc(50% - 15px) !important;
        max-width: calc(50% - 15px) !important;
    }
}

@media (max-width: 991px) {
    .our-reach-section {
        padding: 60px 0;
    }

    .our-reach-section .section-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .stat-item h3 {
        font-size: 40px;
    }

    .stat-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .our-reach-section {
        padding: 50px 0;
    }

    .our-reach-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
        text-align: left;
    }

    .stats-container {
        flex-direction: column !important;
        gap: 20px;
        padding: 5px 0 !important;
    }

    .stat-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 30px 25px;
    }

    .stat-title:after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .our-reach-section {
        padding: 40px 0;
    }

    .our-reach-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
        text-align: left;
        padding-left: 0;
        border-left: none;
        margin-left: 10px; /* Reduced margin for mobile */
    }

    .stat-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        padding: 25px 20px;
        border-radius: 12px !important;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .stat-title {
        font-size: 16px;
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .stat-description {
        font-size: 13px;
    }
}

/* Sponsors Section Styles */
.sponsors-section {
    width: 100% !important;
    padding: 30px 0 !important;
    background-color: #242424 !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    margin-top: -30px !important;
}

.sponsors-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sponsors-title {
    text-align: left !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 25px !important;
    position: relative !important;
    display: inline-block !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sponsors-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: white;
    opacity: 0.5;
}

.sponsors-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sponsor-item {
    flex: 0 0 150px !important;
    max-width: 150px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px !important;
    transition: all 0.5s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sponsor-logo {
    max-width: 100% !important;
    height: auto !important;
    filter: grayscale(100%) !important;
    opacity: 0.7 !important;
    transition: all 0.5s ease !important;
    transform-origin: center !important;
    display: block !important;
    visibility: visible !important;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%) !important;
    opacity: 1 !important;
    transform: scale(1.08) !important;
}

/* Sponsor Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.sponsors-animation {
    display: flex !important;
    flex-wrap: nowrap !important;
    animation: marquee 40s linear infinite !important;
    width: fit-content !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.sponsors-animation:hover {
    animation-play-state: paused !important;
}

.sponsor-item:nth-child(odd) .sponsor-logo {
    animation: float 3s ease-in-out infinite !important;
}

.sponsor-item:nth-child(even) .sponsor-logo {
    animation: float 3.5s ease-in-out infinite !important;
    animation-delay: 0.5s !important;
}

/* Responsive styles for sponsors section */
@media (max-width: 991px) {
    .sponsors-section {
        padding: 25px 0 !important;
    }

    .sponsors-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .sponsor-item {
        flex: 0 0 130px !important;
        max-width: 130px !important;
    }

    .sponsors-animation {
        animation-duration: 35s !important;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 20px 0 !important;
    }

    .sponsors-title {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .sponsors-wrapper {
        gap: 15px !important;
    }

    .sponsor-item {
        flex: 0 0 110px !important;
        max-width: 110px !important;
        padding: 8px !important;
    }

    .sponsors-animation {
        animation-duration: 30s !important;
    }
}

@media (max-width: 480px) {
    .sponsors-section {
        padding: 15px 0 !important;
    }

    .sponsors-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    .sponsors-title:after {
        width: 30px !important;
        height: 2px !important;
        bottom: -6px !important;
    }

    .sponsors-wrapper {
        gap: 10px !important;
    }

    .sponsor-item {
        flex: 0 0 90px !important;
        max-width: 90px !important;
        padding: 6px !important;
    }

    .sponsors-animation {
        animation-duration: 25s !important;
    }
}

/* Solutions Banner Section Styles */
.solutions-banner {
    width: 100%;
    color: white;
    overflow: hidden;
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
}

.solutions-banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 40px 60px;
    background-color: #000;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
}

/* Reverse container for second banner */
.solutions-banner-container.reverse {
    flex-direction: row;
    background-color: #000;
    padding-top: 60px;
    padding-left: 50px; /* Match padding with first container */
    padding-right: 60px; /* Match padding with first container */
    align-items: flex-start; /* Align items to the top */
    justify-content: space-between; /* Use space-between instead of flex-end */
}

.solutions-banner-content {
    flex: 0 0 50%;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    text-align: left;
    max-width: 50%;
    position: relative;
    z-index: 2;
}

/* Special styling for case study content to align with image */
.solutions-banner-content.case-study-content {
    padding-top: 0;
    padding-left: 40px; /* Maintain some spacing between image and content */
    padding-right: 0; /* Remove right padding */
    justify-content: flex-start;
    flex: 0 0 45%; /* Match width with first banner content */
    max-width: 45%; /* Match max-width with first banner content */
}

.solutions-banner-content::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 60px;
    width: 40px;
    height: 3px;
    /* background-color: #d9a442; */
    z-index: 1;
}

.solutions-banner-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.solutions-banner-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-main-text {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

.banner-sub-text {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

.solutions-banner-button {
    display: inline-block;
    background-color: white;
    color: #242424;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solutions-banner-button:hover {
    background-color: #d9a442;
    transform: translateY(-3px);
}

/* Image styling */
.banner-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    height: 400px; /* Reduced height */
    max-width: 45%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-image.image-right {
    margin-left: 0;
    margin-right: 0;
    transform: perspective(800px) rotateY(-5deg);
    float: right;
}

.banner-image.image-left {
    margin-right: 0;
    margin-left: 5%; /* Removed margin to align with first banner content */
    transform: perspective(800px) rotateY(5deg);
    flex: 0 0 45%; /* Adjusted width */
    max-width: 45%; /* Adjusted max-width to match */
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    
}

.banner-image:hover img {
    transform: scale(1.05);
}

.banner-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

/* Logo styling */
.banner-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 100px; /* Reduced size */
}

.banner-logo img {
    width: 100%;
    height: auto;
}

/* Responsive Styles for Solutions Banner */
@media (max-width: 991px) {
    .solutions-banner-container,
    .solutions-banner-container.reverse {
        flex-direction: column;
        padding: 30px 20px;
    }

    .solutions-banner-content {
        padding: 50px 20px;
        order: 2;
        text-align: left;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .banner-image {
        width: 100%;
        max-width: 100%;
        order: 1;
        height: 350px;
        margin-left: 0;
        margin-right: 0;
        transform: none;
        border-radius: 0;
    }

    .banner-image.image-left {
        margin-left: 0; /* Reset margin on smaller screens */
        flex: 0 0 100%; /* Full width on smaller screens */
        max-width: 100%; /* Full width on smaller screens */
    }

    .solutions-banner-content.case-study-content {
        flex: 0 0 100%; /* Full width on smaller screens */
        max-width: 100%; /* Full width on smaller screens */
        padding-left: 20px; /* Adjusted padding for smaller screens */
    }

    .solutions-banner-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .solutions-banner-container,
    .solutions-banner-container.reverse {
        padding: 20px 15px;
    }

    .solutions-banner-content {
        padding: 40px 10px;
    }

    .banner-image {
        height: 300px;
    }

    .solutions-banner-title {
        font-size: 40px;
    }

    .solutions-banner-text {
        font-size: 15px;
    }

    .banner-main-text {
        font-size: 1.2rem;
    }

    .banner-sub-text {
        font-size: 0.9rem;
    }

    .banner-logo {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .solutions-banner-container,
    .solutions-banner-container.reverse {
        padding: 15px 10px;
    }

    .solutions-banner-content {
        padding: 30px 5px;
    }

    .banner-image {
        height: 220px;
    }

    .solutions-banner-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .solutions-banner-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .banner-main-text {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .solutions-banner-button {
        padding: 10px 20px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .banner-logo {
        width: 60px;
        bottom: 10px;
        right: 10px;
    }
}

/* Our Services Section Styles */
.our-services-section {
    width: 100% !important;
    padding: 80px 0 !important;
    background-color: #242424 !important;
    color: white !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
}

.our-services-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.our-services-section .section-title {
    text-align: left !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: white !important;
    margin-bottom: 30px !important;
    position: relative !important;
    display: inline-block !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.services-intro {
    max-width: 900px !important;
    margin: 0 auto 40px !important;
    text-align: left !important;
    color: white !important;
    line-height: 1.6 !important;
    font-size: 16px !important;
    padding: 0 20px !important;
}

.services-subtitle {
    text-align: left !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    color: white !important;
    margin-bottom: 30px !important;
    position: relative !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.our-services-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: white;
    opacity: 0.5;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    margin-top: 30px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    height: auto !important; /* Changed from 100% to auto */
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card:hover {
    transform: translateY(-5px) !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.service-content {
    padding: 25px 25px !important; /* Reduced padding */
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important; /* Changed from 100% to auto */
    justify-content: space-between !important;
}

.service-title {
    font-size: 22px !important; /* Reduced font size */
    font-weight: 700 !important;
    margin-bottom: 12px !important; /* Reduced margin */
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    letter-spacing: 0.5px !important;
}

.service-description {
    font-size: 14px !important; /* Reduced font size */
    line-height: 1.5 !important; /* Reduced line height */
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 20px !important; /* Reduced margin */
    flex-grow: 1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-weight: 400 !important;
}

.service-cta {
    margin-top: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-button {
    display: inline-block !important;
    background-color: white !important;
    color: #242424 !important;
    padding: 8px 20px !important; /* Reduced padding */
    border: none !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 12px !important; /* Reduced font size */
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

.service-button:hover {
    background-color: #f0f0f0 !important;
    color: #242424 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Responsive Styles for Our Services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px !important;
    }

    .service-content {
        padding: 25px !important;
    }

    .service-title {
        font-size: 22px !important;
    }
}

@media (max-width: 991px) {
    .our-services-section {
        padding: 60px 0 !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .our-services-section .section-title {
        font-size: 32px !important;
        margin-bottom: 40px !important;
    }

    .service-title {
        font-size: 20px !important;
    }

    .service-description {
        font-size: 14px !important;
    }
}

@media (max-width: 768px) {
    .our-services-section {
        padding: 50px 0 !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .our-services-section .section-title {
        font-size: 28px !important;
        margin-bottom: 30px !important;
    }

    .service-content {
        padding: 25px !important;
    }

    .service-title {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }

    .service-description {
        font-size: 14px !important;
        margin-bottom: 25px !important;
        line-height: 1.6 !important;
    }

    .service-button {
        padding: 9px 20px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 576px) {
    .our-services-section {
        padding: 40px 0 !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .our-services-section .section-title {
        font-size: 24px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        text-align: center !important;
    }

    .services-intro {
        font-size: 14px !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
    }

    .services-subtitle {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }

    .our-services-section .section-title:after {
        width: 40px !important;
        height: 2px !important;
        bottom: -10px !important;
    }

    .service-card {
        margin-bottom: 15px !important;
    }

    .service-description {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    .service-button {
        padding: 8px 16px !important;
        font-size: 12px !important;
    }

    .our-services-container {
        padding: 0 !important;
    }

    .service-content {
        padding: 30px 25px !important;
    }

    .service-title {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }

    .service-description {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }

    .service-button {
        padding: 10px 22px !important;
        font-size: 12px !important;
        width: 100% !important;
        text-align: center !important;
    }
}

/* About Us Section Styles */
.about-us-section {
    width: 100% !important;
    padding: 80px 0 !important;
    background-color: #f9f9f9 !important;
    overflow: hidden !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 1 !important;
}

.about-us-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-us-content {
    flex: 0 0 55% !important;
    padding-right: 40px !important;
    box-sizing: border-box !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-us-title {
    font-size: 36px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #242424 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-us-text {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: #444 !important;
    margin-bottom: 30px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-us-buttons {
    display: flex !important;
    gap: 15px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-us-button {
    display: inline-block !important;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.primary-button {
    background-color: #242424 !important;
    color: white !important;
    border: none !important;
}

.primary-button:hover {
    background-color: #333 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.secondary-button {
    background-color: transparent !important;
    color: #242424 !important;
    border: 1px solid #242424 !important;
}

.secondary-button:hover {
    background-color: rgba(36, 36, 36, 0.05) !important;
    transform: translateY(-3px) !important;
}

.about-us-image {
    flex: 0 0 40% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-us-image img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Styles for About Us */
@media (max-width: 991px) {
    .about-us-section {
        padding: 60px 0 !important;
    }

    .about-us-container {
        flex-direction: column !important;
    }

    .about-us-content {
        flex: 0 0 100% !important;
        padding-right: 0 !important;
        margin-bottom: 40px !important;
        text-align: left !important;
    }

    .about-us-title {
        font-size: 32px !important;
    }

    .about-us-buttons {
        justify-content: flex-start !important;
    }

    .about-us-image {
        flex: 0 0 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 0 !important;
    }

    .about-us-title {
        font-size: 28px !important;
        margin-bottom: 20px !important;
    }

    .about-us-text {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }

    .about-us-button {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .about-us-section {
        padding: 40px 0 !important;
    }

    .about-us-title {
        font-size: 24px !important;
        margin-bottom: 15px !important;
    }

    .about-us-text {
        font-size: 14px !important;
        margin-bottom: 20px !important;
    }

    .about-us-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .about-us-button {
        width: 100% !important;
        text-align: center !important;
        padding: 10px 15px !important;
        font-size: 12px !important;
    }

    .about-us-image {
        max-width: 220px !important;
    }
}

/* Success Stories Section Styles */
.success-stories {
    text-align: start;
    padding: 40px 0;
    background-color: #f9f9f9;
    width: 100%;
    margin-top: 40px;
    border-radius: 10px;
}

/* Contact Us Section Styles */
.contact-us-section {
    width: 100%;
    position: relative;
    background-image: url('../assets/images/contactus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.contact-us-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    width: 100px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.contact-us-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.contact-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contact-us-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.contact-us-content {
    max-width: 600px;
}

.contact-us-header h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.contact-us-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-us-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-us-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-get-in-touch, .btn-book-call {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-get-in-touch {
    background-color: white;
    color: #242424;
    border: none;
}

.btn-get-in-touch:hover {
    background-color: var(--brand-gold);
    transform: translateY(-3px);
}

.btn-book-call {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-book-call:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Styles for Contact Us Section */
@media (max-width: 991px) {
    .contact-us-section {
        padding: 60px 0;
    }

    .contact-us-text h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        padding: 50px 0;
    }

    .contact-us-text h2 {
        font-size: 32px;
    }

    .contact-us-text p {
        font-size: 15px;
    }

    .btn-get-in-touch, .btn-book-call {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .contact-us-section {
        padding: 40px 0;
    }

    .contact-us-header h3 {
        font-size: 16px;
    }

    .contact-us-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .contact-us-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-us-buttons {
        flex-direction: row;
        gap: 10px;
    }

    .btn-get-in-touch, .btn-book-call {
        padding: 10px 15px;
        font-size: 12px;
        width: auto;
        text-align: center;
    }
}

.success-stories h3 {
    font-size: 28px;
    font-weight: 600;
    color: #242424;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.success-stories h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #242424;
    opacity: 0.3;
}

.success-stories-button {
    display: inline-block;
    background-color: #242424;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.success-stories-button:hover {
    background-color: var(--brand-gold);
    transform: translateY(-3px);
}

/* Responsive Styles for Success Stories */
@media (max-width: 991px) {
    .success-stories {
        padding: 35px 0;
        margin-top: 35px;
    }

    .success-stories h3 {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .success-stories-button {
        padding: 11px 28px;
    }
}

@media (max-width: 768px) {
    .success-stories {
        padding: 30px 0;
        margin-top: 30px;
    }

    .success-stories h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .success-stories-button {
        padding: 10px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .success-stories {
        padding: 25px 15px;
        margin-top: 25px;
    }

    .success-stories h3 {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .success-stories h3:after {
        width: 40px;
        height: 2px;
        bottom: -8px;
    }

    .success-stories-button {
        padding: 9px 22px;
        font-size: 12px;
        margin-top: 15px;
    }
}

/* Case Study Section Styles */
.case-study-section {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.case-study-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.case-study-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-study-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.case-study-text {
    max-width: 500px;
}

.case-study-main-text {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 30px;
}

.case-study-sub-text {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}

.case-study-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-left: 0; /* Removed margin to align with edge */
}

.case-study-image1 {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.case-study-image1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-left: 0; /* Removed margin to align with edge */
    border-radius: 0; /* Remove border radius to match case study image */
}
.case-study-logo {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
}

.case-study-logo img {
    width: 100%;
    height: auto;
}

/* Case Study Responsive Styles */
@media (max-width: 992px) {
    .case-study-container {
        flex-direction: column;
    }

    .case-study-content {
        padding: 40px 30px;
    }

    .case-study-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .case-study-main-text {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .case-study-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .case-study-content {
        padding: 30px 20px;
    }

    .case-study-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .case-study-main-text {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .case-study-image {
        height: 350px;
    }

    .case-study-logo {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .case-study-content {
        padding: 25px 15px;
    }

    .case-study-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .case-study-main-text {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .case-study-sub-text {
        font-size: 0.9rem;
    }

    .case-study-image {
        height: 300px;

    }

    .case-study-logo {
        width: 80px;
        bottom: 15px;
        right: 15px;
    }
}

/* Services Cards Section Styles */
.services-cards-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    width: 100%;
    overflow: hidden;
}

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

.services-cards-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: left;
    color: #333;
}

.services-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    
}

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

.services-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.services-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Responsive styles for services cards */
@media (max-width: 768px) {
    .services-cards-section {
        padding: 40px 0;
    }

    .services-cards-section h2 {
        font-size: 28px;
    }

    .services-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .services-cards-section h2 {
        font-size: 24px;
    }

    .services-card h3 {
        font-size: 18px;
    }

    .services-card p {
        font-size: 13px;
    }
}




.about-main-section {
    padding: 100px 0 40px;
    background-color: white;
    width: 100%;
    margin-left: 0;
}

/* Ensure section titles are properly displayed */
.about-story-section .section-title,
.about-vision-section .section-title,
.about-team-section .section-title {
    text-align: left;
    margin-left: 0;
    display: block;
    width: auto;
    padding: 0;
    margin-bottom: 15px;
}

.about-story-section .about-text,
.about-vision-section .about-text {
    padding: 0;
    margin-bottom: 20px;
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 40px 0;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.about-col-left {
    flex: 0 0 30%;
    padding: 0 15px;
    margin-left: -23%;
}

.about-col-right {
    flex: 0 0 70%;
    padding: 0 15px;
}

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

/* Team Section Styles */
.about-team-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    width: 100%;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Social Media Links Styles */
.social-media-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-link i {
    margin-right: 10px;
    width: 20px;
}

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

/* Contact Form Styles in About Page Style */
.about-col-right .contact-form {
    width: 100%;
}

.about-col-right .form-group {
    margin-bottom: 15px;
}

.about-col-right .form-group input,
.about-col-right .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
}

.about-col-right .form-group input:focus,
.about-col-right .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.about-col-right .form-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.about-col-right .file-upload-btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #333;
    color: white;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.about-col-right .file-upload-btn:hover {
    background-color: #555;
}

.about-col-right .terms-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-col-right .terms-checkbox label {
    font-size: 12px;
    color: #666;
}

.about-col-right .form-submit {
    text-align: right;
}

.about-col-right .submit-btn {
    padding: 12px 30px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.about-col-right .submit-btn:hover {
    background-color: #333;
}

/* Contact Info Item Styles */
.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
    font-weight: normal;
}

.about-col-right .map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.about-col-right .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(33.333% - 20px);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
    opacity: 1;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 1;
    transform: none !important;
}

.team-member:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
}

.team-member:hover .team-member-image img {
    transform: none !important;
}

.team-member-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Creates a 1:1 aspect ratio */
    position: relative;
    overflow: hidden;
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}



.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 15px 15px 5px;
}

.team-member-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin: 0 15px 10px;
    font-weight: 600;
}

.team-member-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666;
    margin: 0 15px 20px;
}

/* Why Us Section Styles */
.about-why-section {
    padding: 60px 0;
    background-color: white;
    width: 100%;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.why-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.why-header-content {
    flex: 1;
}

.why-cta {
    flex: 0 0 auto;
}

.why-cta-button {
    display: inline-block;
    background-color: #222;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-cta-button:hover {
    background-color: var(--brand-gold);
    transform: translateY(-3px);
}

.why-divider {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 20px 0 40px;
    width: 100%;
}

.why-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-item {
    background-color: white;
    padding: 20px 0;
    transition: transform 0.3s ease;
    opacity: 1;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 1;
    border-top: none;
    border-bottom: none;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-item-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.why-item-subtitle {
    font-size: 0.85rem;
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
    font-weight: normal;
}

.why-item-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-top: 15px;
}

/* Empowering Section Styles */
.about-empowering-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: left;
    display: block;
    visibility: visible;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.empowering-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.empowering-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 0 30px;
}

.empowering-cta {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--dark-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--brand-gold);
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-col-left, .about-col-right {
        flex: 0 0 100%;

    }

    .about-col-left {
        margin-bottom: 20px;

    }

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

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

@media (max-width: 768px) {
    .about-main-section {
        padding: 80px 0 30px;
    }

    .about-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-left: 0 !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
    }

    .about-row {
        margin: 0;
    }

    .about-col-left {
        margin-bottom: 10px;
    }

    .about-col-right {
        padding: 0 10px;
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .empowering-title {
        font-size: 1.8rem;
    }

    .empowering-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-member-image {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-left: 0 !important;
        text-align: left !important;
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px !important;
        clear: both !important;
        float: none !important;
        position: relative !important;
        padding: 0 !important;
    }

    .about-story-section .section-title,
    .about-vision-section .section-title,
    .about-team-section .section-title {
        font-weight: 600 !important;
        color: #333 !important;
    }

    .about-text, .why-subtitle, .empowering-text {
        font-size: 0.95rem;
    }

    .about-main-section {
        padding: 70px 0 20px;
    }

    .about-container {
        padding: 0 15px;
    }

    .about-row {
        margin: 0;
    }

    .about-col-left {
        margin-bottom: 5px;
    }

    .about-col-right {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 10px !important;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-main-section {
        padding: 60px 0 15px;
    }

    .about-container {
        padding: 0 10px;
    }

    /* Specific fixes for mobile section titles */
    .about-story-section .section-title,
    .about-vision-section .section-title,
    .about-team-section .section-title {
        font-size: 1.4rem !important;
        padding: 0 !important;
        margin-bottom: 10px !important;
        line-height: 1.3 !important;
        margin-left: 0 !important;
    }

    .about-story-section .about-text,
    .about-vision-section .about-text {
        padding: 0 !important;
        margin-bottom: 15px !important;
    }

    .about-row {
        display: block !important;
    }
}

@media (max-width: 375px) {
    .about-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .about-text {
        font-size: 0.85rem;
    }

    /* Specific fixes for very small screens */
    .about-story-section .section-title,
    .about-vision-section .section-title,
    .about-team-section .section-title {
        font-size: 1.3rem !important;
        padding: 0 !important;
        margin-bottom: 8px !important;
        margin-left: 0 !important;
    }

    .about-story-section .about-text,
    .about-vision-section .about-text {
        padding: 0 !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }

    .about-container {
        padding: 0 8px;
    }

    .about-main-section {
        padding: 55px 0 10px;
    }
}

/* ======================================
   6. BLOG STYLES
====================================== */

/* Override Bootstrap container for blog pages */
.blog-container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
    max-width: 1500px; /* Increased width for better layout */
    display: block;
}

/* Common Blog Elements */
.blog-page-header {
    padding-top: 100px !important;
    margin-top: 0 !important;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.blog-page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Card Styling for Blog Widgets */
.card {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.card-header {
    background-color: var(--dark-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.card-body {
    padding: 1.25rem;
}

/* Blog Post Cards */
.blog-post {
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: #fff;
    border: 1px solid var(--border-color);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-post .card-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-size: 1.5rem;
    line-height: 1.3;
}

.blog-post .card-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-post-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    flex-wrap: wrap;
}

.blog-post-meta i {
    margin-right: 0.25rem;
}

.blog-post-meta span {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.blog-post img {
    
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.blog-post:hover img {
    transform: scale(1.05);
}

.blog-post .row {
    margin: 0;
}

.blog-post .col-md-4 {
    padding: 0;
}

.blog-post .col-md-8 {
    padding: 1.5rem;
}

.blog-post .card-body {
    padding: 0;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    color: var(--dark-color);
    border-color: var(--border-color);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--border-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: var(--text-muted);
}

/* Sidebar Widgets */
.blog-sidebar .col-lg-4 {
    position: relative;
    padding-left: 1.5rem;
}

.list-group-item {
    border-color: var(--border-color);
    transition: var(--transition);
    padding: 0.75rem 1rem;
}

.list-group-item:hover {
    background-color: var(--light-color);
}

.list-group-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.list-group-item a:hover {
    color: var(--primary-color);
}

/* Blog Post Detail */
.blog-post-detail {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.blog-post-detail .card-img-top {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.blog-post-detail .card-body {
    padding: 2rem;
}

.blog-post-detail .card-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.blog-content {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    font-style: italic;
    color: var(--secondary-color);
    margin: 1.5rem 0;
    background-color: var(--light-color);
    border-radius: 0 8px 8px 0;
}

/* ======================================
   7. PRIVACY PAGE STYLES
====================================== */

/* Privacy Container */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 0 50px;
    box-sizing: border-box;
}

/* Privacy Header */
.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px; /* Add padding to account for fixed navbar */
}

.privacy-header h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.privacy-divider {
    width: 80px;
    height: 4px;
    background-color: var(--brand-gold);
    margin: 0 auto;
}

/* Privacy Content */
.privacy-content {
    padding: 20px 0;
}

.privacy-intro {
    margin-bottom: 40px;
    padding: 0 15px;
}

.privacy-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 0 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    transition: all 0.3s ease;
}

.privacy-section:hover {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding-left: 20px;
    border-bottom: 1px solid var(--brand-gold);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.privacy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: color 0.3s ease;
}

.privacy-section:hover p {
    color: #333;
}

.privacy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-section li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Contact Information Section */
.privacy-contact-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 40px;
    border-left: 3px solid var(--brand-gold);
    transition: all 0.3s ease;
}

.privacy-contact-info:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-left: 5px solid var(--brand-gold);
}

/* Numbered sections */
.numbered-section {
    counter-reset: section;
}

.numbered-section h2 {
    position: relative;
    padding-left: 40px;
}

.numbered-section h2::before {
    counter-increment: section;
    content: counter(section) ".";
    position: absolute;
    left: 0;
    font-weight: 700;
    color: var(--brand-gold);
}