/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333!important;
    background-color: #fff;
	font-size:16px!important;
}

.container {
    max-width: 1200px;
    margin: 0 auto!important;
    /* padding: 0 20px!important; */
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600!important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem;font-family: 'Inter', sans-serif!important;font-size:20px!important; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 20px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease;
}

.nav-brand .logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #188913;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.logo-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #6F7376;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #188913;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #188913;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-btn,
.mobile-menu-btn {
    background: none;
    border: none;
    color: #6F7376;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.search-btn:hover,
.mobile-menu-btn:hover {
    color: #188913;
}

.mobile-menu-btn {
    display: none;
}

/* Search Overlay */
.search-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.8) !important;
    z-index: 2000 !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
}

.search-overlay.active {
    display: flex !important;
}

.search-container {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    width: 90% !important;
    max-width: 500px !important;
    position: relative !important;
    display: flex !important;
    gap: 0.5rem !important;
}

.search-input {
    flex: 1 !important;
    padding: 1rem !important;
    border: 2px solid #e5e5e5 !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
}

.search-input:focus {
    border-color: #188913 !important;
}

.search-btn-modal {
    background: #188913 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    font-size: 1.1rem !important;
}

.search-container input {
	height:56px!important;
}

.search-btn-modal:hover {
    background: #146b0f !important;
}

.search-close {
    position: absolute !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
    background: none !important;
    border: none !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    color: #6F7376 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: background-color 0.3s ease !important;
}

.search-close:hover {
    background: #f0f0f0 !important;
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #188913;
    color: white;
}


.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #188913;
}

.btn-outline {
    background: transparent;
    color: #6F7376;
    border: 2px solid #e5e5e5;
}

.btn-outline:hover {
    border-color: #188913;
    color: #188913;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    background-blend-mode: darken !important;
}

.hero-home-bg {
	height: 90vh !important;
}

.hero-inner-bg {
	height: 70vh !important;
}


.hero-inner {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    background-blend-mode: darken !important;
}

.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  
}


.hero-content {
    text-align: center !important;
    color: white !important;
    z-index: 1 !important;
    margin: auto !important;
}

.hero-subtitle {
    font-size: 1.25rem !important;
    margin-bottom: 2rem !important;
    max-width: 600px !important;
    margin: auto !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.hero-content h1, .hero-content p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    color: white !important;
}

.hero-content h1 {
    font-size: 56px !important;
    color: white !important;
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}





/* Hero Search */
.hero-search {
	padding-top: 20px;
    margin-bottom: 2rem !important;
    display: flex !important;
    justify-content: center !important;
}

.hero-search-box {
    position: relative !important;
    max-width: 500px !important;
    width: 100% !important;
}

.hero-search-input {
    width: 100% !important;
    padding: 1rem 4rem 1rem 1.5rem !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 30px !important;
    font-size: 1.1rem !important;
    outline: none !important;
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    /* Ensure consistent height */
    line-height: normal !important; 
    box-sizing: border-box !important;
    height:56px!important;
}

.hero-search-input::placeholder {
    color: rgba(255,255,255,0.8) !important;
}

.hero-search-input:focus {
    border-color: rgba(255,255,255,0.6) !important;
    background: rgba(255,255,255,0.2) !important;
}

.hero-search-btn {
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: #188913 !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    font-size: 1.1rem !important;
}

.hero-search-btn:hover {
    background: #146b0f !important;
}

/* Hero Actions */
.hero-actions {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 1rem !important;
    padding-bottom: 2rem !important;
}

/* Button Hover Effects */
.btn-primary:hover {
    background: #146b0f !important;
    transform: translateY(-2px) !important;
	color:#FFFFFF!important;
}

.btn-secondary:hover {
    background: white !important;
    color: #188913 !important;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #188913 0%, #146b0f 100%);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 80px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 5rem 0!important;
    background: #f8f9fa!important;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
	font-size:16px!important;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #188913;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center!important;
    margin-bottom: 3rem!important;
}

.section-header h2 {
    font-size: 2.5rem!important;
    margin-bottom: 1rem!important;
}

.section-header p {
    font-size: 1.1rem;
    color: #6F7376;
    max-width: 600px;
    margin: auto!important;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Courses Preview */
.courses-preview {
    padding: 5rem 0!important;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    /* height: 200px; */
    overflow: hidden;
}

.course-image img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
	margin-top:0;
}

.course-content p {
    color: #6F7376;
    margin-bottom: 1rem;
}

.course-link {
    color: #188913;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.course-link:hover {
    gap: 0.75rem;
}

/* About Preview */
.about-preview {
    padding: 5rem 0!important;
    background: #f8f9fa!important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #6F7376;
    margin-bottom: 1rem;
}

.about-image {
    border-radius: 12px!important;
    overflow: hidden!important;
}

.about-image img {
    width: 100%!important;
    height: 100%!important;
    object-fit: cover!important;
}

/* Testimonials Preview */
.testimonials-preview {
    padding: 5rem 0!important;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #6F7376;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #188913;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #6F7376!important;
    font-size: 0.9rem!important;
}

/* Courses Page Styles */
.courses-filter {
    padding: 2rem 0!important;
    background: white!important;
    border-bottom: 1px solid #e5e5e5!important;
}

.filter-tabs {
    display: flex!important;
    gap: 1rem!important;
    justify-content: center!important;
    flex-wrap: wrap!important;
}

.filter-btn {
    background: transparent!important;
    border: 2px solid #e5e5e5!important;
    padding: 0.75rem 1.5rem!important;
    border-radius: 25px!important;
    cursor: pointer!important;
    transition: all 0.3s ease!important;
    font-weight: 500!important;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: #188913!important;
    color: #188913!important;
}

/* Course Search */
.course-search-container {
    margin-top: 2rem!important;
    display: flex!important;
    justify-content: center!important;
}

.course-search-box {
    position: relative!important;
    max-width: 400px!important;
    width: 100%!important;
}

.course-search-input {
    width: 100%!important;
    padding: 0.75rem 3rem 0.75rem 1rem!important;
    border: 2px solid #e5e5e5!important;
    border-radius: 25px!important;
    font-size: 1rem!important;
    outline: none!important;
    transition: border-color 0.3s ease!important;
	height:45.6px!important;
}

.course-search-input:focus {
    border-color: #188913!important;
}

.course-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #188913;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.course-search-btn:hover {
    background: #146b0f!important;
}

.courses-listing {
    padding: 3rem 0!important;
}

.course-detail-card {
    background: white!important;
    border-radius: 12px!important;
    padding: 2rem!important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1)!important;
    transition: transform 0.3s ease!important;
}

.course-detail-card:hover {
    transform: translateY(-5px)!important;
}

.course-header {
    display: flex!important;
    justify-content: space-between!important;
    align-items: flex-start!important;
    margin-bottom: 1rem!important;
}

.course-icon {
    width: 50px!important;
    height: 50px!important;
    background: #188913!important;
    color: white!important;
    border-radius: 8px!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    font-size: 1.2rem!important;
}

.course-meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 0.25rem !important;
}

.course-category {
    background: #e8f5e8 !important;
    color: #188913 !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 15px !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
}

.course-duration {
    color: #6F7376 !important;
    font-size: 0.9rem !important;
}

.course-features {
    list-style: none !important;
    margin: 1rem 0 !important;
}

.course-features li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    color: #6F7376 !important;
}

.course-features i {
    color: #188913 !important;
}

.course-footer {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin-top: 1.5rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid #e5e5e5 !important;
}

.course-info {
    padding: 3rem 0 !important;
    background: #f8f9fa !important;
}

.info-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
}

.info-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.info-icon {
    width: 60px !important;
    height: 60px !important;
    background: #188913 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 1.5rem !important;
}


/* About Page Styles */
.about-story {
    padding: 3rem 0 !important;
}

.story-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.story-image {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.story-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.mission-vision {
    padding: 3rem 0 !important;
    background: #f8f9fa !important;
}

.mv-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)) !important;
    gap: 2rem !important;
}

.mv-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.mv-icon {
    width: 60px !important;
    height: 60px !important;
    background: #188913 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 1.5rem !important;
}

.values {
    padding: 3rem 0 !important;
}

.values-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
}

.value-card {
    text-align: center !important;
    padding: 1.5rem !important;
}

.value-icon {
    width: 50px !important;
    height: 50px !important;
    background: #e8f5e8 !important;
    color: #188913 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 1.2rem !important;
}

.facilities {
    padding: 3rem 0 !important;
    background: #f8f9fa !important;
}

.facilities-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.facilities-list {
    list-style: none !important;
    margin-top: 1rem !important;
}

.facilities-list li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    color: #6F7376 !important;
}

.facilities-list i {
    color: #188913 !important;
}

.facilities-image {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.facilities-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.team-preview {
    padding: 3rem 0 !important;
}

.team-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
}

.team-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.team-avatar {
    margin-bottom: 1rem !important;
}

.avatar-placeholder {
    width: 80px !important;
    height: 80px !important;
    background: #188913 !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1rem !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
}

.team-role {
    color: #188913 !important;
    font-weight: 500 !important;
    margin-bottom: 0.5rem !important;
}

.team-bio {
    color: #6F7376 !important;
    font-size: 0.9rem !important;
}

.accreditation {
    padding: 3rem 0 !important;
    background: #f8f9fa !important;
}

.accreditation-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.accreditation-badges {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.badge {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    background: white !important;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.badge-icon {
    width: 50px !important;
    height: 50px !important;
    background: #188913 !important;
    color: white !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
}

.badge-text h4 {
    margin-bottom: 0.25rem !important;
	margin-top:0!important;
}

.badge-text p {
    color: #6F7376 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}


/* Gallery Page Styles */
.gallery-section {
    padding: 3rem 0 !important;
}

.gallery-filters {
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
    margin-bottom: 2rem !important;
    flex-wrap: wrap !important;
}

.gallery-filter-btn {
    background: transparent !important;
    border: 2px solid #e5e5e5 !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 0.9rem !important;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    border-color: #188913 !important;
    color: #188913 !important;
}

.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 1rem !important;
}

.gallery-item {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    aspect-ratio: 4/3 !important;
    cursor: pointer !important;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
}

.gallery-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(24, 137, 19, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-item:hover img {
    transform: scale(1.05) !important;
}

.gallery-content {
    text-align: center !important;
    color: white !important;
    padding: 1rem !important;
}

.gallery-content h4 {
    margin-bottom: 0.5rem !important;
}

/* Lightbox Styles */
.lightbox {
    display: none !important;
    position: fixed !important;
    z-index: 3000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
    animation: fadeIn 0.3s ease !important;
}

.lightbox.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.lightbox-content {
    position: relative !important;
    max-width: 90% !important;
    max-height: 90% !important;
    text-align: center !important;
}

.lightbox-content img {
    max-width: 100% !important;
    max-height: 80vh !important;
    object-fit: contain !important;
    border-radius: 8px !important;
}

.lightbox-close {
    position: absolute !important;
    top: -40px !important;
    right: 0 !important;
    color: white !important;
    font-size: 2rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: opacity 0.3s ease !important;
}

.lightbox-close:hover {
    opacity: 0.7 !important;
}

.lightbox-caption {
    color: white !important;
    font-size: 1.1rem !important;
    margin-top: 1rem !important;
    font-weight: 500 !important;
}

.lightbox-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(0, 0, 0, 0.5) !important;
    color: white !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.3s ease !important;
    z-index: 10 !important;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8) !important;
}

.lightbox-prev {
    left: 20px !important;
}

.lightbox-next {
    right: 20px !important;
}

@keyframes fadeIn {
    from { opacity: 0 !important; }
    to { opacity: 1 !important; }
}

.reviews-section {
    padding: 3rem 0 !important;
    background: #f8f9fa !important;
}

.reviews-stats {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 3rem !important;
}

.stat-card {
    background: white !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.hidden {
	display:none!important;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #188913;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6F7376;
    font-weight: 500;
}

.stat-stars {
    color: #ffc107;
    margin-top: 0.5rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #188913;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reviewer-details h4 {
    margin-bottom: 0.25rem;
}

.reviewer-details p {
    color: #6F7376;
    font-size: 0.9rem;
    margin: 0;
}

.review-date {
    color: #999;
    font-size: 0.8rem;
}

.review-rating {
    color: #ffc107;
}

.review-content p {
    color: #6F7376;
    font-style: italic;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 0!important;
    background: linear-gradient(135deg, #188913 0%, #146b0f 100%)!important;
    color: white!important;
    text-align: center!important;
}

.cta-content h2 {
    font-size: 2.5rem!important;
    margin-bottom: 1rem!important;
	color:white!important;
}

.cta-content p {
    font-size: 1.2rem!important;
    margin-bottom: 2rem!important;
    opacity: 0.9!important;
}

.cta-actions {
    display: flex!important;
    gap: 1rem!important;
    justify-content: center!important;
    flex-wrap: wrap!important;
}

/* Contact Page Styles */
.contact-section {
    padding: 3rem 0 !important;
}

.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
}

.contact-info h2 {
    margin-bottom: 1rem !important;
}

.contact-info > p {
    color: #6F7376 !important;
    margin-bottom: 2rem !important;
}

.contact-details {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
}

.contact-content h4 {
	margin-top: 0 !important;
}

.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
}

.contact-icon {
    width: 50px !important;
    height: 50px !important;
    background: #e8f5e8 !important;
    color: #188913 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
}

.contact-content h4 {
    margin-bottom: 0.5rem !important;
}

.contact-content p {
    margin-bottom: 0.25rem !important;
}

.contact-content small {
    color: #6F7376 !important;
    font-size: 0.9rem !important;
}

.contact-form-container {
    background: #f8f9fa !important;
    padding: 2rem !important;
    border-radius: 12px !important;
}

.contact-form h3 {
    margin-bottom: 0.5rem !important;
}

.contact-form > p {
    color: #6F7376 !important;
    margin-bottom: 2rem !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1rem !important;
}

.form-group {
    margin-bottom: 1rem !important;
}

.form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
    color: #333 !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 0.75rem;
    border: 2px solid #e5e5e5 !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    transition: border-color 0.3s ease !important;
    font-family: inherit !important;
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #188913 !important;
}

.form-group textarea {
    resize: vertical !important;
    min-height: 120px !important;
}

.checkbox-group {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0 !important;
}

.map-section {
    padding: 3rem 0 !important;
    background: #f8f9fa !important;
}

.map-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 2rem !important;
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
}

.map-placeholder iframe {
    width: 100% !important;
    height: 400px !important;
    border: none !important;
}

.map-info {
    padding: 2rem !important;
}

.map-info h3 {
    margin-bottom: 1rem !important;
}

.map-info ul {
    list-style: none !important;
}

.map-info li {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.75rem !important;
    color: #6F7376 !important;
}

.map-info i {
    color: #188913 !important;
    width: 20px !important;
}

.faq-section {
    padding: 3rem 0 !important;
}

.faq-grid {
    display: grid !important;
    gap: 1rem !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.faq-item {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
}

.faq-question {
    padding: 1.5rem !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: white !important;
    transition: background-color 0.3s ease !important;
}

.faq-question:hover {
    background: #f8f9fa !important;
}

.faq-question h4 {
    margin: 0 !important;
}

.faq-question i {
    color: #188913 !important;
    transition: transform 0.3s ease !important;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg) !important;
}

.faq-answer {
    padding: 0 1.5rem !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem !important;
    max-height: 200px !important;
}

.faq-answer p {
    color: #6F7376 !important;
    margin: 0 !important;
}


/* Footer */
.footer {
    background: #333!important;
    color: white!important;
    padding: 3rem 0 1rem!important;
}

.footer-content {
    display: grid!important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))!important;
    gap: 2rem!important;
    margin-bottom: 2rem!important;
}

.footer-logo .logo {
    margin-bottom: 1rem!important;
}

.footer-logo .logo-text {
    color: white!important;
}

.footer-section p {
    color: #ccc!important;
    margin-bottom: 1rem!important;
}

.rto-code {
    background: #188913!important;
    color: white!important;
    padding: 0.5rem 1rem!important;
    border-radius: 20px!important;
    font-weight: 600!important;
    display: inline-block!important;
    font-size: 0.9rem!important;
}

.footer-section h4 {
    margin-bottom: 1rem!important;
    color: white!important;
}

.footer-section ul {
    list-style: none!important;
}

.footer-section li {
    margin-bottom: 0.5rem!important;
}

.footer-section a {
    color: #ccc!important;
    text-decoration: none!important;
    transition: color 0.3s ease!important;
}

.footer-section a:hover {
    color: #188913!important;
}

.footer-section i {
    margin-right: 0.25rem!important;
    font-size: 0.9rem!important;
    color: #188913!important;
}

.social-links {
    display: flex!important;
    gap: 1rem!important;
}

.social-links a {
    width: 40px!important;
    height: 40px!important;
    background: #444!important;
    color: white!important;
    border-radius: 50%!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    transition: background-color 0.3s ease!important;
}

.social-links a:hover {
    background: #188913!important;
}

.footer-bottom {
    border-top: 1px solid #444!important;
    padding-top: 1rem!important;
    text-align: center!important;
    color: #ccc!important;
}

/* Section Hover Effects for Client Reference */
.section-hover {
    position: relative;
    transition: opacity 0.3s ease;
}

.section-hover::before {
    content: attr(data-section);
    position: absolute;
    top: 20px;
    left: 20px;
    background: red;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.section-hover:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Reviews Carousel */
.reviews-carousel {
    padding: 3rem 0 !important;
    background: #f8f9fa !important;
}

.carousel-container {
    position: relative !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
}

.carousel-wrapper {
    overflow: hidden !important;
    border-radius: 12px !important;
}

.carousel-track {
    display: flex !important;
    transition: transform 0.5s ease !important;
}

.review-slide {
    min-width: 100% !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
}

.review-slide .testimonial-card {
    margin: 0 auto !important;
    max-width: 600px !important;
}

.carousel-controls {
    display: flex !important;
    justify-content: center !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

.carousel-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    border: none !important;
    background: #188913 !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
}

.carousel-btn:hover {
    background: #146b0f !important;
    transform: scale(1.1) !important;
}

.carousel-btn:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.carousel-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 1rem !important;
}

.carousel-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #ccc !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

.carousel-dot.active {
    background: #188913 !important;
}


.fusion-text {
		padding-left:20px!important;
		padding-right:20px!important;
	} 


/* Responsive Design */

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
    }
	
	/* .fusion-text {
		padding-left:20px!important;
		padding-right:20px!important;
	} */
	
	.container {
        width: unset!important;
    }

    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        flex-direction: column !important;
        padding: 2rem !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 1500 !important;
    }

	.footer-content {
		grid-template-columns: 1fr !important;
		gap: 2rem !important; /* Maintain the gap between stacked sections */
    }

    .nav-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-menu .nav-link {
        padding: 1rem 0 !important;
        border-bottom: 1px solid #e5e5e5 !important;
        text-align: center !important;
        font-size: 1.1rem !important;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none !important;
    }

    .search-text {
        display: none !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-actions {
        flex-direction: column !important;
        align-items: center !important;
    }

    .hero-search-box,
    .course-search-box {
        max-width: 100% !important;
    }

    .hero-search-input {
        font-size: 1rem !important;
        padding: 0.875rem 3.5rem 0.875rem 1.25rem !important;
    }

    .hero-search-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .page-hero h1 {
        font-size: 2rem !important;
    }

    .about-content,
    .story-content,
    .facilities-content,
    .accreditation-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }
	


    .map-container {
        grid-template-columns: 1fr !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }


    .courses-grid {
        grid-template-columns: 1fr !important;
    }
	
	.course-image img {
    height: 100%;
	}

    .testimonials-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    }

    .filter-tabs,
    .gallery-filters {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding-bottom: 0.5rem !important;
    }
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important; /* Adjusted gap for smaller screens */
    }

    .cta-actions {
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px !important;
    }

    .hero-title {
        font-size: 2rem !important;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .course-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .course-meta {
        align-items: flex-start !important;
    }

    .course-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
}
