
    /* CSS will be consolidated here for clarity */
    :root {
      --primary: #3498db;
      --primary-dark: #2980b9;
      --secondary: #2c3e50;
      --accent: #f97316;
      --light: #f8f9fa;
      --gray: #ecf0f1;
      --dark: #333;
      --success: #2ecc71;
      --info: #17a2b8;
      --warning: #f39c12;
      --danger: #e74c3c;
      --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      line-height: 1.3;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section {
      padding: 80px 0;
    }
    
    .section-gray {
      background-color: var(--gray);
    }
    
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: var(--secondary);
    }
    
    .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: #7f8c8d;
      margin-bottom: 50px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: var(--transition);
      text-align: center;
      cursor: pointer;
      border: none;
      min-width: 150px;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
    }
    
    .btn-primary:hover {
      background: linear-gradient(135deg, var(--primary-dark), #1c6ea4);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    .btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }
    
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
    }
    
    .btn-success {
      background-color: var(--success);
      color: white;
    }
    
    .btn-info {
      background-color: var(--info);
      color: white;
    }
    
    .btn-block {
      display: block;
      width: 100%;
    }
    
    .card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: var(--shadow);
      transition: var(--transition);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .card-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--secondary);
    }
    
    .card p {
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
    }
    
    .card-grid {
      display: grid;
      gap: 30px;
    }
    
    .three-col {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .four-col {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .left-align {
      text-align: left;
    }
    
    /* Header Styles */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      transition: var(--transition);
    }
    
    .nav-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .logo img {
      height: 50px;
      width: auto;
    }
    
    .nav-links {
      display: flex;
      gap: 30px;
    }
    
    .nav-links a {
      text-decoration: none;
      color: var(--secondary);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
    }
    
    .nav-links a:hover {
      color: var(--primary);
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition);
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }
    
    .contact-btn {
      background: var(--primary);
      color: white;
      padding: 10px 20px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
    }
    
    .contact-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }
    
    .mobile-menu {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--secondary);
    }
    
    /* Hero Section */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      margin-top: 80px;
    }
    
    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -2;
    }
    
    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1.5s ease-in-out;
    }
    
    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .hero-slide.active {
      opacity: 1;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(7, 52, 103, 0.7) 0%, rgba(0, 20, 43, 0.7) 100%);
      z-index: -1;
    }
    
    .hero-content {
      max-width: 900px;
      padding: 0 20px;
      z-index: 1;
      animation: fadeInUp 1s ease-out;
    }
    
    .hero-content h2 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
    }
    
    .hero-content p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
      line-height: 1.6;
    }
    
    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }
    
    .slide-indicators {
      position: absolute;
      bottom: 30px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 10px;
      z-index: 2;
    }
    
    .indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: var(--transition);
    }
    
    .indicator.active {
      background: white;
      transform: scale(1.2);
    }
    
    .slide-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 2;
    }
    
    .nav-btn {
      background: rgba(255, 255, 255, 0.2);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      backdrop-filter: blur(5px);
    }
    
    .nav-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: scale(1.1);
    }
    
    .hero-stats {
      position: absolute;
      bottom: 80px;
      left: 0;
      right: 0;
      display: flex;
      justify-content: center;
      gap: 40px;
      z-index: 2;
    }
    
    .stat-item {
      text-align: center;
      background: rgba(255, 255, 255, 0.1);
      padding: 15px 25px;
      border-radius: 10px;
      backdrop-filter: blur(5px);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 0.9rem;
      opacity: 0.9;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Bulletin Section */
    .bulletin-section .card-grid {
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .bulletin-card {
      text-align: center;
    }
    
    /* About Section */
    .about-content {
      margin-top: 50px;
    }
    
    .about-flex {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-image {
      flex: 1;
      text-align: center;
    }
    
    .about-image img {
      max-width: 100%;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }
    
    /* Partners Section */
    .partner-slider {
      position: relative;
      overflow: hidden;
      padding: 30px 0;
    }
    
    .partner-track {
      display: flex;
      animation: scroll 30s linear infinite;
      gap: 40px;
    }
    
    .partner-track:hover {
      animation-play-state: paused;
    }
    
    .partner-slider img {
      height: 100px;
      width: auto;
      object-fit: contain;
      filter: grayscale(0%) brightness(100%);
      transition: var(--transition);
      border-radius: 8px;
      padding: 15px;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }
    
    .partner-slider img:hover {
      transform: translateY(-10px) scale(1.05);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      filter: grayscale(0%) brightness(105%);
    }
    
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(calc(-250px * 11));
      }
    }
    
    .partner-slider::before,
    .partner-slider::after {
      content: '';
      position: absolute;
      top: 0;
      width: 150px;
      height: 100%;
      z-index: 2;
    }
    
    .partner-slider::before {
      left: 0;
      background: linear-gradient(to right, var(--gray), transparent);
    }
    
    .partner-slider::after {
      right: 0;
      background: linear-gradient(to left, var(--gray), transparent);
    }
    
    /* Services Section */
    .service-options {
      display: none;
      margin-top: 20px;
      text-align: left;
    }
    
    .service-options h4 {
      margin-bottom: 15px;
      color: var(--secondary);
    }
    
    .option-list {
      display: grid;
      gap: 10px;
    }
    
    .option-item {
      padding: 10px 15px;
      background: var(--light);
      border-radius: 5px;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .option-item:hover {
      background: var(--primary);
      color: white;
    }
    
    /* Stats Section */
    .stats-section {
      background: linear-gradient(155deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 60px 0;
    }
    
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      text-align: center;
    }
    
    .stats-section .stat-item {
      background: rgba(21, 18, 67, 0.614);
      padding: 30px 20px;
      border-radius: 10px;
      backdrop-filter: blur(20px);
      border: 1px solid rgb(243, 237, 239);
    }
    
    .stats-section .stat-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    
    .stats-section .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    
    .stats-section .stat-label {
      font-size: 1rem;
      opacity: 1;
    }
    
    /* Brochure Section */
    .brochure-button-wrapper {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .cta-button {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }
    
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .brochure-list {
      display: none;
      max-width: 600px;
      margin: 0 auto;
    }
    
    .brochure-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background: white;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: var(--shadow);
    }
    
    .view-btn {
      background: var(--primary);
      color: white;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
    }
    
    .view-btn:hover {
      background: var(--primary-dark);
    }
    
    /* Testimonials Section */
    .testimonial-card {
      position: relative;
    }
    
    .quote-icon {
      font-size: 3rem;
      color: var(--primary);
      opacity: 0.3;
      position: absolute;
      top: 10px;
      left: 20px;
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }
    
    .author-name {
      font-weight: 600;
      color: var(--secondary);
    }
    
    .author-role {
      font-size: 0.9rem;
      color: #666;
    }
    
    .rating {
      margin-top: 15px;
      color: #f39c12;
    }
    
    /* Gallery Section */
    .gallery-categories {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
      gap: 15px;
    }
    
    .category-btn {
      padding: 12px 30px;
      background-color: var(--gray);
      border: none;
      border-radius: 30px;
      font-size: 1rem;
      font-weight: 600;
      color: #7f8c8d;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .category-btn.active {
      background-color: var(--primary);
      color: white;
    }
    
    .category-btn:hover:not(.active) {
      background-color: #d5dbdb;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 25px;
    }
    
    .gallery-item {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      height: 250px;
      position: relative;
    }
    
    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      color: white;
      padding: 15px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    
    .gallery-item:hover .gallery-caption {
      transform: translateY(0);
    }
    
    .gallery-caption h3 {
      font-size: 1.1rem;
      margin-bottom: 5px;
    }
    
    .gallery-caption p {
      font-size: 0.9rem;
      opacity: 0.9;
    }
    
    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }
    
    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 5px;
    }
    
    .close-lightbox {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .close-lightbox:hover {
      color: var(--primary);
    }
    
    /* FAQ Section */
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .faq-item {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .faq-question {
      width: 100%;
      padding: 20px;
      background: white;
      border: none;
      text-align: left;
      font-size: 1.1rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .faq-question:hover {
      background: var(--light);
    }
    
    .faq-icon {
      font-size: 1.5rem;
      transition: var(--transition);
    }
    
    .faq-answer {
      padding: 0 20px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: white;
    }
    
    .faq-answer.active {
      padding: 20px;
      max-height: 500px;
    }
    
    .faq-answer p {
      margin-bottom: 0;
    }
    
    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
    
    .contact-form, .contact-info {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }
    
    .contact-form h3, .contact-info h3 {
      margin-bottom: 25px;
      color: var(--secondary);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--secondary);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    
    .info-item {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
    }
    
    .info-icon {
      font-size: 1.5rem;
      color: var(--primary);
      min-width: 30px;
    }
    
    .info-item h4 {
      margin-bottom: 5px;
      color: var(--secondary);
    }
    
    .info-item p, .info-item a {
      color: #666;
      text-decoration: none;
    }
    
    .info-item a:hover {
      color: var(--primary);
    }
    
    .form-message {
      margin-top: 20px;
      padding: 15px;
      border-radius: 5px;
      text-align: center;
      display: none;
    }
    
    .form-message.success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }
    
    .form-message.error {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }
    
    /* Footer */
    .footer {
      background: var(--secondary);
      color: white;
      padding: 60px 0 20px;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    
    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
    }
    
    .footer p {
      color: #bdc3c7;
      margin-bottom: 20px;
    }
    
    .footer-social {
      display: flex;
      gap: 15px;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .social-icon:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }
    
    .footer-col h4 {
      margin-bottom: 20px;
      color: white;
    }
    
    .footer-col ul {
      list-style: none;
    }
    
    .footer-col ul li {
      margin-bottom: 10px;
    }
    
    .footer-col ul li a {
      color: #bdc3c7;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-col ul li a:hover {
      color: white;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #bdc3c7;
    }
    
    /* Modals */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }
    
    .modal-content {
      background: white;
      border-radius: 10px;
      padding: 30px;
      max-width: 600px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
    }
    
    .modal-small {
      max-width: 400px;
    }
    
    .modal h2 {
      margin-bottom: 20px;
      color: var(--secondary);
    }
    
    .close {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      font-weight: bold;
      cursor: pointer;
      color: #999;
      transition: var(--transition);
    }
    
    .close:hover {
      color: var(--dark);
    }
    
    .verify-result {
      margin-top: 20px;
      padding: 15px;
      border-radius: 5px;
      text-align: center;
      display: none;
    }
    
    .verify-result.success {
      background: #d4edda;
      color: #155724;
      border: 1px solid #c3e6cb;
    }
    
    .verify-result.error {
      background: #f8d7da;
      color: #721c24;
      border: 1px solid #f5c6cb;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background: var(--accent);
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: var(--transition);
      z-index: 1000;
      text-decoration: none;
    }
    
    .back-to-top:hover {
      background: #c74905;
      transform: translateY(-3px);
    }
    
    .progress-circle {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      animation: rotate 5s linear infinite;
    }
    
    .back-to-top-icon {
      position: relative;
      z-index: 1;
      font-weight: bold;
    }
    
    @keyframes rotate {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
    
    /* Floating WhatsApp Button */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 90px;
      right: 25px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      box-shadow: 2px 2px 3px #999;
      z-index: 1000;
      animation: pulse 2s infinite;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .whatsapp-icon {
      width: 35px;
      height: 35px;
    }
    
    .whatsapp-float:hover {
      background-color: #128c7e;
      transform: scale(1.1);
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }
    
    /* Responsive Styles */
    @media (max-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .section {
        padding: 60px 0;
      }
      
      .section-title {
        font-size: 2rem;
      }
      
      .hero-content h2 {
        font-size: 2.5rem;
      }
      
      .hero-content p {
        font-size: 1.1rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 280px;
      }
      
      .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        bottom: 120px;
      }
      
      .stat-item {
        padding: 10px 15px;
      }
      
      .stat-number {
        font-size: 1.5rem;
      }
      
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      }
      
      .nav-links.active {
        display: flex;
      }
      
      .mobile-menu {
        display: block;
      }
      
      .contact-btn {
        display: none;
      }
      
      .about-flex {
        flex-direction: column;
      }
      
      .contact-grid {
        grid-template-columns: 1fr;
      }
      
      .form-row {
        grid-template-columns: 1fr;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 15px;
      }
      
      .gallery-item {
        height: 200px;
      }
      
      .gallery-categories {
        flex-direction: column;
        align-items: center;
      }
      
      .category-btn {
        width: 80%;
        margin-bottom: 10px;
      }
      
      .partner-slider img {
        height: 80px;
        padding: 10px;
      }
      
      .partner-track {
        gap: 25px;
      }
    }
    
    @media (max-width: 480px) {
      .section-title {
        font-size: 1.8rem;
      }
      
      .section-subtitle {
        font-size: 1rem;
      }
      
      .hero-content h2 {
        font-size: 2rem;
      }
      
      .hero-content p {
        font-size: 1rem;
      }
      
      .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      
      .hero-stats {
        display: none;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
      
      .gallery-item {
        height: 150px;
      }
      
      .partner-slider img {
        height: 60px;
        padding: 8px;
      }
      
      .partner-track {
        gap: 20px;
      }
      
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
