/* General Styling */
body {
    background-color: #f9f9f9;
   font-family: "BPG Glaho WEB Caps", sans-serif !important;;
   text-transform: capitalize;
}

a {

    text-decoration: none;
}
a:hover{
    text-decoration: none;
    color: grey;
}

.icon-large {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 10px;
}


/* Sidebar */
.sidebar {
    width: 260px;
    height: 100vh;
    background: #2c3e50;
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px;
    box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    text-align: center;
    margin-bottom: 20px;
}

.user-image {
    width: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.user-name {
    font-size: 18px;
    font-weight: bold;
}

.user-role {
    font-size: 14px;
    color: #bfc9d3;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 15px;
}

.sidebar-menu li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.sidebar-menu li a i {
    margin-right: 10px;
}

.sidebar-menu li a:hover {
    background: #1abc9c;
    color: white;
}

.sidebar-footer {
 
    padding-top: 20px;
    text-align: center;
    font-size: 16px;
    color: white;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    padding: 30px;
    width: calc(100% - 280px);
    min-height: 100vh;
    background: #f9f9f9;
}

/* Status Cards */
.card-box {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.card {
    flex: 1;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.card h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.card .icon {
    font-size: 30px;
    color: #1abc9c;
}

.card .count {
    font-size: 24px;
    font-weight: bold;
}

/* Table */
.table-container {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Status Badges */
.badge-declared {
    background: #6c757d;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

.badge-pending {
    background: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    .card-box {
        flex-direction: column;
        align-items: center;
    }
}
/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    position: relative;
}
.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}
.hero-content h1 {
    font-size: 3rem;
}

/* Icon Styling */
.icon-large {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 10px;
}

/* FAQ Styling */
.accordion-button {
    font-weight: bold;
}


/* Admin Dashboard */
.card {
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}



.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.count {
    font-size: 24px;
    font-weight: bold;
}
/* Services Section */
.service-card {
    background: white;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 50px;
    color: #007bff;
    margin-bottom: 15px;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .service-card {
        padding: 15px;
    }
    .service-icon {
        font-size: 40px;
    }
}
/* Blog Post Styling */
.container img {
    max-width: 100%;
    height: auto;
}

.card p {
    font-size: 1.1rem;
    line-height: 1.6;
}


/* Registration Form Styling */
.card {
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

h2, h5 {
    color: #007bff;
}

label {
    font-weight: bold;
}

input, select {
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.alert {
    font-size: 16px;
}
/* Mobile Responsive Table */
@media (max-width: 768px) {
    .table th, .table td {
        font-size: 12px;
        padding: 8px;
    }
    .badge {
        font-size: 10px;
        padding: 5px 8px;
    }
    .btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* Improve Badge UI */
.badge {
    border-radius: 5px;
    font-weight: bold;
}

/* Table Styling */
.table {
    background: #fff;
    border-radius: 8px;
}

.table th {
    background: #343a40;
    color: white;
}

/* Improve Button Visibility */
.btn-warning {
    background-color: #f39c12 !important;
    border-color: #e67e22 !important;
}

.btn-warning:hover {
    background-color: #e67e22 !important;
}



.notifications-card {
    background: white;
    padding: 15px;
    border-radius: 5px;
    color: black;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.notifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.notifications-list li {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.notifications-list .unread {
    font-weight: bold;
    color: #007bff;
}


.hero-slide {
            height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .hero-overlay {
            position: absolute;
            top:0;
            left:0;
            right:0;
            bottom:0;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .carousel-caption h1 {
            font-size: 3rem;
            font-weight: bold;
        }
        .carousel-caption p {
            font-size: 1.25rem;
        }
        .btn-hero {
            padding: 10px 25px;
            font-size: 1rem;
            border-radius: 25px;
        }
 
        .card {
    transition: all 0.3s ease;
    background-color: #f8fbfe;
}

.img-fluid {
    transition: transform 0.3s ease;
}
.img-fluid:hover {
    transform: scale(1.03);
}
footer img {
    transition: transform 0.3s ease;
}
footer img:hover {
    transform: scale(1.05);
}


.flight-card {
        width: 250px;
        background-color: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    .flight-card:hover {
        transform: translateY(-5px);
    }
   
    .text-success {
        color: #28a745;
    }
    .text-warning {
        color: #ffc107;
    }
    .text-danger {
        color: #dc3545;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-color: #007bff;
        border-radius: 50%;
    }

     .calculator-card, .tracking-section {
        padding: 20px;
        background-color: #f8f9fa;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }
    .price-display {
        background-color: #e7f3ff;
        color: #007bff;
        font-weight: bold;
        border: none;
    }
    .result {
        font-size: 1.4rem;
        font-weight: bold;
        color: #28a745;
    }
    .tracking-section {
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 180px;
    }
    .btn-primary {
        background-color: #007bff;
        border: none;
        transition: background-color 0.3s ease;
    }
    .btn-primary:hover {
        background-color: #0056b3;
    }


      .flight-card {
        width: 200px;
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        margin: 5px;
        transition: transform 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    .flight-card:hover {
        transform: scale(1.05);
    }
    .badge {
        font-size: 1rem;
        padding: 0.3rem 0.6rem;
        border-radius: 20px;
        color: #fff;
    }
    .badge-success {
        background-color: #28a745;
    }
    .badge-warning {
        background-color: #ffc107;
    }
    .badge-danger {
        background-color: #dc3545;
    }
