
:root {
    --primary: #0c5adb;
    --secondary: #1e3a8a;
    --light: #f8f9fa;
    --dark: #212529;
    --text: #333;
    --accent: #ffffff;
    --card-bg: #ffffff;
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --card-hover-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
}

/* Modern Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    border: 2px solid var(--light);
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    }

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--light);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    scroll-behavior: smooth;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
}

.navbar {
    height: 70px;
}

.navbar-brand {
    color: var(--accent) !important;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--accent) !important;
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent);
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
        width: 70%;
    }

.navbar-toggler {
    border: none;
    z-index: 1000;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.login-btn {
    background: var(--secondary);
    color: var(--accent) !important;
    border: none;
    transition: all 0.3s ease;
}

    .login-btn:hover {
        background: var(--primary);
        color: var(--accent) !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.logo {
    height: 50px;
    width: auto;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

    .hero h1 {
        font-weight: 700;
        letter-spacing: -1px;
        line-height: 1.2;
    }

.btn {
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 600;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--primary);
    }

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

    .image-container img {
        transition: transform 0.5s ease;
        object-fit: cover;
        width: 100%;
    }

    .image-container:hover img {
        transform: scale(1.1);
    }

    .image-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%);
        z-index: 1;
    }

.feature-card, .product-card, .team-card, .testimonials .card {
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    border: none;
}

    .feature-card:hover, .product-card:hover, .team-card:hover, .testimonials .card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: var(--card-hover-shadow);
    }

    .feature-card i {
        color: var(--primary);
    }

    .product-card img {
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .product-card:hover img {
        transform: scale(1.1);
    }

    .product-card .card-body {
        padding: 1.8rem;
    }

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    transition: all 0.4s ease;
    border: 4px solid var(--light);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-card:hover .team-img {
    transform: scale(1.1);
}

.team-card .card-body {
    padding: 1.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--secondary);
        transform: translateY(-3px);
    }

.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
}

.stat-box {
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
   
    backdrop-filter: blur(10px);
    padding: 2rem;
}

    .stat-box:hover {
        transform: scale(1.05);
 
    }

.fa-check-circle, .fa-users, .fa-calendar-alt {
    color: var(--accent);
}

.stats h1 {
    font-weight: 800;
}

.services img {
    border-radius: var(--border-radius);
}

.service-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--light);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

    .service-list li:hover {
        background: var(--primary);
        color: var(--accent);
        transform: translateX(10px);
    }

    .service-list li i {
        font-size: 1.2rem;
    }

.testimonials .card {
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.testimonial-rating {
    font-size: 1.2rem;
}

.contact iframe {
    border-radius: var(--border-radius);
}

.faq .accordion-button {
    border-radius: 10px;
    background: var(--light);
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

    .faq .accordion-button:not(.collapsed) {
        background: var(--primary);
        color: var(--accent);
    }

.faq .accordion-body {
    padding: 20px;
}

footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.footer-services li, .footer-contact li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.footer-text {
    line-height: 1.8;
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

/* Enhanced Swiper Styles with Modern Dots */
.swiper {
    width: 100%;
    padding: 30px 10px 60px;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent);
    background: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    visibility:hidden;
}

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: var(--secondary);
        transform: translateY(-50%) scale(1.1);
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 24px;
        font-weight: bold;
    }

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    margin: 5px 6px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.4);

}

/* Enhanced Modal Styles */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--accent);
    border-bottom: none;
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 2rem;
}

.btn-close {
    filter: invert(1);
}

/* Dot Indicators for Section Navigation */
.section-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(12, 90, 219, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .section-dot.active {
        background: var(--primary);
        transform: scale(1.3);
    }

    .section-dot::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 2px solid transparent;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }

    .section-dot:hover::after {
        border-color: rgba(12, 90, 219, 0.2);
    }

    .section-dot.active::after {
        border-color: rgba(12, 90, 219, 0.3);
        width: 28px;
        height: 28px;
    }

/* Simple Bounce-In Animation */
@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.animate-icon {
    animation: bounceIn 1.5s ease;
}
.alert {
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}
/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(12, 90, 219, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(12, 90, 219, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(12, 90, 219, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
        padding: 15px 0;
    }

    .navbar-collapse {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        margin-top: 10px;
    }

    .navbar-nav .nav-link {
        color: var(--accent) !important;
        display: block;
        padding: 10px 0 !important;
    }

    .navbar-toggler {
        padding: 0.25rem 0.75rem;
    }

    .hero {
        margin-top: 20px;
        text-align: center;
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero .btn {
            margin-bottom: 10px;
            display: block;
            width: 100%;
        }

        .hero .me-3 {
            margin-right: 0 !important;
        }

    .section-title {
        font-size: 2rem;
    }

    .stats h1.display-4 {
        font-size: 2.5rem;
    }

    .team-img {
        width: 120px;
        height: 120px;
    }

    .contact iframe {
        height: 300px;
        margin-bottom: 20px;
    }

    .product-card img {
        height: 150px;
    }

    .swiper {
        padding: 20px 0 50px;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;

    }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 20px;
        }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .section-dots {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .product-card .btn {
        width: 100%;
    }

    .modal-dialog {
        margin: 20px 10px;
    }

    .team-img {
        width: 100px;
        height: 100px;
    }

    .product-card img {
        height: 120px;
    }

    .swiper-slide {
        padding: 0 5px;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p.lead {
        font-size: 0.9rem;
    }

    .feature-card, .product-card, .team-card {
        margin-bottom: 15px;
    }

    .stats h1.display-4 {
        font-size: 2rem;
    }

    .footer-contact li, .footer-services li {
        font-size: 0.9rem;
    }
}
/* Product Modal Video */
.modal-body .ratio {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

    .modal-body .ratio iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
/* Product Modal Enhancements */
.modal-body .section-title {
    font-size: 1.25rem;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}

.modal-body .feature-list li {
    padding: 8px 0;
    transition: all 0.3s ease;
}

    .modal-body .feature-list li:hover {
        background: var(--light);
        padding-left: 10px;
        border-radius: 5px;
    }

.modal-body .text-success {
    font-size: 1.1rem;
}

.modal-body .no-video-message {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text);
    opacity: 0.7;
    margin-bottom: 0;
    padding: 10px;
    background: var(--light);
    border-radius: 5px;
    text-align: center;
}

.modal-body .video-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .modal-body .video-container:hover {
        transform: scale(1.02);
    }

    .modal-body .video-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }