/* ===================================
   CSS VARIABLES & RESET
==================================== */
:root {
    --primary-color: #303192;
    --secondary-color: #2525a8;
    --accent-color: #f3bd02;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --gradient-start: #303192;
    --gradient-end: #f3bd02;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
}

html {
    scroll-behavior: smooth;
}

/* ===================================
   BREADCRUMB RESET & STYLES
==================================== */
.breadcrumb,
.breadcrumb ol,
.breadcrumb ul,
ol.breadcrumb,
ul.breadcrumb {
    list-style: none !important;
    list-style-type: none !important;
    counter-reset: none !important;
    padding-left: 0 !important;
}

.breadcrumb *::before,
.breadcrumb *::after,
.breadcrumb-item::before,
.breadcrumb-item::after {
    content: none !important;
    display: none !important;
}

.breadcrumb li,
.breadcrumb-item {
    list-style: none !important;
    list-style-type: none !important;
}

.page-header .breadcrumb,
.verification-container .breadcrumb {
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.3) 0%, rgba(243, 189, 2, 0.2) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 50px;
    display: inline-flex;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(48, 49, 146, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.page-header .breadcrumb:hover,
.verification-container .breadcrumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(48, 49, 146, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    margin: 0;
}

.breadcrumb-item a {
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.breadcrumb-item a:hover::before {
    left: 100%;
}

.breadcrumb-item a:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item a i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.breadcrumb-item a:hover i.fa-home {
    animation: shake 0.5s ease;
}

.breadcrumb-item.active {
    background: linear-gradient(135deg, #f3bd02 0%, #daa602 100%);
    padding: 12px 28px;
    border-radius: 30px;
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(243, 189, 2, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.breadcrumb-item.active::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

.breadcrumb-item.active span {
    position: relative;
    z-index: 1;
}

.breadcrumb-item.active i {
    position: relative;
    z-index: 1;
    animation: bounce 1s ease infinite;
}

/* ===================================
   POPUP MODAL STYLES
==================================== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.popup-overlay.active .popup-modal {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

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

.popup-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #303192;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.popup-header h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.popup-header p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.popup-body {
    padding: 2rem;
}

.popup-body p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popup-input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.popup-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.popup-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(48, 49, 146, 0.4);
}

.popup-footer {
    text-align: center;
    padding: 0 2rem 2rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===================================
   NAVBAR STYLES
==================================== */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent-color);
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu > li > a {
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu > li > a::after {
    content: none !important;
}

.nav-menu > li:not(.dropdown) > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s;
}

.nav-menu > li:not(.dropdown) > a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::before,
.dropdown-toggle::after {
    content: none !important;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(48, 49, 146, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 0.5rem 0;
    border: 1px solid rgba(48, 49, 146, 0.1);
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu a::before,
.dropdown-menu a::after {
    content: none !important;
}

.dropdown-menu a i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(48, 49, 146, 0.05), rgba(243, 189, 2, 0.05));
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu a:hover i {
    color: var(--accent-color);
    transform: scale(1.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===================================
   HERO SECTION
==================================== */
.hero {
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    color: white;
    padding: 180px 2rem 120px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background: var(--accent-color);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.btn-white {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    background: var(--accent-color);
    color: white;
}

.hero-image {
    animation: fadeInRight 0.8s ease;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ===================================
   PAGE HEADER
==================================== */
.page-header {
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    color: white;
    padding: 180px 2rem 100px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 130px !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(48, 49, 146, 0.2) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite reverse;
}

.page-header .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -1px;
    color: #ffffff;
}

.page-header h1 i {
    color: #f3bd02;
    filter: drop-shadow(0 0 10px rgba(243, 189, 2, 0.5));
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* ===================================
   SECTION HEADERS
==================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-badge {
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.1), rgba(243, 189, 2, 0.1));
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(48, 49, 146, 0.2);
}

/* ===================================
   FEATURES SECTION
==================================== */
.features {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: 2px solid transparent;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(48, 49, 146, 0.2);
    border-color: var(--primary-color);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* ===================================
   SERVICES SECTION
==================================== */
.services {
    padding: 100px 2rem;
    background: white;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.service-item:hover {
    background: var(--bg-light);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-item:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* ===================================
   STATS SECTION
==================================== */
.stats {
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    color: white;
    padding: 80px 2rem;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.stats-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.05), rgba(243, 189, 2, 0.03));
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(48, 49, 146, 0.15);
}

.stat-box h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===================================
   ABOUT SECTION
==================================== */
.about {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ===================================
   COMPANY OVERVIEW SECTION
==================================== */
.company-overview {
    padding: 100px 2rem;
    background: white;
}

.company-overview .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.overview-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* ===================================
   MISSION & VISION SECTION
==================================== */
.mission-vision {
    padding: 100px 2rem;
    background: var(--bg-light);
}

.mission-vision .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(48, 49, 146, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mv-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(48, 49, 146, 0.15);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(48, 49, 146, 0.3);
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===================================
   CORE VALUES SECTION
==================================== */
.core-values {
    padding: 100px 2rem;
    background: white;
}

.core-values .container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 15px 40px rgba(48, 49, 146, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(48, 49, 146, 0.3);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg);
}

.value-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   TEAM SECTION
==================================== */
.team {
    padding: 100px 2rem;
    background: var(--bg-light);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(48, 49, 146, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(48, 49, 146, 0.15);
    border-color: var(--primary-color);
}

.member-photo {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.member-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.member-social a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(48, 49, 146, 0.3);
}

/* ===================================
   TIMELINE SECTION
==================================== */
.timeline {
    padding: 100px 2rem;
    background: white;
}

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

.timeline-items {
    position: relative;
    padding-left: 3rem;
    margin-top: 4rem;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.6rem;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
==================================== */
.cta-section {
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    color: white;
    padding: 80px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-section .container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* ===================================
   CONTACT SECTION
==================================== */
.contact {
    padding: 100px 2rem;
    background: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(48, 49, 146, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    border-color: var(--primary-color);
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

.form-floating input,
.form-floating textarea {
    border: 2px solid #e5e7eb !important;
    background: var(--bg-light) !important;
    border-radius: 12px !important;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-floating input:focus,
.form-floating textarea:focus {
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 4px rgba(48, 49, 146, 0.1) !important;
    background: white !important;
}

.form-floating label {
    color: var(--text-light);
    padding: 15px 20px;
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
    color: var(--primary-color);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(48, 49, 146, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(48, 49, 146, 0.4);
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Contact Info Cards */
.contact-info-wrapper {
    margin-bottom: 50px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(48, 49, 146, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(48, 49, 146, 0.25);
    border-color: var(--primary-color);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 25px rgba(48, 49, 146, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: rotateY(360deg);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

/* Map Container */
.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(48, 49, 146, 0.2);
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
}

.map-container iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

/* Working Hours */
.working-hours {
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.05), rgba(243, 189, 2, 0.03));
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border: 2px solid rgba(48, 49, 146, 0.1);
}

.working-hours h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.working-hours h5 i {
    color: var(--primary-color);
}

.working-hours p {
    margin: 8px 0;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(48, 49, 146, 0.1);
}

.working-hours p:last-child {
    border-bottom: none;
}

.working-hours strong {
    color: var(--text-dark);
}

/* Alert Box */
.alert-box {
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-left: 5px solid;
    display: none;
    animation: slideInDown 0.5s ease;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-left-color: #10b981;
    color: #065f46;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
    border-left-color: #ef4444;
    color: #991b1b;
}

.alert-info {
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.1), rgba(243, 189, 2, 0.05));
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.alert-custom {
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

.alert-danger-custom {
    background: linear-gradient(135deg, #303192, #1a1f5f);
    border: 2px solid rgba(243, 189, 2, 0.4);
    color: white;
}

.alert-danger-custom i {
    font-size: 2.5rem;
    color: #f3bd02;
    filter: drop-shadow(0 5px 15px rgba(243, 189, 2, 0.4));
    animation: shake2 0.5s ease;
}

.alert-danger-custom h5 {
    color: #f3bd02;
    font-weight: 700;
}

/* ===================================
   COURSES SECTION
==================================== */
.courses-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.intro-text {
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.1), rgba(243, 189, 2, 0.05));
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid #f3bd02;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(48, 49, 146, 0.15);
}

.intro-text p {
    margin: 0;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}

.course-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(48, 49, 146, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(48, 49, 146, 0.3);
    border-color: #303192;
}

.course-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #303192, #f3bd02);
}

.course-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image-wrapper img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f3bd02, #daa602);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(243, 189, 2, 0.4);
    animation: pulse 2s infinite;
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.95), rgba(243, 189, 2, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 15px;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.course-overlay .enroll-btn {
    background: white;
    color: #303192;
    border: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.course-card:hover .course-overlay .enroll-btn {
    transform: translateY(0);
}

.course-overlay .enroll-btn:hover {
    background: #f3bd02;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 189, 2, 0.4);
}

.course-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: #f3bd02;
    font-size: 0.85rem;
}

.rating-stars .text-muted {
    font-size: 0.8rem;
}

.course-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 0.85rem;
}

.meta-item i {
    color: #303192;
    font-size: 0.95rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    gap: 10px;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #303192, #f3bd02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enroll-btn {
    background: linear-gradient(135deg, #303192, #f3bd02);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(48, 49, 146, 0.3);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.enroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3bd02, #303192);
    transition: left 0.5s ease;
    z-index: -1;
}

.enroll-btn:hover::before {
    left: 0;
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(48, 49, 146, 0.4);
    color: white;
}

/* ===================================
   GALLERY SECTION
==================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(48, 49, 146, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(48, 49, 146, 0.25);
    border-color: var(--primary-color);
}

.image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #303192, #f3bd02);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .image-container img {
    transform: scale(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.9), rgba(243, 189, 2, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay-icon {
    transform: scale(1);
}

.image-info {
    padding: 20px;
    background: white;
}

.image-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.image-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.image-date i {
    color: var(--primary-color);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    padding: 20px;
    overflow: hidden;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #303192, #f3bd02);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(243, 189, 2, 0.4);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(243, 189, 2, 0.6);
}

.lightbox-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.lightbox-content:hover .lightbox-details {
    transform: translateY(0);
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lightbox-date {
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #303192, #f3bd02);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(48, 49, 146, 0.4);
}

.lightbox-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(48, 49, 146, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===================================
   VERIFICATION/SEARCH SECTION
==================================== */
.verification-section {
    background: transparent;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.verification-container {
    position: relative;
}

.search-card {
    background: transparent;
    border-radius: 25px;
    box-shadow: none;
    padding: 60px 50px;
    position: relative;
    z-index: 10;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center bottom;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: linear-gradient(90deg, #f3bd02, #f3bd02);
    border-radius: 0 0 5px 5px;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #303192 0%, #1a1f5f 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(48, 49, 146, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: iconBounce 2s ease-in-out infinite;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px solid rgba(243, 189, 2, 0.4);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.icon-wrapper i {
    font-size: 50px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.search-card h2 {
    color: #303192;
    font-weight: 800;
    margin-bottom: 15px;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.search-card p {
    color: #718096;
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.search-form-group {
    position: relative;
    margin-bottom: 30px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.search-input {
    width: 100%;
    padding: 20px 25px 20px 60px;
    border: 3px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
    color: #2d3748;
    outline: none;
}

.search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.search-input:focus {
    border-color: #303192;
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(48, 49, 146, 0.1), 0 10px 30px rgba(48, 49, 146, 0.15);
    transform: translateY(-2px);
}

.search-input:hover:not(:focus) {
    border-color: #cbd5e0;
    background: #ffffff;
}

.search-icon {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    font-size: 22px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.search-input:focus + .search-icon,
.search-form-group:hover .search-icon {
    color: #303192;
    transform: translateY(-50%) scale(1.1);
}

.search-btn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, #303192 0%, #1a1f5f 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(48, 49, 146, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 189, 2, 0.3), transparent);
    transition: left 0.6s ease;
}

.search-btn:hover::before {
    left: 100%;
}

.search-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1a1f5f 0%, #303192 100%);
    box-shadow: 0 20px 45px rgba(48, 49, 146, 0.5), 0 10px 20px rgba(0, 0, 0, 0.15);
}

.search-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(48, 49, 146, 0.4), 0 5px 10px rgba(0, 0, 0, 0.1);
}

.search-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.search-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.search-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.info-box {
    margin-top: 30px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.08), rgba(243, 189, 2, 0.05));
    border-radius: 15px;
    border-left: 5px solid #303192;
    animation: fadeInUp 0.6s ease-out 0.5s both;
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(48, 49, 146, 0.2);
}

.info-box small {
    color: #303192;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.info-box i {
    font-size: 18px;
    vertical-align: middle;
    color: #303192;
}

.info-box strong {
    color: #1a1f5f;
    font-weight: 700;
}

/* Results Container */
.results-container {
    margin-top: 60px;
    animation: fadeIn 0.8s ease-out;
}

.result-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(48, 49, 146, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 40px;
    margin-bottom: 30px;
    border-left: 6px solid #303192;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(48, 49, 146, 0.03) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(48, 49, 146, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left-width: 8px;
    border-left-color: #f3bd02;
}

.result-card h3 {
    color: #303192;
    font-weight: 800;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.result-card h3 i {
    font-size: 1.5rem;
    color: #f3bd02;
    filter: drop-shadow(0 2px 4px rgba(243, 189, 2, 0.3));
}

/* Badges */
.badge-verified {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(72, 187, 120, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.badge-verified::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.badge-verified i {
    font-size: 20px;
    animation: checkmark 0.6s ease-in-out 0.3s both;
}

.badge-error {
    background: linear-gradient(135deg, #f56565 0%, #c53030 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(245, 101, 101, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: shake2 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-item {
    padding: 20px;
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.05), rgba(243, 189, 2, 0.03));
    border-radius: 15px;
    border-left: 4px solid #303192;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #303192, #f3bd02);
    transition: width 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(48, 49, 146, 0.15);
    background: #ffffff;
    border-left-color: #f3bd02;
}

.info-item:hover::before {
    width: 100%;
    opacity: 0.05;
}

.info-item label {
    font-size: 11px;
    color: #303192;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.info-item .value {
    font-size: 18px;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.4;
}

/* Student Profile Card */
.student-profile-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(48, 49, 146, 0.15);
    margin-bottom: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.student-profile-card:hover {
    border-color: #303192;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(48, 49, 146, 0.25);
}

.profile-header {
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    padding: 25px;
    text-align: center;
    color: white;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    margin: 0 auto 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.profile-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.profile-id {
    font-size: 1rem;
    opacity: 0.95;
}

.profile-body {
    padding: 30px;
}

.info-row {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.05), rgba(243, 189, 2, 0.03));
    border-radius: 12px;
    border-left: 4px solid #303192;
    transition: all 0.3s ease;
}

.info-row:hover {
    background: linear-gradient(135deg, rgba(48, 49, 146, 0.1), rgba(243, 189, 2, 0.05));
    transform: translateX(5px);
    border-left-color: #f3bd02;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #303192, #f3bd02);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-content {
    flex-grow: 1;
}

.info-label {
    font-size: 0.875rem;
    color: #303192;
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.05rem;
    color: #1a202c;
    font-weight: 700;
}

/* Print Button */
.print-btn {
    background: linear-gradient(135deg, #f3bd02 0%, #d4a102 100%);
    max-width: 350px;
    margin: 30px auto 0;
    display: block;
    box-shadow: 0 15px 35px rgba(243, 189, 2, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #1a1f5f;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.print-btn:hover {
    background: linear-gradient(135deg, #d4a102 0%, #b88902 100%);
    box-shadow: 0 20px 45px rgba(243, 189, 2, 0.5), 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* ===================================
   FOOTER STYLES
==================================== */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 2rem 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a,
.social-link {
    width: 50px;
    height: 50px;
    background: #f3bd02;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(48, 49, 146, 0.3);
}

.social-links a:hover,
.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(48, 49, 146, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
}

/* ===================================
   ANIMATIONS & KEYFRAMES
==================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes shake2 {
    10%, 90% { transform: translateX(-1px); }
    20%, 80% { transform: translateX(2px); }
    30%, 50%, 70% { transform: translateX(-4px); }
    40%, 60% { transform: translateX(4px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes checkmark {
    0%, 50% {
        transform: scale(0) rotate(-45deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.wow {
    animation-duration: 1s;
}

/* Loading States */
.loading {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #f3bd02;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

.course-card.loading,
.gallery-item.loading {
    position: relative;
    overflow: hidden;
}

.course-card.loading::after,
.gallery-item.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(48, 49, 146, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Empty States */
.empty-gallery {
    text-align: center;
    padding: 60px 20px;
}

.empty-gallery i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-gallery h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.empty-gallery p {
    color: var(--text-light);
}

.fa-folder-open {
    color: #303192 !important;
}

/* Text Utilities */
.text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-warning {
    color: #f3bd02 !important;
}

/* ===================================
   RESPONSIVE DESIGN
==================================== */
@media (max-width: 1200px) {
    .courses-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero .container,
    .about .container,
    .company-overview .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        text-align: center;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .search-card {
        padding: 40px 30px;
    }

    .search-card h2 {
        font-size: 2rem;
    }

    .verification-section {
        padding: 60px 0;
    }

    .mv-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .map-container iframe {
        height: 400px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        margin-top: 0.5rem;
        background: rgba(48, 49, 146, 0.05);
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-toggle i {
        transform: rotate(0deg);
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-menu a:hover {
        padding-left: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .image-container {
        height: 220px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: -40px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        min-height: 250px;
        padding-top: 100px !important;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .search-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .search-card h2 {
        font-size: 1.75rem;
    }

    .search-card p {
        font-size: 1rem;
    }

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

    .icon-wrapper i {
        font-size: 40px;
    }

    .search-input {
        font-size: 15px;
        padding: 18px 20px 18px 55px;
    }

    .search-btn {
        font-size: 16px;
        padding: 18px 30px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .result-card {
        padding: 25px 20px;
    }

    .result-card h3 {
        font-size: 1.5rem;
    }

    .badge-verified,
    .badge-error {
        font-size: 14px;
        padding: 12px 25px;
    }

    .verification-section {
        padding: 50px 0;
    }

    .features-section {
        padding: 50px 0;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-form-title {
        font-size: 2rem;
    }

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

    .stats-highlight {
        grid-template-columns: 1fr;
    }

    .popup-modal {
        width: 95%;
    }

    .popup-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
    }

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

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .popup-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .search-card h2 {
        font-size: 1.5rem;
    }

    .search-input {
        border-radius: 40px;
        padding: 16px 20px 16px 50px;
    }

    .search-icon {
        left: 20px;
        font-size: 18px;
    }

    .search-btn {
        border-radius: 40px;
        padding: 16px 25px;
        font-size: 15px;
        width: 100%;
        margin-top: 20px;
    }

    .info-item {
        padding: 15px;
    }

    .info-item .value {
        font-size: 16px;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .breadcrumb-item a span,
    .breadcrumb-item.active span {
        display: none;
    }

    .breadcrumb-item a i,
    .breadcrumb-item.active i {
        margin: 0;
    }

    .courses-grid-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-modal {
        padding: 10px;
    }

    .lightbox-details {
        padding: 20px 15px 15px;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .map-container iframe {
        height: 350px;
    }

    .search-card {
        border-radius: 16px;
    }

    .search-header {
        padding: 20px;
    }

    .info-row {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .learn-btn {
        display: none !important;
    }
    .mob_hero>h1{
        /*display: none;*/
        font-size: 16px !important;
    }

    .mob_hero>p{
        /*display: none;*/
        font-size: 14px !important;
        text-align: justify;
    }
    .hero_img{
        width:90vw !important;
    }
    .hero_img>img{
        width:100% !important;
        height:250px !important;
    }

}

/* ===================================
   PRINT STYLES
==================================== */
@media print {
    .page-header,
    .verification-section,
    .search-card,
    .features-section,
    .breadcrumb,
    .search-btn,
    .print-btn,
    .badge-verified,
    .badge-error,
    .navbar,
    .footer {
        display: none !important;
    }

    .result-card {
        box-shadow: none;
        border: 2px solid #000;
        page-break-inside: avoid;
        margin-bottom: 20px;
    }

    body {
        background: white;
    }

    .results-container {
        margin-top: 0;
    }
}

/* ===================================
   ACCESSIBILITY
==================================== */
.search-input:focus,
.search-btn:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 3px solid rgba(48, 49, 146, 0.5);
    outline-offset: 2px;
}

.search-btn:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

/* ===================================
   SCROLLBAR STYLES
==================================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #303192 0%, #f3bd02 100%);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1a1f5f 0%, #d4a102 100%);
}

/* ===================================
   SELECTION STYLES
==================================== */
::selection {
    background: #303192;
    color: white;
}

::-moz-selection {
    background: #303192;
    color: white;
}