:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --bg-color: #ffffff;
    --navbar-bg: #ffffff;
    --card-bg: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    --primary-color: #bdd2e6;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #e6e6e6;
    --light-bg: #161a1d;
    --white: #2e2b2b;
    --bg-color: #1e1e1e;
    --navbar-bg: #242424;
    --card-bg: #2a2a2a;
    --border-color: rgba(255, 255, 255, 0.15);
    --toggler-color: rgba(255, 255, 255, 0.8);
}

body::-webkit-scrollbar {
    width: 0.35em;
  }
  
  body::-webkit-scrollbar-track {
    background-color: var(--primary-color);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border-radius: 30px;
  }

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-color) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    padding: 0.8rem 0;
    background-color: var(--navbar-bg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000; /* Increased z-index to ensure it stays on top of all elements */
    height: auto;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateZ(0);
    will-change: transform;
    -webkit-transform: translate3d(0,0,0);
    -webkit-backface-visibility: hidden;
    pointer-events: auto;
}

.theme-toggle {
    padding: 0.5rem;
    margin-left: 1rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.theme-toggle:hover {
    color: var(--secondary-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-brand .logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar-brand .company-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}


.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Navbar Toggler Styling */
.navbar-toggler {
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    margin-right: 0;
    background-color: transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000;
}

[data-theme="dark"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
    outline: none;
}

/* Enhanced Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--bg-color);
    overflow: hidden;
    padding-top: 100px; /* Increased padding-top for navbar height on mobile */
    margin-top: 0; /* Remove negative margin */
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

.subtitle-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

/* Typewriter Effect */
.typewriter-wrapper {
    margin: 2rem 0;
    height: 50px;
}

.typewriter-prefix {
    color: var(--primary-color);
    font-weight: 500;
}

.typewriter-text {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 2rem;
    border-right: 3px solid var(--secondary-color);
    padding-right: 8px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: var(--secondary-color); }
}

/* Stats Section */
.stats-wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

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

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.floating-card span {
    font-weight: 500;
    color: var(--primary-color);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Floating Numbers Animation */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-numbers {
    position: absolute;
    width: 120%;
    height: 120%;
    overflow: hidden;
    right: -20%;
}

.floating-numbers span {
    position: absolute;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.45;
    animation: floatSymbol 8s linear infinite;
    z-index: 1;
}

/* Position the symbols across the expanded area */
.floating-numbers span:nth-child(1) { top: 5%; right: 10%; animation-delay: 0s; }
.floating-numbers span:nth-child(2) { top: 15%; right: 25%; animation-delay: 1s; }
.floating-numbers span:nth-child(3) { top: 25%; right: 15%; animation-delay: 2s; }
.floating-numbers span:nth-child(4) { top: 35%; right: 30%; animation-delay: 3s; }
.floating-numbers span:nth-child(5) { top: 45%; right: 20%; animation-delay: 4s; }
.floating-numbers span:nth-child(6) { top: 55%; right: 35%; animation-delay: 5s; }
.floating-numbers span:nth-child(7) { top: 65%; right: 40%; animation-delay: 2.5s; }
.floating-numbers span:nth-child(8) { top: 75%; right: 45%; animation-delay: 3.5s; }
.floating-numbers span:nth-child(9) { top: 85%; right: 35%; animation-delay: 4.5s; }
.floating-numbers span:nth-child(10) { top: 10%; right: 45%; animation-delay: 1.5s; }
.floating-numbers span:nth-child(11) { top: 20%; right: 40%; animation-delay: 2.5s; }
.floating-numbers span:nth-child(12) { top: 30%; right: 50%; animation-delay: 3.5s; }
.floating-numbers span:nth-child(13) { top: 40%; right: 55%; animation-delay: 4.5s; }
.floating-numbers span:nth-child(14) { top: 50%; right: 50%; animation-delay: 5.5s; }
.floating-numbers span:nth-child(15) { top: 60%; right: 55%; animation-delay: 6.5s; }
.floating-numbers span:nth-child(16) { top: 70%; right: 45%; animation-delay: 7.5s; }
.floating-numbers span:nth-child(17) { top: 80%; right: 50%; animation-delay: 8.5s; }
.floating-numbers span:nth-child(18) { top: 90%; right: 40%; animation-delay: 9.5s; }
.floating-numbers span:nth-child(19) { top: 15%; right: 60%; animation-delay: 10.5s; }
.floating-numbers span:nth-child(20) { top: 25%; right: 65%; animation-delay: 11.5s; }
.floating-numbers span:nth-child(21) { top: 35%; right: 70%; animation-delay: 12.5s; }
.floating-numbers span:nth-child(22) { top: 45%; right: 65%; animation-delay: 13.5s; }
.floating-numbers span:nth-child(23) { top: 55%; right: 60%; animation-delay: 14.5s; }
.floating-numbers span:nth-child(24) { top: 65%; right: 70%; animation-delay: 15.5s; }

@keyframes floatSymbol {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 0.45;
    }
    50% {
        transform: translate(-15px, -20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        opacity: 0.45;
    }
    100% {
        transform: translate(-30px, 0) rotate(360deg);
        opacity: 0;
    }
}

/* Make symbols responsive */
@media (max-width: 768px) {
    .floating-numbers span {
        font-size: 1.2rem;
    }
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .floating-numbers {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .typewriter-text {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .row.align-items-center.min-vh-100 {
        min-height: auto !important;
    }
}

/* Common Section Styles */
.section-padding {
    padding: 70px 0;
}

/* Common Section Title Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

/* Left-aligned titles (for sections that need it) */
.about-content .section-title,
.contact-info h4,
.info-item h3 {
    text-align: left;
}

.about-content .section-title::after,
.contact-info h4::after,
.info-item h3::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* About Section */
.about-content {
    padding: 2rem;
}

.mission-vision {
    margin-top: 2rem;
}

.mission-vision h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.mission-vision h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.mission, .vision {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--light-bg);
    transition: transform 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
}

/* Why Choose Us Section */
.feature-box {
    padding: 2rem;
    text-align: center;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

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

.feature-box p {
    color: var(--text-color);
    font-size: 1rem;
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Make the entire card clickable */
.service-card .service-link {
    position: relative;
    z-index: 2;
    width: auto;
    display: inline-flex;
}

/* Add hover effect */
.service-card:hover {
    transform: translateY(-10px);
}

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

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper {
    background: var(--secondary-color);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .icon-wrapper i {
    color: var(--white);
}

/* Service card titles */
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background: var(--secondary-color);
}

.service-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

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

.service-link:hover i {
    transform: translateX(5px);
}

/* Calculator Section Styles */
.calculator-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.calculator-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.calculator-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.calculator-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.calculator-box p {
    color: var(--text-color);
    margin-bottom: 25px;
    flex-grow: 1;
}

.calc-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.calc-btn i {
    font-size: 1rem;
    margin: 0;
    color: var(--secondary-color);
}


/* Team Section */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(52, 152, 219, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.team-card:hover .social-links {
    bottom: 0;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

/* Team card titles */
.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.team-info h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 30px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.team-info p {
    color: var(--secondary-color);
    margin: 0;
}
/* Disable hover zoom and social overlay on mobile */
@media (max-width: 768px) {
    .team-card:hover .team-image img {
        transform: none;
    }

    .team-card:hover .social-links {
        bottom: -50px;
    }

    .team-image {
        height: auto !important;
    }

    .team-image img {
        height: auto !important;
        max-height: 300px;
        object-fit: cover;
    }
        .team-section .col-md-6 {
        margin-bottom: 20px;
    }
}


/* Testimonials Section */
.testimonial-carousel {
    padding: 20px;
    position: relative;
    margin: 0 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Update carousel animations */
.carousel-item {
    transition: transform .6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Update carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 2;
    position: absolute;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
    opacity: 1;
}

.carousel-control-prev {
    left: -50px;
}

.carousel-control-next {
    right: -50px;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: var(--white);
    font-size: 1.2rem;
}

/* Carousel indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-box {
        margin-bottom: 2rem;
    }
    
    .calculator-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-carousel {
        padding: 0;
        margin: 0 25px;
    }
    
    .testimonial-card {
        margin: 10px 0;
        padding: 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: var(--primary-color);
        top: 50%;
    }
    
    .carousel-control-prev {
        left: -25px;
    }
    
    .carousel-control-next {
        right: -25px;
    }
    
    .carousel-indicators {
        bottom: -40px;
    }
}

/* Update Contact Section Styles */
.contact-section {
    background-color: var(--light-bg);
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Dark theme contact form and info */
[data-theme="dark"] .contact-form,
[data-theme="dark"] .contact-info {
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Service card titles */
.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.info-item h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background: var(--secondary-color);
}

.info-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

/* Make form inputs consistent height */
.form-control {
    height: 55px;
    padding: 0.75rem 1.25rem;
}

/* Dark theme form controls */
[data-theme="dark"] .form-control,
[data-theme="dark"] .form-select {
    background-color: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

[data-theme="dark"] .form-control::placeholder {
    color: rgba(230, 230, 230, 0.6);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    background-color: var(--card-bg);
    color: var(--text-color);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
}

textarea.form-control {
    height: 160px; /* Increased height for better balance */
    resize: none;
}

.submit-btn {
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px var(--border-color);
}

.submit-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--border-color);
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: var(--white);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.float-whatsapp i {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-size: 1rem;
    font-weight: 500;
}

.float-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    textarea.form-control {
        height: 120px;
    }
    
    .float-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .float-whatsapp i {
        font-size: 2rem;
    }
}

/* Phone Input Styling */
.phone-group {
    position: relative;
}

.input-group {
    display: flex;
    align-items: stretch;
}

/* Update country code styling */
.country-code {
    width: 15% !important;
    min-width: 85px;
    height: 55px;
    padding: 0.75rem 0.5rem;
    border: 2px solid #eee;
    border-radius: 5px 0 0 5px;
    background-color: var(--light-bg);
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

.phone-input {
    width: 85% !important;
    border-radius: 0 5px 5px 0 !important;
    border-left: none !important;
}

/* Dark theme phone input */
[data-theme="dark"] .phone-input {
    border-left: none !important;
    background-color: var(--card-bg);
    color: var(--text-color);
}

[data-theme="dark"] .country-code {
    background-color: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.country-code:focus,
.phone-input:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
    outline: none;
}

.phone-input:focus {
    border-left: none;
}

.invalid-feedback {
    display: none;
    color: var(--accent-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Style for invalid input */
.phone-input:invalid:not(:placeholder-shown) {
    border-color: var(--accent-color);
}

.phone-input:invalid:not(:placeholder-shown) ~ .invalid-feedback {
    display: block;
}

/* Add responsive styles for contact info */
@media (max-width: 768px) {
    .info-item {
        align-items: center;
        text-align: center;
    }
    
    .info-item i {
        margin-bottom: 1rem;
    }
    
    .info-item h3 {
        margin-bottom: 0.5rem;
    }
    
    .info-item p {
        text-align: center;
    }
    
    .contact-info {
        margin-bottom: 2rem;
        padding: 2rem;
        text-align: center;
    }
}

/* Footer Section */
.footer-section {
    background-color: #1a2530;
    color: var(--white);
    padding: 70px 0 0;
    position: relative;
    margin-top: 0; /* Remove any top margin */
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.social-links {
    display: none;
}

/* Made with love section */
.made-with-love {
    text-align: center;
    padding: 15px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.made-with-love p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.aivirex-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.aivirex-link:hover {
    color: var(--white);
}

/* Update responsive styles */
@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .made-with-love {
        margin-top: 30px;
    }
}

/* Add Social Strip Styles */
.social-strip {
    background-color: var(--secondary-color);
    padding: 15px 0;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .social-strip {
        padding: 12px 0;
    }
    
    .social-icons {
        gap: 25px;
    }
    
    .social-icons a {
        font-size: 1.3rem;
    }
}

/* Update Footer Links Styling */
.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--white);
    padding-left: 0; /* Remove the left padding on hover */
}

/* Remove the underline and blue color from Quick Links and Our Services */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
    color: var(--white);
}

/* Make the text color consistent */
.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background: var(--secondary-color);
}

/* Testimonial Client Initial Styling */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.client-info div:last-child {
    text-align: left;
}

.client-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.client-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .client-initial {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Footer brand styling */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.footer-brand .company-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
}

@media (max-width: 768px) {
    .navbar-brand .company-name {
        font-size: 1.2rem;
    }
    
    .footer-brand .company-name {
        font-size: 1.1rem;
    }
    
    .navbar {
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .navbar .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar-brand {
        max-width: 70%;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .navbar-collapse {
        background-color: var(--navbar-bg);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        max-width: 100%;
    }
}

/* Update hero title styling */
.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 1s ease forwards 0.5s;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

/* Update CTA button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(45deg, var(--secondary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--border-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
    color: var(--white);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.stat-counter {
    text-align: center;
    margin: 1rem 0;
}

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

.stat-counter span:not(.counter) {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-counter p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Update Global Floating Background */
.floating-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.7; /* Increase visibility */
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-symbols span {
    position: absolute;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.25; /* Increased from 0.15 */
    animation: globalFloat 15s linear infinite;
}

/* Only show background in specific sections */
.hero-section,
.about-section,
.services-section {
    position: relative;
    z-index: 1;
    background-color: var(--bg-color);
}

/* Remove background from these sections */
.team-section,
.testimonials-section,
.contact-section,
.calculators-section,
.footer-section {
    position: relative;
    z-index: 1;
    background-color: var(--white);
}

/* Fix Parallax Section */
.calculators-section.bg-parallax {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), 
                url('https://i.ibb.co/c8STb87/finance-calculation.jpg') fixed center/cover !important;
    position: relative;
    z-index: 2;
}

/* Fix Footer Section */
.footer-section {
    background-color: var(--primary-color) !important;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.social-strip {
    background-color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

/* Update testimonials section */
.testimonials-section {
    position: relative;
    z-index: 1;
    background-color: var(--light-bg);
    overflow: visible;
}

/* Update particle visibility for these sections */
.testimonials-section .particles-background span {
    color: var(--secondary-color);
    opacity: 0.25;
}

/* Ensure content stays above particles */
.testimonials-section .container {
    position: relative;
    z-index: 2;
}

/* Add subtle parallax effect */
.testimonials-section {
    background: linear-gradient(rgba(248, 249, 250, 0.97), rgba(248, 249, 250, 0.97)),
                url('https://i.ibb.co/c8STb87/finance-calculation.jpg') fixed center/cover;
}

/* Remove old background styles */
.calculators-section.bg-parallax {
    background: none;
}

/* Update testimonial and calculator cards for better contrast */
.testimonial-card,
.calculators-section .feature-box {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Particles Background */
.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particles-background span {
    position: fixed;
    display: block;
    pointer-events: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.35;
    animation: particleFloat 15s linear infinite;
}

/* Position particles across viewport */
.particles-background span:nth-child(1) { top: 5%; left: 5%; animation-delay: 0s; }
.particles-background span:nth-child(2) { top: 15%; left: 25%; animation-delay: 2s; }
.particles-background span:nth-child(3) { top: 25%; left: 45%; animation-delay: 4s; }
.particles-background span:nth-child(4) { top: 35%; left: 65%; animation-delay: 6s; }
.particles-background span:nth-child(5) { top: 45%; left: 85%; animation-delay: 8s; }
.particles-background span:nth-child(6) { top: 55%; left: 15%; animation-delay: 10s; }
.particles-background span:nth-child(7) { top: 65%; left: 35%; animation-delay: 12s; }
.particles-background span:nth-child(8) { top: 75%; left: 55%; animation-delay: 14s; }
.particles-background span:nth-child(9) { top: 85%; left: 75%; animation-delay: 16s; }
.particles-background span:nth-child(10) { top: 10%; left: 95%; animation-delay: 18s; }
.particles-background span:nth-child(11) { top: 20%; left: 75%; animation-delay: 20s; }
.particles-background span:nth-child(12) { top: 30%; left: 55%; animation-delay: 22s; }
.particles-background span:nth-child(13) { top: 40%; left: 35%; animation-delay: 24s; }
.particles-background span:nth-child(14) { top: 50%; left: 15%; animation-delay: 26s; }
.particles-background span:nth-child(15) { top: 60%; left: 95%; animation-delay: 28s; }
.particles-background span:nth-child(16) { top: 70%; left: 75%; animation-delay: 30s; }
.particles-background span:nth-child(17) { top: 80%; left: 55%; animation-delay: 32s; }
.particles-background span:nth-child(18) { top: 90%; left: 35%; animation-delay: 34s; }
.particles-background span:nth-child(19) { top: 15%; left: 15%; animation-delay: 36s; }
.particles-background span:nth-child(20) { top: 25%; left: 95%; animation-delay: 38s; }
.particles-background span:nth-child(21) { top: 35%; left: 75%; animation-delay: 40s; }
.particles-background span:nth-child(22) { top: 45%; left: 55%; animation-delay: 42s; }
.particles-background span:nth-child(23) { top: 55%; left: 35%; animation-delay: 44s; }
.particles-background span:nth-child(24) { top: 65%; left: 15%; animation-delay: 46s; }

@keyframes particleFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.35;
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
        opacity: 0.25;
    }
    80% {
        opacity: 0.35;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0;
    }
}

/* Ensure content stays above particles */
.navbar,
.hero-section,
.about-section,
.services-section,
.team-section,
.testimonials-section,
.contact-section,
.calculators-section,
.footer-section,
.social-strip {
    position: relative;
    z-index: 1;
}

/* Adjust particle colors for dark sections */
.calculators-section .particles-background span,
.footer-section .particles-background span {
    color: var(--white);
    opacity: 0.15;
}

/* Make particles responsive */
@media (max-width: 768px) {
    .particles-background span {
        font-size: 1.2rem;
    }
}

/* Update testimonials and calculator sections */
.testimonials-section,
.calculators-section {
    position: relative;
    z-index: 1;
    background-color: var(--light-bg);
    overflow: visible;
}

/* Remove old parallax backgrounds */
.testimonials-section,
.calculators-section {
    background: var(--light-bg);
}

/* Update particle visibility for these sections */
.testimonials-section .particles-background span,
.calculators-section .particles-background span {
    color: var(--secondary-color);
    opacity: 0.35;
    font-size: 1.8rem;
}

/* Ensure content stays above particles */
.testimonials-section .container,
.calculators-section .container {
    position: relative;
    z-index: 2;
}

/* Update card backgrounds for better contrast */
.testimonial-card,
.calculators-section .feature-box {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Remove any old background styles */
.calculators-section.bg-parallax {
    background: none;
}

/* Add more particle positions for these sections */
.testimonials-section .particles-background span:nth-child(1) { top: 10%; right: 10%; }
.testimonials-section .particles-background span:nth-child(2) { top: 30%; right: 30%; }
.testimonials-section .particles-background span:nth-child(3) { top: 50%; right: 15%; }
.testimonials-section .particles-background span:nth-child(4) { top: 70%; right: 25%; }
.testimonials-section .particles-background span:nth-child(5) { top: 90%; right: 20%; }

.calculators-section .particles-background span:nth-child(1) { top: 15%; left: 15%; }
.calculators-section .particles-background span:nth-child(2) { top: 35%; left: 25%; }
.calculators-section .particles-background span:nth-child(3) { top: 55%; left: 10%; }
.calculators-section .particles-background span:nth-child(4) { top: 75%; left: 30%; }
.calculators-section .particles-background span:nth-child(5) { top: 85%; left: 20%; }

/* Update particle visibility and positioning for specific sections */
.testimonials-section,
.calculators-section {
    position: relative;
    z-index: 1;
    background-color: var(--light-bg);
    overflow: visible;
}

/* Create section-specific particles */
.testimonials-section::before,
.calculators-section::before,
.testimonials-section .particles-background,
.calculators-section .particles-background {
    display: none;
}

/* Update testimonials and calculator sections */
.testimonials-section,
.calculators-section {
    position: relative;
    z-index: 1;
    background-color: var(--light-bg);
    overflow: visible;
}

/* Make particles visible in these sections */
.testimonials-section .particles-background span,
.calculators-section .particles-background span {
    position: absolute;
    display: block;
    pointer-events: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    opacity: 0.35;
    animation: sectionFloat 15s linear infinite;
}

/* Ensure content stays above particles */
.testimonials-section .container,
.calculators-section .container {
    position: relative;
    z-index: 2;
}

/* Update card backgrounds */
.testimonial-card,
.calculators-section .feature-box {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Remove any old background styles */
.calculators-section.bg-parallax {
    background: none !important;
}

/* Add new particle container for these sections */
.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.section-particles span {
    position: absolute;
    font-size: 1.8rem;
    color: var(--secondary-color);
    opacity: 0.35;
    animation: sectionFloat 15s linear infinite;
}

/* Position particles */
.section-particles span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.section-particles span:nth-child(2) { top: 20%; right: 20%; animation-delay: 2s; }
.section-particles span:nth-child(3) { top: 30%; left: 30%; animation-delay: 4s; }
.section-particles span:nth-child(4) { top: 40%; right: 40%; animation-delay: 6s; }
.section-particles span:nth-child(5) { top: 50%; left: 50%; animation-delay: 8s; }
.section-particles span:nth-child(6) { top: 60%; right: 30%; animation-delay: 10s; }
.section-particles span:nth-child(7) { top: 70%; left: 70%; animation-delay: 12s; }
.section-particles span:nth-child(8) { top: 80%; right: 20%; animation-delay: 14s; }

@keyframes sectionFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
        opacity: 0.35;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.2;
    }
}

/* Ensure content stays above particles */
.testimonials-section .container,
.calculators-section .container {
    position: relative;
    z-index: 2;
}

/* Update card backgrounds */
.testimonial-card,
.calculators-section .feature-box {
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Remove any old background styles */
.calculators-section.bg-parallax {
    background: none !important;
}

/* Create a reusable particle effect class */
.has-particles {
    position: relative;
    overflow: visible;
}

.has-particles::before {
    content: '₹ % $ ₹ % $ ₹ % $ ₹ % $';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    color: var(--secondary-color);
    opacity: 0.35;
    white-space: break-spaces;
    word-spacing: 5rem;
    line-height: 8rem;
    pointer-events: none;
    animation: floatSymbol 15s linear infinite;
    z-index: 0;
}

/* Ensure content stays above particles */
.has-particles > .container {
    position: relative;
    z-index: 1;
}

/* Add smooth scroll behavior to html */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 76px; /* Add padding for smooth scroll with fixed navbar */
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

/* Global Particles Effect */
.global-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    max-width: 100%;
}

.global-particles span {
    position: fixed;
    display: block;
    font-size: 1.8rem;
    color: var(--secondary-color);
    opacity: 0.15;
    animation: globalFloat 15s linear infinite;
}

/* Position particles across the viewport */
.global-particles span:nth-child(1) { top: 5%; left: 5%; animation-delay: 0s; }
.global-particles span:nth-child(2) { top: 15%; left: 25%; animation-delay: 2s; }
.global-particles span:nth-child(3) { top: 25%; left: 45%; animation-delay: 4s; }
.global-particles span:nth-child(4) { top: 35%; left: 65%; animation-delay: 6s; }
.global-particles span:nth-child(5) { top: 45%; left: 85%; animation-delay: 8s; }
.global-particles span:nth-child(6) { top: 55%; left: 15%; animation-delay: 10s; }
.global-particles span:nth-child(7) { top: 65%; left: 35%; animation-delay: 12s; }
.global-particles span:nth-child(8) { top: 75%; left: 55%; animation-delay: 14s; }
.global-particles span:nth-child(9) { top: 85%; left: 75%; animation-delay: 16s; }
.global-particles span:nth-child(10) { top: 95%; left: 95%; animation-delay: 18s; }
.global-particles span:nth-child(11) { top: 10%; right: 15%; animation-delay: 1s; }
.global-particles span:nth-child(12) { top: 20%; right: 35%; animation-delay: 3s; }
.global-particles span:nth-child(13) { top: 30%; right: 55%; animation-delay: 5s; }
.global-particles span:nth-child(14) { top: 40%; right: 75%; animation-delay: 7s; }
.global-particles span:nth-child(15) { top: 50%; right: 95%; animation-delay: 9s; }
.global-particles span:nth-child(16) { top: 60%; right: 15%; animation-delay: 11s; }
.global-particles span:nth-child(17) { top: 70%; right: 35%; animation-delay: 13s; }
.global-particles span:nth-child(18) { top: 80%; right: 55%; animation-delay: 15s; }
.global-particles span:nth-child(19) { top: 90%; right: 75%; animation-delay: 17s; }
.global-particles span:nth-child(20) { top: 95%; right: 95%; animation-delay: 19s; }

@keyframes globalFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    25% {
        opacity: 0.15;
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
        opacity: 0.1;
    }
    75% {
        opacity: 0.15;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0;
    }
}

/* Ensure all sections have proper background transparency */
section {
    position: relative;
    z-index: 1;
    background-color: var(--bg-color);
}

/* Ensure bg-light class respects theme */
.bg-light {
    background-color: var(--light-bg) !important;
}

/* Adjust dark sections */
.footer-section {
    background-color: #121920 !important;
}

.social-strip {
    background-color: var(--secondary-color) !important;
}

/* Make particles responsive */
@media (max-width: 768px) {
    .global-particles span {
        font-size: 1.4rem;
    }
}
