:root {
    --primary: #FF7D00;
    --primary-dark: #E37100;
    --secondary: #003F88;
    --secondary-dark: #002D62;
    --accent: #00A6FB;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --white: #FFFFFF;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

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

section {
    padding: 20px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 125, 0, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 125, 0, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 63, 136, 0.3);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 63, 136, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--secondary);
    line-height: 1;
}

.logo-text span:last-child {
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 1px;
    margin-top: 2px;
}

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

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

header.scrolled nav ul li a {
    color: var(--dark);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

header.scrolled .mobile-menu {
    color: var(--dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/hero-road-marking.jpg') no-repeat center center/cover;
    z-index: -1;
    animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    color: var(--white);
}

.hero h1 {
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    padding: 15px 35px;
    font-size: 16px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Features Section */
.features {
    background-color: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--light), transparent);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
    height: 10px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 125, 0, 0.1), rgba(0, 166, 251, 0.1));
    border-radius: 50%;
    color: var(--primary);
    font-size: 36px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
    font-size: 16px;
}

/* Products Section */
.products {
    background-color: var(--light);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-img {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    height: 110%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-info p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.product-specs {
    margin-bottom: 20px;
}

.product-spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.product-spec span:first-child {
    color: var(--gray);
}

.product-spec span:last-child {
    font-weight: 500;
    color: var(--dark);
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.product-actions .btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(0, 166, 251, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-img {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

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

.about-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 15px;
    z-index: -1;
    transition: var(--transition);
}

.about-img:hover::before {
    top: 15px;
    left: 15px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 125, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.about-feature-text p {
    margin-bottom: 0;
    font-size: 15px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    text-align: center;
    gap: 20px;
}

.stat-item {
    padding: 20px;
    background-color: rgba(0, 63, 136, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.stat-item:hover {
    background-color: rgba(255, 125, 0, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-text {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

.author-company {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--gray);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 3;
    transition: var(--transition);
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--primary);
    color: var(--white);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev::before, .slick-next::before {
    color: var(--primary);
    font-size: 24px;
    opacity: 1;
    transition: var(--transition);
}

.slick-prev:hover::before, .slick-next:hover::before {
    color: var(--white);
}

/* Contact Section */
.contact {
    background-color: var(--white);
    position: relative;
}

/* .contact::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 125, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
} */

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-info p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 63, 136, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-text a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 63, 136, 0.1);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background-color: var(--light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

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

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 125, 0, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btns .btn {
    padding: 15px 35px;
    font-size: 16px;
}

.cta-btns .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.cta-btns .btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 50px 0 0;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-bottom: 10px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-about p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact .contact-item {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--primary-dark);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    opacity: 0.8;
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
    padding: 100px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
    z-index: 1;
}

.testimonial-slider {
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
    margin: 0 15px; /* Space between cards in slider */
}

.testimonial-text {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.6;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.client-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-sm);
}

.author-info {
    text-align: left;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.author-info p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 0;
}

.author-company {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
}

/* Slick Carousel Overrides (for dots and arrows) */
.slick-dots {
    bottom: -50px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--gray);
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: var(--primary);
    opacity: 1;
}

.slick-prev, .slick-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 3;
    transition: var(--transition);
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--primary);
    color: var(--white);
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-prev::before, .slick-next::before {
    color: var(--primary);
    font-size: 24px;
    opacity: 1;
    transition: var(--transition);
}

.slick-prev:hover::before, .slick-next:hover::before {
    color: var(--white);
}

/* Responsive adjustments for testimonials */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
    }

    .author-info h4 {
        font-size: 16px;
    }

    .author-info p {
        font-size: 13px;
    }

    .slick-prev {
        left: 0px; /* Adjust for smaller screens */
    }

    .slick-next {
        right: 0px; /* Adjust for smaller screens */
    }
}

@media (max-width: 576px) {
    .testimonial-card {
        margin: 0 5px;
    }
}


/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-img {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-info {
        padding-right: 0;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        padding: 20px;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0 0 15px 0;
    }

    nav ul li a {
        color: var(--dark);
        padding: 10px 0;
        display: block;
    }

    header.scrolled nav {
        top: 80px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .slick-prev {
        left: -15px;
    }

    .slick-next {
        right: -15px;
    }
}

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

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

    .hero {
        min-height: 700px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: 26px;
    }

}