/* ============================================
   Global Styles
   ============================================ */

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

/* ============================================
   Preloader
   ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}


.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(222, 177, 55, 0.2);
    border-top-color: #deb137;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
    z-index: 999999;
}

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

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

:root {
    --primary-bg: #000000;
    --accent-color: #D4AF37;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --transition: all 0.3s ease;
    --gold-gradient: linear-gradient(135deg, #fad969 0%, #af770e 100%);
}

.text-highlight {
    color: #deb137;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Progress Bar
   ============================================ */

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #deb137;
    z-index: 9999;
    transition: width 0.1s ease-out;
    will-change: width;
    transform: translateZ(0);
}

/* ============================================
   Navigation Bar
   ============================================ */

.transparent-nav {
    transition: var(--transition);
    padding: 1rem 0;
    will-change: background-color, backdrop-filter;
}

.transparent-nav.scrolled {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.navbar{
    background-color: none;
}

.navbar-logo {
    height: 85px;
    width: auto;
    margin-right: 10px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0.5rem;
    text-transform: capitalize;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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



.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-toggler {
    border: 1px solid var(--accent-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   Hero Section with Owl Carousel
   ============================================ */

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-carousel {
    height: 100vh;
}

.hero-carousel .item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-1 {
    background-image: url('images/banner.jpeg');
}

.slide-2 {
    background-image: url('images/banner2.jpeg');
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background-image: linear-gradient(#000000, rgba(0, 0, 0, 0.0)) !important;
    z-index: 1;
}

.hero-overlay2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 320px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), #000000) !important;
    z-index: 1;
}
.hero-overlay3 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.0), #000000) !important;
    opacity: 0.7;
    z-index: 1;
}
 
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-heading {
    font-size: 4.3rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.hero-subheading {
    font-weight: 300;
    font-size: 16px;
    line-height: 213%;
    color: rgba(255, 255, 255, 0.79);
}

.service-tagline {
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content .btn-cta {
    margin-top: 1.5rem;
}

/* Owl Carousel Navigation */
.owl-nav {
    display: none !important;
}

.owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.8) !important;
    color: var(--text-light) !important;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: var(--transition);
    border: none;
}

.owl-nav button:hover {
    background-color: var(--accent-color) !important;
    transform: scale(1.1);
}

.owl-nav .owl-prev {
    left: 30px;
}

.owl-nav .owl-next {
    right: 30px;
}

.owl-dots {
    display: none !important;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 5px;
    transition: var(--transition);
}

.owl-dots button.owl-dot.active {
    background-color: var(--accent-color) !important;
    transform: scale(1.3);
}

/* ============================================
   Section Styles
   ============================================ */

section {
    /* background-color: var(--primary-bg); */
    position: relative;
    overflow: hidden;
}

.services-section::before {
    position: absolute;
    content: "";
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-color: #deb137;
    filter: blur(1000px);
    top: 40%;
    left: 0%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}
.franchise-network-section::before{
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: #deb137;
    filter: blur(1000px);
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

section > * {
    position: relative;
    z-index: 1;
}

.section-heading {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: capitalize;
    margin-bottom: 3rem;
    position: relative;
}





/* ============================================
   About Section
   ============================================ */

.about-section {
    background-color: var(--primary-bg);
}

.about-left-content {
    padding: 2rem 0;
}

.about-label-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.about-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 1rem;
}

.about-label-line {
    flex: 1;
    height: 1px;
    background-color: var(--text-light);
    max-width: 100px;
}

.about-main-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 2.5rem;
    text-transform: capitalize;
}

.about-social-proof {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
}

.student-avatars {
    display: flex;
    align-items: center;
    position: relative;
}

.student-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 2px solid var(--primary-bg);
    margin-left: -10px;
    position: relative;
}

.student-avatar:nth-child(1) {
    margin-left: 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.student-avatar:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.student-avatar:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.student-avatar:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.student-avatar:nth-child(5) {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.student-count-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -10px;
    border: 2px solid var(--primary-bg);
}

.student-count-circle span {
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
}

.student-text {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.btn-cta {
    background-image: var(--gold-gradient);
    background-size: 200% auto;
    background-position: left center;
    color: #18191C;
    border: none;
    padding: 0.8rem 1.75rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Kanit', sans-serif;
}

.btn-cta:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 177, 55, 0.3);
}

.btn-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--primary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.about-content {
    padding: 2rem 0;
}

.about-text {
    font-weight: 300;
    font-size: 15px;
    line-height: 213%;
    color: rgba(255, 255, 255, 0.79);
    margin-bottom: 1.5rem;
}

/* ============================================
   Services Section
   ============================================ */

.services-section {
    background-color: var(--primary-bg);
}

.service-item {
    margin-bottom: 6rem;
}

.service-item:last-child {
    margin-bottom: 0;
}



.service-content {
    padding: 2rem;
}



.franchise-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.franchise-tier-card {
    border: 1px solid rgba(250, 250, 250, 0.09);
    border-radius: 22px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
}

.franchise-tier-card:hover {
    border-color: rgba(250, 217, 105, 0.65);
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(250, 217, 105, 0.18);
}

.tier-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(250, 217, 105, 0.15);
    color: #fad969;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.tier-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-light);
}

.btn-cta.register-outline {
    background: transparent;
    background-image: none;
    border: 1px solid rgba(250, 217, 105, 0.4);
    color: #fad969;
    padding: 0.7rem 1.5rem;
    justify-content: center;
    gap: 0.6rem;
}

.btn-cta.register-outline:hover {
    border-color: rgba(250, 217, 105, 0.7);
    background: rgba(250, 217, 105, 0.08);
    box-shadow: 0 8px 20px rgba(250, 217, 105, 0.2);
}

/* ============================================
   Registration Modal
   ============================================ */

.register-modal .modal-dialog {
    max-width: 900px;
}

.register-modal .modal-content {
    background: #050505;
    border-radius: 34px;
    border: 1px solid rgba(250, 217, 105, 0.25);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.85);
    padding: 2.5rem;
    color: var(--text-light);
    width: calc(100% - 16px);
    margin: 8px;
    overflow-x: hidden;
}

.register-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.register-modal .modal-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.register-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.register-modal .modal-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
}

.register-modal .modal-title {
    font-size: 2.1rem;
    margin: 0;
}

.register-modal .modal-body {
    padding: 0;
    overflow-y: auto;
    overflow-x: hidden;
}

.register-modal .modal-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.register-form .form-label {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.register-form .form-control,
.register-form .form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    transition: var(--transition);
}

.register-form .form-control::placeholder,
.register-form .form-select::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.register-form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23FAD969' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.register-form .form-control:focus,
.register-form .form-select:focus {
    border-color: #fad969;
    box-shadow: 0 0 0 3px rgba(250, 217, 105, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2.25rem;
}

.submit-register {
    width: auto;
    color: #18191C;
    min-width: 180px;
}

.modal-actions .register-outline {
    border-radius: 999px;
    padding: 0.75rem 1.75rem;
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: var(--transition);
}

.service-image-wrapper:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 470px;
    display: block;
    border-radius: 15px;
    transition: var(--transition);
    object-fit: cover;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.03);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.service-description {
    font-weight: 300;
    font-size: 15px;
    line-height: 213%;
    color: rgba(255, 255, 255, 0.79);
}

.service-list {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    color: var(--text-light);
}

.service-list li {
    font-weight: 300;
    font-size: 15px;
    line-height: 213%;
    color: rgba(255, 255, 255, 0.79);
    line-height: 1.6;
    margin-top: 20px;
}

/* Our Services Section */
.our-services-section {
    background-color: var(--primary-bg);
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-weight: 400;
    font-size: 17px;
    line-height: 213%;
    color: rgba(255, 255, 255, 0.79);
    padding: 9px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li::before {
    content: "•";
    color: #deb137;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 10px;
}

/* ============================================
   Franchise Network Section
   ============================================ */

.franchise-network-section {
    background-color: var(--primary-bg);
}

.franchise-subtitle {
    font-weight: 300;
    font-size: 15px;
    line-height: 213%;
    color: rgba(255, 255, 255, 0.79);
}

.district-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    justify-content: center;
}
.district-card {
    background-color: #101010;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.district-card:hover {
    transform: translateY(-5px);
    border-color: rgba(222, 177, 55, 0.4);
    box-shadow: 0 20px 50px rgba(222, 177, 55, 0.2);
}

.district-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(222, 177, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.district-icon i {
    font-size: 1.5rem;
    color: #deb137;
}

.district-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: capitalize;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .district-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .district-card {
        min-height: 120px;
        padding: 20px 15px;
    }

    .district-name {
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .district-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* ============================================
   Achievements Section
   ============================================ */

.achievements-section {
    position: relative;
    background-image: url('images/banner2.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    margin-top: 100px;
    background-attachment: fixed;
}

.achievements-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 0;
}

.achievements-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.achievements-label {
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.achievements-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.achievements-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.achievements-btn {
    background-image: var(--gold-gradient);
    background-size: 200% auto;
    background-position: left center;
    color: #18191C;
    border: none;
}

.achievements-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 177, 55, 0.3);
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    margin-top: 80px;
}

.contact-heading {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: capitalize;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
    min-width: 30px;
}

.contact-item strong {
    color: var(--text-light);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

.locations-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-top: 2rem;
}

.location-list {
    margin-top: 1rem;
}

.location-item {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.location-item:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.location-icon {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-wrapper {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-label {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--primary-bg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2.5rem;
    border: none;
    border-radius: 5px;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-submit:hover {
    background-color: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Modern Contact Layout */
.contact-section {
    color: var(--text-light);
    margin-top: 80px;
}

.contact-left {
    padding-right: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    font-size: 1.3rem;
    color: #deb137;
    margin-top: 0.2rem;
}

.contact-detail a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-detail a:hover {
    color: #deb137;
}

.contact-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.contact-label {
    color: #b8941f;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-email {
    margin-bottom: 1.75rem;
}

.email-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #c49f2f;
    display: block;
    margin-bottom: 0.4rem;
}

.contact-email a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
}

.contact-cta {
    background-image: var(--gold-gradient);
    background-size: 200% auto;
    background-position: left center;
    color: #18191C;
    border: none;
}

.modern-form {
    background-color: #101010;
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.modern-form .form-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0;
    text-transform: none;
}

.input-icon-wrapper,
.textarea-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
}

.input-icon-wrapper .form-control {
    background-color: #161616;
    border-radius: 999px;
    padding-left: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
}

.textarea-icon-wrapper .form-control {
    background-color: #161616;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    padding: 1rem 1.2rem;
}

.input-icon-wrapper .form-control:focus,
.textarea-icon-wrapper .form-control:focus {
    border-color: #deb137;
    background-color: #1e1e1e;
    box-shadow: 0 0 0 3px rgba(222, 177, 55, 0.2);
}

.submit-modern {
    background-image: var(--gold-gradient);
    background-size: 200% auto;
    background-position: left center;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 2rem;
    font-weight: 600;
    color: #18191C;
    transition: var(--transition);
}

.submit-modern:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(222, 177, 55, 0.3);
}

.disclaimer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: #101010;
    padding: 60px 0 40px;
    text-align: center;
    margin-top: 80px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 70px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #deb137;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0.35rem;
    font-size: 1.1rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.threads-link {
    background: linear-gradient(135deg, #222, #444);
}

.threads-icon {
    font-size: 1rem;
    font-weight: 700;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2rem;
    font-size: 0.9rem;
}

/* ============================================
   Back to Top Button
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-image: var(--gold-gradient);
    background-size: 200% auto;
    background-position: left center;
    color: #18191C;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(222, 177, 55, 0.4);
}

.back-to-top:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(222, 177, 55, 0.6);
}

.back-to-top.show {
    display: flex;
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #25D366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1100;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ============================================
   Animations
   ============================================ */

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

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

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 992px) {
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-subheading {
        font-size: 1.4rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .about-main-heading {
        font-size: 2.2rem;
    }
    
    .about-content {
        padding: 1rem 0;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-heading {
        font-size: 2.5rem;
    }
    
    .hero-subheading {
        font-size: 1.2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .navbar-logo {
        height: 60px;
    }
    
    .navbar-brand .brand-text {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .about-main-heading {
        font-size: 1.8rem;
    }
    
    .about-social-proof {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .student-avatars {
        margin-bottom: 0.5rem;
    }
    
    .btn-cta {
        width: auto;
        justify-content: space-between;
    }
    
    .network-highlight-card {
        padding: 1.5rem;
    }
    
    .service-item {
        margin-bottom: 4rem;
    }
    
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .owl-nav .owl-prev {
        left: 10px;
    }
    
    .owl-nav .owl-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subheading {
        font-size: 1rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    section {
        padding: 0px 0;
    }
    
    .about-main-heading {
        font-size: 1.5rem;
    }
    
    .about-label {
        font-size: 0.9rem;
    }
    
    .student-avatar {
        width: 35px;
        height: 35px;
    }
    
    .student-count-circle {
        width: 45px;
        height: 45px;
    }
    
    .btn-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .network-highlight-card {
        padding: 1.25rem;
    }
    
    .about-text {
        font-weight: 300;
        font-size: 15px;
        line-height: 213%;
        color: rgba(255, 255, 255, 0.79);
        text-align: left;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-weight: 300;
        font-size: 15px;
        line-height: 213%;
        color: rgba(255, 255, 255, 0.79);
        text-align: left;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-heading {
        font-size: 1.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* ============================================
   Gradient Heading Styles
   ============================================ */

.hero-heading,
.section-heading,
.about-main-heading,
.service-title,
.achievements-heading,
.contact-heading,
.contact-title {
    background-image: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}


@media only screen and (min-width:100px) and (max-width:766px) {
  
    .achievements-section{
        margin-top: 0px;
    }
    .achievements-heading{
        font-size: 1.8rem;
    }
    .achievements-text{
        font-size: 15px;
    }
    .contact-title{
        font-size: 1.8rem;
    }
    .contact-section {
        margin-top: 30px;
    }
    .achievements-section {
       min-height: 500px;
    }

    .footer-nav{
        display: block;
    }
    .service-image{
        height: 350px;
    }
    .navbar{
        background-color: #17181b;
    }

}

/* ============================================
   Policy Pages Styles
   ============================================ */

.policy-section {
    min-height: calc(100vh - 200px);
    background-color: var(--primary-bg);
}

.policy-content {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Kanit', sans-serif;
}

.policy-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: 'Kanit', sans-serif;
}

.policy-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.policy-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.8rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 2rem;
    }
    
    .policy-subtitle {
        font-size: 1.3rem;
    }
    
    .policy-text {
        font-size: 1rem;
    }
    
    .policy-list li {
        padding-left: 1.5rem;
    }
}

/* ============================================
   Inner Page Banner Section
   ============================================ */

.inner-page-banner {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('images/banner.jpeg');
}

.inner-page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.inner-page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.inner-page-banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.inner-page-banner-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: capitalize;
    margin: 0;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.inner-page-banner-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 992px) {
    .inner-page-banner {
        height: 350px;
    }
    
    .inner-page-banner-title {
        font-size: 3rem;
    }
    
    .inner-page-banner-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .inner-page-banner {
        height: 300px;
        margin-top: 70px;
    }
    
    .inner-page-banner-title {
        font-size: 2.5rem;
    }
    
    .inner-page-banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .inner-page-banner {
        height: 250px;
    }
    
    .inner-page-banner-title {
        font-size: 2rem;
    }
    
    .inner-page-banner-subtitle {
        font-size: 0.9rem;
    }
}
.mar-sec-top{
    margin-top: 100px;
}