:root {
    --primary: #0f99a6;
    --secondary: #1e4c6d;
    --accent1: #f9802f;
    --accent2: #e45743;
    --gradient-primary: linear-gradient(135deg, #0f99a6, #1e4c6d);
    --gradient-accent: linear-gradient(135deg, #f9802f, #e45743);
    --gradient-overlay: linear-gradient(135deg, rgba(15, 153, 166, 0.1), rgba(30, 76, 109, 0.1));
    --gradient-accent-overlay: linear-gradient(135deg, rgba(249, 128, 47, 0.1), rgba(228, 87, 67, 0.1));
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Enhanced Section Headers */
.section-header {
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent1));
    border-radius: 2px;
}

/* Navbar Styles */
.navbar {
    background-color: var(--secondary);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(30, 76, 109, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo-img {
    height: 50px;
    background: white;
}

.brand-text {
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.nav-link {
    color: white !important;
    margin: 0 5px;
    padding: 0.5rem 1rem !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-link:hover i {
    transform: translateY(-2px);
}

.nav-link.dropdown-toggle::after {
    margin-left: 4px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    transition: all 0.3s ease;
}

.nav-link.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.hero-title .line-1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 5px;
    line-height: 1.1;
}

.hero-title .gradient-text {
    font-size: 4rem;
    background: linear-gradient(45deg, var(--accent1), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1rem;
}

.feature i {
    color: var(--accent1);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.hero-buttons .btn-primary {
    background: var(--accent1);
    color: white;
    border: none;
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
}

.hero-buttons .btn-primary:hover {
    background: var(--accent2);
    box-shadow: 0 10px 20px rgba(249, 128, 47, 0.3);
}

.hero-buttons .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.hero-image-container {
    position: relative;
    padding: 20px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent1);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: var(--secondary);
}

.stats-card {
    position: absolute;
    bottom: 40px;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
}

.stats-card .stat {
    text-align: center;
}

.stats-card .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent1);
    line-height: 1;
}

.stats-card .label {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-top: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        padding: 37px 0 60px;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-title .line-1 {
        font-size: 2.5rem;
    }
    
    .hero-title .gradient-text {
        font-size: 3.5rem;
    }

    .hero-image-container {
        margin-top: 40px;
    }

    .experience-badge {
        top: 20px;
        right: 20px;
    }

    .stats-card {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title .line-1 {
        font-size: 2rem;
    }
    
    .hero-title .gradient-text {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        justify-content: center;
    }
}

/* Enhanced Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(15, 153, 166, 0.1), rgba(30, 76, 109, 0.1));
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stat-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent1));
    opacity: 0;
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stat-item:hover::before {
    opacity: 0.05;
}

.stat-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.stat-item:hover i {
    color: var(--accent1);
    transform: scale(1.2);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 1.1rem;
}

/* CC Camera Section */
.cc-camera-section {
    background: linear-gradient(135deg, rgba(15, 153, 166, 0.1), rgba(30, 76, 109, 0.1));
    position: relative;
    overflow: hidden;
}

.cc-camera-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M0 0h2v2H0z" fill="rgba(15,153,166,0.1)"/></svg>');
    opacity: 0.1;
}

/* SEO Section */
.seo-section {
    background: linear-gradient(135deg, rgba(249, 128, 47, 0.1), rgba(228, 87, 67, 0.1));
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M0 0h2v2H0z" fill="rgba(249,128,47,0.1)"/></svg>');
    opacity: 0.1;
}

/* Digital Services Section */
.digital-services-section {
    background: linear-gradient(135deg, rgba(249, 128, 47, 0.1), rgba(228, 87, 67, 0.1));
    position: relative;
    overflow: hidden;
}

.digital-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M0 0h2v2H0z" fill="rgba(249,128,47,0.1)"/></svg>');
    opacity: 0.1;
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
    background-color: rgba(30, 76, 109, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 20px;
    width: 10px;
    height: 10px;
    background-color: rgba(30, 76, 109, 0.95);
    transform: rotate(45deg);
}

.dropdown-item {
    color: white !important;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-link.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Enhanced Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent1));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card img {
    height: 250px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    background: white;
    position: relative;
    z-index: 1;
}

.service-card .service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--accent1);
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    align-self: center;
    margin-top: auto;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
}

.feature-item {
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-item h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(15, 153, 166, 0.05), rgba(30, 76, 109, 0.05));
    position: relative;
    overflow: hidden;
}

.testimonial-carousel {
    padding: 20px 0;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    margin-top: 0;
}

.testimonial-carousel .owl-prev,
.testimonial-carousel .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-prev {
    left: -25px;
}

.testimonial-carousel .owl-next {
    right: -25px;
}

.testimonial-carousel .owl-prev:hover,
.testimonial-carousel .owl-next:hover {
    background: var(--accent1) !important;
    color: white !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
}

.testimonial-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(15, 153, 166, 0.2);
    margin: 5px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active span {
    background: var(--accent1);
    transform: scale(1.5);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin: 15px;
    text-align: center;
}

.testimonial-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.2;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-info h5 {
    margin: 0;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.author-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-section {
    background: linear-gradient(135deg, rgba(15, 153, 166, 0.05), rgba(30, 76, 109, 0.05));
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
    max-width: 1400px;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M0 0h2v2H0z" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.info-header {
    margin-bottom: 40px;
}

.info-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-item:hover .icon-wrapper {
    background: var(--accent1);
    transform: rotateY(180deg);
}

.info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent1);
    transform: translateY(-5px);
    color: white;
}

.form-container {
    padding: 40px;
    background: white;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h4 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.input-group {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.input-group:focus-within {
    background: white;
    border-color: var(--accent1);
    box-shadow: 0 0 0 4px rgba(249, 128, 47, 0.1);
}

.input-group-text {
    background: transparent;
    border: none;
    color: var(--primary);
    padding: 15px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-control {
    border: none;
    padding: 15px;
    background: transparent;
    font-size: 0.95rem;
    height: auto;
}

.form-control:focus {
    box-shadow: none;
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--accent1), var(--accent2));
    border: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 128, 47, 0.3);
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        margin: 0 15px;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .form-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 25px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .form-header h4 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 15px;
    }
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent1);
    transform: translateY(-5px);
}

.footer h5 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent1);
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer ul li a:hover {
    color: white;
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .testimonial-card {
        margin-bottom: 30px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent1), var(--accent2));
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent2), var(--accent1));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 128, 47, 0.3);
    color: white;
}

/* Offcanvas Menu Styles */
.offcanvas {
    background: var(--secondary);
    border-left: none;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: white;
    font-weight: 600;
}

.offcanvas .navbar-nav {
    padding: 1rem 0;
}

.offcanvas .nav-link {
    padding: 0.8rem 1.5rem;
    color: white !important;
   
}

.offcanvas .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.offcanvas .dropdown-menu {
    background: rgba(30, 76, 109, 0.95);
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0.5rem 0;
}

.offcanvas .dropdown-item {
    padding: 0.8rem 2rem;
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .dropdown-item:last-child {
    border-bottom: none;
}

.offcanvas .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.offcanvas .btn-close-white {
    filter: brightness(0) invert(1);
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
} 