body { 
      font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif; 
      background-color: #000;
      color: #daa520; /* Gold color */
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    .dark-mode {
      background-color: #000;
      color: #daa520;
    }
    .light-mode {
      background-color: #f8f8f8;
      color: #000;
    }
    .dark-mode .text-color {
      color: #daa520;
    }
    .light-mode .text-color {
      color: #000;
    }
    .dark-mode .bg-color {
      background-color: #000;
    }
    .light-mode .bg-color {
      background-color: #f8f8f8;
    }
    .dark-mode .bg-section {
      background-color: #111;
    }
    .light-mode .bg-section {
      background-color: #fff;
    }
    .fade {
       transition: opacity 1s ease-in-out; 
      }
    .slide { 
      display: none; 
      opacity: 0; 
    }
    .slide.active { 
      display: block; 
      opacity: 1; 
    }
    .fade {
    transition: opacity 1s ease-in-out;
    }
    .mission-slide {
      display: none;
      opacity: 0;
    }
    .mission-slide.active {
      display: block;
      opacity: 1;
    }
    @keyframes fadeSlide { 
      0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }
    .logo-title {
       animation: fadeSlide 1.5s ease-out forwards;
        opacity: 0; 
      }
    .logo-title:hover { 
      color: #fff; 
      transform: scale(1.05); 
      transition: 0.3s ease-in-out; 
    }
    .logo-container {
      text-align: center;
      margin-bottom: 20px;
    }
    .logo {
      width: 150px;
      height: auto;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .logo-text {
      font-size: 1.2em;
      color: #333;
      margin-top: 10px;
    }
    .whatsapp-float { 
      position: fixed; 
      bottom: 20px; 
      right: 20px; 
      background-color: #25D366; 
      color: white; 
      border-radius: 50%; 
      width: 55px; 
      height: 55px; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      font-size: 28px; 
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
      z-index: 1000;
      cursor: pointer; 
      transition: transform 0.3s ease; 
    }
    .whatsapp-float:hover {
      transform: scale(1.1);
    }
    .fade-mission {
      display: none;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    .fade-mission.active {
      display: block;
      opacity: 1;
    }
    @media (max-width:410px){
      .text-2xl{
        font-size: 3rem;
      }
    }
    /* Advanced Hero Section */
    .hero-section {
      position: relative;
      height: 100vh;
      min-height: 600px;
      overflow: hidden;
    }
    
    .swiper {
      width: 100%;
      height: 100%;
    }
    
    .swiper-slide {
      position: relative;
      background-size: cover;
      background-position: center;
    }
    
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      max-width: 1200px;
      padding: 0 20px;
      text-align: center;
      z-index: 10;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }
    
    /* Navigation buttons */
    .swiper-button-next,
    .swiper-button-prev {
      color: #daa520 !important;
      width: 50px !important;
      height: 50px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 24px !important;
    }
    
    /* Pagination */
    .swiper-pagination-bullet {
      background: #daa520 !important;
      opacity: 0.5 !important;
      width: 12px !important;
      height: 12px !important;
    }
    
    .swiper-pagination-bullet-active {
      opacity: 1 !important;
    }
        /* Dark/Light Mode Toggle Styles */
    .theme-toggle-container {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .toggle-switch {
      position: relative;
      display: inline-block;
      width: 40px;
      height: 20px;
    }
    .toggle-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }
    .toggle-slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #333;
      transition: .4s;
      border-radius: 20px;
    }
    .toggle-slider:before {
      position: absolute;
      content: "";
      height: 16px;
      width: 16px;
      left: 2px;
      bottom: 2px;
      background-color: #daa520;
      transition: .4s;
      border-radius: 50%;
    }
    input:checked + .toggle-slider {
      background-color: #daa520;
    }
    input:checked + .toggle-slider:before {
      transform: translateX(20px);
      background-color: #000;
    }
    .toggle-icon {
      font-size: 14px;
      color: #daa520;
    }
    
    /* Logo link styles */
    .logo-link {
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }
    .logo-link:hover {
      opacity: 0.9;
    }