      :root {
            --primary-orange: #FF6B35;
            --dark-navy: #101828;
            --light-peach: #FFF5F0;
            --cream-bg: #F8F9FA;
            font-family: poppins;
        }

        .btn {
            border-radius: 25px !important;
            padding: 12px 30px;
            font-weight: 600;
        }

        .btn-primary {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
        }

        .btn-primary:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
        }

        .btn-outline-primary {
            color: var(--primary-orange);
            border-color: var(--primary-orange);
            border-radius: 25px;
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
        }

        .navbar-brand {
            color: var(--primary-orange) !important;
            font-weight: bold;
        }

        .navbar-nav .nav-link {
            color: white !important;
        }

        .hero-section {
            background: linear-gradient(rgba(14, 20, 25, 0.167), rgba(12, 16, 21, 0.162)), url('images/Herro.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 1.5rem;
        }

        .hero-content .highlight {
            color: var(--primary-orange);
        }

        .section-padding {
            padding: 80px 0;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 100%;
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .about-section {
            background-color: var(--light-peach);
        }

        .news-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .news-card img {
            height: 200px;
            object-fit: cover;
        }

        .gallery-section {
            background-color: var(--dark-navy);
            color: white;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .cta-section {
            background-color: var(--primary-orange);
            color: white;
        }

        .footer {
            background-color: var(--dark-navy);
            color: white;
            padding: 50px 0 20px;
        }

        .footer h5 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
        }

        .footer a:hover {
            color: white;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }

        body {
    font-family: 'Poppins';
}

.horizontal-scroll-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  position: relative;
}

.scroll-track {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-item {
  flex: 0 0 auto;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.gallery-item img {
  height: 100%;
  width: auto;
  display: block;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.horizontal-scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.scroll-track {
  display: inline-flex;
  animation: scroll-left linear infinite 60s;
}

.gallery-item {
  flex: 0 0 auto;
  margin-right: 16px;
}

.gallery-item img {
  height: 200px; /* Set a fixed height */
  width: auto; /* Maintain aspect ratio */
  display: block;
}

/* Hide scrollbar across browsers */
.horizontal-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.horizontal-scroll-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Keyframes for continuous scrolling */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
 
 :root {
            --primary-orange: #FF6B35;
            --dark-navy: #101828;
            --light-peach: #FFF5F0;
            --cream-bg: #F8F9FA;
            --light-gray: #F5F5F5;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        .btn {
            border-radius: 25px !important;
            padding: 12px 30px;
            font-weight: 600;
        }

        .btn-primary {
            background-color: var(--primary-orange);
            border-color: var(--primary-orange);
        }

        .btn-primary:hover {
            background-color: #e55a2b;
            border-color: #e55a2b;
        }

        .btn-dark {
            background-color: #333;
            border-color: #333;
            border-radius: 25px !important;
        }

        .btn-dark:hover {
            background-color: #222;
            border-color: #222;
        }

        .navbar-brand {
            color: var(--primary-orange) !important;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .navbar-nav .nav-link {
            color: #666 !important;
            font-weight: 500;
            margin: 0 15px;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }

        .navbar {
            background-color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
        }

        .hero-banner {
            background-color: var(--light-gray);
            padding: 100px 0 80px;
            text-align: center;
        }

        .hero-banner h1 {
            font-size: 3.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 20px;
        }

        .breadcrumb-nav {
            color: #999;
            font-size: 1.1rem;
        }

        .breadcrumb-nav a {
            color: #999;
            text-decoration: none;
        }

        .breadcrumb-nav a:hover {
            color: var(--primary-orange);
        }

        .contact-section {
            padding: 80px 0;
            background-color: white;
        }

        .contact-info {
            padding-right: 50px;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
        }

        .contact-info p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .contact-method {
            margin-bottom: 40px;
        }

        .contact-method h4 {
            color: #333;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .contact-method h4 i {
            margin-right: 15px;
            color: var(--primary-orange);
            font-size: 1.2rem;
        }

        .contact-method p {
            color: #666;
            margin-bottom: 10px;
            margin-left: 35px;
        }

        .contact-form {
            background-color: #FAFAFA;
            padding: 0;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            color: #333;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .form-control {
            border: 1px solid #E0E0E0;
            border-radius: 8px;
            padding: 15px;
            font-size: 1rem;
            background-color: white;
        }

        .form-control:focus {
            border-color: var(--primary-orange);
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }

        .form-control::placeholder {
            color: #999;
        }

        .phone-input {
            position: relative;
        }

        .phone-input .flag-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 15px;
            background-color: #ff6b35;
            border-radius: 2px;
        }

        .phone-input .form-control {
            padding-left: 45px;
        }

        .map-container {
            width: 100%;
            height: 250px;
            background-color: #E0E0E0;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 30px;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                        linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                        linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 1.2rem;
        }

        .submit-note {
            font-size: 0.9rem;
            color: #999;
            margin-top: 15px;
        }

        @media (max-width: 768px) {
            .hero-banner h1 {
                font-size: 2.5rem;
            }
            
            .contact-info {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .contact-info h2 {
                font-size: 2rem;
            }
        }

                :root {
            --primary-orange: #ff6b35;
            --light-gray: #f8f9fa;
            --dark-navy: #101828;
            --text-gray: #6c757d;
        }

        body {
            font-family: 'poppins';
            line-height: 1.6;
        }

        .navbar {
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary-orange) !important;
            font-size: 1.5rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark-navy) !important;
            font-weight: 500;
            margin: 0 0.5rem;
        }

        .btn-primary {
            background-color: var(--primary-orange);
            border: none;
            border-radius: 25px;
            padding: 10px 25px;
            font-weight: 600;
        }

        .btn-primary:hover {
            background-color: #b54a00;
        }

        

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
        }

        .breadcrumb-item a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .section-padding {
            padding: 80px 0;
        }

        .search-section {
            background-color: white;
            padding: 40px 0;
        }

        .search-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 25px;
            font-size: 1rem;
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--primary-orange);
            border: none;
            border-radius: 20px;
            padding: 8px 20px;
            color: white;
            font-weight: 600;
        }

        .download-btn {
            background-color: var(--dark-navy);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 12px 25px;
            font-weight: 600;
            margin-left: 1rem;
        }

        .academics-section {
            background-color: var(--light-gray);
        }

        .academic-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }

        .academic-card:hover {
            transform: translateY(-5px);
        }

        .academic-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .academic-content {
            padding: 2rem;
        }

        .academic-title {
            font-weight: 700;
            color: var(--dark-navy);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .academic-description {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .read-more-btn {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 8px 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .parent-resources-section {
            background-color: white;
        }

        .resource-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }

        .resource-card:hover {
            transform: translateY(-5px);
        }

        .resource-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .resource-content {
            padding: 1.5rem;
        }

        .resource-title {
            font-weight: 600;
            color: var(--dark-navy);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .download-link {
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .download-link:hover {
            color: #b54a00;
        }

        .gallery-section {
            background-color: var(--light-gray);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 2rem;
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .cta-section {
            background-color: var(--primary-orange);
            color: white;
            padding: 80px 0;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .cta-btn {
            background-color: white;
            color: var(--primary-orange);
            border: none;
            border-radius: 25px;
            padding: 15px 30px;
            font-weight: 700;
            margin: 0 10px;
        }

        .cta-btn:hover {
            background-color: #f8f9fa;
            color: var(--primary-orange);
        }

        .footer {
            background-color: var(--dark-navy);
            color: white;
            padding: 3rem 0 2rem;
        }

        .footer h5 {
            color: var(--primary-orange);
            margin-bottom: 1rem;
        }

        .footer p, .footer li {
            color: #bbb;
            margin-bottom: 0.5rem;
        }

        .footer .list-unstyled li {
            padding: 0.25rem 0;
        }

        .view-more-btn {
            background-color: var(--primary-orange);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
        }

        .view-more-btn:hover {
            background-color: #b54a00;
            color: white;
        }