/* ============================================
   IBNYSIM - Complete Stylesheet
   Includes: Header, Footer, Index Page, Common Elements
   ============================================ */

:root {
    --primary: #1B4D3E;
    --primary-dark: #0E3328;
    --primary-light: #E8F3EF;
    --secondary: #B8860B;
    --secondary-dark: #8B6508;
    --accent: #C0392B;
    --dark: #2C3E50;
    --gray: #5D6D7E;
    --gray-light: #7F8C8D;
    --light-gray: #F4F6F7;
    --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.12);
    --shadow-large: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info span {
    margin-right: 24px;
}

.quick-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    transition: var(--transition);
}

.quick-links a:hover {
    color: var(--secondary);
}

/* ============================================
   LOGO SECTION
   ============================================ */
.logo-section {
    background: var(--white);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

/* Background SVG Icons */
.bg-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-icons svg {
    position: absolute;
    opacity: 0.12;
    width: 80px;
    height: 80px;
}

.icon-1 { top: 10%; left: 5%; width: 100px; height: 100px; }
.icon-2 { bottom: 15%; right: 8%; width: 90px; height: 90px; }
.icon-3 { top: 50%; left: 85%; width: 70px; height: 70px; }
.icon-4 { top: 70%; left: 3%; width: 85px; height: 85px; }
.icon-5 { bottom: 5%; left: 20%; width: 75px; height: 75px; }
.icon-6 { top: 20%; right: 2%; width: 80px; height: 80px; }

.logo-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
}

/* Logo Size */
.logo img {
    height: 95px;
    width: auto;
}

/* Logo Text Sizes */
.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.logo-text p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.logo-text .tagline {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.nav-bar {
    background: var(--primary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

nav {
    flex: 1;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    display: inline-block;
    padding: 16px 22px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

nav ul li a:hover,
nav ul li a.active {
    background: var(--secondary);
    color: var(--white);
}

/* Dropdown Menu - Vertical List */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary);
    min-width: 300px;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    border-radius: 0 0 8px 8px;
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--white);
    background: var(--primary);
    border: none;
    width: 100%;
    text-align: left;
}

.dropdown-menu li a:hover {
    background: var(--secondary);
    color: var(--white);
    padding-left: 28px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px 0;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* ============================================
   HERO SLIDER SECTION
   ============================================ */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27,77,62,0.88), rgba(14,51,40,0.75));
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary);
    width: 25px;
    border-radius: 5px;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 12px 18px;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    border-radius: 50%;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--secondary);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* ============================================
   WHY REGISTRATION SECTION
   ============================================ */
.why-registration {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}

.registration-box {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

.registration-content {
    padding: 50px;
}

.section-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.registration-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.registration-content p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.registration-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.registration-benefits li {
    padding: 8px 0;
    color: var(--dark);
    font-size: 0.95rem;
}

.registration-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.registration-stats {
    background: var(--primary);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
}

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ============================================
   WELCOME PHILOSOPHY SECTION
   ============================================ */
.welcome-philosophy {
    padding: 80px 0;
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.philosophy-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-dark);
    margin-left: 5px;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-large);
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   COURSES SECTION
   ============================================ */
.our-courses {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.left {
    text-align: left;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.course-card.featured {
    border: 2px solid var(--secondary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.course-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.course-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.course-fullname {
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.course-description {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-meta {
    margin-bottom: 20px;
}

.duration, .eligibility {
    display: inline-block;
    font-size: 0.7rem;
    padding: 3px 10px;
    background: var(--primary-light);
    border-radius: 15px;
    margin: 3px;
    color: var(--primary);
}

.course-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.course-link:hover {
    color: var(--secondary-dark);
    margin-left: 5px;
}

.view-all-courses {
    text-align: center;
}

.btn-outline-large {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-large:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   NOTICE & EVENTS SECTION
   ============================================ */
.notice-events {
    padding: 80px 0;
    background: var(--white);
}

.notice-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.notice-board, .events-board {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 30px;
}

.notice-list, .event-list {
    margin: 20px 0;
}

.notice-item, .event-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.notice-date, .event-date {
    min-width: 60px;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    padding: 8px;
}

.notice-date .day, .event-date .day {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.notice-date .month, .event-date .month {
    font-size: 0.7rem;
    color: var(--gray);
}

.notice-details h4, .event-details h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.important-tag {
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
}

.notice-details p, .event-details p {
    font-size: 0.85rem;
    color: var(--gray);
}

.event-meta {
    font-size: 0.75rem;
    margin-bottom: 5px;
    color: var(--gray-light);
}

.view-all-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-link:hover {
    color: var(--secondary-dark);
    margin-left: 5px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 80px 0;
    background: var(--primary-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ============================================
   RECOGNITIONS SECTION
   ============================================ */
.recognitions {
    padding: 60px 0;
    background: var(--white);
}

.recognition-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.logo-item img {
    max-height: 70px;
    margin-bottom: 10px;
}

.logo-item p {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: var(--secondary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary-large:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

/* ============================================
   FOOTER SECTION - WITH PROPER COLUMN SIZES
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0a2a22 0%, #061c16 50%, #03120e 100%);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Footer Background Effects */
.footer-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.effect-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.08);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 50px;
    left: -80px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 10%;
    animation-delay: 5s;
}

.effect-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: repeating-linear-gradient(90deg, 
        rgba(184, 134, 11, 0.05) 0px, 
        rgba(184, 134, 11, 0.05) 2px,
        transparent 2px,
        transparent 10px);
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Footer Grid - PROPER COLUMN SIZES */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Main Column (First Column) - Wider */
.footer-col-main {
    max-width: 100%;
}

/* Other Columns */
.footer-col {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--secondary);
}

.footer-logo h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin: 0;
}

/* College Name & Address */
.college-name {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    line-height: 1.4;
}

.sub-text {
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-details {
    margin: 15px 0;
}

.contact-details p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-details p i {
    width: 20px;
    color: var(--secondary);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Footer Headings */
.footer-col h3 {
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h3 i {
    font-size: 0.9rem;
}

/* Footer Links */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--secondary);
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: var(--transition);
}

.newsletter-section:hover {
    border-color: rgba(184, 134, 11, 0.5);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-content i {
    font-size: 2rem;
    color: var(--secondary);
}

.newsletter-content h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--white);
}

.newsletter-content p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 18px;
    border: none;
    border-radius: 40px;
    min-width: 250px;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.15);
}

.newsletter-form input::placeholder {
    color: #aaa;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--secondary);
    border: none;
    border-radius: 40px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #aaa;
}

.ministry-badge i {
    color: var(--secondary);
    margin-right: 5px;
}

.design-credit i {
    color: #ff6b6b;
    margin-right: 5px;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Footer Responsive */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col-main {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col-main {
        grid-column: span 1;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .contact-details p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-col h3 {
        justify-content: center;
    }
    
    .footer-col ul li a {
        justify-content: center;
    }
    
    .newsletter-section {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-content h2 {
        font-size: 2.2rem;
    }
    
    .bg-icons svg {
        width: 60px;
        height: 60px;
    }
    
    .registration-box {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .notice-events-grid {
        grid-template-columns: 1fr;
    }
    
    .registration-stats {
        flex-direction: row;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-outline {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    /* Mobile Navigation */
    .mobile-toggle {
        display: flex;
        z-index: 1002;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100%;
        background: var(--primary);
        transition: var(--transition);
        z-index: 1001;
        padding: 80px 20px 20px;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        background: var(--primary-dark);
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: none;
        border-radius: 0;
        margin-top: 5px;
        margin-bottom: 5px;
        min-width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding-left: 30px;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info span {
        display: inline-block;
        margin: 5px 10px;
    }
    
    .quick-links a {
        margin: 0 10px;
    }
    
    .logo {
        flex-direction: column;
        text-align: center;
    }
    
    .logo img {
        height: 75px;
    }
    
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        font-size: 0.85rem;
    }
    
    .bg-icons {
        display: none;
    }
    
    .registration-content {
        padding: 30px;
    }
    
    .registration-stats {
        flex-direction: column;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .philosophy-text h2 {
        font-size: 1.3rem;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .recognition-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 1.2rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .btn-primary, .btn-outline {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .registration-buttons {
        flex-direction: column;
    }
    
    .btn-primary-large, .btn-outline-light {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .recognition-logos {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 60px;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

.hidden {
    display: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.5s ease forwards;
}
/* ============================================
   SUB-HEADER COMPONENT (For all inner pages)
   ============================================ */
.sub-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}

/* Background Effects */
.sub-header-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: floatBg 15s infinite ease-in-out;
}

.bg-circle-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
    animation-delay: 3s;
}

.bg-circle-3 {
    width: 120px;
    height: 120px;
    bottom: 30%;
    right: 15%;
    animation-delay: 6s;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

@keyframes floatBg {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Sub-header Content */
.sub-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.sub-header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sub-header-content p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 20px;
    animation: slideInUp 0.5s ease 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    animation: slideInUp 0.5s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--secondary);
}

.breadcrumbs .separator {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
    color: var(--secondary);
    font-weight: 500;
}

/* ============================================
   VERIFICATION SECTION (Practitioners Page)
   ============================================ */
.verification-section {
    padding: 80px 0;
    background: var(--light-gray);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.verification-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.verification-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-large);
    transition: var(--transition);
}

.verification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shakeIn 0.4s ease;
}

@keyframes shakeIn {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

.alert-error {
    background: #fee;
    color: var(--accent);
    border-left: 4px solid var(--accent);
}

.alert-success {
    background: #e8f5e9;
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

/* Verification Form */
.verification-form .form-group {
    margin-bottom: 25px;
}

.verification-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.verification-form .form-group label i {
    margin-right: 8px;
    color: var(--secondary);
}

.verification-form .form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.verification-form .form-group input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.verify-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.verify-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.verify-btn:active {
    transform: translateY(0);
}

/* Responsive for Sub-header & Verification */
@media (max-width: 768px) {
    .sub-header {
        padding: 40px 0 35px;
    }
    
    .sub-header-content h1 {
        font-size: 1.8rem;
    }
    
    .sub-header-content p {
        font-size: 0.9rem;
    }
    
    .verification-section {
        padding: 50px 20px;
    }
    
    .verification-card {
        padding: 30px 25px;
    }
    
    .breadcrumbs {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .sub-header-content h1 {
        font-size: 1.4rem;
    }
    
    .page-icon {
        font-size: 2rem;
    }
    
    .verification-card {
        padding: 25px 20px;
    }
    
    .verify-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
/* ============================================
   TOP BAR SOCIAL MEDIA ICONS
   ============================================ */

/* Top Bar */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.8rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info span i {
    font-size: 0.8rem;
    color: var(--secondary);
}

/* Social Links in Top Bar */
.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Footer Social Icons */
.footer .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer .social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}