/* Main Styles */
:root {
    --primary-color: #174be9;
    --secondary-color: #2c3e50;
    --primary-hover: #1340c4;
    --login-color: #ff6423;
    --login-hover: #e55a1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Navigation Styles */
.navbar {
    background: #fff;
    padding: 0.4rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo-img {
    height: 65px;
    width: auto;
    display: block;
    margin: -10px 0;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
        margin: -8px 0;
    }
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.nav-menu .nav-item {
    position: relative;
    text-align: center;
    opacity: 0;
    animation: slideInDown 0.5s ease forwards;
}

.nav-menu .nav-item:nth-child(1) { animation-delay: 0.1s; }
.nav-menu .nav-item:nth-child(2) { animation-delay: 0.2s; }
.nav-menu .nav-item:nth-child(3) { animation-delay: 0.3s; }
.nav-menu .nav-item:nth-child(4) { animation-delay: 0.4s; }
.nav-menu .auth-buttons { animation-delay: 0.5s; }

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a span {
    display: inline-block;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover span {
    transform: translateY(-2px);
}

.nav-menu a i {
    font-size: 1rem;
    transition: all 0.3s;
}

.nav-menu a:hover i {
    transform: scale(1.1);
}

/* Icon Colors */
.fa-home { color: #4CAF50; }
.fa-info-circle { color: #2196F3; }
.fa-globe { color: #3498db; }
.fa-plane { color: #03A9F4; }
.fa-hotel { color: #E91E63; }
.fa-passport { color: #9C27B0; }
.fa-map-marked-alt { color: #4CAF50; }
.fa-bus { color: #FF5722; }
.fa-shield-alt { color: #795548; }
.fa-envelope { color: #eab027; }
.fa-sign-in-alt { color: #fff; }
.fa-user-plus { color: #fff; }

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    text-decoration: none;
    color: #000;
}

.dropdown-toggle i {
    width: 24px;
    text-align: center;
    font-size: 16px;
    line-height: 1;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
    margin: 0;
    border: 1px solid rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu li {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.1s * var(--item-index, 0));
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #2d3436;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-menu li a i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    font-size: 16px;
    color: #00b6ff;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(0, 150, 199, 0.08);
    color: #0096c7;
    padding-left: 24px;
}

.dropdown-menu li a:hover i {
    transform: scale(1.1);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu .nav-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu .auth-buttons { transition-delay: 0.4s; }
    
    .nav-menu a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu a:hover {
        background: rgba(0,0,0,0.02);
        padding-left: 1rem;
        transform: translateX(5px);
    }
    
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: none;
        border: none;
        cursor: pointer;
        gap: 5px;
        z-index: 1100;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #174be9;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }
    
    .hamburger.open {
        transform: rotate(180deg);
    }
    
    .hamburger.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(2px);
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(0,0,0,0.02);
        border-left: 3px solid var(--primary-color);
        margin: 0.5rem 0;
        display: none;
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown-menu.show {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown-menu a:hover {
        transform: translateX(5px);
    }
    
    .dropdown-menu a i {
        font-size: 0.9rem;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .dropdown-menu a:hover i {
        transform: scale(1.2);
    }
    
    .auth-buttons {
        width: 100%;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active .auth-buttons {
        opacity: 1;
        transform: translateY(0);
    }
    
    .btn-login,
    .btn-signup {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn-login:hover,
    .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    background: #000;
    margin-top: 80px;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 80%;
    max-width: 800px;
    opacity: 0;
    transition: all 0.8s ease;
    z-index: 2;
}

.slide.active .slide-content {
    opacity: 1;
    animation: slideUp 0.8s ease forwards;
}

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

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

.slider-arrow i {
    font-size: 1.5rem;
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #fff;
    transform: scale(1.2);
    border-color: rgba(255,255,255,0.5);
}

.indicator:hover {
    background: rgba(255,255,255,0.5);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }

    .slide-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.card-header {
    padding: 20px;
    border-bottom: 1px solid #e1e1e1;
    text-align: center;
    position: relative;
}

.card-header .close-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-header .close-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) rotate(90deg);
}

.card-body {
    padding: 20px;
    max-width: 100%;
    overflow-x: auto;
}

.register-section .card-body {
    padding: 15px;
}

.register-section .form-group {
    margin-bottom: 10px;
}

.register-section .form-control,
.register-section .form-select {
    height: 32px;
    padding: 4px 8px;
    font-size: 0.85rem;
}

.register-section .form-label {
    font-size: 0.8rem;
    margin-bottom: 2px;
    color: #666;
}

.register-section .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.register-section .text-danger {
    font-size: 0.7rem;
}

.register-section textarea.form-control {
    height: 60px;
    min-height: 60px;
}

.register-section .card-header {
    padding: 30px 15px;
    background: #f8f9fa;
    margin-top: 30px;
}

.register-section .card-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.register-section .card-header h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #333;
    font-weight: 500;
}

.register-section .card-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 8px 0 0;
}

.card-body .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
    width: 100%;
}

.card-body .col-md-6,
.card-body .col-md-12,
.card-body .col-12 {
    padding: 0 8px;
}

.card-body .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.card-body .col-md-12,
.card-body .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.register-section {
    padding-top: 120px;
}

.register-section .container {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .card-body .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .register-section {
        padding-top: 80px;
    }
    .card-body {
        padding: 20px;
    }
}

.card-footer {
    padding: 20px;
    border-top: 1px solid #e1e1e1;
}

.card-footer .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.card-footer .btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 75, 233, 0.2);
}

.card-footer .btn-primary:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: transform 0.3s ease;
}

.card-footer .btn-primary:hover:after {
    transform: translateY(4px);
}

.card-footer .btn-primary:active {
    transform: translateY(2px);
}

.card-footer .btn-primary:active:after {
    transform: translateY(6px);
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    text-align: left;
}

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

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    line-height: 1.5;
    text-align: left;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
}

.form-group .text-danger {
    font-size: 1.2rem;
    line-height: 0;
    position: relative;
    top: 3px;
    margin-left: 2px;
}

.form-label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.75rem;
    display: block;
    animation: slideIn 0.5s ease-out;
    text-transform: capitalize;
    letter-spacing: 0.3px;
    font-size: 0.95rem;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }

.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    animation: slideIn 0.5s ease-out;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: #495057;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
    background-color: #fff;
}

/* Document Upload Styles */
.document-uploads {
    margin: 20px 0 30px;
}

.file-upload {
    margin-bottom: 20px;
}

.upload-wrapper {
    position: relative;
    border: 2px dashed #e1e1e1;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
}

.upload-wrapper:hover {
    border-color: var(--primary-color);
    background: rgba(23, 75, 233, 0.05);
}

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

.upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.upload-text i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.upload-text span {
    color: #444;
    font-weight: 500;
}

.upload-text small {
    color: #666;
    font-size: 0.85rem;
}

.upload-wrapper.has-file {
    border-style: solid;
    border-color: var(--primary-color);
    background: rgba(23, 75, 233, 0.05);
}

.upload-wrapper.has-file .upload-text i {
    color: #4CAF50;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.btn-login, .btn-signup {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-login {
    background: linear-gradient(135deg, #ff6b35, #ff9f1c);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.btn-signup {
    background: linear-gradient(135deg, #4361ee, #3f8cff);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
}

.btn-login::before, .btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-login::before {
    background: linear-gradient(135deg, #ff9f1c, #ff6b35);
}

.btn-signup::before {
    background: linear-gradient(135deg, #3f8cff, #4361ee);
}

.btn-login:hover, .btn-signup:hover {
    transform: translateY(-2px);
}

.btn-login:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.btn-signup:hover {
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.3);
}

.btn-login:hover::before, .btn-signup:hover::before {
    opacity: 1;
}

.btn-login i, .btn-signup i {
    font-size: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-login:hover i, .btn-signup:hover i {
    transform: scale(1.1);
}

.btn-login span, .btn-signup span {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

@media (max-width: 768px) {
    .auth-buttons {
        width: 100%;
        padding: 1rem;
    }

    .btn-login, .btn-signup {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.25rem;
    }
}

/* Auth Forms */
.auth-container {
    margin-top: 50px;
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
}

.card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    width: 100%;
    margin: 0 auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.auth-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group {
    margin-bottom: 1rem;
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input[type="file"] {
    padding: 8px;
    background: #f8f9fa;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 75, 233, 0.2);
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Register Page Styles */
.register-section {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    padding: 0 15px;
}

.register-section .card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.register-section .card-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.register-section .card-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.register-section .form-group {
    margin-bottom: 12px;
}

.register-section .form-label {
    font-size: 0.85rem;
    margin-bottom: 3px;
    color: #555;
}

.register-section .form-control,
.register-section .form-select {
    font-size: 0.9rem;
    padding: 6px 12px;
    height: 34px;
}

.register-section textarea.form-control {
    height: auto;
}

.register-section .col-12,
.register-section .col-md-6 {
    padding: 0 8px;
}

.register-section .row {
    margin: 0 -8px;
}

.reset-password-container {
    margin-top: 100px;
    max-width: 500px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reset-password-container h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.reset-description {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.register-header {
    text-align: center;
    margin-bottom: 30px;
}

.register-header h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 10px;
}

.register-header p {
    color: #666;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e1e1;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(23, 75, 233, 0.1);
    outline: none;
}

.register-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.register-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 75, 233, 0.2);
}

.register-footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.register-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.register-footer a:hover {
    text-decoration: underline;
}

/* Modal/Popup Styles */

/* Homepage Popup Notification Styles */
:root {
    --popup-gradient: linear-gradient(90deg, #FF6B6B, #FF8E53, #FFB84D, #FFD93D, #FF6B6B);
    --popup-header-color: #FF6B6B;
    --popup-bg: rgba(255, 255, 255, 0.98);
    --popup-shadow: 0 8px 32px rgba(255, 107, 107, 0.2);
    --popup-backdrop: rgba(0, 0, 0, 0.7);
    --popup-border: 2px solid rgba(255, 107, 107, 0.1);
}

.popup-notification {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: var(--popup-backdrop);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-content {
    background: var(--popup-bg);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--popup-shadow);
    text-align: center;
    position: relative;
    max-width: 500px;
    min-width: 350px;
    width: 90vw;
    transform: scale(0.9);
    opacity: 0;
    animation: popupBoxIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
    border: var(--popup-border);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.popup-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--popup-header-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
}

.popup-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--popup-gradient);
    border-radius: 3px;
}

.dynamic-gradient {
    background: var(--popup-gradient);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientMove 3s linear infinite;
    font-weight: 700;
}

.popup-notification-text {
    color: #2d3436;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
    padding: 0 1rem;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--popup-header-color);
    font-size: 1.2rem;
    border: none;
}

.popup-close:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: rotate(90deg);
}

@keyframes popupBoxIn {
    from { 
        transform: scale(0.9); 
        opacity: 0;
        box-shadow: 0 0 0 rgba(255, 107, 107, 0);
    }
    to { 
        transform: scale(1); 
        opacity: 1;
        box-shadow: var(--popup-shadow);
    }
}

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

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
}

.modal {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: 50px auto;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.active .modal {
    transform: translateY(0);
    opacity: 1;
}

/* Close Button */
.modal-close {
    position: absolute;
    left: 15px;
    top: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(-180deg);
    color: #000;
}

/* Our Product Section */
.our-product {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #4361ee;
    margin: 0 auto;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -2px;
    width: 40px;
    height: 7px;
    background: #4361ee;
    border-radius: 5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(63, 140, 255, 0.05) 100%);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.product-card:hover::before {
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
    border-color: rgba(67, 97, 238, 0.1);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.1);
    border: 2px solid rgba(67, 97, 238, 0.1);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #4361ee 0%, #3f8cff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .icon-wrapper::before {
    opacity: 1;
}

.product-card .icon-wrapper i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #4361ee 0%, #3f8cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.product-card:hover .icon-wrapper i {
    transform: scale(1.1) rotate(360deg);
}

.product-card:hover .icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}

.product-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-card:hover h3 {
    color: #4361ee;
    transform: translateY(-2px);
}

.product-card p {
    color: #718096;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.product-card:hover p {
    color: #4a5568;
}

/* Custom icon colors */
.product-card:nth-child(1) .icon-wrapper i {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card:nth-child(2) .icon-wrapper i {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card:nth-child(3) .icon-wrapper i {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card:nth-child(4) .icon-wrapper i {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card:nth-child(5) .icon-wrapper i {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card:nth-child(6) .icon-wrapper i {
    background: linear-gradient(135deg, #673AB7 0%, #3F51B5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card:nth-child(7) .icon-wrapper i {
    background: linear-gradient(135deg, #009688 0%, #4CAF50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-card:nth-child(8) .icon-wrapper i {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Custom border gradients on hover */
.product-card:nth-child(1):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
}

.product-card:nth-child(2):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
}

.product-card:nth-child(3):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #9C27B0 0%, #E91E63 100%);
}

.product-card:nth-child(4):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
}

.product-card:nth-child(5):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
}

.product-card:nth-child(6):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #673AB7 0%, #3F51B5 100%);
}

.product-card:nth-child(7):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #009688 0%, #4CAF50 100%);
}

.product-card:nth-child(8):hover .icon-wrapper::before {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
}

@media (max-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-card {
        padding: 30px 20px;
    }

    .icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .product-card .icon-wrapper i {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-card {
        padding: 25px 20px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .product-card .icon-wrapper i {
        font-size: 2rem;
    }

    .product-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .product-card p {
        font-size: 0.95rem;
    }
}

/* Payment Methods */
.payment-methods {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-icon {
    height: 25px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    background-color: white;
    padding: 3px;
    border-radius: 4px;
}

.payment-icon:hover {
    opacity: 1;
}

/* Footer Styles */
.footer {
    background-color: #0c0a60;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
    color: #a4b4cd;
    font-size: 0.9rem;
}

.footer-links a {
    color: #a4b4cd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact i {
    margin-right: 8px;
    color: #a4b4cd;
}

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

.footer-bottom p {
    color: #a4b4cd;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-sections {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu .nav-item:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu .nav-item:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu .auth-buttons { transition-delay: 0.4s; }
    
    .nav-menu a {
        width: 100%;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu a:hover {
        background: rgba(0,0,0,0.02);
        padding-left: 1rem;
        transform: translateX(5px);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-overlay {
        animation: fadeIn 0.3s ease forwards;
        -webkit-animation: fadeIn 0.3s ease forwards;
    }
    
    .nav-overlay.active {
        animation: fadeIn 0.3s ease forwards;
        -webkit-animation: fadeIn 0.3s ease forwards;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        display: none;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .services-dropdown.open .dropdown-content {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-login, .btn-signup {
        width: 100%;
        text-align: center;
    }

    .btn,
    .nav-link,
    .card,
    .form-control {
        min-height: 44px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slide-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 12px;
        height: 12px;
        margin: 0 6px;
    }

    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 600px;
    }

    td, th {
        padding: 10px;
        font-size: 14px;
    }

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

    input[type="text"],
    input[type="email"],
    input[type="password"],
    select,
    textarea {
        padding: 10px;
        font-size: 16px;
    }

    .btn-primary,
    .submit-btn {
        width: 100%;
        padding: 12px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Add animation classes with vendor prefixes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
    -webkit-animation: fadeIn 0.5s ease forwards;
}

.fade-in-down {
    animation: fadeInDown 0.5s ease forwards;
    -webkit-animation: fadeInDown 0.5s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
    -webkit-animation: slideInLeft 0.5s ease forwards;
}

.slide-in-up {
    animation: slideInUp 0.5s ease forwards;
    -webkit-animation: slideInUp 0.5s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
    -webkit-animation: fadeInUp 0.5s ease forwards;
}

.slide-in-down {
    animation: slideInDown 0.5s ease forwards;
    -webkit-animation: slideInDown 0.5s ease forwards;
}

/* Add reduced motion media query */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Update mobile menu animations */
@media (max-width: 768px) {
    .nav-menu {
        animation: slideInLeft 0.3s ease forwards;
        -webkit-animation: slideInLeft 0.3s ease forwards;
    }
    
    .nav-menu.active {
        animation: slideInLeft 0.3s ease forwards;
        -webkit-animation: slideInLeft 0.3s ease forwards;
    }
    
    .nav-overlay {
        animation: fadeIn 0.3s ease forwards;
        -webkit-animation: fadeIn 0.3s ease forwards;
    }
    
    .nav-overlay.active {
        animation: fadeIn 0.3s ease forwards;
        -webkit-animation: fadeIn 0.3s ease forwards;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #0066ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.feature-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Feature Icon Colors */
.feature-card:nth-child(1) .feature-icon {
    background: #0066ff;
}

.feature-card:nth-child(2) .feature-icon {
    background: #0066ff;
}

.feature-card:nth-child(3) .feature-icon {
    background: #0066ff;
}

.feature-card:nth-child(4) .feature-icon {
    background: #0066ff;
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon i {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }
}

