/* Base Styles & Variables */
:root {
    --primary-color: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #e6f2ff;
    --secondary-color: #003366;
    --accent-color: #ff6600;
    --accent-dark: #cc5200;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #ffffff;
    --bg-light: #ffffff;
    --bg-light-secondary: #f8f9fa;
    --bg-dark: #1a1a2a;
    --bg-dark-secondary: #2a2a3a;
    --card-bg-light: #ffffff;
    --card-bg-dark: #2a2a3a;
    --border-light: #e0e0e0;
    --border-dark: #444444;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition);
    overflow-x: hidden;
}

body.dark-mode {
    color: var(--text-light);
    background-color: var(--bg-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.dark-mode a:hover {
    color: var(--primary-light);
}

ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.dark-mode .section-header p {
    color: #aaaaaa;
}

.highlight {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dark-mode .cta-button:hover {
    color: white;
    background-color: var(--primary-dark);
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#themeToggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

#themeToggle:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.dark-mode #themeToggle {
    background-color: var(--accent-color);
}

.dark-mode #themeToggle:hover {
    background-color: var(--accent-dark);
}

/* Navigation */
.main-nav {
    position: fixed;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: var(--transition);
}

.dark-mode .main-nav {
    background-color: rgba(26, 26, 26, 0.97);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    padding: 15px 20px;
    margin-right: 4rem;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
}

.nav-links a {
    margin-left: 30px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.3rem;
    transition: var(--transition);
    position: relative;
}

.dark-mode .nav-links a {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 1rem;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.dark-mode .mobile-menu-btn span {
    background-color: var(--accent-color);
}

/* Hero Section with Slideshow */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

.hero-slideshow .slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-slideshow .video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
}

/* .hero-buttons {
    font-size: 1rem;
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
} */

/* Get in Touch Button (Primary) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--primary-color); /* Blue from your variables */
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin: 0px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
}

.cta-button:hover {
    background-color: var(--primary-dark); /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Explore Services Button (Secondary) */
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--primary-color); /* Blue from your variables */
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin: 5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-family: var(--font-primary);
}

.secondary-button:hover {
    background-color: var(--primary-color); /* Blue on hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Dark mode adjustments */
.dark-mode .cta-button:hover {
    background-color: var(--primary-dark);
}

.dark-mode .secondary-button {
    border-color: var(--primary-color);
}

.dark-mode .secondary-button:hover {
    background-color: var(--primary-color);
    color: white;
}

/* PPT Button - matches your existing button styles */
.ppt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.ppt-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Modal Styles */
.download-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: var(--card-bg-light);
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.dark-mode .modal-content {
    background-color: var(--card-bg-dark);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: var(--text-medium);
    cursor: pointer;
}

.download-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.download-submit-btn:hover {
    background-color: var(--accent-dark);
}

/* Form Styles */
#downloadForm .form-group {
    margin-bottom: 20px;
}

#downloadForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

#downloadForm input,
#downloadForm select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
}

.dark-mode #downloadForm input,
.dark-mode #downloadForm select {
    background-color: var(--bg-dark-secondary);
    border-color: var(--border-dark);
    color: var(--text-light);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
}

.feature-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: white;
    backdrop-filter: blur(5px);
}

.feature-item i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    opacity: 0;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin-top: 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 5px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: var(--bg-light-secondary);
    overflow: hidden;
}

.dark-mode .clients-section {
    background-color: var(--bg-dark-secondary);
}

.clients-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0;
    animation: scroll 30s linear infinite;
}

.client-logo {
    flex: 0 0 auto;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.dark-mode .services-section {
    background-color: var(--bg-dark);
}

.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tab-header {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-button {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: white;
}

.tab-button:hover:not(.active) {
    background-color: var(--primary-light);
}

.dark-mode .tab-button:hover:not(.active) {
    background-color: rgba(0, 102, 204, 0.2);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dark-mode .service-card {
    background-color: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dark-mode .service-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.dark-mode .service-icon {
    background-color: rgba(0, 102, 204, 0.2);
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card ul {
    margin-bottom: 25px;
    padding-left: 0;
    list-style-type: none;
}

.service-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-medium);
    transition: var(--transition);
}

.dark-mode .service-card ul li {
    color: #cccccc;
}

.service-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-card:hover ul li {
    color: var(--text-dark);
    padding-left: 30px;
}

.dark-mode .service-card:hover ul li {
    color: var(--text-light);
}

.service-processes {
    margin: 25px 0;
}

.service-processes h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-medium);
}

.process-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.dark-mode .badge {
    background-color: rgba(0, 102, 204, 0.2);
}

.service-highlight {
    display: flex;
    align-items: center;
    background-color: var(--primary-light);
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
    color: var(--primary-color);
}

.dark-mode .service-highlight {
    background-color: rgba(0, 102, 204, 0.2);
}

.service-highlight i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.service-pricing {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.pricing-option {
    flex: 1;
    background-color: var(--primary-light);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.dark-mode .pricing-option {
    background-color: rgba(0, 102, 204, 0.2);
}

.pricing-option h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.pricing-option p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.dark-mode .pricing-option p {
    color: #aaaaaa;
}

.service-stats {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: 8px;
}

.dark-mode .stat-item {
    background-color: rgba(0, 102, 204, 0.2);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.dark-mode .stat-label {
    color: #aaaaaa;
}

.service-tech {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.tech-badge {
    width: 60px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 4px;
    padding: 5px;
}

.dark-mode .tech-badge {
    background-color: var(--bg-dark-secondary);
}

.tech-badge img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.service-success {
    display: flex;
    align-items: center;
    background-color: var(--primary-light);
    padding: 12px;
    border-radius: 8px;
    margin: 20px 0;
    color: var(--primary-color);
}

.dark-mode .service-success {
    background-color: rgba(0, 102, 204, 0.2);
}

.service-success i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.learn-more i {
    margin-left: 8px;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--primary-dark);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.dark-mode .learn-more:hover {
    color: var(--primary-light);
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.service-cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

.service-cta .cta-button:hover {
    background-color: transparent;
    color: white;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: var(--bg-light-secondary);
}

.dark-mode .solutions-section {
    background-color: var(--bg-dark-secondary);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-card {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode .solution-card {
    background-color: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dark-mode .solution-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 30px 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.dark-mode .solution-icon {
    background-color: rgba(0, 102, 204, 0.2);
}

.solution-card:hover .solution-icon {
    transform: rotate(10deg) scale(1.1);
    background-color: var(--primary-color);
    color: white;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin: 0 30px 15px;
    color: var(--primary-color);
}

.solution-card p {
    margin: 0 30px 20px;
    color: var(--text-medium);
}

.dark-mode .solution-card p {
    color: #aaaaaa;
}

.solution-card ul {
    margin: 0 30px 30px;
    padding-left: 0;
    list-style-type: none;
}

.solution-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: var(--text-medium);
}

.dark-mode .solution-card ul li {
    color: #cccccc;
}

.solution-card ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.solution-image {
    height: 200px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-card:hover .solution-image img {
    transform: scale(1.05);
}

.solution-card .learn-more {
    margin: 0 30px 30px;
    display: inline-block;
}

/* Process Section - Updated CSS */
.process-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.dark-mode .process-section {
    background-color: var(--bg-dark);
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.process-line {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 4px;
    height: calc(100% - 50px);
    background-color: var(--primary-light);
    z-index: 1;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 1.5s ease-in-out;
}

.dark-mode .process-line {
    background-color: rgba(0, 102, 204, 0.2);
}

.process-line.active {
    transform: scaleY(1);
}

.step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.step.active {
    opacity: 1;
    transform: translateY(0);
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    z-index: 2;
}

.step-content {
    background-color: var(--card-bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode .step-content {
    background-color: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.dark-mode .step-content p {
    color: #aaaaaa;
}

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-light-secondary);
}

.dark-mode .about-section {
    background-color: var(--bg-dark-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-mission, .about-vision {
    margin-bottom: 30px;
}

.about-mission h4, .about-vision h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.dark-mode .about-mission h4,
.dark-mode .about-vision h4 {
    color: var(--text-light);
}

.about-values h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dark-mode .about-values h4 {
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg-light);
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dark-mode .value-item {
    background-color: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.dark-mode .value-item span {
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dark-mode .stat-card {
    background-color: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.dark-mode .stat-label {
    color: #aaaaaa;
}

.certifications h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.dark-mode .certifications h4 {
    color: var(--text-light);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.certs-grid img {
    height: 60px;
    object-fit: contain;
    padding: 10px;
    background-color: var(--card-bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.dark-mode .certs-grid img {
    background-color: var(--card-bg-dark);
}

.certs-grid img:hover {
    transform: translateY(-5px);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.dark-mode .team-section {
    background-color: var(--bg-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-member {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode .team-member {
    background-color: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dark-mode .team-member:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-light);
    position: relative;
    transition: var(--transition);
}

.dark-mode .member-image {
    border-color: rgba(0, 102, 204, 0.3);
}

.team-member:hover .member-image {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-social {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-social {
    opacity: 1;
    bottom: 10px;
}

.member-social a {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member .experience, .team-member .background {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.dark-mode .team-member .experience, 
.dark-mode .team-member .background {
    color: #cccccc;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.member-skills span {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.dark-mode .member-skills span {
    background-color: rgba(0, 102, 204, 0.2);
}

.team-cta {
    max-width: 800px;
    margin: 60px auto 0;
    text-align: center;
    padding: 0 20px;
}

.team-cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light-secondary);
}

.dark-mode .testimonials-section {
    background-color: var(--bg-dark-secondary);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-card {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode .testimonial-card {
    background-color: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dark-mode .testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 3px;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-medium);
    position: relative;
}

.dark-mode .testimonial-content {
    color: #cccccc;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.5;
    z-index: -1;
}

.dark-mode .testimonial-content::before {
    color: rgba(0, 102, 204, 0.2);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--primary-light);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.dark-mode .author-info p {
    color: #aaaaaa;
}

.author-company {
    width: 60px;
    height: 30px;
}

.author-company img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonials-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.cta-badge {
    display: flex;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.dark-mode .cta-badge {
    background-color: rgba(0, 102, 204, 0.2);
}

.cta-badge i {
    margin-right: 10px;
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.dark-mode .case-studies-section {
    background-color: var(--bg-dark);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-study {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode .case-study {
    background-color: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.dark-mode .case-study:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.case-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study:hover .case-image img {
    transform: scale(1.05);
}

.case-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: white;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.case-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.dark-mode .case-content p {
    color: #aaaaaa;
}

.case-results {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.result-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: 8px;
}

.dark-mode .result-item {
    background-color: rgba(0, 102, 204, 0.2);
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-medium);
}

.dark-mode .result-label {
    color: #aaaaaa;
}

/* Contact Section */
.contact-section {
    padding: 100px 0 0;
    background-color: var(--bg-light);
}

.dark-mode .contact-section {
    background-color: var(--bg-dark);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.info-card {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.dark-mode .info-icon {
    background-color: rgba(0, 102, 204, 0.2);
}

.info-card:hover .info-icon {
    background-color: var(--primary-color);
    color: white;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-content p {
    color: var(--text-medium);
    margin-bottom: 5px;
    font-size: 1rem;
}

.dark-mode .info-content p {
    color: #aaaaaa;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link.linkedin {
    background-color: #0077b5;
}

.social-link.whatsapp {
    background-color: #25D366;
}

.social-link.twitter {
    background-color: #1DA1F2;
}

.social-link.facebook {
    background-color: #1877F2;
}

.social-link.instagram {
    background-color: #E4405F;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.qr-code {
    margin-top: 40px;
    text-align: center;
}

.qr-code img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border: 1px solid var(--border-light);
    padding: 10px;
    background-color: white;
}

.dark-mode .qr-code img {
    border-color: var(--border-dark);
}

.contact-form {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dark-mode .contact-form {
    background-color: var(--card-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.dark-mode .form-group label {
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    border-color: var(--border-dark);
    background-color: var(--bg-dark-secondary);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.dark-mode .form-group input:focus,
.dark-mode .form-group select:focus,
.dark-mode .form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.dark-mode .checkbox-group label {
    color: #aaaaaa;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button i {
    margin-left: 10px;
}

.map-container {
    margin-top: 60px auto;
    height: 450px;
    max-width: 800px; /* optional */
    text-align: center;
}

.map-container iframe {
    
    width: 100%;
    height: 100%;
    border: none;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: gold;
    color: black;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    opacity: 0.9;
    max-width: 500px;
}

.newsletter-form {
    flex: 1;
    max-width: 600px;
}

.newsletter-form .form-group {
    position: relative;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 25px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
}

.newsletter-form button i {
    margin-left: 8px;
}

.form-note {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: black;
    color: white;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: block;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.footer-badges .badge i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.footer-bottom .copyright {
    margin-bottom: 10px;
}

.footer-bottom .footer-extra {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .csr-content {
        grid-template-columns: 1fr;
    }
    
    .csr-image {
        height: 400px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode .nav-links {
        background-color: var(--bg-dark);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .process-steps {
        padding: 0;
    }
    
    .step {
        padding-left: 70px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .csr-initiatives {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Print Styles */
@media print {
    .main-nav, .theme-toggle, .back-to-top, .newsletter-section, footer {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        color: black !important;
        font-size: 12pt;
    }
    
    a {
        color: black !important;
        text-decoration: underline !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .section-header h2::after {
        display: none;
    }
}





/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    /* Light mode styles */
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

/* Dark mode styles for dropdown */
.dark-mode .dropdown-menu {
    background-color: #2d3748;
    border: 1px solid #4a5568;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    font-size: medium;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    /* Light mode styles */
    color: #333;
}

/* Dark mode styles for dropdown links */
.dark-mode .dropdown-menu a {
    color: #e2e8f0;
}

.dropdown-menu a:hover {
    /* Light mode hover */
    background-color: #f5f5f5;
    color: var(--primary-color);
}

/* Dark mode hover styles */
.dark-mode .dropdown-menu a:hover {
    background-color: #4a5568;
    color: #ffffff;
}

/* Chevron icon color adjustment */
.dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8em;
}

.dark-mode .dropdown-toggle i {
    color: #e2e8f0;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        display: none;
        width: 100%;
        /* Reset background for mobile */
        background-color: inherit;
        border: none;
    }
    
    .nav-links.active .dropdown-menu {
        display: block;
    }

    /* Mobile dark mode adjustments */
    .dark-mode .dropdown-menu {
        background-color: inherit;
    }
    
    .dark-mode .dropdown-menu a {
        color: inherit;
    }
}


/* Add this new section to your CSS */
.who-we-are-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.dark-mode .who-we-are-section {
    background-color: var(--bg-dark);
}

.who-we-are-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.who-we-are-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.dark-mode .who-we-are-content p {
    color: #aaaaaa;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.expertise-item {
    background-color: var(--card-bg-light);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.dark-mode .expertise-item {
    background-color: var(--card-bg-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.expertise-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.dark-mode .expertise-item p {
    color: #aaaaaa;
}

/* Remove the cursor line animation from nav links */
.nav-links a::after {
    display: none;
}

/* Update the service CTA section */
.service-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
    text-align: center;
}

.service-cta .cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.service-cta .cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.service-cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    margin-bottom: 15px;
}

.service-cta .secondary-button {
    background-color: transparent;
    color: white;
    border-color: white;
}

.service-cta .secondary-button:hover {
    background-color: white;
    color: var(--primary-color);
}