/* Container */
.container {
    max-width: 960px !important;
    margin: 0 auto;
    padding: 0 15px;
}

/* Fixed Header */

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

.main-content {
    padding-top: 60px;
}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

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

.logo {
    height: 50px;
}

.nav-container nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-container nav ul li {
    margin-left: 30px;
}

.nav-container nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-container nav ul li a:hover,
.nav-container nav ul li a.active {
    background-color: #f8f9fa;
    color: #0de1fd;
}

/* Section Styles */
.section {
    min-height: 100vh;
    padding: 80px 0;
    position: relative;
}

/* Navigation Styles */
.nav-link {
    color: #333;
    transition: all 0.3s ease;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 4px;
}

.nav-link:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.nav-link.active {
    background-color: #0d6efd !important;
    color: white !important;
}

/* Main Content */
.main-content {
    padding-top: 60px; /* Height of fixed header */
}

/* Carousel Styles */
.carousel-item {
    height: 32rem;
    background: #777;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* color: rgb(255, 244, 88); */
    /* background: rgba(0, 0, 0, 0.5); */
}
.carousel-caption h1 {
    color: rgb(80, 38, 134);
}
.carousel-caption h4 {
    color: rgb(80, 38, 134);
}
.carousel-caption p {
    color: rgb(87, 35, 155);
}


/* Pricing Table Styles */
.pricing-header {
    max-width: 700px;
    margin: 0 auto;
}
.pricing-card-title {
    font-size: 1.5rem;
    margin-bottom: .75rem;
}
.card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}
.card-body {
    padding: 1.25rem;
}

/* Features Section Styles */
#features {
    background: #f8f9fa;
    padding: 40px 0;
    min-height: auto !important;
}

#features h1 {
    color: black;
    margin-bottom: 5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 10px;
}

#features .feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
    height: 220px;
}

#features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

#features .feature-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0de1fd;
}

#features .feature-card h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

#features .feature-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Animation for feature cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow {
    animation: fadeInUp 0.6s ease-out forwards;
}

.wow[data-wow-delay="0.2s"] { animation-delay: 0.2s; }
.wow[data-wow-delay="0.3s"] { animation-delay: 0.3s; }
.wow[data-wow-delay="0.4s"] { animation-delay: 0.4s; }
.wow[data-wow-delay="0.5s"] { animation-delay: 0.5s; }

/* Pricing Section Updates */
.card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

/* Section Headers Consistency */
.section h1.display-4 {
    font-size: 3.5rem !important;
    margin-bottom: 30px;
    font-weight: normal;
}

/* Contact Section Styles */
#contact {
    background: #f8f9fa;
    color: black;
    padding: 10px;
}

#contact h1 {
    color: black;
}

#contact .footer-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#contact a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact a:hover {
    color: white;
}

#contact .demo-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: black;
    transition: all 0.3s ease;
}

#contact .demo-form input::placeholder {
    color: rgba(0, 0, 0, 0.6);
}

#contact .demo-form input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

#contact .demo-form .btn-primary {
    background: #6366f1;
    border: none;
}

#contact .demo-form .btn-primary:hover {
    background: #4f46e5;
}

/* Contact Card Styles */
#contact .row {
    display: flex;
    flex-wrap: wrap;
}

#contact .col-md-4 {
    display: flex;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

#contact .contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 250px;
    position: relative;
    z-index: 1;
}

#contact .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

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

#contact .contact-icon {
    font-size: 2.5rem;
    color: #0de1fd;
    margin-bottom: 15px;
}

#contact .contact-card h5 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

#contact .contact-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

#contact .contact-card a {
    color: #0de1fd;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

#contact .contact-card:active::before {
    background: rgba(13, 225, 253, 0.05);
}

#contact .contact-card a:hover {
    color: #0ba8c1;
}

#contact footer.pt-4 {
    padding-top: 1rem !important;
}

#contact .my-md-5 {
    margin-top: 1rem !important;
    margin-bottom: 3rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        width: 100%;
        height: auto;
        position: static;
        background: none;
        color: black;
    }
    .mobile-toggle {
        display: block;
    }
}

/* Features Section Responsive */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    #features .feature-card {
        padding: 20px;
    }
}

/* Responsive Contact Cards */
@media (max-width: 768px) {
    #contact .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Footer Styles */
.container footer.d-flex {
    justify-content: center !important;
    text-align: center;
}

.container footer .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    justify-content: center;
}

.container footer .text-body-secondary {
    text-align: center;
    width: 100%;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}



/* Add these styles to your style.css file */

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Header Styles */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #fff;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-container.active {
        right: 0;
    }

    .nav-container nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-container nav ul li {
        margin: 10px 0;
        width: 100%;
    }

    .nav-container nav ul li a {
        display: block;
        padding: 10px;
        width: 100%;
    }

    /* Animated Toggle Button */
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
}

/* Custom styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
}

/* General styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f5f5f5;
}

/* Navbar styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
}

/* Card styles */
.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: bold;
}

/* Button styles */
.btn {
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Form styles */
.form-control {
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 0.5rem 0.75rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Table styles */
.table {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.table thead th {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

/* Alert styles */
.alert {
    border-radius: 4px;
    border: none;
    padding: 1rem;
}

/* Modal styles */
.modal-content {
    border: none;
    border-radius: 8px;
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .table-responsive {
        margin-bottom: 1rem;
    }
}