/* Base Styles */
:root {
    --primary-color: #1a3e72;
    --secondary-color: #e63946;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --gray: #f5f5f5;
    --dark-gray: #ddd;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 15px auto 0;
}


/*Navigation Bar Styles */


.new-header {
    background-color: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* New Logo Styles */
.new-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.new-logo-img {
    height: 70px;
    width: auto;
    border-radius: 4px;
}

.new-logo-text h1 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.new-established {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* New Navigation Styles */
.new-navbar {
    position: relative;
}

.new-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.new-nav-item {
    position: relative;
}

.new-nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.new-nav-link:hover, .new-nav-link.active {
    color: #0066cc;
    background-color: #f0f7ff;
}

/* New Dropdown Styles */
.new-dropdown {
    position: relative;
}

.new-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.new-dropdown-icon {
    transition: transform 0.3s ease;
}

.new-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 6px;
    list-style: none;
    padding: 8px 0;
    margin: 5px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.new-dropdown-item {
    display: block;
    padding: 8px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.new-dropdown-item:hover {
    background-color: #f5f5f5;
    color: #0066cc;
}

/* Show dropdown on hover */
.new-dropdown:hover .new-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.new-dropdown:hover .new-dropdown-icon {
    transform: rotate(180deg);
}

/* New Hamburger Menu Styles */
.new-hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.new-hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.new-hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
}

.new-hamburger-inner::before,
.new-hamburger-inner::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.new-hamburger-inner::before {
    top: -8px;
}

.new-hamburger-inner::after {
    bottom: -8px;
}

/* Active state for hamburger */
.new-hamburger.active .new-hamburger-inner {
    background-color: transparent;
}

.new-hamburger.active .new-hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.new-hamburger.active .new-hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .new-hamburger {
        display: block;
    }
    
    .new-nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .new-nav-menu.active {
        right: 0;
    }
    
    .new-nav-item {
        width: 100%;
    }
    
    .new-nav-link {
        padding: 15px 25px;
        justify-content: space-between;
    }
    
    .new-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 0;
        background: #f9f9f9;
    }
    
    .new-dropdown.active .new-dropdown-menu {
        display: block;
    }
    
    .new-dropdown.active .new-dropdown-icon {
        transform: rotate(180deg);
    }
    
    .new-dropdown-item {
        padding-left: 40px;
    }
}

@media (max-width: 576px) {
    .new-logo-img {
        height: 50px;
    }
    
    .new-logo-text h1 {
        font-size: 16px;
    }
    
    .new-established {
        font-size: 12px;
    }
    
    .new-nav-menu {
        width: 100%;
    }
}



/* floating contacts */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
  }
  
 
  .whatsapp-button {
    background: transparent !important; /* Remove background */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
  }
  
  .gmail-button {
    background: #D44638;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  .gmail-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }
  
  .gmail-button img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
  }

  /* Responsive adjustment */
  @media (max-width: 768px) {
    .floating-contacts {
      bottom: 20px;
      right: 20px;
    }
    
    .whatsapp-button,
    .gmail-button {
      width: 50px;
      height: 50px;
    }
    
    .floating-contacts img {
      width: 25px;
      height: 25px;
    }
  }



/* Floating buttons */
.floating-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  
/* Hero Banner Carousel */

 /* Slider Container */
 .hero-slider {
    position: relative; ;
    width: 1%;
    height: 0;
    padding-bottom: 58%; /* Adjust this percentage based on your desired aspect ratio */
    overflow: hidden;
    height: 1vh;
    background-color: #7c7b94;;

}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease;
}
        
.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    background-color: #f7f7fc; /* Fallback color */
}
            
.slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: fill; /* Show entire image */
    object-position: center;
    background: #fcfcfd;
    display: block;
}
        
        /* Navigation */
        .slider-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(237, 236, 241, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;  
        }
        
        .slider-dot.active {
            background: #fff;
            transform: scale(1.2);
        }
        
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 0px;
            height: 0px;
           
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .slider-arrow.prev {
            left: 0px;
        }
        
        .slider-arrow.next {
            right: 0px;
        }
        
        /* Fullscreen Overlay */
        .fullscreen-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.9);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }
        
        .fullscreen-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        .close-btn {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }
        
       /* Base Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #7c7b94; /* Match your image background color */
}

/* Responsive Height Control */
.hero-slider {
    height: 50vh; /* Balanced height for most screens */
}

/* For wider screens where you want to fill more space */
@media (min-width: 1200px) {
    .slide img {
        height:90vh;
        object-fit:fill; /* Switch to cover on very wide screens */
        object-position: unset; /* Adjust based on your image content */
        padding-bottom: 0%;
    }
}

@media (min-width: 992px) {
    .hero-slider {
        height: 20vh; /* Taller on desktop */
        padding-bottom: 43%;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height:     30vh; /* Shorter on mobile */
        
        
        padding-bottom: 0%;
    }
}
 
.fullscreen-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
}



/*Member Section */






/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    padding-bottom: 8px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}



/* Language Toggle - Improved Responsiveness */
.language-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--white);
    padding: 5px;
    border-radius: 30px;
    box-shadow: var(--box-shadow);
    justify-content: center;
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.9rem;
    min-width: 80px;
    text-align: center;
    flex: 1 0 auto;
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Grid Layout */
.about-grid {

    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Intro Card */
.intro-card {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}



.intro-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-image {
    flex: 1;
    min-width: 300px;
}

.responsive-img {
    width: 70%;
    height: 90%;
    object-fit: fill;
}

.tagline {
    color: var(--secondary-color);
    font-weight: 500;
    margin: 15px 0;
    font-size: 1.1rem;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 20px 0;
    line-height: 1.4;
}

.divider {
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 15px 0;
}

/* Content Cards */
.content-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
}

.content-card h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.icon {
    margin-right: 10px;
    color: var(--secondary-color);
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Stats Card */
.stats-card {
    background: linear-gradient(135deg, var(--primary-color), #1a252f);
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.stats-card h4 {
    color: var(--white);
    text-align: center;
    margin-bottom: 30px;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 9px;
    width: 20p;
    background: rgba(221, 221, 214, 0.904);
    border-radius: var(--border-radius);
}

.stat-number {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 10px;
    
    color: wheat    ;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}



.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon {
    color: var(--secondary-color);
    margin-top: 3px;
    flex-shrink: 0;
}

.note-text {
    font-style: italic;
    margin-top: 20px;
    color: var(--light-text);
}

/* Emphasis Box */
.emphasis-box {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--secondary-color);
    padding: 15px 20px;
    margin: 20px 0;
    font-style: italic;
}

/* Buttons */
.btn-primary {
    display: block;
    margin: 40px auto;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    box-shadow: var(--box-shadow);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* More Content */
.more-content {
    display: none;
    padding-top: 20px;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
    margin: 30px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-marker {
    position: absolute;
    left: -39px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--secondary-color);
}

.timeline-content {
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Special Cards */
.urgent-card {
    border-top: 4px solid var(--secondary-color);
}

.global-card {
    border-top: 4px solid var(--accent-color);
}

.final-message {
    border-top: 4px solid #2ecc71;
}

/* Signature Block */
.signature-block {
    text-align: center;
    margin: 50px 0 30px;
    font-style: italic;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: var(--secondary-color);
    margin: 15px auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .intro-content {
        padding: 30px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .language-toggle {
        width: 100%;
    }
    
    .lang-btn {
        flex: 1;
        text-align: center;
    }
}

/*Our Mission*/

/* Mission Statement Container */
.mission-statement {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
  }

  /* Background Pattern */
  .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a6ea5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
  }

  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }

  .mission-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 50px 40px;
    margin: 0 auto;
    max-width: 900px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  /* Decorative Elements */
  .card-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
  }

  .accent-top-right {
    top: -50px;
    right: -50px;
  }

  .accent-bottom-left {
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
  }

  /* Header Section */
  .mission-header {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .section-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    color: var(--primary-color);
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  }

  .section-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(58, 110, 165, 0.2);
  }

  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .years-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 20px;
    padding: 5px 15px;
    margin-top: -5px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
  }

  .years-number {
    font-size: 1.4em;
    margin: 0 3px;
  }

  .divider {
    position: relative;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 0 auto 30px;
  }

  /* Content Section */
  .mission-content {
    position: relative;
  }

  .highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .highlight-text p:first-of-type {
    margin-bottom: 20px;
  }

  .highlight-text strong {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
  }

  .highlight-text strong::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 107, 107, 0.2);
    bottom: 0;
    left: 0;
    transform: translateY(2px);
  }

  .key-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
  }

  .point-card {
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    background-color: var(--bg-secondary);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
  }

  .point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }

  .point-icon {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .point-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
  }

  .point-text {
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  /* CTA Section */
  .cta-section {
    margin-top: 40px;
  }

  .cta-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 25px;
  }

  .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(58, 110, 165, 0.3);
  }

  .cta-button:hover {
    background-color: #2c5987;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(58, 110, 165, 0.4);
  }



  /* Scroll Indicator */
  .scroll-indicator {
    position: relative;
    margin-top: 40px;
  }

  .scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }

  .scroll-icon {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.8rem;
    animation: float 2s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  /* Focus and Accessibility */
  a:focus, button:focus {
    outline: 3px solid rgba(58, 110, 165, 0.4);
    outline-offset: 3px;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .mission-card {
      padding: 40px 30px;
    }
    
    .section-title {
      font-size: 2.2rem;
    }
  }

  @media (max-width: 768px) {
    .mission-statement {
      padding: 60px 0;
    }
    
    .section-icon {
      width: 70px;
      height: 70px;
      font-size: 1.8rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .highlight-text {
      font-size: 1.1rem;
    }
    
    .key-points {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
    
    .point-card {
      max-width: 100%;
      width: 100%;
    }
  }

  @media (max-width: 576px) {
    .mission-card {
      padding: 30px 20px;
    }
    
    .section-icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
    
    .highlight-text {
      font-size: 1rem;
      line-height: 1.7;
    }
    
    .years-counter {
      font-size: 1rem;
      padding: 4px 12px;
    }
  }



  

/* News & Media Section */

.approach-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card-thumbnail {
    height: 180px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 8px 8px 0 0;
}

.protest-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.approach-card:hover .protest-thumb {
    transform: scale(1.05);
}

.view-more {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.view-more:hover {
    background-color: #c0392b;
}

.view-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-more:hover i {
    transform: translateX(3px);
}


/* Approach Section */
.approach-section {
    padding: 80px 0;
    background-color: var(--white);
}

.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.approach-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid var(--secondary-color);
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.approach-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.approach-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: var(--gray);
}


.events-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

.upcoming-events {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.upcoming-events h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.coming-soon {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    border-radius: 5px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.past-events {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.past-events h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
    
}

.event-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
}

.event-carousel::-webkit-scrollbar {
    display: none;
}

.event-card {
    flex: 0 0 200px;
    text-align: center;
}

.event-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.event-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.event-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}





:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --white: #ffffff;
    --text-color: #333333;
    --text-light: #6c757d;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.contact-section {
    padding: 4rem 1rem;
    background-color: var(--light-gray);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    padding: 0 1rem;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.contact-info {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-heading {
    color: var(--primary-color);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
    padding: 1rem;
    border-radius: 6px;
}

.info-item:hover {
    background-color: var(--medium-gray);
}

.info-icon {
    background-color: rgba(52, 152, 219, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    color: var(--text-light);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: var(--text-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.info-value:hover {
    color: var(--secondary-color);
}

.contact-hours {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background-color: rgba(233, 236, 239, 0.5);
    border-radius: 6px;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

.info-mail {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 13px;
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 2rem;
    }
    
    .info-item {
        flex-direction: row;
        padding: 0.8rem;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .contact-hours {
        flex-direction: row;
    }
}

@media (max-width: 360px) {
    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-content {
        align-items: center;
    }
    
    .contact-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}    
/* CSS to make email responsive */
.info-mail {
    color: inherit;
    text-decoration: none;
    word-break: break-word; /* This ensures long emails wrap properly */
    overflow-wrap: break-word; /* Alternative for better browser support */
    display: inline-block;
    max-width: 100%; /* Ensures it doesn't overflow its container */
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; /* Allows items to wrap on small screens */
}

/* For very small screens */
@media (max-width: 480px) {
    .info-mail {
        font-size: 0.9rem; /* Slightly smaller font on tiny screens */
        padding: 0 5px; /* Small padding to prevent edge touching */
    }
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::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="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.footer-main {
    margin-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section {
    position: relative;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 600;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Organization Info Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo-text h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--white);
    font-weight: 700;
}

.footer-logo-text p {
    margin: 3px 0;
    color: var(--light-color);
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--secondary-color) !important;
    font-weight: 600;
    font-style: italic;
}

.footer-description {
    color: var(--light-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--secondary-color);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #1da1f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link.whatsapp:hover {
    background: #25d366;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    position: relative;
    font-size: 0.95rem;
}

.footer-links a i {
    width: 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(8px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.footer-links a:hover::before {
    width: 100%;
}

/* Contact Information */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item span:first-child {
    display: block;
    color: var(--light-color);
    font-size: 0.85rem;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a,
.contact-item span:last-child {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary-color);
}

/* Newsletter Section */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: center;
}

.newsletter-content p {
    color: var(--light-color);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group button {
    padding: 15px 25px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.newsletter-options {
    text-align: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--light-color);
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    color: var(--light-color);
    font-size: 0.9rem;
    margin: 0 0 10px 0;
}

.footer-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-stats span {
    color: var(--light-color);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-stats i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--light-color);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--white);
}

.back-to-top-btn {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.back-to-top-btn:hover {
    background: #c53030;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-newsletter {
        padding: 20px;
    }
    
    .newsletter-content h4 {
        font-size: 1.2rem;
    }
    
    .footer-bottom-content {
        gap: 15px;
    }
}


/* Responsive Styles */
@media (max-width: 1024px) {
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
    }
    
    .events-container {
        grid-template-columns: 1fr;
    }
    
    .upcoming-events {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 70px);
        transition: var(--transition);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
        text-align: center;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .carousel {
        height: 70vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        padding: 30px;
        padding-top: 80px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-top: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .carousel {
        height: 60vh;
        min-height: 350px;
    }
    
    .carousel-caption {
        padding: 20px;
        padding-top: 60px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .countdown span {
        font-size: 1.5rem;
    }
    
    .countdown small {
        font-size: 0.8rem;
    }
    
    .approach-cards, .involved-options {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-links, .footer-legal {
        margin-bottom: 20px;
    }
    
    .footer-newsletter {
        text-align: center;
    }
}

/* Overlay for mobile nav */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    transition: opacity 0.3s;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Focus and keyboard accessibility */
.new-nav-link:focus, .new-dropdown-toggle:focus, .new-dropdown-item:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    background: #f0f7ff;
}

/* Active link highlight */
.new-nav-link.active {
    color: var(--white);
    background: var(--primary-color);
    font-weight: 700;
}

/* Dropdown menu transitions */
.new-dropdown-menu {
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0;
    pointer-events: none;
}

.new-dropdown:hover .new-dropdown-menu,
.new-dropdown.active .new-dropdown-menu,
.new-dropdown:focus-within .new-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

/* Hamburger animation */
.new-hamburger.active .new-hamburger-inner {
    background: transparent;
}
.new-hamburger.active .new-hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}
.new-hamburger.active .new-hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav overlay and menu */
@media (max-width: 992px) {
    .nav-overlay {
        display: none;
    }
    .nav-overlay.active {
        display: block;
    }
    .new-nav-menu {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 80vw;
        max-width: 350px;
        background: #fff;
        box-shadow: -2px 0 15px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 20px 20px 20px;
        transform: translateX(100%);
        transition: transform 0.3s;
        z-index: 1001;
    }
    .new-nav-menu.active {
        transform: translateX(0);
    }
}

/* Enhanced Contact Section Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.form-card {
    padding: 30px;
}

.form-heading {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.form-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 62, 114, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.btn-submit,
.btn-reset {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    flex: 2;
}

.btn-submit:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

.btn-reset {
    background: var(--gray);
    color: var(--text-color);
    flex: 1;
}

.btn-reset:hover {
    background: var(--dark-gray);
}

/* Enhanced Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.contact-heading {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.contact-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
    position: relative;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    min-width: 80px;
}

.info-value {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.info-value:hover {
    color: var(--secondary-color);
}

.btn-copy {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-copy:hover {
    color: var(--primary-color);
    background: var(--gray);
}

/* Quick Actions */
.quick-actions {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 25px;
}

.quick-actions h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--white);
}

.action-btn.whatsapp {
    background: #25D366;
}

.action-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.action-btn.email {
    background: var(--secondary-color);
}

.action-btn.email:hover {
    background: #c53030;
    transform: translateY(-2px);
}

.action-btn.call {
    background: var(--primary-color);
}

.action-btn.call:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

/* Contact Extras */
.contact-extras {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.response-time {
    display: flex;
    justify-content: center;
}

.response-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 25px;
    text-align: center;
    max-width: 250px;
}

.response-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.response-card h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.response-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FAQ Preview */
.faq-preview {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.faq-preview h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 15px 20px;
    background: var(--gray);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: var(--transition);
    position: relative;
}

.faq-item summary:hover {
    background: var(--dark-gray);
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 20px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Success Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 30px 25px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 20px;
}

.modal-body p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--gray);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-extras {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .action-buttons {
        gap: 10px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-content {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-label {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .form-card,
    .info-card,
    .quick-actions,
    .response-card,
    .faq-preview {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px 20px;
    }
}

.media-scroller, .carousel {
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

#fullscreenOverlay {
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}