* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
}

/* Navigation Container */
.navbar {
    background-color: #3a3a3a;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Color bars at top and bottom */
.color-bar {
    height: 6px;
    display: flex;
}

.color-bar-segment {
    flex: 1;
}

.magenta {
    background-color: #E70D88;
}

.cyan {
    background-color: #2CABE2;
}

.yellow {
    background-color: #F1EC0E;
}

/* Main navigation content */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    min-height: 100px;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

/* Navigation menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-link:hover {
    color: #2CABE2;
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Desktop dropdown arrow rotation */
@media (min-width: 769px) {
    .nav-item:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Dropdown menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d2d2d;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
    border-top: 3px solid #2CABE2;
}

/* Desktop hover effect only */
@media (min-width: 769px) {
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

@media (min-width: 769px) {
    .dropdown-item:hover {
        background-color: #3a3a3a;
        color: #2CABE2;
        padding-left: 2rem;
    }
}

/* Active/Current page indicator */
.nav-link.active {
    color: #F1EC0E;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F1EC0E;
}

/* Mobile menu button (hidden by default) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
}

/* Demo content */
.content {
    margin-top: 100px;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content h1 {
    color: #333;
    margin-bottom: 1rem;
}

.content p {
    color: #666;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 78px; /* Account for fixed navbar */
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Audio Control Button */
.audio-control-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.audio-control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.audio-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

/* Hero Content */
.hero-content {
    text-align: start;
    color: white;
    padding: 2rem;
    max-width: 700px;
    animation: fadeInUp 3s ease-out;
    margin: auto auto;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: -1px;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

/* CTA Button with Glowing Effect */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E, #E70D88);
    background-size: 300% 100%;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: glowingAnimation 3s linear infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E, #E70D88);
    background-size: 300% 100%;
    border-radius: 50px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
    animation: glowingAnimation 3s linear infinite;
}

/* Glowing animation */
@keyframes glowingAnimation {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #e9ecef;
    position: relative;
    overflow: hidden;
}

/* Placeholder styling for images */
.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E70D88 0%, #2CABE2 50%, #F1EC0E 100%);
    opacity: 0.2;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: #2CABE2;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.service-link::after {
    content: '→';
    font-size: 1.2rem;
}

/* Color accents for each service */
.service-card:nth-child(1) .service-link { color: hsl(326, 89%, 48%); }
.service-card:nth-child(2) .service-link { color: hsl(198, 76%, 53%); }
.service-card:nth-child(3) .service-link { color: hsl(59, 89%, 40%); text-shadow: 1px 1px 2px hsla(0, 0%, 0%, 0.1); }
.service-card:nth-child(4) .service-link { color: hsl(326, 89%, 48%); }

@media (max-width: 800px) {
    .services-section {
        padding: 3rem 1rem;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Logo Carousel Section */
.logo-carousel-section {
    padding: 5rem 2rem;
    background-color: white;
    overflow: hidden;
}

.logo-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-carousel-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.logo-carousel-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* Logo carousel wrapper */
.logo-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.logo-carousel {
    display: flex;
    animation: scroll 15s linear infinite;
}

.logo-carousel:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.2);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Specific sizing for Boston College logo */
.logo-item img[alt="Boston College"] {
    max-height: 70%;
}

/* Duplicate logos for seamless loop */
.logo-carousel-track {
    display: flex;
    width: fit-content;
}

/* Infinite scroll animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradient overlays for smooth edges */
.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    position: relative;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.testimonials-header {
    max-width: 400px;
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

/* Slider container */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    padding-left: 0;
}


.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E70D88, #2CABE2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.author-company {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    color: #F1EC0E;
    font-size: 1.2rem;
}

/* Slider controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #333;
}

.slider-btn:hover {
    border-color: #2CABE2;
    color: #2CABE2;
    transform: scale(1.1);
}

/* Dots indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #2CABE2;
    width: 30px;
    border-radius: 5px;
}

/* Mobile responsiveness */
@media (max-width: 968px) {
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-slide {
        padding: 2rem;
    }

    .testimonial-content {
        font-size: 1.1rem;
    }

    .slider-controls {
        margin-top: 1rem;
    }

    /* Audio control button mobile adjustments */
    .audio-control-btn {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .audio-icon {
        width: 20px;
        height: 20px;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2CABE2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload Styling */
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 1rem;
    border: 2px dashed #2CABE2;
    border-radius: 5px;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    background-color: #e3f2fd;
    border-color: #E70D88;
}

.file-upload-text {
    color: #666;
    font-size: 1rem;
}

.file-upload-icon {
    font-size: 2rem;
    color: #2CABE2;
    margin-bottom: 0.5rem;
}

.submit-btn {
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E);
    background-size: 200% 100%;
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-image {
        order: 2;
    }

    .content-text {
        order: 1;
    }

    .service-banner h1 {
        font-size: 2.5rem;
    }

    .service-banner p {
        font-size: 1.2rem;
    }

    .image-collage {
        height: 400px;
    }
}

/* Service Area Section */
.service-area-section {
    padding: 5rem 2rem;
    background-color: white;
}

.service-area-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Map Side */
.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 500px;
    background-color: #f0f0f0;
}

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

/* You can also use an iframe for interactive Google Maps */
.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Info Side */
.info-container {
    padding: 2rem;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E);
}

.info-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2CABE2;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: #2CABE2;
    color: white;
    transform: translateY(-2px);
}

.contact-details {
    flex-grow: 1;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-value {
    color: #666;
    line-height: 1.6;
}

.contact-value a {
    color: #2CABE2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #E70D88;
}

/* Service Areas List */
.service-areas {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.service-areas-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.areas-list {
    color: #666;
    line-height: 1.8;
    columns: 2;
    column-gap: 2rem;
}

/* Alternative grid layout for areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-area-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 400px;
        order: 2;
    }

    .info-container {
        order: 1;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .service-area-section {
        padding: 3rem 1rem;
    }

    .info-title {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .areas-list {
        columns: 1;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Footer (same as other pages) */
.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #3a3a3a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2CABE2;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-info {
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.footer-info a:hover {
    color: #F1EC0E;
}

.footer-separator {
    color: #666;
    margin: 0 0.5rem;
}


/* Responsive design */
@media (max-width: 968px) {
    .nav-content {
        padding: 0.75rem 1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .logo-text .company-name {
        font-size: 20px;
    }

    .dropdown {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: #3a3a3a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        z-index: 999;
        height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #232323;
        margin: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        display: none;
        width: 100%;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .dropdown-item {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 14px;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .dropdown-item:hover {
        background-color: #1a1a1a;
        color: #2CABE2;
        padding: 0.75rem 2rem;
    }

    .logo-text .tagline {
        display: none;
    }
}