/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   HOTEL MANAGEMENT THEME - ELEGANT & LUXURY
   ============================================ */

:root {
    /* Primary Colors */
    --theme-white: #FFFFFF;
    --theme-navy: #0E2E4F;
    --theme-teal: #366682;
    --theme-gold: #FABB31;
    --theme-slate: #ffffff;
    
    /* Aliases */
    --theme-red: #366682;
    --theme-blue: #0E2E4F;
    --gold: #FABB31;
    --gold-light: #ffe066;
    --gold-dark: #c49100;
    --cream: #f8f9fa;
    
    /* Text Colors */
    --text-color: #8696A6;
    --text-light: #c1c6d4;
    --text-dark: #0E2E4F;
    
    /* Background Colors */
    --light-bg: #eaf5ff;
    --white: #ffffff;
    --black: #000000;
    
    /* Accent Colors */
    --accent-color: #366682;
    --accent-hover: #2a5266;
    --danger-color: #366682;
    
    /* Gradients */
    --gradient-navy: linear-gradient(135deg, #0E2E4F 0%, #1a4563 100%);
    --gradient-teal: linear-gradient(135deg, #366682 0%, #4a8099 100%);
    --gradient-hero: linear-gradient(135deg, rgba(14,46,79,0.92) 0%, rgba(54,102,130,0.85) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(14,46,79,0.08);
    --shadow-medium: 0 8px 30px rgba(14,46,79,0.12);
    --shadow-navy: 0 8px 25px rgba(14,46,79,0.25);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}
/* Text Primary Color */
.text-primary {
    color: var(--theme-blue) !important;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', 'Montserrat', 'Sora', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
    background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Montserrat', 'Sora', sans-serif; */
        font-family: 'Sora', serif;
    font-weight: 700;
    color: var(--theme-blue);
    margin: 0;
}

h2 {
    /* font-family: 'Sora', serif; */
        font-family: 'Sora', serif;
    font-weight: 700;
}
p{
    font-size:15px !important;
    font-weight: 500 !important;
    
}
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utility Classes */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--theme-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-color);
}

/* Limca Book of Records */
.limca-wrapper {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    /* max-width: 850px; */
    margin: 0 auto;
}

.limca-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    gap: 18px 25px;
}

.limca-list li {
    position: relative;
    padding-left: 28px;
    color: #1a1a2e;
    font-size: 17px;
    font-weight: 600;
    width: calc(50% - 13px);
}

.limca-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: var(--theme-blue);
    font-size: 16px;
    /* line-height: 1; */
}

.limca-count {
    font-family: 'Sora', serif;
}

.limca-wrapper:hover {
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .limca-wrapper {
        padding: 30px 25px;
    }
    .limca-list li {
        width: 100%;
        font-size: 15px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-burgundy);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--theme-red);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(114,47,55,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--theme-teal);
    color: var(--white);
}

.btn-warning {
    background: var(--gradient-teal);
    color: var(--white);
}

.btn-warning:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.toll-free {
  font-size: 15px;
  font-family: "sora", sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-apply {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-navy);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--theme-teal);
}

.btn-outline:hover {
    background: var(--theme-teal);
    color: var(--white);
}

.btn-warning {
    background: var(--gradient-teal);
    color: var(--white);
}

.btn-warning:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Enquiry Form Section */
.enquiry-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0;
}

.enquiry-banner {
    background: var(--gradient-teal);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-navy);
}

.enquiry-banner h2 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.enquiry-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.benefits-list li i {
    margin-right: 10px;
    color: var(--white);
}

/* Make form containers visible for demo */
#desktop-form-container,
#mobile-form-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    min-height: 400px;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .enquiry-banner {
        margin-bottom: 30px;
    }
}

/* Back to Top */

/* Early Bird Offer Banner */


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--theme-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--theme-teal);
    color: var(--white);
}

/* Header - Hotel Management Luxury Theme */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--theme-blue);
    z-index: 9999;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(14,46,79,0.25);
    border-bottom: 3px solid var(--theme-white);
    transition: all 0.4s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(250,187,49,0.05) 50%, transparent 100%);
    pointer-events: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;

}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--theme-teal);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--theme-slate);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(134,150,166,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.nav-link:hover::before {
    width: 120%;
    height: 40px;
}
@media (max-width: 1200px) {
    .nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 11px !important;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}  
.toll-free {
  font-size: 12px;
}

    .logo img {
        height: 32px;
        width: auto;
    }
    
    .logo img:last-child {
        height: 32px;
    }
}
/* Navigation Apply Button */
.btn-nav-apply {
    background: var(--gradient-gold);
    color: var(--theme-blue) !important;
    padding: 10px 25px !important;
    border-radius: var(--radius-md);
    font-weight: 600 !important;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-nav-apply:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-nav-apply::before {
    display: none !important;
}

.btn-nav-apply::after {
    display: none !important;
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--theme-blue);
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(54,102,130,0.3);
    color: var(--theme-slate);
    padding-left: 25px;
}

/* Dropdown divider styling */
.dropdown-menu li a.dropdown-divider {
    display: block;
    height: 1px;
    background: rgba(255,255,255,0.2);
    margin: 8px 0;
    padding: 0;
    border: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(54,102,130,0.3);
}

/* ================= HERO SECTION ================= */

/* New Hero Section Layout */
.hero.section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(14,46,79,0.7) 0%, rgba(54,102,130,0.6) 100%), url("../assets/img/hero/hm.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.6rem;
    align-items: center;
    min-height: calc(100vh - 180px);
    position: relative;
}

.eyebrow {
    display: inline-flex;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: rgba(54, 102, 130, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.hero-copy h1 {
    margin: 0;
    font-size: clamp(2.0rem, 3vw, 3.2rem) !important;
    line-height: 1.03;
    color: var(--white) !important;
    margin-bottom: 1.9rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}
/* 
.hero-copy h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-teal);
    border-radius: 2px;
} */

.hero-copy p {
    color: var(--text-light) !important;
    line-height: 1.85;
    margin-top:20px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    /* color:var(--text-light) !important;
    background: var(--theme-blue); */
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
    text-decoration: none;
    padding: 0.95rem 1.8rem;
}

.btn-primary {
    /* background: var(--gradient-teal); */
    background: var(--theme-blue)!important ;
    color: var(--text-light) !important;
}

.btn-secondary {
    background:  var(--text-light) !important;
    color: var(--theme-blue ) !important;
    border: 2px solid var(--theme-teal);
}

.btn-secondary:hover,
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(54,102,130,0.25);
}

.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 2.2rem;
}

.hero-badges div {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    backdrop-filter: blur(5px);
}

.hero-badges strong {
    display: block;
    color: var(--text-light) !important;
    margin-bottom: 0.35rem;
}

.hero-panel {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-left: 2rem;
}

.hero-card {
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* .hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-teal);
} */

.hero-card h2 {
    color: var(--theme-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    /*display: flex;*/
    align-items: center;
    gap: 0.5rem;
}
/* 
.hero-card h2::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--theme-teal);
    border-radius: 50%;
} */

.hero-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-stat {
    background: var(--white);
    border-radius: 20px;
    /* padding: 1.5rem; */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.1);
}

/* Keep existing hero-banner styles for backward compatibility */
.hero-banner-with-form {
    position: relative;
    width: 100%;
    margin-top: 80px;
}

.hero-banner {
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Banner Overlay */
/* .hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(73, 88, 104, 0.6) 0%, rgba(54,102,130,0.5) 100%);
    pointer-events: none;
    z-index: 1;
} */

/* Banner Content */
.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
    color: white;
}

.hero-banner-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-banner-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-banner-content .btn-primary {
    background: var(--gradient-teal);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-banner-content .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(54,102,130,0.4);
}

/* Hide the old hero banner when using new layout on desktop */
@media (min-width: 992px) {
    .hero-banner-with-form {
        display: none;
    }
}

/* Show mobile hero banner on mobile */
.mobile-banner {
    display: none;
}
@media (max-width: 380px) {
.hero-copy h1 {
        font-size: 1.8rem !important;
        font-weight:600;
    }
    .hero-copy p {
        font-size: 0.7rem !important;
         margin-bottom: 10px !important;
    }
    .eyebrow {
        font-size: 0.5rem !important;
        padding: 0.2rem 0.6rem !important;
        margin-top: 20px !important;
    }
    
    .hero-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1.5rem;
    }
    .hero-actions {
        display: grid !important;
        /* grid-template-columns: repeat(2, 1fr) !important; */
        gap: 0.4rem;
        margin-top: 8px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.8rem 0.8rem !important;
        font-size: 0.55rem !important;
    }
    
    .hero-badges div {
        padding: 0.3rem 0.3rem !important;
    }
    
    .hero-badges strong {
        font-size: 0.7rem;
    }
}

@media (max-width: 991px) {
    .hero-banner-with-form {
        display: none !important;
    }
    
    .mobile-banner {
        display: block !important;
    }
    
    .hero.section {
        padding: 60px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-copy {
        text-align: center;
    }
    
    .hero-copy h1 {
        font-size: 2.2rem;
    }
    
    .hero-copy p {
        font-size: 1rem;
    }
    
    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: auto;
        padding: 0.5rem 0.8rem !important;
        font-size: 0.8rem !important;
        text-align: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    .hero-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0;
        align-items: center;
    }
    
    .hero-badges div {
        padding: 0.5rem 0.7rem;
    }
    
    .hero-badges strong {
        font-size: 0.75rem;
    }
    
    .hero-panel {
        margin-top: 1.5rem;
        margin-left: 0 !important;
    }
    
    .hero-card {
        max-width: 90%;
        padding: 1.5rem;
    }
    
    .hero-card h2 {
        font-size: 1.3rem;
    }
    
    .hero-card p {
        font-size: 0.9rem;
    }
}

/* Hotel Management Decorative Pattern */
/* .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(240, 184, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(114, 47, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(26, 39, 68, 0.3) 0%, transparent 70%);
    pointer-events: none;
} */

/* Decorative Hotel Icons */
.hero-banner-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-icon-decor {
    position: absolute;
    font-size: 80px;
    opacity: 0.08;
    color: var(--gold);
}

.hero-icon-decor.icon-1 { top: 10%; left: 5%; transform: rotate(-15deg); }
.hero-icon-decor.icon-2 { top: 60%; left: 3%; transform: rotate(10deg); font-size: 60px; }
.hero-icon-decor.icon-3 { top: 20%; right: 8%; transform: rotate(20deg); }
.hero-icon-decor.icon-4 { bottom: 15%; right: 5%; transform: rotate(-10deg); font-size: 55px; }
.hero-icon-decor.icon-5 { top: 45%; left: 15%; transform: rotate(5deg); font-size: 45px; opacity: 0.06; }
.hero-icon-decor.icon-6 { bottom: 30%; right: 15%; transform: rotate(-5deg); font-size: 50px; opacity: 0.06; }

.hero-banner__img {
    display: none;
}

/* Fix banner image for screens between 992px and 1700px */
@media (min-width: 992px) and (max-width: 1700px) {
    .hero-banner {
        min-height: auto;
        height: auto;
    }
    
    .hero-banner-with-form .hero-banner__img {
        display: block;
        width: 100%;
        height: 650px;
        object-fit: cover;
        object-position: center;
    }
}

/* For screens above 1700px */
@media (min-width: 1701px) {
    .hero-banner {
        min-height: auto;
        /* height: 700px; */
    }
    
    .hero-banner-with-form .hero-banner__img {
        display: block;
        width: 100%;
        height: 700px;
        object-fit: cover;
        object-position: center;
    }
}

/* ================= DESKTOP OVERLAY FORM ================= */

.hero-form-container {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 480px;
    max-width: 95%;
    z-index: 5;
}

/* Form Card */
.form-card {
    background : var(--theme-navy);
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
  
}

.form-card h3 {
    color: #fff ;
    font-weight: 700;
    margin-bottom: 1.5rem;
  
    padding-bottom: 10px;
}

/* Fix iframe */
.npf_wgts iframe {
    width: 100% !important;
    /*min-height: 490px;*/
    border: none;
    display: block;
}

.form-card {
    background: var(--theme-navy);
    padding: 20px;
    border-radius: 12px;
    /*height: 470px !important;*/
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    overflow: hidden;   /* ðŸ‘ˆ ADD THIS */
    position: relative; /* ðŸ‘ˆ IMPORTANT for iframe clipping */
}

.npf_wgts iframe {
    width: 100% !important;
    min-height: 516px !important;
    height:100% !important;
    border: none;
    display: block;
}


/* Form responsive for 1000px to 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-form-container {
        position: absolute;
        top: 50%;
        right: 4.5%;
        transform: translateY(-50%);
        width: 420px;
        
        max-width: 90%;
        z-index: 5;
    }
    .form-card {
        background: var(--theme-navy);
        padding: 20px;
        border-radius: 12px;
        overflow: hidden !important;  
        height: 490px !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 380px !important;
        height: 100% !important;
        border: none;
        display: block;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
   
    .hero-form-container {
        position: absolute;
        top: 60%;
        right: 4%;
        transform: translateY(-60%);
        width: 380px;
        max-width: 90%;
        z-index: 5;
    }
    .form-card {
        background: var(--theme-navy);
        padding: 20px;
        border-radius: 12px;
        overflow: hidden !important;  
        height: 400px !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    .form-card h3 {
        color: #fff;
        font-weight: 700;
        margin-bottom: 1.2rem;
        padding-bottom: 8px;
        font-size: 1.25rem;
    }
    
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 350px !important;
        height:100% !important;
        border: none;
        display: block;
    }
}


@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-form-container {
        position: absolute;
        /*top: 45%;*/
        right: 6%;
        transform: translateY(-50%);
        width: 410px;
        max-width: 90%;
        z-index: 5;
    }
    .form-card {
        background: var(--theme-navy);
        padding: 20px;
        border-radius: 12px;
        overflow: hidden !important;
        height: 550px !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 480px !important;
        height:100% !important;
        border: none;
        display: block;
    }
}
/* Hide desktop form, show mobile form */
@media (max-width: 999px) {

    .hero-form-container {
        display: none !important;
    }

    .mobile-form-section {
        display: block!important;
    }

    .hero-banner-with-form {
        margin-top: 20px !important;
    }
}



/* ================= MOBILE FORM SECTION ================= */

.mobile-form-section {
    display: none;
    padding: 40px 15px 60px;
    background: #fff;
}

.mobile-form-section .form-card {
    max-width: 520px;
    margin: auto;
}


@media (max-width: 577px) and (max-width: 999px) {
    .mobile-form-section {
        padding: 40px 12px 0px;
    }

    .form-card {
        padding: 18px;
        border-radius: 12px;
    }
    
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 576px !important;
        height:100% !important;
        border: none;
        display: block;
    }
}

@media (min-width: 380px) and  (max-width: 576px) {
    .form-card {
        padding: 15px;
        border-radius: 10px;
    }
    
    .npf_wgts iframe {
        width: 100% !important;
        padding-bottom: 20px;
        height:100% !important;
        border: none;
        display: block;
    }
}

/* ===== Hero Section - Luxury Hotel Management Theme */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(14,46,79,0.8) 0%, rgba(54,102,130,0.7) 100%), url("../assets/img/hero/hm.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23c9a227' fill-opacity='0.05'%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");
    z-index: 0;
}

/* Decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.2) 0%, transparent 70%);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(114,47,55,0.25) 0%, transparent 70%);
    z-index: 1;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    color: var(--white);
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-teal);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-navy);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(54,102,130,0.3);
}

.hero-badge i {
    font-size: 14px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Sora', serif;
    letter-spacing: 1px;
    line-height: 1.2;
}

.hero-title .text-gold {
    color: var(--theme-teal);
    position: relative;
}

.hero-title .text-gold::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--theme-teal);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--theme-teal);
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    max-width: 550px;
}

.hero-features {
    margin-bottom: 35px;
}

.hero-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features li {
    margin-bottom: 18px;
    font-size: 17px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.95);
}

.hero-features li i {
    color: var(--theme-teal);
    margin-right: 18px;
    font-size: 20px;
    width: 45px;
    height: 45px;
    background: rgba(201,162,39,0.15);
    border: 1px solid rgba(201,162,39,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-features li:hover i {
    background: var(--gold);
    color: var(--theme-blue);
    transform: scale(1.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

/* Hero Student Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: absolute;
    width: 90%;
    height: 90%;
    border: 4px solid var(--gold);
    border-radius: var(--radius-lg);
    top: 0;
    right: 0;
    z-index: 1;
}

.hero-image-accent {
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, rgba(201,162,39,0.1) 0%, rgba(114,47,55,0.1) 100%);
    border-radius: var(--radius-lg);
    bottom: 0;
    left: 0;
    z-index: 0;
}

.hero-student-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-luxury);
    transition: all 0.5s ease;
    animation: floating 4s ease-in-out infinite;
}

.hero-image-wrapper:hover .hero-student-img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 999px) {
    /* Header Mobile Styles */
    .header {
        padding: 8px 0;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    /* Ensure desktop nav-menu is completely hidden */
    .nav-menu{
        display: none !important;
       
    }
    
    /* Ensure mobile toggle is visible */
    .mobile-toggle {
        display: flex !important;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo img {
        height: 35px;
        width: auto;
    }
    
    .logo img:last-child {
        height: 35px;
    }
    
    /* Mobile sidebar styles */
    .nav-menu {
        display: none;
    }
    
    .mobile-sidebar {
        display: flex;
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        background: var(--theme-blue);
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        gap: 0;
        box-shadow: 5px 0 25px rgba(0,0,0,0.5);
        z-index: 1000;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-sidebar.active {
        left: 0;
    }
    
    /* Sidebar Overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Sidebar Main Heading */
    .sidebar-main-heading {
        display: block;
        font-size: 18px;
        font-weight: 700;
        color: var(--white);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 15px 0;
        border-bottom: 2px solid var(--gold);
        margin-bottom: 15px;
    }
    
    /* Sidebar Course Groups */
    .sidebar-course-group {
        margin-bottom: 15px;
    }
    
    .sidebar-course-heading {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 10px 0 8px 0;
        border-bottom: 1px solid rgba(240, 184, 0, 0.3);
        margin-bottom: 8px;
    }
    
    .sidebar-course-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .sidebar-course-list li {
        border-bottom: none;
    }
    
    .sidebar-course-list li a {
        display: block;
        padding: 8px 0;
        font-size: 14px;
        color: rgba(255, 255, 255, 1);
        transition: all 0.3s ease;
    }
    
    .sidebar-course-list li a:hover {
        color: var(--gold);
        padding-left: 8px;
    }
    
    .sidebar-course-list li a[href^="tel:"] {
        color: var(--gold);
        font-weight: 600;
    }
    
    .sidebar-course-list li a[href^="tel:"]:hover {
        background: rgba(250, 187, 49, 0.1);
    }
    
    .nav-menu > li:not(.nav-item-dropdown):not(.nav-apply-mobile) {
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu > li.nav-item-dropdown {
        display: block;
    }
    
    .nav-menu > li.nav-apply-mobile {
        display: block;
        margin-top: 20px;
        padding: 0;
    }
    
    .nav-menu > li.nav-apply-mobile a {
        display: inline-block;
        width: 100%;
        padding: 12px 30px;
    }
    
    .nav-item-dropdown {
        position: relative;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        color: #fff;
        font-size: 16px;
    }
    
    .nav-link:hover {
        color: var(--gold);
        padding-left: 10px;
    }
    
    .dropdown-toggle i {
        display: inline-block;
        margin-left: 5px;
        transition: transform 0.3s ease;
        font-size: 12px;
    }
    
    .nav-item-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        padding: 0;
        display: none;
        width: 100%;
        border-radius: 0;
        margin-top: 0;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        padding: 0;
    }
    
    .dropdown-menu li a {
        display: none;
    }
    
    .dropdown-menu li a:hover {
        padding-left: 25px;
        background: rgba(240, 184, 0, 0.2);
        color: var(--gold);
    }
    
    .btn-nav-apply {
        margin-left: 0;
        text-align: center;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        z-index: 1001;
    }
    
    .mobile-toggle i {
        transition: transform 0.3s ease;
        color: #fff;
        font-size: 24px;
    }
    
    .mobile-toggle.active i {
        transform: rotate(90deg);
    }
    
    /* Navbar styling when sidebar is open */
    .header {
        transition: background 0.3s ease;
    }
    
    .sidebar-open .header {
        background: var(--theme-blue);
    }
    
    .toll-free {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-text {
        font-size: 16px;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .hero-image-frame {
        width: 85%;
        right: 7.5%;
    }
}

/* Desktop styles - hide mobile sidebar */
@media (min-width: 992px) {
    .mobile-sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 30px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Hero Form */
.hero-form {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.hero-form .form-group {
    margin-bottom: 15px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--theme-red);
}

.btn-submit {
    width: 100%;
    background: var(--danger-color);
    color: var(--white);
    border: none;
    height: 45px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c4001d;
}

/* About Section - Luxury Hotel Management Theme */
.about {
    padding: 50px 0;
    /* background: var(--theme-white); */
    position: relative;
    overflow: hidden;
}

/* Decorative patterns */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    /* background: 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='%23c9a227' fill-opacity='0.05'%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.5;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    /* background: radial-gradient(circle, rgba(114,47,55,0.3) 0%, transparent 70%); */
}

.about-img {
    position: relative;
}

/* About Hero Section */
.about-hero-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

/* Section Heading */
.section-heading {
    font-family: 'Sora', serif;
    font-size: 42px !important;
    font-weight: 700;
    color: var(--theme-blue);
    margin-bottom: 15px;
    position: relative;
    text-align: center !important;
}
.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--theme-blue);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subheading {
    color: var(--theme-blue);
    font-size: 15px !important;
    max-width: 600px !important;
    margin: 0 auto;
    font-weight: 600 !important;
}

.about-title .text-gold {
    color: var(--theme-navy);
}
.about-title {
    font-family: 'Sora', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--theme-navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-title .text-gold {
    color: var(--theme-navy);
    font-weight:600;
}

.about-description {
    color: var(--theme-blue);
    font-size: 16px;
    font-weight:600 !important;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--theme-blue);
    font-size: 20px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(119, 134, 167, 0.753);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span {
    color:var(--theme-blue);
    font-size: 15px;
    font-weight: 600;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.about-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--theme-blue);
    border-radius: 20px;
    z-index: 0;
}

.about-img::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid rgba(240, 184, 0, 0.3);
    border-radius: 20px;
    z-index: 0;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-img:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Decorative corner accents */
.about-image-wrapper::before,
.about-image-wrapper::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--theme-blue);
    z-index: 2;
}

.about-image-wrapper::before {
    top: 5px;
    left: 5px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 10px;
}

.about-image-wrapper::after {
    bottom: 5px;
    right: 5px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 10px;
}

.about-content {
    color: var(--theme-blue);
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-family: 'Sora', serif;
    color: var(--theme-blue);
    font-size: 42px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--theme-blue);
    border-radius: 2px;
}

.about-content p {
    color: var(--theme-blue);
    line-height: 1.9;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
}

/* About Section - Text Justify */
.about-content .text-justify {
    text-align: justify;
}

.established-year {
    display: inline-block;
    background: var(--theme-blue);
    color: var(--theme-blue);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
}

.about-features li {
    padding: 12px 0;
    color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    transition: all 0.3s ease;
}

.about-features li:hover {
    padding-left: 10px;
}

.about-features li i {
    color: var(--theme-blue);
    margin-right: 18px;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    width: 40px;
    height: 40px;
    background: rgba(201,162,39,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Why Choose CTIHM Section */
.why-choose-row{
    background: rgba(255,255,255,0.05);
}
.why-title {
    font-family: 'Sora', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-blue);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--theme-blue);
    border-radius: 2px;
}

.why-card {
    
    background: var(--theme-blue);
    
    border: 1px solid rgba(201,162,39,0.2);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    /* transform: translateY(-5px); */
    /* background: rgba(255,255,255,0.05); */
    /* background: rgba(91, 126, 172, 0.404); */

    box-shadow: 0 10px 30px rgba(68, 111, 168, 0.15);
}

.why-card i {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.why-card h5 {
    font-family: 'Sora', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for About Hero Section */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 60px 0;
    }
    
    .section-heading {
        font-size: 32px;
    }
    
    .section-subheading {
        font-size: 16px;
    }
    
    .about-title {
        font-size: 32px;
        text-align: center;
    }
    
    .about-description {
        text-align: justify;
    }
    
    .about-image-wrapper {
        margin-top: 30px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .why-title {
        font-size: 24px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .feature-item {
        flex: 0 0 calc(50% - 12px);
        text-align: center;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 5px 0 30px !important;
    }
    
    .section-heading {
        font-size: 26px;
    }
    
    .section-subheading {
        font-size: 14px;
    }
    
    .about-hero-section .row.align-items-center {
        flex-direction: column;
    }
    
    .about-hero-section .col-lg-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-title {
        font-size: 24px;
        text-align: center;
    }
    
    .about-description {
        font-size: 15px;
        text-align: justify;
        line-height: 1.7;
    }
    
    .about-features {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
        padding-left: 70px;
    }
    
    .feature-item {
        flex: 0 0 100%;
        width: 100%;
        justify-content: flex-start !important;
        text-align: flex-start !important;
    }
    
    .about-image-wrapper {
        margin-top: 30px;
    }
    
    .about-image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    
    .btn-primary {
        display: block;
        width: 100%;
        max-width: 250px;
        margin: 20px auto 0;
    }
    
    .why-title {
        font-size: 22px;
    }
    
    .why-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .why-card i {
        font-size: 32px;
    }
    
    .why-card h5 {
        font-size: 18px;
    }
    
    .why-card p {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .about-hero-section {
        padding: 30px 0;
    }
    
    .section-heading {
        font-size: 22px;
    }
    
    .about-title {
        font-size: 20px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .feature-item i {
        font-size: 18px;
    }
    
    .why-card {
        padding: 20px 15px;
    }
    
    .why-card i {
        font-size: 28px;
    }
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(201,162,39,0.3);
}

.stat-box h3 {
    font-size: 36px;
    color: var(--gold);
}

.stat-box p {
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Courses Section */
.course h2{
    font-size:40px !important;
}
.courses {
    background: var(--theme-blue);
    position: relative;
    padding: 60px 0;
}

.courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-luxury);
}

.courses .section-header .section-tag {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--theme-blue);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.courses .section-header h2 {
   
    font-size: 42px;
    color:var(--theme-navy);
    margin-bottom: 15px;
}

.courses .section-header h2 .text-gold {
    color: var(--theme-teal);
}

.courses p {
    color: rgba(255, 255, 255, 0.9);
    
}

.courses .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.section-header p {
    font-size: 18px;
    color: var(--theme-navy);
    max-width: 600px;
    margin: 0 auto;
}

/* Programs Tabs */
.programs-tabs {
    margin-top: 60px;
}



/* Program Cards - Professional Design */
.program-card {
    background:var(--theme-navy);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-shadow: 0 4px 15px rgba(26, 39, 68, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 39, 68, 0.06);
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    box-shadow: 0 12px 40px rgba(26, 39, 68, 0.15);
    transform: translateY(-2px);
}

.program-card .program-icon {
    width: 80px;
    min-width: 80px;
    background: linear-gradient(160deg, var(--theme-blue) 0%, #2a3f5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.program-card .program-icon::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: var(--white);
}

.program-card .program-icon i {
    color: var(--white);
    font-size: 32px;
}

.program-card:hover .program-icon {
    background: linear-gradient(160deg, var(--theme-red) 0%, #8b3a44 100%);
}

.program-card .program-info {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
}

.program-card .program-info h4 {
    color: var(--theme-blue);
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
    font-family: 'Sora', sans-serif;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--theme-blue) 0%, #1a4a7a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.program-card .program-info h4 small {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    display: block;
    font-family: 'Sora', sans-serif;
    margin-top: 4px;
    line-height: 1.4;
}

.program-card .program-full-name {
    color: var(--theme-red);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.program-card .program-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.program-card .program-duration {
    color: var(--theme-blue);
    font-weight: 600;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    background: rgba(26, 39, 68, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 0;
    align-self: flex-start;
}

.program-card .program-duration i {
    margin-right: 8px;
    color: var(--theme-red);
}

/* Featured Card for Masters */
.program-card-featured {
    border: 1px solid rgba(26, 39, 68, 0.1);
    background: var(--white);
}

.program-card-featured .program-icon {
    background: linear-gradient(160deg, var(--theme-red) 0%, #8b3a44 100%);
    width: 100px;
    min-width: 100px;
}

.program-card-featured .program-icon i {
    font-size: 40px;
}

.program-card-featured .program-info h4 {
    font-size: 22px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--theme-red) 0%, #8b3a44 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Banner Overlay */
.hero-banner-with-form .hero-banner {
    position: relative;
}

/* .hero-banner-with-form .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
} */

.hero-banner-with-form .hero-banner__img {
    width: 100%;
    height: auto;
    display: block;
}

.mobile-banner {
    position: relative;
    width: 100%;
    /* min-height: 300px !important; */
}


.mobile-banner img {
    width: 100%;
    height: px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Course Table Styles */
.tab-content{
     border-radius: 12px;
}
.table-responsive{
     box-shadow: -10px 10px 30px rgba(185, 187, 192, 0.568), 10px 10px 30px rgb(190 201 221 / 62%), 0 0 0 1px rgb(234 238 245 / 89%);
     /* box-shadow: -10px 10px 30px rgba(185, 187, 192, 0.568), 10px 10px 30px rgba(164, 173, 190, 0.616), 0 0 0 1px rgba(60, 73, 92, 0.89); */
     border-radius: 12px;
}
.course-table {
    width: 100%;
    border-collapse: collapse;
    /*background: rgba(220, 227, 255, 0.952);*/
    border-radius: 12px;
    overflow: hidden;
   
}

.course-table thead {
    background: var(--theme-navy);
    color: var(--white);
}

.course-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.course-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.08);
}

.course-table tbody td {
    padding: 16px 20px;
    vertical-align: middle;
    color: var(--white);
}

.course-table tbody td:first-child {
    font-weight: 600;
    color: var(--theme-navy);
    width: 60px;
    font-size: 15px;
}

.course-table tbody td:nth-child(3) {
    color: var(--theme-navy);
    font-weight: 600;
    font-size: 15px;
}

.course-table tbody h4 {
    color: var(--theme-navy);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    font-family: 'Sora', sans-serif;
}

.course-table tbody h4 small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

@media  (max-width: 767px) {
    
    .course-table thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.course-table tbody td:first-child {
    font-weight: 700;
    /* color: var(--theme-slate); */
    width: 10px !important;
}

.course-table tbody td:nth-child(3) {
    /* color: var(--theme-slate); */
    font-weight: 600;
    font-size: 12px;
}  
.course-table tbody h4 {
    /* color: var(--white); */
    font-size: 12px;
    font-weight: 700;
    margin: 0;
    font-family: 'Sora', sans-serif;
}
    
}
/* Responsive */
@media (max-width: 991px) {
    .program-card {
        flex-direction: column;
    }
    
    .program-card .program-icon {
        width: 100%;
        min-width: 100%;
        padding: 30px;
        flex-direction: row;
        justify-content: center;
    }
    
    .program-card .program-icon::after {
        display: none;
    }
    
    .program-card .program-icon i {
        font-size: 48px;
    }
    
    .program-card .program-info {
        padding: 24px;
        text-align: left;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
}

/* Programs Section - White Background */
#courseTabsContent {
    background: #fff;
}

/* Section header for Programs - Clean look */
.programs-tabs + .section-header,
.section-header:has(+ .programs-tabs) {
    margin-top: 0;
}

/* Programs Section Container */
.programs-tabs .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Tab Navigation - Professional Style */
.programs-tabs .nav-pills {
    gap: 12px;
    margin-bottom: 40px;
}

.programs-tabs .nav-pills .nav-link {
    background: rgba(255, 255, 255, 0.1);
    
    border: 2px solid var(--theme-teal);
    color:var(--theme-blue);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.programs-tabs .nav-pills .nav-link i {
    font-size: 16px;
    margin-right: 8px;
}

.programs-tabs .nav-pills .nav-link:hover {
    /* background: rgba(255, 255, 255, 0.2);
    color:var(--theme-blue);
    border-color: var(--theme-teal);
    transform: none; */
}

.programs-tabs .nav-pills .nav-link:hover::before {
    display: none;
}

.programs-tabs .nav-pills .nav-link.active {
    background: var(--theme-blue);
    color: var(--white);
    border-color: var(--theme-teal);
    box-shadow: 0 4px 15px rgba(68, 144, 216, 0.4);
}

@media (max-width: 767px) {
    .programs-tabs .nav-pills {
        flex-direction: column;
        align-items: center;
    }
    
    .programs-tabs .nav-pills .nav-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Marquee / Recruiters */
.marquee-container {
    overflow: hidden;
    padding: 20px 0;
    width: 100%;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: scroll-left 7s linear infinite;
}

.marquee-right {
    animation: scroll-right 7s linear infinite;
}

.marquee-content img.company-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.marquee-content img.company-logo:hover {
    transform: scale(1.1);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===== Hotel Management Theme Animations ===== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse Gold Animation */
@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(240, 184, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(240, 184, 0, 0);
    }
}

/* Shine Animation */
@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Floating Animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Rotate Animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Glow Animation */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(240, 184, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(240, 184, 0, 0.6);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.pulse-gold {
    animation: pulseGold 2s infinite;
}

.glow-gold {
    animation: glow 2s ease-in-out infinite;
}

/* ===== Enhanced Section Styles ===== */

/* Section Title Styling */
.section-title {
    font-family: 'Sora', serif;
    color: var(--theme-blue);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* ===== Responsive Enhancements ===== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .about-content h2 {
        font-size: 32px;
    }
    
    .tech-partner-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
    
    .about-content h2,
    .tech-partner-title {
        font-size: 26px;
    }
    
    .program-card {
        flex-direction: column;
        text-align: center;
    }
    
    .program-card .program-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

/* Course Cards */
.course-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.course-icon {
    width: 70px;
    height: 70px;
    background: var(--theme-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.course-icon i {
    font-size: 28px;
    color: var(--white);
}

.course-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.course-card p {
    font-size: 14px;
    margin-bottom: 15px;
}

.course-card .duration {
    display: inline-block;
    background: var(--accent-color);
    color: var(--theme-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Programs Table */
.programs-table table {
    background: var(--white);
}

.programs-table th {
    background: var(--danger-color);
    color: var(--white);
    padding: 15px;
    font-weight: 600;
}

.programs-table td {
    padding: 15px;
    vertical-align: middle;
}

/* Programs Table Responsive */
.programs-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.programs-table table {
    min-width: 600px;
    width: 100%;
}

@media (max-width: 576px) {
    .programs-table table {
        min-width: 500px;
    }
    
    .programs-table th,
    .programs-table td {
        padding: 10px 8px;
        font-size: 10px !important;
    }
}

@media (max-width: 380px) {
    .programs-table table {
        min-width: 450px;
    }
    
    .programs-table th,
    .programs-table td {
        padding: 8px 6px;
        font-size: 10px !important;
    }
}

/* Course Table Mobile Responsive */
@media (max-width: 576px) {
    .course-table thead th {
        padding: 12px 10px;
        font-size: 12px;
    }
    
    .course-table tbody td {
        padding: 12px 10px;
    }
    
    .course-table tbody td:first-child {
        width: 40px;
        font-size: 12px;
    }
    
    .course-table tbody td:nth-child(3) {
        font-size: 12px;
        white-space: nowrap;
    }
    
    .course-table tbody h4 {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .course-table thead th {
        padding: 10px 8px;
        font-size: 11px;
    }
    
    .course-table tbody td {
        padding: 10px 8px;
    }
    
    .course-table tbody td:first-child {
        width: 35px;
        font-size: 11px;
    }
    
    .course-table tbody td:nth-child(3) {
        font-size: 11px;
    }
    
    .course-table tbody h4 {
        font-size: 12px;
    }
    
    .course-table tbody h4 small {
        font-size: 10px;
    }
}

/* Facilities */
.facility-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--theme-red), var(--theme-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.facility-icon i {
    font-size: 28px;
    color: var(--white);
}

.facility-item h4 {
    margin-bottom: 10px;
}

.facility-item p {
    font-size: 14px;
}

/* Why Choose Us */
.choose-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.choose-item:hover {
    transform: translateY(-5px);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.choose-icon i {
    font-size: 28px;
    color: var(--theme-red);
}

.choose-item h4 {
    margin-bottom: 10px;
}

.choose-item p {
    font-size: 14px;
}

/* Placements - Hotel Management Theme */
.placements {
    background: var(--theme-navy);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.placements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--theme-teal);
}

.placements .tech-partner-header h2 {
    color: var(--white);
    font-family: 'Sora', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.placements .tech-partner-header p {
    color: var(--theme-slate);
    font-size: 16px;
    margin-bottom: 40px;
}

.placements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

.placements img {
    transition: all 0.4s ease;
    padding: 15px;
    filter: grayscale(0%);
    opacity: 1;
}

.placements img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* Marquee enhanced */
.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll-left 12s linear infinite;
    padding: 20px 0;
}

.marquee-right {
    animation: scroll-right 12s linear infinite;
}

.marquee-content img.company-logo {
    height: 80px;
    width: 160px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.4s ease;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0%);
    opacity: 1;
}

.marquee-content img.company-logo:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive Placements Section */
@media (max-width: 991px) {
    .placements {
        padding: 50px 0;
    }
    
    .placements .tech-partner-header h2 {
        font-size: 28px;
    }
    
    .marquee-content {
        gap: 20px;
    }
    
    .marquee-content img.company-logo {
        height: 70px;
        width: 140px;
    }
}

@media (max-width: 767px) {
    .placements .tech-partner-header h2 {
        font-size: 24px;
    }
    
    .placements .tech-partner-header p {
        font-size: 14px;
    }
    
    .marquee-content {
        gap: 15px;
    }
    
    .marquee-content img.company-logo {
        height: 60px;
        width: 120px;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .placements {
        padding: 40px 0;
    }
    
    .marquee-content {
        gap: 10px;
        animation-duration: 4s;
    }
    
    .marquee-right {
        animation-duration: 4s;
    }
    
    .marquee-content img.company-logo {
        height: 55px;
        width: 110px;
        padding: 8px 12px;
    }
}

/* Awards & Achievements Section */
.awards-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.awards-section .tech-partner-header h2 {
    color: var(--theme-navy);
    font-family: 'Sora', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.awards-section .tech-partner-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.award-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.award-item:hover {
   
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.award-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .awards-section {
        padding: 60px 0;
    }
    
    .awards-section .tech-partner-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .awards-section .tech-partner-header h2 {
        font-size: 24px;
    }
    
    .award-item {
        height: 100px;
        padding: 15px;
    }
    
    .award-item img {
        max-height: 60px;
    }
}


/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--theme-red), var(--theme-blue));
    padding: 10px 0;
}

.cta h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    color: var(--white);
    opacity: 0.9;
    font-size: 18px;
    margin-bottom: 0px;
}

/* Footer - Hotel Management Theme - Navy */
.footer {
    background: var(--theme-navy);
    color: var(--theme-slate);
    padding: 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--theme-teal);
}

.footer p {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
}


@media (max-width: 575px) {

    .footer p {
    font-size: 11px !important;
    font-weight: 500;
    letter-spacing: 1px;
   
}
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-title {
        font-size: 15px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* ===== Elegant Technical Partner Section - Luxury Hotel Management Theme ===== */
.tech-partner-elegant {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.tech-partner-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-luxury);
}

.tech-partner-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
}

/* Header */
.tech-partner-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--theme-teal);
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

.tech-partner-subtitle::before,
.tech-partner-subtitle::after {
    content: "";
    width: 50px;
    height: 2px;
    background: var(--theme-teal);
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.tech-partner-title {
    font-family: 'Sora', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--theme-navy);
    line-height: 1.3;
    text-transform: capitalize !important;
}

.tech-partner-title span {
    color: var(--theme-teal);
}

.awards-heading h6 {
  color: var(--theme-teal);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.awards-heading h6::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--theme-teal);
  border-radius: 2px;
}
.awards-heading h2 {
  font-size: 36px;
  margin: 12px 0;
  color: var(--theme-navy);
  font-weight: 700;
  font-family: 'Sora', serif;
  text-transform: capitalize !important;
}


.tech-partner-title span {
    display: block;
}

/* Partner Grid */
.tech-partner-wrapper {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.partner-item {
    padding: 45px 30px;
    border-right: 3px solid #e2e6ea;
    border-bottom: 3px solid #e2e6ea;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
  
}

.partner-item img {
    max-height: 85px;
    max-width: 100%;
    object-fit: contain;
   
}

/* Remove extra borders */
.partner-item:nth-child(3n) {
    border-right: none;
}

.partner-item:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Subtle elegant hover */
.partner-item:hover {
    background: var(--cream);
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
@media (max-width: 999px) {
    .tech-partner-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-item {
        border-right: 3px solid #e2e6ea !important;
        border-bottom: 3px solid #e2e6ea !important;
    }

    .partner-item:nth-child(2n) {
        border-right: none !important;
    }

    .partner-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .partner-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    .tech-partner-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .partner-item {
        border-right: 3px solid #e2e6ea !important;
        border-bottom: 3px solid #e2e6ea !important;
    }

    .partner-item:nth-child(2n) {
        border-right: none !important;
    }

    .partner-item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .partner-item:last-child {
        border-bottom: none;
    }
}

/* CT Group Legacy Stats Icons - Equal Alignment Fix */
.home-stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.home-stats-wrapper .flex-child {
    flex: 0 0 calc(16.666% - 20px);
    min-width: 150px;
    max-width: calc(16.666% - 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
    text-align: center;
    padding: 15px 10px;
}

.home-stats-wrapper .stats-icon {
    width: 120px !important;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    max-width: 120px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.home-stats-wrapper .stats-icon img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-stats-wrapper .home-stats-text {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-stats-wrapper .home-stats-text h4 {
    margin: 0;
    line-height: 1.2;
}

.home-stats-wrapper .home-stats-text span {
    margin: 5px 0;
    line-height: 1.2;
}

.home-stats-wrapper .home-stats-text p {
    margin: 8px 0 0 0;
    line-height: 1.3;
    font-size: 0.9rem;
}

/* CT Group Legacy: show 3 boxes per row on medium/small screens */
@media (max-width: 1101px) {
	.home-stats-wrapper {
		justify-content: center;
	}
	.home-stats-wrapper .flex-child {
		flex: 0 0 calc(33.333% - 20px) !important;
		max-width: calc(33.333% - 20px) !important;
		box-sizing: border-box;
	}
}

@media (max-width: 757px) {
	.home-stats-wrapper {
		gap: 12px;
	}
	.home-stats-wrapper .flex-child {
		flex: 0 0 calc(50% - 12px) !important;
		max-width: calc(50% - 12px) !important;
	}
	.home-stats-wrapper .stats-icon {
		width: 100px !important;
		height: 100px;
		min-width: 100px;
		min-height: 100px;
		max-width: 100px !important;
	}
	.home-stats-wrapper .stats-icon img {
		max-width: 50px;
		max-height: 50px;
	}
	.home-stats-wrapper .stats-icon img,
	.home-stats-wrapper .stats-icon {
		/* max-width: 100%; */
		height: auto;
	}
	.home-stats-wrapper .home-stats-text h4 { font-size: 1rem; }
	.home-stats-wrapper .home-stats-text p { font-size: 0.85rem; }
}

@media (max-width: 500px) {
    .home-stats-wrapper {
        gap: 15px;
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    .home-stats-wrapper .flex-child {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        padding: 20px 15px;
    }
    .home-stats-wrapper .stats-icon {
        width: 100px !important;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
        max-width: 100px !important;
        margin: 0 auto 15px auto;
    }
    .home-stats-wrapper .stats-icon img {
        max-width: 50px;
        max-height: 50px;
    }
    .home-stats-wrapper .home-stats-text h4 { font-size: 1.4rem; }
    .home-stats-wrapper .home-stats-text p { font-size: 1rem; }
    .home-stats-wrapper .home-stats-text span { font-size: 1.1rem; }
}

@media (max-width: 380px) {
    .home-stats-wrapper {
        gap: 12px;
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    .home-stats-wrapper .flex-child {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
        padding: 18px 12px;
    }
    .home-stats-wrapper .stats-icon {
        width: 90px !important;
        height: 90px;
        min-width: 90px;
        min-height: 90px;
        max-width: 90px !important;
        margin: 0 auto 12px auto;
    }
    .home-stats-wrapper .stats-icon img {
        max-width: 45px;
        max-height: 45px;
    }
    .home-stats-wrapper .home-stats-text h4 { font-size: 1.2rem; }
    .home-stats-wrapper .home-stats-text p { font-size: 0.9rem; }
    .home-stats-wrapper .home-stats-text span { font-size: 1rem; }
}

/* Counter Section - Hotel Management Theme */
.ultra-glossy-bg {
    position: relative;
    background: var(--theme-navy);
    overflow: hidden;
    padding: 80px 0;
}

/* Decorative elements */
.ultra-glossy-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23366682' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

/* Golden shine effect */
.ultra-glossy-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* background:
        radial-gradient(circle at top left, rgba(201,162,39,0.3) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(114,47,55,0.3) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%); */
    z-index: 0;
    pointer-events: none;
}

.stats-icon img {
    margin: 0 auto;
    max-width: 50%;
    filter: brightness(0) invert(1);
}

img {
    max-width: 100%;
}

.wrapper-1200 {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-icon {
    background: rgba(54,102,130,0.15);
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65%;
    margin: 10px auto;
    max-width: 140px;
    border: 2px solid rgba(54,102,130,0.3);
    transition: all 0.4s ease;
}

.stats-icon:hover {
    background: rgba(54,102,130,0.25);
    transform: scale(1.1);
    border-color: var(--theme-teal);
}

.flex-box, .mob-flex-box, .flex-box-720 {
    display: flex;
    
    flex-wrap: wrap;
}

/* Enhanced stat boxes */
.home-stats-wrapper .flex-child {
    background: rgba(244, 245, 255, 0.05);
    border: 1px solid rgba(54,102,130,0.3);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: all 0.4s ease;
}

.home-stats-wrapper .flex-child:hover {
    background: rgba(54,102,130,0.15);
    border-color: var(--theme-teal);
    /* transform: translateY(-10px); */
    box-shadow: 0 20px 40px rgba(4, 5, 7, 0.3);
}

/* Ensure content is above overlays */
.ultra-glossy-bg > .container {
  position: relative;
  z-index: 1;
}

/* Counter section title */
.section-counter-title {
    font-family: 'Sora', serif;
    color: var(--theme-slate) !important;
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.ultra-glossy-bg p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 18px;
    font-weight: 400;
}

/* end counter */  
/* ===== Additional Hotel Management Enhancements ===== */

/* ===== About CTIHM Section ===== */
.about-ctihm {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about-ctihm .section-subtitle {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 10px;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-intro .lead {
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.8;
}

/* Feature Cards */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--gold);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--theme-red) 0%, #8b3a44 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 32px;
    color: var(--white);
}

.feature-card h4 {
    font-family: 'Sora', serif;
    color: var(--theme-blue);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Why Choose CTIHM Cards */
.why-choose-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-bottom-color: var(--gold);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--theme-navy) 0%, var(--theme-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: var(--gradient-gold);
    transform: rotate(360deg);
}

.why-choose-icon i {
    font-size: 28px;
    color: var(--white);
}

.why-choose-card h5 {
    font-family: 'Sora', serif;
    color: var(--theme-blue);
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-intro .lead {
        font-size: 18px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .about-ctihm {
        padding: 60px 0;
    }
    
    .about-intro .lead {
        font-size: 16px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon i {
        font-size: 26px;
    }
    
    .feature-card h4 {
        font-size: 18px;
    }
    
    .why-choose-card {
        padding: 25px 20px;
    }
    
    .why-choose-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-choose-icon i {
        font-size: 24px;
    }
    
    .why-choose-card h5 {
        font-size: 18px;
    }
}

/* ===== New About Us Section ===== */
.about-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding: 60px 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-luxury);
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-title .text-primary {
    color: var(--theme-burgundy) !important;
}

.about-title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 0 auto;
    border-radius: 2px;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-lead {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
}

.about-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(201,162,39,0.1);
    position: relative;
    overflow: hidden;
}

.about-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-luxury);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-feature-card:hover::before {
    transform: scaleX(1);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--theme-burgundy) 0%, #8B2942 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(139,41,66,0.3);
}

.about-feature-icon i {
    font-size: 28px;
    color: var(--white);
}

.about-feature-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-feature-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.why-choose-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
}

.why-choose-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.why-choose-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid rgba(201,162,39,0.15);
}

.why-choose-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: var(--gold);
}

.why-choose-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--theme-blue) 0%, #1e3a5f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 15px rgba(30,58,95,0.3);
}

.why-choose-icon i {
    font-size: 26px;
    color: var(--white);
}

.why-choose-item h5 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-choose-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Styles for About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-lead {
        font-size: 16px;
    }
    
    .about-feature-card {
        padding: 30px 25px;
    }
    
    .why-choose-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .about-section {
        /*padding: 50px 0;*/
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-title-line {
        width: 60px;
        height: 3px;
    }
    
    .about-intro {
        margin-bottom: 40px;
    }
    
    .about-lead {
        font-size: 15px;
    }
    
    .about-feature-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-feature-icon i {
        font-size: 24px;
    }
    
    .about-feature-content h4 {
        font-size: 20px;
    }
    
    .about-feature-content p {
        font-size: 14px;
    }
    
    .why-choose-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .why-choose-item {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .why-choose-icon {
        width: 55px;
        height: 55px;
    }
    
    .why-choose-icon i {
        font-size: 22px;
    }
    
    .why-choose-item h5 {
        font-size: 18px;
    }
    
    .why-choose-item p {
        font-size: 13px;
    }
}

 
/* =========================
   SCHOLARSHIP STICKY BUTTON
========================= */
.scholarship-sticky {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 9999;
    text-decoration: none;
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge {
    background: linear-gradient(135deg, var(--theme-navy) 0%, #1a4a7a 50%, var(--theme-navy) 100%);
    width: 160px;
    padding: 15px 12px;
    text-align: center;
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: 
        0 10px 30px rgba(250, 187, 49, 0.4),
        0 0 0 4px rgba(250, 187, 49, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.2);
    animation: floatBadge 2s ease-in-out infinite, glowPulse 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 60%
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes floatBadge {
    0% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-1deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(17, 17, 17, 0.4), 0 0 0 4px rgba(3, 3, 3, 0.2); }
    50% { box-shadow: 0 15px 40px rgba(7, 7, 7, 0.6), 0 0 20px rgba(7, 7, 7, 0.4); }
}

.badge:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 
        0 20px 50px rgba(8, 8, 8, 0.5),
        0 0 30px rgba(0, 0, 0, 0.3),
        inset 0 2px 10px rgba(10, 10, 10, 0.4);
}

.badge-icon {
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
}

.small-text {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.percent {
    font-size: 38px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.early {
    font-size: 10px;
    font-weight: 800;
    background: var(--gold);
    color: var(--theme-navy);
    padding: 4px 8px;
    margin-top: 5px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.title {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .scholarship-sticky {
        right: 20px;
        bottom: 20px;
    }

    .badge {
        width: 140px;
        padding: 12px 10px;
    }

    .percent {
        font-size: 32px;
    }
    
    .badge-icon {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .scholarship-sticky {
        right: 15px;
        bottom: 15px;
    }

    .badge {
        width: 120px;
        padding: 10px 8px;
        border-width: 3px;
    }

    .percent {
        font-size: 26px;
    }

    .small-text {
        font-size: 9px;
    }

    .title {
        font-size: 10px;
    }
    
    .early {
        font-size: 8px;
        padding: 3px 5px;
    }
    
    .badge-icon {
        font-size: 18px;
    }
}

@media (max-width: 380px) {
    .scholarship-sticky {
        right: 10px;
        bottom: 10px;
    }

    .badge {
        width: 100px;
        padding: 8px 6px;
        border-width: 2px;
    }

    .percent {
        font-size: 22px;
    }

    .small-text {
        font-size: 8px;
    }

    .title {
        font-size: 9px;
    }
    
    .early {
        font-size: 7px;
    }
    
    .badge-icon {
        font-size: 16px;
    }
}



/* hero section */
.hero {
  position: relative;
  overflow: hidden;
  height: 800px;
  min-height: 80vh;
}

@media (max-width: 999px) {
  .hero {
    min-height: 80vh;
   height: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 50vh;
    padding-top: 80px; /* Account for fixed header */
  }
  
  .hero::before,
  .hero::after {
    max-height: none;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 40vh;
  }
}

/* Desktop layout - full height */
@media (min-width: 1000px) {
  .hero {
    
    height: auto;
  min-height: 80vh;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*max-height:800px;*/
  background-image: url('assets/img/hero/hero.jpg');
  background-size: cover;
  background-position: center;
  animation: heroSlideshow 16s ease-in-out infinite;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 800px;
  /* background: var(--page-bg); */
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.6rem;
  align-items: center;
  min-height: calc(100vh - 180px);
  position: relative;
  z-index: 1;
}

@media (max-width: 999px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-copy,
  .hero-panel {
    width: 100%;
    text-align: center;
  }
  
  .hero-panel {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 1.5rem;
    min-height: auto;
  }
  
  .hero-copy,
  .hero-panel {
    width: 100%;
    text-align: center;
  }
  
  .hero-panel {
    margin-top: 1.5rem;
  }
}

@media (max-width: 380px) {
  .hero-grid {
    gap: 1rem;
  }
}

/* Desktop layout - two columns */
@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.6rem;
  }
  
  .hero-copy,
  .hero-panel {
    width: auto;
    text-align: left;
  }
  
  .hero-panel {
    margin-top: 0;
  }
}

.eyebrow {
  display: inline-flex;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  font-size: 0.82rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.hero-copy h1,
.about-copy h2,
.section-header h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.03;
}

.hero-copy p,
.about-copy p,
.section-header p,
.stats-card p,
.award-card p,
.contact-card p {
  color: var(--theme-blue);
  line-height: 1.85;
  padding-top:10px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--theme-blue)!important ;
  color: var(--white) !important;
  padding: 0.95rem 1.6rem  !important;
}
/* 
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.25);
} */

.btn-secondary {
  background: var(--white)  !important;
  color:  var(--theme-blue) !important;
  padding: 0.95rem 1.6rem  !important;
  border: 2px solid var(--primary);
}

.btn-secondary:hover,
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-badges div {
  background: rgba(14, 12, 12, 0.1) !important;
  border: 1px solid rgba(7, 26, 24, 0.2) !important;
  padding: 1rem 1.2rem;
  border-radius: 18px;
}

.hero-badges strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 450px;
  padding: 2rem;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(13, 148, 136, 0.15);
  box-shadow: 0 10px 40px rgba(38, 56, 55, 0.15);
}

@media (max-width: 1200px) {
  .hero-card {
    max-width: 90%;
    padding: 1.8rem;
    border-radius: 28px;
  }
}

@media (max-width: 992px) {
  .hero-card {
    max-width: 95%;
    padding: 1.6rem;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .hero-card {
    max-width: 100%;
    padding: 1.5rem;
    border-radius: 20px;
    margin: 0 auto;
  }
}

@media (max-width: 380px) {
  .hero-card {
    padding: 1.2rem;
    border-radius: 16px;
  }
  
  .hero-card h2 {
    font-size: 20px !important;
    margin-bottom: 0.8rem;
  }
  
  .hero-card p {
    font-size: 0.95rem;
  }
}

.hero-card h2 {
  font-size: 25px;
  margin-bottom: 0.7rem;
  color: var(--theme-blue);
}

.hero-card p {
  color: var(--muted);
}

.hero-panel .hero-stat {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel .hero-stat div {
  background: rgba(13, 148, 136, 0.1);
  padding: 1rem 1.1rem;
  border-radius: 18px;
}

.hero-panel .hero-stat h3 {
  margin: 0;
  color: var(--primary);
  font-size: 2rem;
}
 

/* testimonial section */

/* Custom Testimonial Slider Styles */
.testimonial-section-3 {position: relative; background: var(--light-bg); padding: 40px 0 60px;}
.slider-container {overflow: hidden; width: 100%;}
.slider {display: flex; gap: 14px; transition: transform 0.4s ease; will-change: transform;}
.slider-card {flex: 0 0 calc(33.333% - 9px); background: #fff; border: px solid var(--muted); border-radius: 14px; padding: 20px; box-shadow: 0 4px 15px rgba(21, 29, 27, 0.712);}
.slider-card-inner img {width: 100%; height: auto; display: block; border-radius: 10px;}
.progress-indicators {margin-top: 18px; display: flex; justify-content: center; gap: 8px;}
.progress-indicator {width: 10px; height: 10px; border-radius: 50%; background: var(--theme-teal); transition: background-color 0.35s ease, transform 0.3s ease;}
.progress-indicator.active {background: var(--theme-blue); transform: scale(1.1);}
@media (max-width: 1024px) { .slider-card {flex: 0 0 calc(50% - 8px);}}
@media (max-width: 767px) { .slider-card {flex: 0 0 100%;}}


/* ================= HERO SECTION ================= */

.hero-banner-with-form {
    position: relative;
    width: 100%;
    margin-top: 70px;
}

.hero-banner {
    position: relative;
    width: 100%;
}
/* 
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #73bcec;
    opacity: 0.1;
    z-index: 1;
} */

.hero-banner__img {
     width: 100%;
     height: auto;
     display: block;
     object-fit: contain;
}

/* ================= DESKTOP OVERLAY FORM ================= */

.hero-form-container {
    position: absolute;
    top: 47%;
    right: 8%;
    transform: translateY(-50%);
    width: 480px;
    max-width: 95%;
    z-index: 5;
}

/* Form Card */
.hero-card {
    background : #fff !important;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
  
}
.hero-card h2 {
       text-align: center !important;
    }


 /*Fix iframe */
/*.npf_wgts iframe {*/
/*    width: 100% !important;*/
/*    min-height: 590px !important;*/
/*    border: none;*/
/*    display: block;*/
/*}*/



.hero-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border : 1px solid #0290EC;
    /*height: 470px !important;*/
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    overflow: hidden;   /* ADD THIS */
    position: relative; /*  IMPORTANT for iframe clipping */
}

.npf_wgts iframe {
    width: 100% !important;
    min-height: 580px !important;
    height:100% !important;
    border: none;
    display: block;
}


/* Form responsive for 1200px to 1399px */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-form-container {
        position: absolute;
        top: 50%;
        right: 4.5%;
        transform: translateY(-50%);
        width: 380px;
        
        max-width: 90%;
        z-index: 5;
    }
    .hero-card {
        background: #1c589b;
        padding: 20px;
        border-radius: 12px;
        overflow: hidden !important;  
        height: 440px !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 350px !important;
        height: 100% !important;
        border: none;
        display: block;
    }
    
    .hero-card h2 {
        font-weight: 700;
        margin-bottom: 0.1rem;
        padding-bottom: 8px;
        font-size: 1.10rem !important;
    }
}

@media (min-width: 1000px) and (max-width: 1199px) {
    
    .navbar, .nav-link, .toll-free {
      color: var(--white) !important;
      font-size: 0.85rem !important;
      
    }
    .ct-logo img {
    height: 35px !important;
    width: auto !important;
    object-fit: contain;
    margin-left: 0px !important;
   }
    .ct-logo img:nth-child(2),
    .ct-logo img:nth-child(3) {
      height: 30px !important;
      width: auto !important;
   }
    .hero-form-container {
        position: absolute;
        top: 60%;
        right: 4%;
        transform: translateY(-60%);
        width: 380px;
        max-width: 90%;
        z-index: 5;
    }
    .hero-card {
        background: #1c589b;
        padding: 10px;
        border-radius: 12px;
        overflow: hidden !important; 
        height:100% !important;
        min-height: 310px !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    .hero-card h2 {
        font-weight: 700;
        margin-bottom: 0.1rem;
        padding-bottom: 8px;
        font-size: 1.05rem !important;
    }
    
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 300px !important;
        height:100% !important;
        border: none;
        display: block;
    }
   
}


@media (min-width: 1400px) and (max-width: 1599px) {
    .hero-form-container {
        position: absolute;
        /*top: 45%;*/
        right: 6%;
        transform: translateY(-50%);
        width: 410px;
        max-width: 90%;
        z-index: 5;
    }
    .hero-card {
        background: #1c589b;
        padding: 20px;
        border-radius: 12px;
        overflow: hidden !important;
        height: 550px !important;
        box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    }
    
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 480px !important;
        height:100% !important;
        border: none;
        display: block;
    }
    
}
/* Hide desktop form, show mobile form */
@media (max-width: 999px) {

    .hero-form-container {
        display: none !important;
    }

    .mobile-form-section {
        display: block!important;
    }

    .hero-banner-with-form {
        margin-top: 20px !important;
    }
}



/* ================= MOBILE FORM SECTION ================= */

.mobile-form-section {
    display: none;
    padding: 40px 15px 60px;
    background: #fff;
}

.mobile-form-section .hero-card {
    max-width: 520px;
    margin: auto;
}


@media (max-width: 577px) and (max-width: 999px) {
    .mobile-form-section {
        padding: 40px 12px 0px;
    }

    .hero-card {
        padding: 18px;
        border-radius: 12px;
    }
    .npf_wgts iframe {
        width: 100% !important;
        min-height: 620px !important;
        height:100% !important;
        border: none;
        display: block;
    }
   
  
}

@media (min-width: 380px) and  (max-width: 576px) {
    .hero-card {
        padding: 15px;
        border-radius: 10px;
    }
    
}
