/*
** Animations and Enhanced Styles for Ideal Real Estate Consulting Website
** Created: 2025-03-19
** Updated: 2025-03-30
*/

/* ======= ANIMATION KEYFRAMES ======= */
/* Element Animations */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(164, 211, 55, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(164, 211, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(164, 211, 55, 0); }
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Transition Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Effect Animations */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(164, 211, 55, 0.7); }
    50% { box-shadow: 0 0 20px rgba(164, 211, 55, 0.9); }
    100% { box-shadow: 0 0 5px rgba(164, 211, 55, 0.7); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 30px; }
}

/* Carousel Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ======= ENHANCED ELEMENTS ======= */

/* Pulsing Animation for CTA */
.pulse-animation {
    animation: pulse 2s infinite;
}

/* Glow Effect */
.glow-effect {
    animation: glow 2s infinite;
}

/* Enhanced Hero Section */
.hero-enhanced {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin-top: 90px;
    overflow: hidden;
    color: #FFFFFF;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 47, 93, 0.85) 0%, rgba(28, 47, 93, 0.95) 100%);
    z-index: 1;
}

.video-background video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.hero-enhanced .container {
    position: relative;
    z-index: 2;
}

.animated-heading {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    font-weight: 800;
}

.animated-heading .highlight {
    color: #ADF802;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-shape-divider .shape-fill {
    fill: #FFFFFF;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.trust-item i {
    color: #ADF802;
    font-size: 1.2rem;
}

/* Client Logos Section */
.client-logos {
    padding: 30px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F0F0F0;
}

.logos-wrapper {
    width: 100%;
    overflow: hidden;
}

.trusted-by {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo-slider {
    display: flex;
    animation: slide 30s linear infinite;
    width: 200%;
}

.logo-slide {
    flex: 0 0 10%;
    min-width: 150px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Tabs */
.section-tagline {
    display: inline-block;
    color: #ADF802;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    position: relative;
}

.section-tagline:before {
    content: "";
    height: 2px;
    width: 40px;
    background-color: #ADF802;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.services-tabs {
    margin-top: 40px;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-button {
    background: transparent;
    border: 2px solid #072361  ;
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #072361  ;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover, .tab-button.active {
    background-color: #072361  ;
    color: #FFFFFF;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-pane.active {
    display: block;
}

.tab-flex {
    display: flex;
    gap: 40px;
    align-items: center;
}

.tab-image {
    flex: 0 0 45%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.tab-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    background-color: #ADF802;
    color: #072361  ;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(5deg);
}

.tab-info {
    flex: 1;
}

.tab-info .icon {
    color: #ADF802;
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #ADF802;
    margin-right: 10px;
}

/* Parallax Section */
.parallax-section {
    background-image: url('../IMG_8329.JPG');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #FFFFFF;
    padding: 100px 0;
    overflow: hidden;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 47, 93, 0.9) 0%, rgba(47, 66, 106, 0.95) 100%);
    z-index: 1;
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

.light-text h2, .light-text p {
    color: #FFFFFF;
}

.icon-animated {
    font-size: 2.5rem;
    color: #ADF802;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 20px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.stats-overlay {
    margin-top: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px 0;
    border-radius: 10px;
}

.counter-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stat-number, .stat-prefix, .stat-suffix {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ADF802;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
}

/* Featured Programs Enhanced */
.featured-programs.enhanced {
    padding: 100px 0;
    background-color: #F9F9F9;
}

.program-cards-carousel {
    display: flex;
    overflow: hidden;
    margin: 40px 0;
    position: relative;
}

.program-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
 

display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(164, 211, 55, 0.3);
}

.program-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ADF802;
    color: #072361  ;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.program-category {
    display: inline-block;
    background-color: rgba(28, 47, 93, 0.1);
    color: #072361  ;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

.program-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-meta {
    display: flex;
    margin: 10px 0;
    font-size: 0.85rem;
    color: #666;
}

.program-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.program-meta i {
    margin-right: 5px;
}

.price-action {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #072361  ;
    font-family: 'Montserrat', sans-serif;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.prev-btn, .next-btn {
    background-color: #FFFFFF;
    border: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: #ADF802;
    color: #FFFFFF;
}

.carousel-dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #ADF802;
    transform: scale(1.3);
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Success Stories with Before/After */
.success-stories {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.transformation-showcase {
    margin-top: 50px;
}

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.before-after {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFFFFF;
    transform: translate(-50%, -50%);
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle i {
    color: #072361  ;
    font-size: 0.8rem;
}

.label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background-color: rgba(28, 47, 93, 0.8);
    color: #FFFFFF;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.before-image .label {
    left: 20px;
}

.after-image .label {
    right: 20px;
}

.case-study-content {
    padding: 20px;
}

.case-study-content h3 {
    margin-bottom: 15px;
}

.case-description {
    margin-bottom: 20px;
}

.results {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ADF802;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    display: block;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
}

/* Enhanced Testimonials */
.enhanced-testimonials {
    background-color: #F9F9F9;
    padding: 100px 0;
    position: relative;
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.quote-icon {
    color: #ADF802;
    font-size: 2.5rem;
    text-align: right;
    margin-bottom: -20px;
    margin-top: -20px;
    opacity: 0.2;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid #ADF802;
}

.client-details h4 {
    margin-bottom: 5px;
}

.client-details p {
    margin-bottom: 5px;
    color: #666;
}

.rating {
    color: #FFD700;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dots .dot {
    height: 12px;
    width: 12px;
}

.testimonial-arrows {
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    padding: 0 -20px;
}

/* Interactive CTA Section */
.cta-section.interactive {
    padding: 100px 0;
    background: linear-gradient(135deg, #072361   0%, #2F426A 100%);
    color: #FFFFFF;
    position: relative;
}

.cta-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.cta-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.cta-benefits li i {
    color: #ADF802;
    margin-right: 10px;
}

.cta-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    margin-bottom: 10px;
}

.quick-contact-form .form-group {
    margin-bottom: 20px;
}

.quick-contact-form input,
.quick-contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.quick-contact-form input:focus,
.quick-contact-form select:focus {
    border-color: #ADF802;
    outline: none;
}

.full-width {
    width: 100%;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

.cta-shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.cta-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.cta-shape-divider .shape-fill {
    fill: #F9F9F9;
}

/* Latest Insights */
.latest-insights {
    padding: 100px 0;
    background-color: #F9F9F9;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.insight-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.insight-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #ADF802;
    color: #072361  ;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.insight-content {
    padding: 25px;
}

.insight-content h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.insight-meta {
    display: flex;
    color: #666;
    font-size: 0.85rem;
    margin: 20px 0 15px;
}

.insight-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.insight-meta i {
    margin-right: 5px;
}

.read-more {
    color: #ADF802;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.insights-cta {
    text-align: center;
    margin-top: 50px;
}

/* Enhanced Newsletter Section */
.newsletter-section.enhanced {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    background-color: #F9F9F9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.newsletter-image {
    height: 100%;
}

.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-content {
    padding: 60px;
}

.subscription-benefits {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: #ADF802;
}

.newsletter-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 15px;
}

/* Partner Logos */
.partners-section {
    padding: 80px 0;
    background-color: #F9F9F9;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.partner-logo {
    text-align: center;
    padding: 20px;
}

.partner-logo img {
    max-height: 60px;
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Service Areas Map */
.service-areas {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.map-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.nigeria-map {
    position: relative;
}

.map-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.marker-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #ADF802;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(164, 211, 55, 0.4);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 2s infinite;
}

.map-marker.active .marker-dot {
    background-color: #072361  ;
}

.map-marker.active .marker-pulse {
    background-color: rgba(28, 47, 93, 0.4);
}

.map-marker.lagos {
    top: 75%;
    left: 25%;
}

.map-marker.abuja {
    top: 40%;
    left: 50%;
}

.map-marker.ph {
    top: 80%;
    left: 60%;
}

.city-info {
    background-color: #F9F9F9;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.city-tab {
    display: none;
}

.city-tab.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.city-tab h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-tab h3 i {
    color: #ADF802;
}

/* Final CTA with Countdown */
.final-cta {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.cta-box {
    background: linear-gradient(135deg, #072361   0%, #2F426A 100%);
    color: #FFFFFF;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
    backdrop-filter: blur(5px);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ADF802;
    display: block;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 500;
}

/* Enhanced Footer */
.enhanced-footer {
    background-color: #072361  ;
    color: #FFFFFF;
    position: relative;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column.branding p {
    opacity: 0.8;
    margin-bottom: 25px;
}

.footer-link-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ADF802;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ADF802;
    color: #072361  ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive Fixes for Enhanced Elements */
@media screen and (max-width: 992px) {
    .animated-heading {
        font-size: 3rem;
    }
    
    .cta-flex,
    .case-study,
    .newsletter-wrapper,
    .map-interactive {
        grid-template-columns: 1fr;
    }
    
    .tab-flex {
        flex-direction: column;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partners-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-tabs .tab-navigation {
        flex-direction: column;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-timer {
        flex-wrap: wrap;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

/* Hero Two-Column Styles */
.hero-two-column {
    position: relative;
    min-height: 700px;
    padding: 150px 0 100px;
    background-color: #f8fcff;
    overflow: hidden;
    margin-top: 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-tagline {
    display: inline-block;
    background-color: rgba(164, 211, 55, 0.15);
    color: #072361  ;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    position: relative;
}

.hero-tagline:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ADF802;
    border-radius: 50%;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-image-container {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-shape-1, .hero-shape-2 {
    position: absolute;
    border-radius: 20px;
    z-index: -1;
}

.hero-shape-1 {
    width: 100%;
    height: 100%;
    background-color: rgba(164, 211, 55, 0.2);
    top: -20px;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 70%;
    height: 70%;
    background-color: rgba(28, 47, 93, 0.1);
    bottom: -15px;
    left: -15px;
    animation: float 7s ease-in-out infinite reverse;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: #072361  ;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ADF802;
    font-family: 'Montserrat', sans-serif;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
    margin-top: 5px;
}

/* Enhanced Why Choose Us Section */
.why-choose-us-enhanced {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.usp-flex-container {
    margin-top: 60px;
}

.usp-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #072361  ;
}

.showcase-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ADF802;
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}

.stat-value:after {
    content: "%";
    font-size: 1.5rem;
    position: absolute;
    top: 5px;
    margin-left: 5px;
}

.stat-box:nth-child(2) .stat-value:after {
    content: "+";
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
    width: 100%;
    display: block;
}

.image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(28, 47, 93, 0.8) 0%, rgba(164, 211, 55, 0) 100%);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.showcase-image:hover .image-accent {
    opacity: 0;
}

.usp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.usp-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 3px solid transparent;
}

.usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: #ADF802;
}

.usp-icon {
    font-size: 2rem;
    color: #ADF802;
    background-color: rgba(164, 211, 55, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.usp-card:hover .usp-icon {
    background-color: #072361  ;
    color: #FFFFFF;
}

.usp-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.usp-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Enhanced Featured Programs (continued) */
.featured-programs-premium {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.programs-flex-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    margin-top: 60px;
}

.program-sidebar {
    background-color: #072361  ;
    color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    height: fit-content;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.sidebar-content {
    padding: 40px 30px;
}

.sidebar-content h3 {
    color: #FFFFFF;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.sidebar-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.training-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon {
    background-color: rgba(164, 211, 55, 0.2);
    color: #ADF802;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.feature-text {
    color: #FFFFFF;
    font-weight: 500;
}

.cta-container {
    text-align: center;
}

.program-cards-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.program-card.premium {
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.program-card.premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: #ADF802;
    color: #072361  ;
    font-weight: 700;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.program-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card.premium:hover .program-image img {
    transform: scale(1.1);
}

.difficulty-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 5;
}

.difficulty-badge.beginner {
    background-color: #a8e6cf;
    color: #2d6a4f;
}

.difficulty-badge.intermediate {
    background-color: #ffd3b6;
    color: #93440f;
}

.difficulty-badge.advanced {
    background-color: #ffaaa5;
    color: #a32b22;
}

.duration-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(28, 47, 93, 0.8);
    color: #FFFFFF;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.program-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.program-content p {
    color: #666;
    flex-grow: 1;
    margin-bottom: 20px;
}

.enrollment-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.next-date {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.next-date span {
    color: #666;
    margin-right: 5px;
}

.availability {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.9rem;
}

.availability span:first-child {
    color: #666;
}

.seats {
    display: flex;
    gap: 3px;
}

.seat {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
}

.seat.filled {
    background-color: #072361  ;
}

.seats-left {
    color: #072361  ;
    font-weight: 600;
    font-size: 0.85rem;
}

.price-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #072361  ;
    font-family: 'Montserrat', sans-serif;
}

/* Enhanced Contact Form Styles */
.cta-form {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #072361  ;
}

.quick-contact-form .form-group {
    margin-bottom: 20px;
}

.quick-contact-form input,
.quick-contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.quick-contact-form input:focus,
.quick-contact-form select:focus {
    outline: none;
    border-color: #ADF802;
    box-shadow: 0 5px 15px rgba(164, 211, 55, 0.1);
}

.quick-contact-form input::placeholder {
    color: #999;
}

.quick-contact-form .cta-button {
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
}

.full-width {
    width: 100%;
}

/* Form validation and success state */
.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
}

input.error, select.error {
    border-color: #e74c3c;
}

.form-success {
    text-align: center;
    padding: 30px 15px;
}

.form-success p {
    color: #27ae60;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-success i {
    font-size: 1.5rem;
}

/* Responsive styles for new sections */
@media screen and (max-width: 1200px) {
    .programs-flex-container,
    .hero-grid {
        gap: 30px;
    }
    
    .program-cards-premium {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media screen and (max-width: 992px) {
    .hero-grid,
    .programs-flex-container,
    .usp-showcase {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
        margin: 0 auto;
        max-width: 500px;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .usp-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-content {
        order: 2;
    }
    
    .showcase-image {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    .animated-heading {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .usp-cards {
        grid-template-columns: 1fr;
    }
    
    .usp-card {
        padding: 20px;
    }
    
    .showcase-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .program-cards-premium {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .hero-two-column {
        padding: 120px 0 80px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .price-action {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-action .cta-button {
        width: 100%;
    }
}


/* Thank You Page Styles */
.thank-you-section {
    padding: 150px 0 100px;
    background-color: #f8fcff;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
    font-size: 5rem;
    color: #ADF802;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.thank-you-content h1 {
    color: #072361  ;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    margin-bottom: 30px;
}

.next-steps h3 {
    margin-bottom: 15px;
    color: #072361  ;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.next-steps li i {
    color: #ADF802;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .thank-you-content {
        padding: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .thank-you-section {
        padding: 120px 0 80px;
    }
}



/* Base Hero Section */
.hero-base {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    overflow: hidden;
    margin-top: 0;
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 47, 93, 0.92) 0%, rgba(28, 47, 93, 0.85) 100%);
    z-index: -1;
}

/* Single Hero Section */
.hero-enhanced-single {
    composes: hero-base;
}

.hero-enhanced-single .hero-bg-image {
    background-image: url('../IMG_8330.JPG');
}

.hero-enhanced-single .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(164, 211, 55, 0.2);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(164, 211, 55, 0.3);
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ADF802;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-enhanced-single .animated-heading {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-enhanced-single .highlight {
    color: #ADF802;
    position: relative;
    display: inline-block;
}

.hero-enhanced-single .highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    background-color: rgba(164, 211, 55, 0.2);
    left: 0;
    bottom: 5px;
    z-index: -1;
    border-radius: 10px;
}

.hero-enhanced-single .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

.hero-enhanced-single .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-enhanced-single .cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
}

.hero-enhanced-single .secondary-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
}

.hero-enhanced-single .secondary-button:hover {
    background-color: #FFFFFF;
    color: #072361  ;
    border-color: #FFFFFF;
}

.achievement-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.achievement-icon {
    color: #ADF802;
    font-size: 2rem;
}

.achievement-text {
    text-align: left;
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.achievement-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #FFFFFF;
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: #FFFFFF;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

.scroll-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* ======= RESPONSIVE STYLES ======= */

/* Large Screens (1200px and down) */
@media screen and (max-width: 1200px) {
    /* Typography */
    .animated-heading,
    .hero-enhanced-single .animated-heading,
    .hero-transparent .animated-heading {
        font-size: 3.8rem;
    }
    
    .hero-subtitle,
    .hero-enhanced-single .hero-subtitle,
    .hero-transparent .hero-subtitle {
        font-size: 1.3rem;
    }
}

/* Medium Screens (992px and down) */
@media screen and (max-width: 992px) {
    /* Hero Sections */
    .hero-base,
    .hero-enhanced-single,
    .hero-transparent {
        padding: 160px 0 100px;
    }
    
    /* Typography */
    .animated-heading,
    .hero-enhanced-single .animated-heading,
    .hero-transparent .animated-heading {
        font-size: 3.2rem;
    }
    
    .hero-subtitle,
    .hero-enhanced-single .hero-subtitle,
    .hero-transparent .hero-subtitle {
        font-size: 1.2rem;
    }
    
    /* Achievement Cards */
    .achievement-grid,
    .achievement-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Small Screens (768px and down) */
@media screen and (max-width: 768px) {
    /* Hero Sections */
    .hero-base,
    .hero-enhanced-single,
    .hero-transparent {
        padding: 120px 0 100px;
    }
    
    /* Typography */
    .animated-heading,
    .hero-enhanced-single .animated-heading,
    .hero-transparent .animated-heading {
        font-size: 2.5rem;
    }
    
    .hero-subtitle,
    .hero-enhanced-single .hero-subtitle,
    .hero-transparent .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    /* Achievement Cards */
    .achievement-grid,
    .achievement-cards {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 60px;
    }
    
    .achievement-card-base,
    .achievement-card {
        width: 100%;
    }
}

/* Extra Small Screens (480px and down) */
@media screen and (max-width: 480px) {
    /* Hero Sections */
    .hero-base,
    .hero-enhanced-single,
    .hero-transparent {
        padding: 100px 0 80px;
    }
    
    /* Typography */
    .animated-heading,
    .hero-enhanced-single .animated-heading,
    .hero-transparent .animated-heading {
        font-size: 2rem;
    }
    
    /* Badges and Labels */
    .hero-badge {
        padding: 8px 15px;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
}

/* Enhanced Hero Section with Transparent Background */
/* Hero Base Styles - Reusable for all hero sections */
.hero-base {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    overflow: hidden;
    margin-top: 0;
    text-align: center;
    color: #FFFFFF;
    z-index: 1;
}

/* Hero Transparent Variant */
.hero-transparent {
    composes: hero-base;
}

.hero-transparent .hero-bg-image {
    background-image: url('../images/hero.JPG');
}

.hero-transparent .hero-overlay {
    background: linear-gradient(135deg, rgba(28, 47, 93, 0.92) 0%, rgba(47, 66, 106, 0.85) 100%);
}

/* Common Hero Background Styles */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-transparent .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-transparent .hero-badge {
    display: inline-block;
    background-color: rgba(164, 211, 55, 0.2);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(164, 211, 55, 0.3);
}

.hero-transparent .hero-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #ADF802;
    letter-spacing: 1px;
}

.hero-transparent .animated-heading {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-transparent .highlight {
    color: #ADF802;
    position: relative;
    display: inline-block;
}

.hero-transparent .highlight:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 15px;
    background-color: rgba(164, 211, 55, 0.2);
    left: 0;
    bottom: 5px;
    z-index: -1;
    border-radius: 10px;
}

.hero-transparent .hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

.hero-transparent .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-transparent .cta-button {
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
}

.hero-transparent .secondary-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    padding: 15px 35px;
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 0;
}

.hero-transparent .secondary-button:hover {
    background-color: #FFFFFF;
    color: #072361  ;
    border-color: #FFFFFF;
}

/* Achievement Cards Base Styles */
.achievement-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.achievement-card-base {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.achievement-card-base:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Achievement Card Components */
.achievement-icon {
    color: #ADF802;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.achievement-text {
    text-align: left;
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.achievement-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Achievement Cards Variant */
.achievement-cards {
    composes: achievement-grid;
}

.achievement-card {
    composes: achievement-card-base;
}

/* Scroll Indicator Component */
.scroll-indicator-base {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator-base:hover {
    opacity: 1;
}

/* Mouse Animation Component */
.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 10px;
    background-color: currentColor;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

/* Unified Scroll Animation */
@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

.scroll-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Scroll Indicator Variant */
.scroll-indicator {
    composes: scroll-indicator-base;
}

/* Redesigned Why Choose Us Section */
.why-choose-us-redesign {
    padding: 120px 0;
    background-color: #f8fcff;
    position: relative;
    overflow: hidden;
}

.why-choose-us-redesign:before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(164, 211, 55, 0.05);
    z-index: 1;
}

.why-choose-us-redesign:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(28, 47, 93, 0.05);
    z-index: 1;
}

.section-header.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tagline {
    display: inline-block;
    background-color: rgba(164, 211, 55, 0.1);
    color: #072361  ;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.feature-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ADF802, #072361  );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-card:hover:before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(164, 211, 55, 0.1);
    color: #072361  ;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #072361  ;
    color: #FFFFFF;
    transform: rotateY(180deg);
}

.feature-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    opacity: 1;
}

.feature-content h3 {
    color: #072361  ;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 12px;
}

.feature-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #ADF802;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-content h3:after {
    width: 60px;
}

.feature-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #072361  ;
    color: #FFFFFF;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    border-radius: 15px;
}

.feature-card:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover .feature-content {
    opacity: 0;
}

.hover-content h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.hover-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.hover-content ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: #ADF802;
}

.testimonial-highlight {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background-color: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.testimonial-content {
    padding: 50px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 30px;
    left: 50px;
    font-size: 4rem;
    color: rgba(164, 211, 55, 0.1);
    z-index: 1;
}

blockquote {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0 0 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ADF802;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: #072361  ;
    font-size: 1.1rem;
}

.author-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

.cta-panel {
    background: linear-gradient(135deg, #072361   0%, #2F426A 100%);
    padding: 50px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-panel h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.cta-panel .cta-button {
    background-color: #ADF802;
    color: #072361  ;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #ADF802;
    text-transform: none;
    letter-spacing: 0;
}

.cta-panel .cta-button:hover {
    background-color: transparent;
    color: #FFFFFF;
}

/* Media Queries for the new sections */
@media screen and (max-width: 1200px) {
    .hero-transparent .animated-heading {
        font-size: 3.8rem;
    }
    
    .hero-transparent .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .features-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .hover-content {
        padding: 25px;
    }
    
    .testimonial-highlight {
        grid-template-columns: 3fr 2fr;
    }
    
    .testimonial-content, .cta-panel {
        padding: 40px;
    }
}

@media screen and (max-width: 992px) {
    .hero-transparent {
        padding: 160px 0 100px;
    }
    
    .hero-transparent .animated-heading {
        font-size: 3.2rem;
    }
    
    .hero-transparent .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-highlight {
        grid-template-columns: 1fr;
    }
    
    .achievement-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .hero-transparent {
        padding: 120px 0 100px;
    }
    
    .hero-transparent .animated-heading {
        font-size: 2.5rem;
    }
    
    .hero-transparent .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-transparent .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .achievement-cards {
        flex-direction: column;
        max-width: 300px;
        margin: 0 auto 60px;
    }
    
    .achievement-card {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content, .cta-panel {
        padding: 30px;
    }
    
    blockquote {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-transparent {
        padding: 100px 0 80px;
    }
    
    .hero-transparent .animated-heading {
        font-size: 2rem;
    }
    
    .hero-badge {
        padding: 8px 15px;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hover-content {
        padding: 20px;
    }
    
    .hover-content ul li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .quote-icon {
        font-size: 3rem;
        top: 20px;
        left: 30px;
    }
    
    blockquote {
        font-size: 1rem;
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
}
/* Touch device support for feature cards */
@media (hover: none) {
    .feature-card.active .hover-content {
        opacity: 1;
        transform: translateY(0);
    }
    
    .feature-card.active .feature-content {
        opacity: 0;
    }
    
    .feature-card.active .feature-icon {
        background-color: #072361  ;
        color: #FFFFFF;
        transform: rotateY(180deg);
    }
    
    .feature-card.active:before {
        transform: scaleX(1);
    }
    
    /* Add a hint for users to tap */
    .feature-card:after {
        content: "Tap to learn more";
        position: absolute;
        bottom: 15px;
        right: 15px;
        font-size: 0.8rem;
        color: #072361  ;
        background-color: rgba(164, 211, 55, 0.1);
        padding: 5px 10px;
        border-radius: 15px;
        opacity: 0.7;
    }
    
    .feature-card.active:after {
        display: none;
    }
}