html{
    background-color: #144835;
    height: 100%;
    width: auto;
    overflow-x: hidden;
    padding: 0;
    font-family: 'Jost', sans-serif;
  }
  h1,h2,h3,h4,h5,a{
    font-family: 'Jost', sans-serif;
  }
body{
    padding: 0;
    margin: 0;
}
/* Import Navigation Styles */
@import url('navigation.css');

/* Scroll Animations for Franchise Page */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
}

/* Fallback: Show content if JavaScript fails or takes too long */
@supports (animation: none) {
    .animate-on-scroll {
        animation: fadeInFallback 1s ease-out 2s forwards;
    }
}

@keyframes fadeInFallback {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-scale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.slide-in-down {
    animation: slideInDown 0.8s ease-out forwards;
}

/* Staggered Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Specific Element Animations - Individual Elements Only */
.bg-f-1 {
    opacity: 1;
}

.bg-f-2, .bg-f-3, .bg-f-4, .bg-f-5, .bg-f-6, .bg-f-7, .bg-f-8, .bg-f-9 {
    opacity: 1;
    transform: none;
}

/* Card Animations - Scroll Triggered */
.brand-card {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.brand-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Testimonial Card Animations - Scroll Triggered */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
  }  

/* FAQ Item Animations - Scroll Triggered */
.faq-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease-out;
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Text and Header Animations - Scroll Triggered */
.section-title, .section-subtitle, .section-description {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.section-title.animate-in, .section-subtitle.animate-in, .section-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Text Animations */
.hero-title {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.hero-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.3s;
}

.hero-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out 0.6s;
}

.hero-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Form Header Animations */
.contact-header h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.contact-header h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-header p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.2s;
}

.contact-header p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-header h3 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.4s;
}

.form-header h3.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-header p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.6s;
}

.form-header p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Map Container Animation */
.map-container {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease-out;
}

.map-container.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Testimonials Header Animation */
.testimonials-header h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.testimonials-header h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-header p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out 0.2s;
}

.testimonials-header p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Why Choose Us Section Animations */
.section-badge {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section-badge.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card.featured {
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s ease-out;
}

.benefit-card.featured.animate-in {
    opacity: 1;
    transform: scale(1);
}

.card-icon {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.card-icon.animate-in {
    opacity: 1;
    transform: scale(1);
}

.card-content h3 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.card-content h3.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-content p {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease-out;
}

.card-content p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-stats {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s ease-out;
}

.card-stats.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefits-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.benefits-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-content h3 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.cta-content h3.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-content p {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease-out;
}

.cta-content p.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.cta-buttons.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-btn {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.6s ease-out;
}

.cta-btn.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Form Element Animations - Scroll Triggered */
.form-group {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.form-group.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stats Animation - Scroll Triggered */
.stat-number {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.stat-number.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Animation Adjustments */
@media (max-width: 768px) {
    .bg-f-1, .bg-f-2, .bg-f-3, .bg-f-4, .bg-f-5, 
    .bg-f-6, .bg-f-7, .bg-f-8, .bg-f-9 {
        animation-duration: 0.6s;
    }
    
    .brand-card, .testimonial-card, .faq-item {
        animation-duration: 0.4s;
    }
    
    .form-group {
        animation-duration: 0.4s;
    }
}

@media (max-width: 480px) {
    .bg-f-1, .bg-f-2, .bg-f-3, .bg-f-4, .bg-f-5, 
    .bg-f-6, .bg-f-7, .bg-f-8, .bg-f-9 {
        animation-duration: 0.5s;
    }
    
    .brand-card, .testimonial-card, .faq-item {
        animation-duration: 0.3s;
    }
    
    .form-group {
        animation-duration: 0.3s;
    }
}

/* Franchise page - Typical Investment Breakdown responsive */
@media (max-width: 768px) {
  .franchise-data-section .container > div {
    padding: 20px !important;
    border-radius: 12px !important;
  }
  .franchise-data-section h3 {
    font-size: 1.3rem !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }
  .franchise-data-section table {
    width: 100% !important;
    border-collapse: collapse !important;
    display: block;
  }
  .franchise-data-section thead { display: none; }
  .franchise-data-section tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
  }
  .franchise-data-section tbody tr:last-child { margin-bottom: 0; }
  .franchise-data-section tbody td {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px 14px !important;
    border-bottom: 1px solid #f1f1f1 !important;
    font-size: 0.95rem !important;
    color: #144835 !important;
  }
  .franchise-data-section tbody tr td:last-child { border-bottom: none !important; }
  .franchise-data-section tbody tr td:nth-child(1)::before {
    content: "Component";
    font-weight: 600;
    color: #144835;
  }
  .franchise-data-section tbody tr td:nth-child(2)::before {
    content: "Estimated Cost";
    font-weight: 600;
    color: #144835;
  }
  .franchise-data-section tbody tr td:nth-child(3)::before {
    content: "Description";
    font-weight: 600;
    color: #144835;
  }
  .franchise-data-section tbody tr td:nth-child(2) {
    font-weight: 700 !important;
    text-align: left !important;
    color: #2e7d32 !important;
  }
  .franchise-data-section tbody tr[style*="#f8f9fa"] td {
    background: #f8f9fa !important;
    border-bottom: none !important;
  }
}

@media (max-width: 480px) {
  .franchise-data-section tbody td {
    grid-template-columns: 100px 1fr;
    padding: 10px 12px !important;
    font-size: 0.9rem !important;
  }
  .franchise-data-section .container > div { padding: 16px !important; }
}


  /*bg-f-1*/
.bg-f-1{
    height: 70vh;
    min-height: 500px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
}
#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20, 72, 53, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}
.container-f-1{
    position: relative;
    font-family: 'Jost', sans-serif;
    text-align: center;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
    top: 2vw;
}



.container-f-1 h1{
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 24px 0;
    font-family: 'Jost', sans-serif;
}   
.container-f-1 p{
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    padding: 0 15vw;
    color: #f0f0f0;
    margin: 0 0 40px 0;
    line-height: 1.6;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 640px) {
    .bg-f-1{
        height: 60vh;
        min-height: 400px;
    }
    #background-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #overlay {
        width: 100%;
        height: 100%;
    }
    .container-f-1{
      text-align: center;
        padding: 0 20px;
        top: 20px;
    }
    .container-f-1 h1{
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        padding: 0 2vw;
        margin-bottom: 20px;
    }   
    .container-f-1 p{
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        padding: 0 3vw;
        margin-bottom: 30px;
    }

}
/*bg-f-1 ends*/
.bg-f-2{
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative; 
    overflow: hidden;
}

.bg-f-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23a2c144" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23a2c144" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23a2c144" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="%23a2c144" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="%23a2c144" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}
.container-f-2{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
   position: relative;
    z-index: 2;
}
/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #a2c144, #8fb832);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(162, 193, 68, 0.3);
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #144835;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Jost', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(162, 193, 68, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a2c144, #8fb832);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card.featured {
    background: linear-gradient(135deg, #144835 0%, #1a5a42 100%);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(20, 72, 53, 0.2);
}

.benefit-card.featured .card-icon {
    background: rgba(162, 193, 68, 0.2);
}

.benefit-card.featured .card-icon i {
    color: #a2c144;
  }

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a2c144, #8fb832);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.card-content h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    color: #144835;
}

.benefit-card.featured .card-content h3 {
    color: #ffffff;
}

.card-content p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    margin: 0 0 20px 0;
    line-height: 1.6;
    color: #666;
    font-family: 'Jost', sans-serif;
}

.benefit-card.featured .card-content p {
    color: rgba(255, 255, 255, 0.9);
}

.card-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.stat {
    background: rgba(162, 193, 68, 0.1);
    color: #a2c144;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

/* Benefits CTA */
.benefits-cta {
    background: linear-gradient(135deg, #144835 0%, #1a5a42 100%);
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefits-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(162, 193, 68, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.cta-content h3 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.cta-content p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    margin: 0;
    opacity: 0.9;
    font-family: 'Jost', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn.primary {
    background: #a2c144;
  color: #ffffff;
    border: 2px solid #a2c144;
}

.cta-btn.primary:hover {
    background: #ffffff;
    color: #144835;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(162, 193, 68, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: #144835;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive Styles for New Design */
@media (max-width: 640px) {
    .bg-f-2 {
        padding: 60px 0;
    }
    
    .container-f-2 {
        padding: 0 20px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 20px;
    }
    
    .section-header h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .section-header p {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-card.featured {
        transform: none;
    }
    
    .benefit-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .card-content h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 10px;
    }
    
    .card-content p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 15px;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat {
        text-align: center;
        font-size: 12px;
    }
    
    .benefits-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 10px;
    }
    
    .cta-content p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
  width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 14px 28px;
        font-size: 14px;
    }
}
@media (max-width: 640px) {
    .container-f-2 h2{
        font-size: 7vw;
        padding: 3vw 2vw;
        padding-bottom: 2vw;
    }   
}

/* Modern Brands Section Styles - Redesigned Cards */
.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Brands Header */
.brands-header {
    text-align: center;
    margin-bottom: 80px;
    color: #ffffff;
}

.brands-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.brands-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Jost', sans-serif;
}

/* Horizontal Scroll Brands Section */
.brands-scroll-container {
    position: relative;
        width: 100%;
    overflow: hidden;
}

.brands-scroll-wrapper {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.brands-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Exact Brands Page Style Cards */
.brand-card {
    flex: 0 0 350px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
      text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 450px;
    display: flex;
        flex-direction: column;
    justify-content: center;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #144835, #a2c144);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(20, 72, 53, 0.15),
        0 8px 25px rgba(162, 193, 68, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(162, 193, 68, 0.3);
}

.brand-card.featured-brand {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #a2c144;
    transform: scale(1.02);
    box-shadow: 
        0 12px 40px rgba(162, 193, 68, 0.15),
        0 4px 12px rgba(162, 193, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    flex: 0 0 380px;
}

.brand-card.featured-brand:hover {
    transform: scale(1.02) translateY(-12px);
    box-shadow: 
        0 25px 70px rgba(162, 193, 68, 0.2),
        0 10px 30px rgba(162, 193, 68, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Direct image styling - exactly like brands page */
.brand-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 2.5rem auto;
    border-radius: 20px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    display: block;
   position: relative;
}

.brand-card:hover img {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15));
}

/* Direct heading styling - exactly like brands page */
.brand-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #144835;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Jost', sans-serif;
    transition: color 0.3s ease;
}

.brand-card:hover h3 {
    color: #0d2e1f;
}

/* Direct paragraph styling - smaller text */
.brand-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    font-family: 'Jost', sans-serif;
    transition: color 0.3s ease;
}

.brand-card:hover p {
    color: #555;
}

/* Scroll Indicators */
.scroll-indicators {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
        align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: #ffffff;
    font-size: 1.2rem;
}

.scroll-btn:hover {
    background: rgba(162, 193, 68, 0.2);
    border-color: rgba(162, 193, 68, 0.4);
    transform: scale(1.1);
}

.scroll-left {
    margin-left: 20px;
}

.scroll-right {
    margin-right: 20px;
}

/* Tablet Responsive Styles for Brands */
@media (max-width: 1024px) and (min-width: 769px) {
    .brands-container {
        padding: 0 30px;
    }
    
    .brand-card {
        flex: 0 0 320px;
        padding: 2.5rem;
        height: 420px;
    }
    
    .brand-card.featured-brand {
        flex: 0 0 340px;
    }
    
    .brand-card img {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
        padding: 1.8rem;
    }
    
    .brand-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .brand-card p {
        font-size: 0.95rem;
    }
}

/* Mobile Responsive Styles for Brands */
@media (max-width: 768px) {
    .brands-container {
        padding: 0 15px;
    }
    
    .brands-header {
        margin-bottom: 40px;
    }
    
    .brands-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 15px;
    }
    
    .brands-header p {
        font-size: clamp(1rem, 3vw, 1.1rem);
    }
    
    .brands-scroll-wrapper {
        gap: 15px;
        padding: 0 10px;
    }
    
    .brand-card {
        flex: 0 0 280px;
        padding: 25px 20px;
        height: 380px;
        margin: 0 5px;
    }
    
    .brand-card.featured-brand {
        flex: 0 0 300px;
        transform: none;
    }
    
    .brand-card.featured-brand:hover {
        transform: translateY(-8px);
    }
    
    .brand-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .brand-card img {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .brand-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .brand-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .scroll-indicators {
        display: none;
    }
}

@media (max-width: 480px) {
    .brands-container {
        padding: 0 10px;
    }
    
    .brands-header {
        margin-bottom: 30px;
    }
    
    .brands-header h2 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    
    .brands-header p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }
    
    .brand-card {
        flex: 0 0 250px;
        padding: 20px 15px;
        height: 350px;
    }
    
    .brand-card.featured-brand {
        flex: 0 0 270px;
    }
    
    .brand-card img {
        width: 100px;
        height: 100px;
        margin-bottom: 1.2rem;
        padding: 1.2rem;
    }
    
    .brand-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .brand-card p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}

/*bg-f-2 ends*/

/*bg-f-3*/
.bg-f-3{
    background: linear-gradient(135deg, #144835 0%, #1a5a42 100%);
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
}
  .gallery-wrap {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 25vw;
  }
  .item {
    flex: 1;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: none;
    transition: flex 0.8s ease;
  }
  .item a{
    text-decoration: none;
  }
  .item-overlay{
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    background-color: rgb(250, 241, 226,0.6);
    z-index: 5;
  }
  .item h3{
    text-align: center;
    position: relative;
    top: 2vw;
    color: #144835;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    padding: 0 0.3vw;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
  }
  .item-1 { 
    background-image: url('../../assets/images/DPIS.webp');
  }
  .item img{
    position: relative;
    top: 4vw;
  }
  .item-1:hover{
    flex: 1.5;
    background-color: rgb(250, 241, 226,1);
    z-index: 2;
  }
  .item-2 { 
    background-image: url('../../assets/images/DPSS.webp');
  }
  .item-2:hover{
    flex: 1.5;
  }
  .item-3 { 
    background-image: url('../../assets/images/DPKS.webp');
  }
  .item-3:hover{
    flex: 1.5;
  }
  .item-4 { 
    background-image: url('../../assets/images/DPSSS.webp');
  }
  .item-4:hover{
    flex: 1.5;
  }
  .item-5 { 
    background-image: url('../../assets/images/DPPS.webp');
  }
  .item-5:hover{
    flex: 1.5;
  }
  .item-6 { 
    background-image: url('../../assets/images/DPGS.webp');
  }
  .item-6:hover{
    flex: 1.5;
  }
  .item-7 { 
    background-image: url('../../assets/images/DPPPS.webp');
  }
  .item-7:hover{
    flex: 1.5;
  }
  .item-8 { 
    background-image: url('../../assets/images/IDPS.webp');
  }
  .item-8:hover{
    flex: 1.5;
  }

  @media (max-width: 768px) {
    .bg-f-3 {
        padding: 80px 0 60px 0;
    }
    
    .gallery-wrap {
        flex-direction: column;
        height: auto;
        gap: 15px;
        padding: 0 20px;
    }
    
    .item {
        height: 120px;
        margin-bottom: 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .item-overlay {
        background-color: rgba(250, 241, 226, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 15px;
    }
    
    .item-overlay h3 {
        display: block;
        font-size: 0.95rem;
        font-weight: 600;
        color: #144835;
        margin: 0;
        text-align: center;
        line-height: 1.2;
    }
    
    .item img {
        position: static;
        max-width: 40px;
        max-height: 40px;
        margin-bottom: 8px;
        object-fit: contain;
    }
    
    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7, .item-8 {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    

  }
/*bg-f-3 ends*/

/* Map Section - Modern Design */
.bg-f-4 {
    background: #f8f9fa;
    padding: 80px 0;
        position: relative;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;  
    padding: 0 40px;
}

.map-title {
  text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #144835;
    margin-bottom: 50px;
    font-family: 'Jost', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-wrapper {
    position: relative;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 600px;
}

.map-display {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
}

.zoom-instructions {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(20, 72, 53, 0.9);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.map-controls {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 30px;
    height: 600px;
    display: flex;
    flex-direction: column;
}

/* School Stats */
.school-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #144835;
    font-family: 'Jost', sans-serif;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Map Features */
.map-features {
        flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tablet Responsive for Map */
@media (max-width: 1024px) and (min-width: 769px) {
    .map-container {
        padding: 0 30px;
    }
    
    .map-content {
        gap: 30px;
    }
    
    .map-wrapper,
    .map-controls {
        height: 500px;
    }
    
    .map-controls {
        padding: 25px;
    }
    
    .school-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 25px 0;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bg-f-4 {
        padding: 50px 0;
    }
    
    .map-container {
        padding: 0 15px;
    }
    
    .map-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .map-wrapper {
        height: 350px;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .map-controls {
        height: auto;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    
    .school-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 15px 0;
        padding: 15px;
        border-radius: 12px;
    }
    
    .stat-item {
        padding: 15px;
        border-radius: 10px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .zoom-instructions {
        font-size: 11px;
        padding: 6px 12px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .bg-f-4 {
        padding: 40px 0;
    }
    
    .map-container {
        padding: 0 10px;
    }
    
    .map-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
        margin-bottom: 25px;
    }
    
    .map-content {
        gap: 20px;
    }
    
    .map-wrapper {
        height: 300px;
        border-radius: 12px;
    }
    
    .map-controls {
        padding: 15px;
        border-radius: 12px;
    }
    
    .school-stats {
        gap: 10px;
        margin: 12px 0;
        padding: 12px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .zoom-instructions {
        font-size: 10px;
        padding: 5px 10px;
    }
}

/*bg-f-5 ends*/
/* Testimonials Section */
.bg-f-6 {
    background: linear-gradient(135deg, #144835 0%, #1a5a42 100%);
    padding: 80px 0;
    position: relative;
}

.container-f-6 {
    max-width: 1200px;
    margin: 0 auto;  
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: white;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.testimonials-header p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    font-family: 'Jost', sans-serif;
}

.testimonials-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-nav-btn {
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-nav-btn:hover {
    background: #a2c144;
    transform: scale(1.1);
}

.testimonial-nav-btn:hover i {
    color: white;
}

.testimonial-nav-btn i {
    font-size: 18px;
    color: #144835;
    transition: color 0.3s ease;
}

.testimonials-scroll-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    width: calc(3 * 300px + 2 * 15px); /* Exactly 3 cards + 2 gaps */
}

.testimonials-scroll-container {
    display: flex;
    transition: transform 0.5s ease;
    gap: 15px;
    width: calc(9 * 300px + 8 * 15px); /* 9 cards * 300px + 8 gaps * 15px */
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 300px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a2c144, #144835);
}

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    color: #a2c144;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    font-family: 'Jost', sans-serif;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #144835;
    margin: 0 0 5px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Jost', sans-serif;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #a2c144;
    transform: scale(1.2);
}

/* Tablet Responsive for Testimonials */
@media (max-width: 1024px) and (min-width: 769px) {
    .bg-f-6 {
        padding: 70px 0;
    }
    
    .container-f-6 {
        padding: 0 30px;
    }
    
    .testimonials-header {
        margin-bottom: 50px;
    }
    
    .testimonials-header h2 {
        font-size: clamp(2.2rem, 4vw, 2.8rem);
    }
    
    .testimonials-header p {
        font-size: clamp(1rem, 2vw, 1.1rem);
    }
    
    .testimonials-container {
        gap: 18px;
    }
    
    .testimonials-scroll-wrapper {
        width: calc(2 * 280px + 1 * 15px); /* Exactly 2 cards on tablet */
    }
    
    .testimonial-card {
        width: 280px;
        padding: 22px;
    }
    
    .testimonial-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .testimonial-nav-btn i {
        font-size: 16px;
    }
    
    .testimonial-dots {
        margin-top: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bg-f-6 {
        padding: 60px 0;
    }
    
    .container-f-6 {
        padding: 0 15px;
    }
    
    .testimonials-header {
        margin-bottom: 35px;
    }
    
    .testimonials-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
        margin-bottom: 12px;
    }
    
    .testimonials-header p {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .testimonials-container {
        gap: 12px;
        margin-top: 30px;
    }
    
    .testimonials-scroll-wrapper {
        width: calc(1 * 260px); /* Exactly 1 card on mobile */
    }
    
    .testimonials-scroll-container {
        gap: 12px;
    }
    
    .testimonial-card {
        width: 260px;
        padding: 18px;
        border-radius: 15px;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    }
    
    .testimonial-nav-btn i {
        font-size: 12px;
    }
    
    .testimonial-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .bg-f-6 {
        padding: 50px 0;
    }
    
    .container-f-6 {
        padding: 0 10px;
    }
    
    .testimonials-header {
        margin-bottom: 30px;
    }
    
    .testimonials-header h2 {
        font-size: clamp(1.6rem, 7vw, 2rem);
        margin-bottom: 10px;
    }
    
    .testimonials-header p {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }
    
    .testimonials-container {
        gap: 10px;
        margin-top: 25px;
    }
    
    .testimonials-scroll-wrapper {
        width: calc(1 * 240px); /* Smaller card for very small screens */
    }
    
    .testimonial-card {
        width: 240px;
        padding: 16px;
        border-radius: 12px;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .testimonial-author h4 {
        font-size: 0.9rem;
    }
    
    .testimonial-author span {
        font-size: 0.75rem;
    }
    
    .testimonial-nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .testimonial-nav-btn i {
        font-size: 11px;
    }
    
    .testimonial-dots {
        margin-top: 18px;
        gap: 6px;
    }
    
    .dot {
        width: 7px;
        height: 7px;
    }
}


/* Modern FAQ Section */
.bg-f-9 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    position: relative;
}

.container-f-9 {
    max-width: 900px;
    margin: 0 auto;   
    padding: 0 20px;
}

.faq-header {
        text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #144835;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.faq-header p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: #666;
    font-family: 'Jost', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
        flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(162, 193, 68, 0.1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-question:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #144835;
        margin: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a2c144, #144835);
    border-radius: 50%;
    display: flex;
        align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 16px;
    color: white;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #144835, #a2c144);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    font-size: 1rem;
    color: #555;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

/* Tablet Responsive for FAQ */
@media (max-width: 1024px) and (min-width: 769px) {
    .bg-f-9 {
        padding: 70px 0;
    }
    
    .container-f-9 {
        max-width: 800px;
        padding: 0 30px;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-header h2 {
        font-size: clamp(2.2rem, 3.5vw, 2.8rem);
        margin-bottom: 12px;
    }
    
    .faq-header p {
        font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    }
    
    .faq-container {
        gap: 18px;
    }
    
    .faq-item {
        border-radius: 12px;
    }
    
    .faq-question {
        padding: 22px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.15rem;
        padding-right: 18px;
    }
    
    .faq-icon {
        width: 38px;
        height: 38px;
    }
    
    .faq-icon i {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 25px 22px 25px;
        font-size: 0.98rem;
    }
}

/* Mobile Large Responsive for FAQ */
@media (max-width: 768px) {
    .bg-f-9 {
        padding: 50px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .container-f-9 {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .faq-header {
        margin-bottom: 35px;
        text-align: center;
    }
    
    .faq-header h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 10px;
        color: #144835;
        font-weight: 700;
    }
    
    .faq-header p {
        font-size: clamp(0.9rem, 2.8vw, 1rem);
        color: #666;
        line-height: 1.4;
        max-width: 90%;
    margin: 0 auto; 
    }
    
    .faq-container {
        gap: 15px;
    }
    
    .faq-item {
        border-radius: 12px;
        box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        border: 1px solid rgba(162, 193, 68, 0.1);
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        padding: 18px 20px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    .faq-question:hover {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    }
    
    .faq-question h3 {
        font-size: clamp(1rem, 3vw, 1.1rem);
        color: #144835;
        margin: 0;
    font-weight: 600;
        line-height: 1.3;
        padding-right: 12px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border-radius: 50%;
    display: flex;
    align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        box-shadow: 0 2px 8px rgba(162, 193, 68, 0.3);
    }
    
    .faq-icon i {
        font-size: 14px;
        color: white;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-icon {
        background: linear-gradient(135deg, #144835, #a2c144);
        box-shadow: 0 3px 12px rgba(20, 72, 53, 0.4);
    }
    
    .faq-item.active .faq-icon i {
        transform: rotate(45deg);
    }
    
.faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: #f8f9fa;
    }
    
    .faq-answer.active {
        max-height: 250px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px 20px;
        margin: 0;
        font-size: clamp(0.9rem, 2.2vw, 0.95rem);
        color: #555;
        line-height: 1.5;
    }
}

/* Mobile Small Responsive for FAQ */
@media (max-width: 480px) {
    .bg-f-9 {
        padding: 40px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .container-f-9 {
        padding: 0 10px;
    }
    
    .faq-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .faq-header h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
        margin-bottom: 8px;
        color: #144835;
        font-weight: 700;
    }
    
    .faq-header p {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        color: #666;
        line-height: 1.3;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .faq-container {
        gap: 12px;
    }
    
    .faq-item {
        border-radius: 10px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        border: 1px solid rgba(162, 193, 68, 0.1);
    }
    
    .faq-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 18px rgba(0,0,0,0.1);
    }
    
    .faq-question {
        padding: 15px 16px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    }
    
    .faq-question:hover {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    }
    
    .faq-question h3 {
        font-size: clamp(0.95rem, 3.2vw, 1.05rem);
        color: #144835;
        margin: 0;
        font-weight: 600;
        line-height: 1.3;
        padding-right: 10px;
    }
    
    .faq-icon {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(162, 193, 68, 0.3);
    }
    
    .faq-icon i {
        font-size: 12px;
        color: white;
        transition: transform 0.3s ease;
    }
    
    .faq-item.active .faq-icon {
        background: linear-gradient(135deg, #144835, #a2c144);
        box-shadow: 0 3px 10px rgba(20, 72, 53, 0.4);
    }
    
    .faq-item.active .faq-icon i {
        transform: rotate(45deg);
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease;
        background: #f8f9fa;
    }
    
    .faq-answer.active {
        max-height: 200px;
    }
    
    .faq-answer p {
        padding: 0 16px 15px 16px;
        margin: 0;
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        color: #555;
        line-height: 1.4;
    }
}





/* Loader Overlay Styles */
.site-loader {
  position: fixed;
  z-index: 99999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #f6ffe6; /* match theme */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
.site-loader .loader-content {
  text-align: center;
}
.site-loader .loader-logo {
  width: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 2px 8px #a2c14455);
}
.site-loader .loader-spinner {
  margin: 0 auto 16px auto;
  width: 48px;
  height: 48px;
  border: 6px solid #a2c144;
  border-top: 6px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.site-loader .loader-text {
  font-family: 'Jost', sans-serif;
  color: #a2c144;
  font-size: 1.2rem;
  letter-spacing: 1px;
}


/* Modern Contact Form Section - Enhanced */
.bg-f-5 {
    background: linear-gradient(135deg, #f5f1e8 0%, #e8ddd4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-f-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23a2c144" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23144835" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23a2c144" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23144835" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23a2c144" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.container-f-5 {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.modern-form{
  left: 0;
}
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: #144835;
    margin-bottom: 20px;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a2c144, #144835);
    border-radius: 2px;
}

.contact-header p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #64748b;
    font-family: 'Jost', sans-serif;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    border: 1px solid rgba(162, 193, 68, 0.1);
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #a2c144, #144835, #a2c144);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a2c144, #144835);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 
        0 15px 35px rgba(162, 193, 68, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.form-icon i {
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 1;
}

.form-header h3 {
    font-size: 2.2rem;
    color: #144835;
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.form-header p {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.form-group label {
    font-size: 1rem;
    color: #374151;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 4px;
    background: #a2c144;
    border-radius: 50%;
    flex-shrink: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #a2c144;
    background: white;
    box-shadow: 
        0 0 0 4px rgba(162, 193, 68, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1d5db;
    background: white;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 50px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

.char-count {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: right;
    margin-top: 5px;
    font-weight: 500;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #a2c144, #144835);
    color: white;
    border: none;
    padding: 22px 50px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Jost', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 12px 30px rgba(162, 193, 68, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    align-self: center;
    margin-top: 10px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 40px rgba(162, 193, 68, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 20px 0 0 0;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    line-height: 1.5;
}

.form-note i {
    color: #a2c144;
    font-size: 16px;
}

.success-message {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 1px solid #86efac;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: tickAnimation 0.6s ease-in-out, pulse 2s ease-in-out 0.6s infinite;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.success-icon i {
    font-size: 32px;
    color: white;
}

@keyframes tickAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 1.8rem;
    color: #065f46;
    margin: 0 0 15px 0;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
}

.success-message p {
    font-size: 1.1rem;
    color: #047857;
    margin: 0 0 25px 0;
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
}

.success-details {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.success-details p {
    font-weight: 700;
    margin-bottom: 15px;
    color: #065f46;
    font-size: 1rem;
}

.success-details ul {
    margin: 0;
    padding-left: 25px;
}

.success-details li {
    margin-bottom: 8px;
    font-family: 'Jost', sans-serif;
    color: #047857;
    line-height: 1.5;
}

/* Mobile Responsive for Enhanced Form */
@media (max-width: 768px) {
    .bg-f-5 {
        padding: 60px 0;
    }
    
    .container-f-5 {
        margin: 0 auto;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .modern-form{
      left: 0;
    }
    .form-header h3 {
        font-size: 1.6rem;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
    }
    
    .form-icon i {
        font-size: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
        min-width: 180px;
    }
}

/* Tablet Responsive for Contact Form */
@media (max-width: 1024px) and (min-width: 769px) {
    .bg-f-5 {
        padding: 70px 0;
    }
    
    .container-f-5 {
        max-width: 700px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-header h2 {
        font-size: clamp(2.2rem, 3.5vw, 2.8rem);
        margin-bottom: 12px;
    }
    
    .contact-header p {
        font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    }
    
    .contact-form-container {
        padding: 40px 35px;
        border-radius: 20px;
    }
    .modern-form{
      left: 0;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
    
    .form-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .form-icon i {
        font-size: 18px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .submit-btn {
        padding: 16px 28px;
        font-size: 1rem;
        min-width: 160px;
    }
    
    .form-note {
        font-size: 0.85rem;
        margin-top: 12px;
    }
    
    .char-count {
        font-size: 0.8rem;
        margin-top: 6px;
    }
}

/* Mobile Large Responsive for Contact Form */
@media (max-width: 768px) {
    .bg-f-5 {
        padding: 50px 0;
        background: linear-gradient(135deg, #f5f1e8 0%, #e8ddd4 100%);
    }
    
    .container-f-5 {
        margin: 0 auto;
    padding: 0 10px;
  }
    
    .contact-header {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .contact-header h2 {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 20px;
        color: #144835;
        font-weight: 700;
    }
    
    .contact-header p {
        font-size: clamp(0.85rem, 2.8vw, 0.95rem);
        line-height: 1.4;
        color: #666;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .contact-form-container {
        padding: 20px 15px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        background: white;
        border: 1px solid rgba(162, 193, 68, 0.1);
    }
    .modern-form{
      left: 0;
    }
    .form-header {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .form-header h3 {
        font-size: clamp(1.2rem, 3.5vw, 1.4rem);
        margin-bottom: 5px;
        color: #144835;
        font-weight: 600;
    }
    
    .form-header p {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
        line-height: 1.3;
        color: #666;
        margin: 0;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 12px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border-radius: 50%;
        display: flex;
    align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(162, 193, 68, 0.3);
    }
    
    .form-icon i {
        font-size: 18px;
        color: white;
    }
    
    .modern-form {
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .form-group {
        position: relative;
    }
    
    .form-group label {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin-bottom: 6px;
        font-weight: 600;
        color: #144835;
        display: block;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: clamp(0.9rem, 2.2vw, 1rem);
        border-radius: 12px;
        border: 2px solid #e0e0e0;
        background: #fafafa;
        transition: all 0.3s ease;
    width: 100%;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #a2c144;
        background: white;
        box-shadow: 0 0 0 3px rgba(162, 193, 68, 0.1);
        outline: none;
        transform: translateY(-1px);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #999;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    .form-group textarea {
        min-height: 90px;
        resize: vertical;
        font-family: 'Jost', sans-serif;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 12px center;
        background-repeat: no-repeat;
        background-size: 16px;
        padding-right: 40px;
        appearance: none;
    }
    
    .form-actions {
    text-align: center;
  }
    
    .submit-btn {
        padding: 16px 30px;
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
        min-width: 160px;
        border-radius: 12px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border: none;
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(162, 193, 68, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(162, 193, 68, 0.4);
    }
    
    .submit-btn:active {
        transform: translateY(0);
    }
    
    .form-note {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        margin-top: 12px;
        line-height: 1.4;
        color: #666;
    display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    
    .form-note i {
        color: #a2c144;
        font-size: 12px;
    }
    
    .char-count {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        margin-top: 6px;
        text-align: right;
        color: #999;
        font-weight: 500;
    }
    
    .success-message {
        padding: 25px 20px;
        border-radius: 15px;
        margin-top: 20px;
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border: 1px solid #c3e6cb;
        text-align: center;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
        background: linear-gradient(135deg, #28a745, #20c997);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    }
    
    .success-icon i {
        font-size: 24px;
        color: white;
    }
    
    .success-message h3 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: 8px;
        color: #144835;
        font-weight: 600;
    }
    
    .success-message p {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
        line-height: 1.4;
        color: #666;
        margin-bottom: 15px;
    }
    
    .success-details {
        background: rgba(255,255,255,0.7);
        padding: 15px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .success-details p {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        font-weight: 600;
        color: #144835;
        margin-bottom: 10px;
    }
    
    .success-details ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .success-details li {
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        color: #666;
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .success-details li i {
        color: #a2c144;
        font-size: 12px;
        width: 12px;
    }
}

/* Mobile Small Responsive for Contact Form */
@media (max-width: 480px) {
    .bg-f-5 {
        padding: 40px 0;
        background: linear-gradient(135deg, #f5f1e8 0%, #e8ddd4 100%);
    }
    
    .container-f-5 {
        padding: 0 8px;
    }
    
    .contact-header {
        margin-bottom: 25px;
        text-align: center;
    }
    
    .contact-header h2 {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 20px;
        color: #144835;
        font-weight: 700;
    }
    
    .contact-header p {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        line-height: 1.3;
        color: #666;
        max-width: 95%;
    margin: 0 auto;
    }
    
    .contact-form-container {
        padding: 18px 12px;
        border-radius: 18px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
        background: white;
        border: 1px solid rgba(162, 193, 68, 0.1);
    }
    
    .modern-form{
      left: 0;
    }
    .form-header {
        text-align: center;
        margin-bottom: 18px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .form-header h3 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
        margin-bottom: 4px;
        color: #144835;
        font-weight: 600;
    }
    
    .form-header p {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        line-height: 1.3;
        color: #666;
        margin: 0;
    }
    
    .form-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 10px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border-radius: 50%;
        display: flex;
        align-items: center;
    justify-content: center;
        box-shadow: 0 3px 12px rgba(162, 193, 68, 0.3);
    }
    
    .form-icon i {
        font-size: 16px;
        color: white;
    }
    
    .modern-form {
        gap: 16px;
    }
    
    .form-row {
        gap: 14px;
    }
    
    .form-group label {
        font-size: clamp(0.85rem, 2.8vw, 0.95rem);
        margin-bottom: 5px;
        font-weight: 600;
        color: #144835;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        border-radius: 10px;
        border: 2px solid #e0e0e0;
        background: #fafafa;
        transition: all 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #a2c144;
        background: white;
        box-shadow: 0 0 0 3px rgba(162, 193, 68, 0.1);
        outline: none;
        transform: translateY(-1px);
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: #999;
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    
    .form-group textarea {
        min-height: 80px;
        resize: vertical;
        font-family: 'Jost', sans-serif;
    }
    
    .form-group select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 10px center;
        background-repeat: no-repeat;
        background-size: 14px;
        padding-right: 35px;
        appearance: none;
    }
    
    .form-actions {
        text-align: center;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: clamp(0.9rem, 2.8vw, 1rem);
        min-width: 140px;
        border-radius: 10px;
        background: linear-gradient(135deg, #a2c144, #144835);
        border: none;
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 3px 12px rgba(162, 193, 68, 0.3);
    }
    
    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 18px rgba(162, 193, 68, 0.4);
    }
    
    .submit-btn:active {
        transform: translateY(0);
    }
    
    .form-note {
        font-size: clamp(0.7rem, 2.2vw, 0.8rem);
    margin-top: 10px;
        line-height: 1.3;
        color: #666;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }
    
    .form-note i {
        color: #a2c144;
        font-size: 11px;
    }
    
    .char-count {
        font-size: clamp(0.65rem, 2vw, 0.75rem);
        margin-top: 5px;
        text-align: right;
        color: #999;
        font-weight: 500;
    }
    
    .success-message {
        padding: 20px 15px;
        border-radius: 12px;
        margin-top: 18px;
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border: 1px solid #c3e6cb;
        text-align: center;
    }
    
    .success-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 12px;
        background: linear-gradient(135deg, #28a745, #20c997);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 12px rgba(40, 167, 69, 0.3);
    }
    
    .success-icon i {
        font-size: 22px;
        color: white;
    }
    
    .success-message h3 {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
        margin-bottom: 6px;
        color: #144835;
        font-weight: 600;
    }
    
    .success-message p {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        line-height: 1.3;
        color: #666;
        margin-bottom: 12px;
    }
    
    .success-details {
        background: rgba(255,255,255,0.7);
        padding: 12px;
        border-radius: 8px;
        margin-top: 12px;
    }
    
    .success-details p {
        font-size: clamp(0.75rem, 2.2vw, 0.85rem);
        font-weight: 600;
        color: #144835;
        margin-bottom: 8px;
    }
    
    .success-details ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .success-details li {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
        color: #666;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .success-details li i {
        color: #a2c144;
        font-size: 11px;
        width: 11px;
    }
}  