/* FontAwesome Icons Styling */
/* 3D Particle Animation */
.particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: #000;
    opacity: 0.3;
    z-index: -1;
}

/* Ensure content appears above particles */
body {
    position: relative;
    z-index: 2;
}

/* Adjust hero section to work with particles */
.hero {
    position: relative;
    padding: 150px 0px;
}

/* Responsive particle canvas */
@media (max-width: 768px) {
    .particle-canvas {
        height: 80vh;
    }
}

@media (max-width: 480px) {
    .particle-canvas {
        height: 70vh;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Bootstrap Integration */
.custom-navbar {
    background: rgba(18, 194, 233, 0.1) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(18, 194, 233, 0.3);
    transition: all 0.3s ease;
}

.custom-navbar .navbar-toggler {
    border: none;
    padding: 4px 8px;
}

.custom-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.custom-navbar .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%2818, 194, 233, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.nav-logo h2.navbar-brand {
    color: #12c2e9;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.nav-logo span {
    color: #ffffff;
}

.navbar-nav {
    gap: 30px;
}

.navbar-nav .nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link:hover {
    color: #12c2e9 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #12c2e9, #c471ed);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(18, 194, 233, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(196, 113, 237, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    animation: gradientShift 4s ease-in-out infinite;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #b0b0b0;
}

.hero-features {
    margin-top: 40px;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(18, 194, 233, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(18, 194, 233, 0.15);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(18, 194, 233, 0.25);
    border-color: rgba(18, 194, 233, 0.5);
}

.feature h3 {
    color: #12c2e9;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* About Section */
.about {
    padding: 50px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-mission {
    margin: 60px 0;
}

.vision-card,
.mission-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 204, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 204, 255, 0.2);
}

.vision-card h3,
.mission-card h3 {
    color: #c471ed;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.achievements {
    margin-top: 60px;
}

.achievements h3 {
    color: #12c2e9;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.certifications {
    margin-top: 40px;
}

.cert-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(18, 194, 233, 0.2);
}

.cert-item h4 {
    color: #12c2e9;
    margin-bottom: 10px;
}

/* Leadership Section */
.leadership {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.leadership h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-grid {
    margin-top: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 204, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 204, 255, 0.2);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 30px 20px 20px 20px;
}

.member-info h3 {
    color: #12c2e9;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.position {
    color: #c471ed;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-books h4 {
    color: #ffffff;
    margin: 15px 0 10px;
}

.member-books ul {
    list-style: none;
    padding: 0;
}

.member-books li {
    color: #b0b0b0;
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.member-books li::before {
    content: '•';
    color: #12c2e9;
    position: absolute;
    left: 0;
}

/* Team Member View More Button */
.view-more {
    margin-top: 15px;
    color: #12c2e9;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover .view-more {
    opacity: 1;
}

.team-member {
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 204, 255, 0.2);
}

/* Team Modal Styling */
.team-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(18, 194, 233, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.team-modal-content .modal-header {
    border-bottom: 1px solid rgba(18, 194, 233, 0.2);
    background: rgba(18, 194, 233, 0.1);
}

.team-modal-content .modal-title {
    color: #12c2e9;
    font-weight: 600;
}

.team-modal-content .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.team-modal-content .btn-close:hover {
    opacity: 1;
}

.team-modal-content .modal-body {
    color: #e0e0e0;
}

.team-modal-content #modalName {
    color: #12c2e9;
    font-weight: 600;
}

.team-modal-content .position-text {
    color: #c471ed;
    font-weight: 500;
    font-size: 1.1rem;
}

.team-modal-content .books-section h5 {
    color: #ffffff;
    margin-bottom: 15px;
}

.team-modal-content .books-section ul {
    list-style: none;
    padding: 0;
}

.team-modal-content .books-section li {
    color: #b0b0b0;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.team-modal-content .books-section li::before {
    content: '📖';
    position: absolute;
    left: 0;
    top: 0;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-grid {
    margin-top: 60px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(18, 194, 233, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(18, 194, 233, 0.25);
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 30px;
}

.project-content h3 {
    color: #12c2e9;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Training Section */
.training {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.training h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.training-content {
    margin-top: 60px;
}

.training-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.training-image img:hover {
    transform: scale(1.02);
}

.training-details h3 {
    color: #12c2e9;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.training-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.training-details li {
    color: #b0b0b0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.training-details li::before {
    content: '✓';
    color: #12c2e9;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.partners h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners p {
    color: #b0b0b0;
    margin-bottom: 60px;
}

.partners-carousel {
    margin-top: 40px;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(18, 194, 233, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin: 0 10px;
    height: 120px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(18, 194, 233, 0.2);
    border-color: rgba(18, 194, 233, 0.4);
}

.partner-item img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Endorsements Section */
.endorsements {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.endorsements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.endorsements p {
    color: #b0b0b0;
    margin-bottom: 60px;
}

.endorsements-carousel {
    margin-top: 40px;
}

.endorsement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(196, 113, 237, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin: 0 10px;
    height: 200px;
}

.endorsement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(196, 113, 237, 0.2);
    border-color: rgba(196, 113, 237, 0.4);
}

.endorsement-item img {
    max-height: 160px;
    max-width: 100%;
    width: auto;
    border-radius: 10px;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.endorsement-item:hover img {
    filter: brightness(1);
    transform: scale(1.02);
}

/* Endorsement Modal Styling */
.endorsement-modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 1px solid rgba(196, 113, 237, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.endorsement-modal-content .modal-header {
    border-bottom: 1px solid rgba(196, 113, 237, 0.2);
    background: rgba(196, 113, 237, 0.1);
}

.endorsement-modal-content .modal-title {
    color: #c471ed;
    font-weight: 600;
}

.endorsement-modal-content .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.endorsement-modal-content .btn-close:hover {
    opacity: 1;
}

.endorsement-modal-content .modal-body {
    padding: 30px;
}

.endorsement-modal-content #endorsementModalImage {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(196, 113, 237, 0.3);
    transition: transform 0.3s ease;
}

.endorsement-modal-content #endorsementModalImage:hover {
    transform: scale(1.02);
}

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    background: rgba(18, 194, 233, 0.2) !important;
    color: #12c2e9 !important;
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 10px !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(18, 194, 233, 0.3) !important;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(18, 194, 233, 0.4) !important;
    transform: scale(1.1) !important;
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot span {
    background: rgba(18, 194, 233, 0.3) !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.owl-carousel .owl-dots .owl-dot.active span {
    background: #12c2e9 !important;
    transform: scale(1.2) !important;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content {
    margin-top: 60px;
}

.contact-info h3 {
    color: #12c2e9;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

.contact-form h3 {
    color: #c471ed;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Bootstrap Form Styling */
.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(0, 204, 255, 0.2) !important;
    border-radius: 10px !important;
    color: #e0e0e0 !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 15px !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: #c471ed !important;
    box-shadow: 0 0 20px rgba(196, 113, 237, 0.3) !important;
    color: #e0e0e0 !important;
}

.form-control::placeholder {
    color: #b0b0b0;
}

/* Bootstrap Button Styling */
.btn-primary-custom {
    background: linear-gradient(135deg, #12c2e9, #c471ed) !important;
    color: #000000 !important;
    padding: 15px 30px !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #0ea5d1, #b45ed1) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(18, 194, 233, 0.3) !important;
}

/* Disclaimer Section */
.disclaimer {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.disclaimer h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #12c2e9, #c471ed, #f64f59);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(18, 194, 233, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.disclaimer-content p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

/* Privacy Policy Specific Styles */
.privacy-policy .disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-policy h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #12c2e9;
}

.privacy-policy h4 {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #c471ed;
}

.privacy-policy ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.privacy-policy ul li {
    margin-bottom: 10px;
    color: #b0b0b0;
}

.privacy-policy .last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
    text-align: center;
}

.privacy-policy a {
    color: #12c2e9;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-policy a:hover {
    color: #c471ed;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(18, 194, 233, 0.3);
}

.footer p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

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

.footer-links a:hover {
    color: #c471ed;
    text-decoration: underline;
}

/* Gradient Text Animation */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 0%;
    }
    75% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Bootstrap Mobile Navigation Styling */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        margin-top: 15px;
        padding: 20px;
        border-radius: 10px;
        border-top: 1px solid rgba(18, 194, 233, 0.3);
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 0 !important;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 150px 0 60px;
    }

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

    .training-image img {
        margin-top: 30px;
    }

    .team-modal-content .modal-body {
        padding: 20px 15px;
    }

    .team-modal-content .row {
        flex-direction: column;
    }

    .team-modal-content .col-md-4,
    .team-modal-content .col-md-8 {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .about h2,
    .leadership h2,
    .projects h2,
    .training h2,
    .contact h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Bootstrap Utility Overrides */
.h-100 {
    height: 100% !important;
}

/* Ensure images are responsive */
.img-fluid {
    max-width: 100%;
    height: auto;
}
