/* 
 * All Winner Angel Institutions
 * Premium Main Stylesheet
 */

:root {
    --primary: #0F2042;
    --primary-light: #1A315D;
    --primary-rgb: 15, 32, 66;
    --accent: #C5A880;
    --accent-dark: #AA8C60;
    --accent-rgb: 197, 168, 128;
    --text-dark: #1E2229;
    --text-muted: #5E6675;
    --bg-light: #F7F8FA;
    --bg-white: #FFFFFF;
    --gold-gradient: linear-gradient(135deg, #C5A880 0%, #AA8C60 100%);
    --navy-gradient: linear-gradient(135deg, #0F2042 0%, #081226 100%);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #E8E8E8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 10px;
    border: 2px solid #e8e8e8;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-dark);
}

/* Firefox Scrollbar */
* {
    scrollbar-color: var(--accent) #e8e8e8;
    scrollbar-width: thin;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Utilities */
.section {
    padding: 100px 0;
}
.section-bg {
    background-color: var(--bg-white);
}
.text-center {
    text-align: center;
}
.text-gold {
    color: var(--accent);
}
.mt-4 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--navy-gradient);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 32, 66, 0.2);
}

.btn-accent {
    background: var(--gold-gradient);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

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

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}
.section-title {
    font-size: 2.3rem;
    margin-bottom: 16px;
    position: relative;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 16px auto 0 auto;
    border-radius: 2px;
}
.section-title.left-align::after {
    margin: 16px 0 0 0;
}
.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-bar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-info span {
    margin-right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.top-info a:hover {
    color: var(--accent);
}
.top-socials {
    display: flex;
    gap: 16px;
}
.top-socials a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.top-socials a:hover {
    color: var(--accent);
}

.main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}
.main-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.main-header.scrolled .logo-img {
    height: 44px;
}
.mobile-drawer-header .logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-menu a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.5px;
}
.nav-menu a:not(.nav-cta-btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}
.nav-menu a:hover:not(.nav-cta-btn)::after,
.nav-menu a.active:not(.nav-cta-btn)::after {
    width: 100%;
}
.nav-cta-btn {
    background: var(--navy-gradient);
    color: var(--bg-white) !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}
.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 32, 66, 0.15);
}

/* Dropdown styling */
.dropdown {
    position: relative;
}
.dropdown-menu-list {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--bg-white);
    min-width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
}
.dropdown:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu-list li {
    width: 100%;
}
.dropdown-menu-list a {
    display: block;
    padding: 10px 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
.dropdown-menu-list a::after {
    display: none !important;
}
.dropdown-menu-list a:hover {
    background-color: var(--bg-light);
    color: var(--accent-dark);
}

.burger-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}
.burger-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 1050;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.mobile-drawer.active {
    right: 0;
}
.mobile-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.close-drawer-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
}
.mobile-drawer-body ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-drawer-body a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
}
.mobile-drawer-body a.active {
    color: var(--accent-dark);
}
.drawer-contact-info {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 32, 66, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}
.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Hero Banner & Page Headers
   ========================================================================== */
.hero {
    background: linear-gradient(rgba(15, 32, 66, 0.82), rgba(15, 32, 66, 0.82)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    height: calc(100vh - 110px);
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: 10%;
    right: 10%;
    border-radius: 50%;
}

.hero-content {
    max-width: 700px;
}
.hero-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: inline-block;
}
.hero-title {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}
.hero-title span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 300;
}
.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Page Header (Subpages) */
.page-header {
    background: linear-gradient(rgba(15, 32, 66, 0.85), rgba(15, 32, 66, 0.9)), url('../images/header-bg.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}
.page-header h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.7);
}
.breadcrumbs a:hover {
    color: var(--accent);
}
.breadcrumbs span.current {
    color: var(--accent);
    font-weight: 600;
}

/* ==========================================================================
   Home Page Sections
   ========================================================================== */

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}
.welcome-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}
.welcome-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.highlight-quote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    margin: 24px 0;
}
.welcome-image-wrapper {
    position: relative;
}
.welcome-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 168, 128, 0.2);
}
.welcome-img-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 168, 128, 0.25);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 250px;
}
.welcome-img-card i {
    font-size: 2.2rem;
    color: var(--accent-dark);
}
.welcome-img-card h4 {
    font-size: 1.2rem;
    color: var(--primary);
}
.welcome-img-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Why Choose Us Section */
.wcu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.wcu-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}
.wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
}
.wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.wcu-card:hover::before {
    opacity: 1;
}
.wcu-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 168, 128, 0.1);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}
.wcu-card:hover .wcu-icon {
    background: var(--gold-gradient);
    color: #fff;
}
.wcu-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}
.wcu-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Countries We Support */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.country-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}
.country-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.country-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--primary);
}
.country-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.country-card:hover img {
    transform: scale(1.1);
    opacity: 0.85;
}
.country-flag {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.country-flag img {
    object-fit: cover;
}
.country-info {
    padding: 20px;
    text-align: center;
}
.country-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.country-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.country-card:hover .country-link {
    color: var(--primary);
}

/* Popular Courses */
.courses-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.course-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 168, 128, 0.2);
}
.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}
.course-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(15, 32, 66, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.3rem;
}
.course-card:hover .course-icon-box {
    background: var(--navy-gradient);
    color: #fff;
}
.course-duration {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(197, 168, 128, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
}
.course-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.course-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}
.course-countries {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.course-countries span strong {
    color: var(--primary);
}

/* Success Statistics */
.stats-section {
    background: var(--navy-gradient);
    color: var(--bg-white);
    position: relative;
    padding: 80px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat-card {
    text-align: center;
}
.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Testimonials Slider */
.testimonials-wrapper {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-slide {
    min-width: 100%;
    padding: 20px;
    text-align: center;
}
.testimonial-quote {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}
.testimonial-quote i {
    font-size: 2rem;
    color: rgba(197, 168, 128, 0.2);
    display: block;
    margin-bottom: 10px;
}
.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.testimonial-user-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}
.testimonial-user-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(15, 32, 66, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.slider-dot.active {
    background-color: var(--accent-dark);
    width: 24px;
    border-radius: 5px;
}

/* Call to Action */
.cta-section {
    background: linear-gradient(rgba(15, 32, 66, 0.9), rgba(15, 32, 66, 0.95)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* ==========================================================================
   Forms & Inputs (Contact & Sidebar Forms)
   ========================================================================== */
.contact-section-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-panel {
    background: var(--navy-gradient);
    color: #fff;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-info-panel h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}
.contact-info-panel p.lead {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}
.info-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.info-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-row-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
}
.info-row-text h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
}
.info-row-text p, .info-row-text a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}
.info-row-text a:hover {
    color: var(--accent);
}

.form-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.form-card p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--border-radius);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-dark);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   Page Specific Layouts
   ========================================================================== */

/* About Us Page */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.about-feat-card {
    text-align: center;
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}
.about-feat-card i {
    font-size: 2rem;
    color: var(--accent-dark);
    margin-bottom: 16px;
}
.about-feat-card h4 {
    margin-bottom: 10px;
}
.about-feat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Services Page */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-list-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.service-card-banner {
    background: var(--navy-gradient);
    color: #fff;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-card-banner i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}
.service-card-banner h3 {
    color: #fff;
    font-size: 1.3rem;
}
.service-card-details {
    padding: 30px;
}
.service-card-details ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-card-details li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    gap: 8px;
}
.service-card-details li i {
    color: var(--accent-dark);
    margin-top: 4px;
}

/* Study Abroad Page */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: rgba(197, 168, 128, 0.3);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-white);
    border: 3px solid var(--accent);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.left-item {
    left: 0;
}
.right-item {
    left: 50%;
}
.right-item::after {
    left: -8px;
}
.timeline-content {
    padding: 30px;
    background-color: var(--bg-white);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
}
.timeline-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 6px;
    display: inline-block;
}
.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}
.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Country Page Detail Layout */
.country-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.country-badge-tag {
    background: rgba(197, 168, 128, 0.15);
    color: var(--accent-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Gallery Page */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-btn {
    background: var(--bg-white);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.filter-btn.active, .filter-btn:hover {
    background: var(--navy-gradient);
    color: #fff;
    border-color: var(--primary);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 32, 66, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 10px;
}
.gallery-overlay h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.gallery-overlay p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Contact Us Page Detail Map */
.map-container {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(197, 168, 128, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Footer Component Styles
   ========================================================================== */
.main-footer-section {
    background: var(--navy-gradient);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 80px;
    font-size: 0.9rem;
    border-top: 3px solid var(--accent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo .logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.brand-desc {
    margin-bottom: 24px;
    line-height: 1.7;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}
.footer-socials a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    display: block;
    width: 35px;
    height: 2px;
    background-color: var(--accent);
    position: absolute;
    bottom: 0;
    left: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}
.footer-links a i {
    font-size: 0.7rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}
.footer-links a:hover i {
    color: #fff;
}

.col-contact p {
    margin-bottom: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.col-contact p i {
    color: var(--accent);
    margin-top: 4px;
}
.col-contact p span, .col-contact a {
    color: rgba(255, 255, 255, 0.8);
}
.col-contact p a[href^="tel:"] {
    color: var(--accent);
}
.col-contact a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.8rem;
}
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.copyright strong {
    color: #fff;
}
.bottom-legal-links {
    display: flex;
    gap: 20px;
}
.bottom-legal-links a:hover {
    color: var(--accent);
}

/* ==========================================================================
   Floating Integration Buttons (WhatsApp & Call)
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition-smooth);
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}
.floating-whatsapp .tooltip-text {
    position: absolute;
    right: 75px;
    background-color: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}
.floating-whatsapp:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.floating-call {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 999;
    transition: var(--transition-smooth);
    display: none; /* Toggle via Media Query */
}
.floating-call:hover {
    transform: scale(1.1);
    background-color: var(--primary);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet/Desktop shrink */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .burger-menu-btn {
        display: flex;
    }
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .courses-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .contact-section-layout {
        grid-template-columns: 1fr;
    }
}

/* Mobile landscape and port */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    .hero {
        height: auto;
        padding: 100px 0 80px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .timeline::after {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
    }
    .timeline-item::after {
        left: 22px;
    }
    .right-item {
        left: 0;
    }
    .right-item::after {
        left: 22px;
    }
    .floating-call {
        display: flex; /* Show floating call button on mobile */
    }
    .top-bar-content {
        justify-content: center;
    }
    .top-socials {
        display: none;
    }
    .d-none-md {
        display: none !important;
    }
    .welcome-img-card {
        left: 10px;
        bottom: -10px;
    }
}

@media (max-width: 576px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }
    .countries-grid {
        grid-template-columns: 1fr;
    }
    .courses-grid-layout {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-col {
        text-align: center;
    }
    .footer-col .footer-title {
        justify-content: center;
    }
    .footer-links {
        display: inline-block;
        text-align: left;
    }
    .footer-links li {
        margin-bottom: 12px;
    }
    .footer-links a {
        justify-content: flex-start;
    }
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .bottom-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .form-card {
        padding: 30px 20px;
    }
    .contact-info-panel {
        padding: 30px 20px;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .slider-dots {
        margin-top: 20px;
    }
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
    position: relative;
    height: calc(100vh - 110px);
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    color: var(--bg-white);
    background-color: #0f2042;
}

.hs-track {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.hs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.hs-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hs-content {
    max-width: 700px;
    position: relative;
    z-index: 5;
    padding: 0 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transition-delay: 0.3s;
}

.hs-slide.active .hs-content {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hs-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.hs-prev {
    left: 30px;
}

.hs-next {
    right: 30px;
}

.hs-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hs-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hs-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slider {
        height: calc(100vh - 80px);
        min-height: 500px;
    }
    .hs-arrow {
        display: none; /* Hide arrows on mobile, use swipe */
    }
    .hs-dots {
        bottom: 20px;
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: #0f2042;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1a315d;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #0f2042 #f1f1f1;
}


