
/*
==========================================================================
  1. IMPORTS AND BASE STYLES
==========================================================================
*/

/* Base typography settings */
body,
button,
input,
select,
textarea {
    font-family: 'Poppins', sans-serif;
}

/* Global color variables */
:root {
    --primary-color: #1d60ec;
    --primary-rgb: 29, 96, 236;
    --secondary-color: #0080ff;
    --secondary-rgb: 0, 128, 255;
    --accent-color: #1d60ec;
    --text-color: #2d3748;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --contrast-color: #ffffff;
}

/*
==========================================================================
  2. GLOBAL UTILITY CLASSES
==========================================================================
*/
.text-custom-blue {
    color: #1d60ec !important;
}

.text-custom-blue-hover:hover {
    color: #164db3 !important; /* Slightly darker on hover */
}

/* Animation Enhancement */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/*
==========================================================================
  3. LAYOUT COMPONENTS
==========================================================================
*/
/* Common Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .section {
        padding: 60px 0;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--primary-color, #4361ee);
    border-radius: 2px;
    margin: 0;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--default-color);
    max-width: 800px;
    margin: 1.5rem auto 20px;
}

.section-title .subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color, #1d60ec);
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}


/*
==========================================================================
  9. CUSTOM COMPONENTS (TABS, CARDS, BADGES)
==========================================================================
*/
/* Custom Tabs with Theme Colors */
.custom-tabs {
    border: none;
    background: var(--surface-color);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.custom-tabs .nav-item {
    margin: 0 0.25rem;
    flex: 1;
}

.custom-tabs .nav-link {
    position: relative;
    cursor: pointer;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--default-color);
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: transparent;
}

/* Active tab styling */
.custom-tabs .nav-link.active {
    background: var(--accent-color) !important;
    color: var(--contrast-color);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(29, 96, 236, 0.4);
}

.custom-tabs .nav-link.active h4 {
    color: var(--contrast-color);
}

.custom-tabs .nav-link.active span {
    color: var(--contrast-color);
    font-weight: 600;
}

/* Inactive tab styling */
.custom-tabs .nav-link:not(.active) {
    background: rgba(255, 255, 255, 0.05);
    color: var(--default-color);
    border-color: rgba(255, 255, 255, 0.1);
}

.custom-tabs .nav-link:not(.active) h4 {
    color: var(--default-color);
}

.custom-tabs .nav-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--heading-color);
}

.custom-tabs .nav-link:hover:not(.active) h4 {
    color: var(--heading-color);
}

/* Common styling for both tabs */
.custom-tabs h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    font-family: var(--heading-font);
    color: inherit;
    transition: all 0.3s ease;
}

/* Button Styling */
.btn-primary {
    background-color: var(--primary-color, #1d60ec);
    border-color: var(--primary-color, #1d60ec);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d60ec;
    border-color: #1d60ec;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(var(--primary-rgb, 255, 107, 0), 0.3);
}

.btn-outline-secondary {
    color: var(--secondary-color, #0080ff);
    border-color: var(--secondary-color, #0080ff);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--secondary-color, #0080ff);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(var(--secondary-rgb, 0, 128, 255), 0.3);
}

/* Tab Content Animation */
.tab-pane {
    transition: all 0.3s ease;
}

.tab-pane:not(.show) {
    opacity: 0;
    transform: translateY(20px);
}

.tab-pane.show {
    opacity: 1;
    transform: translateY(0);
}
/*
==========================================================================
  11. ANIMATIONS
==========================================================================
*/
@keyframes experience-float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/*
==========================================================================
  12. THIRD-PARTY PLUGIN OVERRIDES
==========================================================================
*/
/* Remove white background and padding from the popup container */
.glightbox-container .gdesc-inner,
.glightbox-container .ginner-container,
.glightbox-container .gslide-media {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Remove max-width limit if needed */
.glightbox-container .glightbox-inline {
    max-width: 100% !important;
    border: none !important;
    background: transparent !important;
}

/* Ensure the video uses all available space with no margin or border */
#video-modal {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

/* Ensure parent wrapper does not block clicks */
.video-wrapper {
    width: 100%;
    height: auto;
    pointer-events: auto;
    background: transparent;
    margin: 0;
    padding: 0;
}

/* Make sure Glightbox slide and content allow pointer events */
.gslide-media, .ginner-container {
    pointer-events: auto !important;
}