/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f4f6f8; /* Light gray background */
    --text-color: #1f2937; /* Dark gray text */
    --accent-color: #007bff; /* Standard blue accent */
    --secondary-bg: #ffffff; /* White secondary background */
    --card-bg: #ffffff; /* White card background */
    --hover-color: #0056b3; /* Darker blue for hover */
    --gradient-1: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Blue gradient */
    --gradient-2: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%); /* Light gray gradient */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 5px 5px rgba(0, 0, 0, 0.05);
    --border-radius: 8px; /* Slightly smaller border radius for a cleaner look */
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95); /* Use --secondary-bg with opacity */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm); /* Lighter shadow for light theme */
    transition: var(--transition-fast);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    text-decoration: none;
    gap: 1.2rem;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 220px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    transition: var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.05) rotate(3deg);
    filter: drop-shadow(0 6px 12px rgba(58, 128, 255, 0.3));
}

.logo-text {
    color: var(--text-color);
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.1;
    transition: var(--transition-fast);
}

.logo-text span {
    display: block;
    font-size: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-color); /* Use text color for nav links */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-color);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-color); /* Already uses text-color, should be fine */
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Particles */
#particles-js,
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.9)),
                url('assets/hero-bg.jpg') center/cover; /* Lighter overlay */
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 123, 255, 0.1), transparent 70%); /* Adjusted gradient for light theme */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s 0.2s both;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-color); /* Use text color */
    opacity: 0.85; /* Slightly less prominent than headings */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s 0.4s both;
}

.hero .cta-button {
    animation: fadeInUp 1s 0.6s both;
}

/* Enhanced Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--bg-color); /* Use main background for features section */
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--secondary-bg); /* This should be the section above features */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s both;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 2rem 0;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Light border for cards */
    overflow: hidden;
    animation: fadeInUp 1s both;
    animation-delay: calc(var(--order, 0) * 0.2s);
}

.feature-card:nth-child(1) {
    --order: 1;
}

.feature-card:nth-child(2) {
    --order: 2;
}

.feature-card:nth-child(3) {
    --order: 3;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(58, 128, 255, 0.1);
    text-align: center;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    background: rgba(58, 128, 255, 0.2);
}

.feature-icon i {
    color: var(--accent-color);
    font-size: 2.5rem;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon i {
    color: var(--accent-color); /* Keep accent color on hover for icon */
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-color);
    opacity: 0.75;
    line-height: 1.7;
}

/* Services Page */
.services {
    padding: 6rem 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.pricing-card {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.08); /* Light border */
}

.pricing-card.featured {
    border: 1px solid var(--accent-color); /* Accent border for featured card */
    background-image: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 86, 179, 0.05)); /* Lighter gradient */
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured::before {
    content: "Popular";
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    font-weight: 700;
}

.price .amount {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.period {
    font-size: 1rem;
    color: var(--text-color);
    opacity: 0.6;
    font-weight: 400;
}

.total {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0 1rem;
}

.features-list li {
    margin: 0.8rem 0;
    color: var(--text-color);
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.additional-services {
    padding: 6rem 0;
    background-color: var(--bg-color); /* Use main background */
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.08); /* Light border */
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.service-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.service-card ul li {
    margin: 0.8rem 0;
    color: var(--text-color);
    opacity: 0.8;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-card .price {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin: 1rem 0;
}

/* About Page */
.about-header {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95)),
                url('assets/hero-bg.jpg') center/cover; /* Lighter overlay */
}

.about-header .subtitle {
    color: var(--text-color);
    opacity: 0.85;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.capabilities {
    padding: 6rem 0;
    background-color: var(--bg-color); /* Use main background */
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.capability-card {
    background-color: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.08); /* Light border */
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.capability-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(0, 123, 255, 0.1); /* Adjusted alpha for light theme */
    text-align: center;
}

.capability-card .icon i {
    color: var(--accent-color);
    font-size: 2.2rem;
}

.mission {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.mission p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.8;
}

.contact {
    padding: 6rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15); /* Darker border for inputs */
    border-radius: 8px;
    background-color: #ffffff; /* White background for inputs */
    color: var(--text-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #ffffff; /* Keep white on focus */
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2); /* Adjusted focus shadow */
}

.contact-info {
    padding: 2rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item .icon {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    background: rgba(0, 123, 255, 0.1); /* Adjusted alpha for light theme */
    padding: 1rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
}

.info-item .icon i {
    font-size: 1.5rem;
}

.info-item .details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map {
    margin-top: 3rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%; /* Ensure map container takes full available width */
}

.map iframe {
    border-radius: var(--border-radius);
    max-width: 100%; /* Prevent iframe from overflowing its container */
    display: block; /* Remove extra space below iframe */
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--gradient-1);
    color: #ffffff; /* White text on button for contrast */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3); /* Adjusted shadow color */
    position: relative;
    border-radius: 50px;
}

.cta-button:before {
    content: '';
    position: absolute;
    transition: all 0.5s ease;
    top: 0;
    left: 0;
    border-radius: 50px;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%); /* Darker blue gradient for hover */
    z-index: -1;
}

.cta-button:hover {
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.cta-button:hover:before {
    width: 100%;
}

/* Main Footer Styling */
.main-footer {
    background-color: #e9ecef; /* Light gray for footer background */
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Darker border */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)); /* Lighter shadow */
}

.footer-newsletter h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-color);
}

.footer-newsletter p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0.75;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(0,0,0,0.15);
    border-right: none;
    border-radius: 50px 0 0 50px;
    background-color: #ffffff;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 0 50px 50px 0;
    background: var(--gradient-1);
    color: #ffffff; /* White text on button */
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    filter: brightness(1.1);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Darker border */
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    color: var(--text-color);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-color);
    opacity: 0.75;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-col p {
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.75;
}

.footer-info p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05); /* Lighter background for icons */
    color: var(--text-color);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--gradient-1);
    color: #ffffff; /* White icon color on hover */
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    color: var(--text-color);
    opacity: 0.65;
}

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #ffffff; /* Ensure icon is visible */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Lighter shadow */
    transition: var(--transition-fast);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4); /* Adjusted hover shadow */
}

/* Animation & Special Effects */
.fadeIn {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Play button styling */
.play-button {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 0 0 10px rgba(58, 128, 255, 0.2);
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.play-button i {
    color: #ffffff; /* Keep white for contrast on accent background */
    font-size: 1.5rem;
    margin-left: 4px;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(58, 128, 255, 0.15);
    animation: none;
}

/* Form messages */
.form-message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    animation: fadeIn 0.5s both;
}

.form-message.success {
    background-color: rgba(46, 213, 115, 0.15);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

.form-message.error {
    background-color: rgba(255, 71, 87, 0.15);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

/* Add scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e9ecef; /* Light gray for scrollbar track */
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 123, 255, 0.4); /* Slightly darker blue for thumb */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 123, 255, 0.6); /* Darker blue on hover */
}

/* Optional: Add a selection style for better UX */
::selection {
    background-color: rgba(0, 123, 255, 0.25); /* Lighter blue for selection */
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .footer-middle {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--secondary-bg); /* This is now white, which is good */
        padding: 1rem;
        box-shadow: var(--shadow-sm); /* Lighter shadow */
        gap: 0;
        z-index: 10;
        border-top: 1px solid rgba(0,0,0,0.05); /* Add a subtle top border */
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-middle {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-newsletter {
        width: 100%;
    }
    
    .footer-col h4::after {
        width: 80px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-text span {
        font-size: 0.9rem;
    }

    .feature-card, 
    .pricing-card,
    .service-card,
    .capability-card {
        padding: 1.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .video-box {
        aspect-ratio: 16/10;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        box-shadow: 0 0 0 8px rgba(58, 128, 255, 0.2);
    }
    
    .play-button i {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .feature-grid,
    .pricing-grid,
    .services-grid,
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logo {
        gap: 0.8rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero {
        padding: 5rem 0 3rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4::after {
        margin: 0 auto;
        left: 0;
        right: 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        box-shadow: 0 0 0 6px rgba(58, 128, 255, 0.2);
    }
    
    .play-button i {
        font-size: 1.1rem;
    }
}

/* Additional improvements for very small screens */
@media (max-width: 360px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-text span {
        font-size: 0.7rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(9, 11, 19, 0.9), rgba(9, 11, 19, 0.95)),
                url('assets/hero-bg.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(58, 128, 255, 0.15), transparent 60%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Section Titles */
.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(56, 56, 56, 0.7);
    font-size: 1.1rem;
}

/* Add a light shine effect to featured elements */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    20% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Menu open state */
body.menu-open {
    overflow: hidden;
}

/* Video Showcase Section */
.video-showcase {
    padding: 6rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--secondary-bg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.video-box {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--card-bg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-box iframe,
.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 31, 46, 0.9) 0%, rgba(9, 11, 19, 0.8) 100%);
    z-index: 1;
}

.video-placeholder img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-info {
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}