:root {  
    --primary-color: #ff4757;  
    --secondary-color: #2f3542;  
    --gradient-color: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);  
  }  
  
  body {  
    font-family: 'Poppins', sans-serif;  
    color: var(--secondary-color);  
    overflow-x: hidden;  
  }  
  
  h1,h2,h3,h4,h5,h6 {  
    font-family: 'Poppins', sans-serif;  
    font-weight: 600;  
  }  
  
  p,a,li,span {  
    font-family: 'Poppins', sans-serif;  
    font-weight: 400;  
  }  
  
  .navbar {  
    backdrop-filter: blur(10px);  
    background-color: rgba(255,255,255,0.9);  
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);  
    padding: 0.5rem 1rem;  
    transition: all 0.3s ease;  
  }  
  
  .navbar-brand {  
    font-size: 1rem;  
    display: flex;  
    align-items: center;  
  }  
  
  .navbar-brand img {  
    width: 30px;  
    height: 30px;  
    margin-right: 0.5rem;  
  }  
  
  .hero-section {  
    min-height: 100vh;  
    height: auto;  
    background: var(--gradient-color);  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    color: white;  
    position: relative;  
    overflow: hidden;  
    padding-top: 56px; /* Account for fixed navbar */  
  }  
  
  .hero-overlay {  
    position: absolute;  
    top: 0; left: 0; width: 100%; height: 100%;  
    background: rgba(0,0,0,0.5);  
    z-index: 1;  
  }  
  
  .hero-image {  
    position: absolute;  
    top:0; left:0; width: 100%; height: 100%;  
    z-index: 0;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
  }  
  
  .hero-image img {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
  }  
  
  .hero-section .container {  
    position: relative;  
    z-index: 2;  
    padding: 2rem;  
  }  
  
  .hero-section h1 {  
    font-size: 2.5rem;  
    font-weight: 700;  
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);  
    margin-bottom: 1rem;  
  }  
  
  .hero-section p {  
    font-size: 1.1rem;  
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);  
    margin-bottom: 1.5rem;  
  }  
  
  .hero-section .btn {  
    font-size: 1rem;  
    padding: 0.5rem 1.5rem;  
    border-radius: 25px;  
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);  
  }  
  
  /* Menu Item Styles */  
  .menu-container {  
    display: flex;  
    flex-wrap: wrap;  
  }  
  
  .menu-item {  
    display: flex;  
    flex-direction: column;  
    height: 100%;  
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
    cursor: pointer;  
    border: none;  
    border-radius: 15px;  
    overflow: hidden;  
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);  
    margin-bottom: 1.5rem;  
  }  
  
  .menu-item:hover {  
    transform: translateY(-10px);  
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);  
  }  
  
  .menu-item .card-img-container {  
    height: 150px;  
    overflow: hidden;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    background: #f8f9fa;  
  }  
  
  .menu-item .card-img-top {  
    width: 100%;  
    height: 100%;  
    object-fit: cover;  
    transition: transform 0.3s ease;  
  }  
  
  .menu-item:hover .card-img-top {  
    transform: scale(1.05);  
  }  
  
  .menu-item .card-body {  
    padding: 1rem;  
    display: flex;  
    flex-direction: column;  
    flex-grow: 1;  
  }  
  
  .menu-item .card-title {  
    font-size: 1rem;  
    margin-bottom: 0.5rem;  
  }  
  
  .menu-item .card-text {  
    font-size: 0.85rem;  
    margin-bottom: 0.75rem;  
    color: #6c757d;  
    flex-grow: 1;  
  }  
  
  .menu-item .text-danger {  
    font-size: 0.9rem;  
    margin-bottom: 0;  
    font-weight: 700;  
  }  
  
  #menu h3 {  
    font-size: 1.25rem;  
    margin-top: 1.5rem;  
    margin-bottom: 1rem;  
    padding-bottom: 0.5rem;  
    border-bottom: 2px solid var(--primary-color);  
    display: inline-block;  
  }  
  
  .btn-danger {  
    cursor: pointer;  
    white-space: nowrap;  
  }  
  
  .timeline {  
    border-left: 3px solid var(--primary-color);  
    padding-left: 1rem;  
  }  
  
  .timeline-item {  
    margin-bottom: 1rem;  
    position: relative;  
  }  
  
  .timeline-item h5 {  
    position: relative;  
    padding-left: 1rem;  
    font-weight: 600;  
    font-size: 0.9rem;  
  }  
  
  .timeline-item h5::before {  
    content: '';  
    position: absolute;  
    left: -0.35rem;  
    top: 7px;  
    width: 10px;  
    height: 10px;  
    background: var(--primary-color);  
    border-radius: 50%;  
  }  
  
  .social-icons a {  
    transition: color 0.3s ease, transform 0.3s ease;  
    display: inline-flex;  
    align-items: center;  
    justify-content: center;  
    font-size: 1.25rem;  
  }  
  
  .social-icons a:hover {  
    color: #ff6b81;  
    transform: scale(1.2);  
  }  
  
  .scroll-to-top {  
    position: fixed;  
    bottom: 20px;  
    right: 20px;  
    background: var(--primary-color);  
    color: #fff;  
    width: 40px;  
    height: 40px;  
    align-items: center;  
    justify-content: center;  
    border-radius: 50%;  
    display: none;  
    cursor: pointer;  
    z-index: 9999;  
    font-size: 1rem;  
  }  
  
  .floating-whatsapp {  
    position: fixed;  
    bottom: 70px;  
    right: 20px;  
    background: #25d366;  
    color: white;  
    width: 45px;  
    height: 45px;  
    border-radius: 50%;  
    display: flex;  
    align-items: center;  
    justify-content: center;  
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);  
    z-index: 99999;  
    transition: background-color 0.3s ease;  
    font-size: 1.25rem;  
  }  
  
  .floating-whatsapp:hover {  
    background-color: #1ebe57;  
  }  
  
  footer.footer {  
    background-color: #f8f9fa;  
    padding: 1rem 0;  
    text-align: center;  
    color: var(--secondary-color);  
    border-top: 1px solid #eaeaea;  
    font-size: 0.85rem;  
  }  
  
  /* About Section */  
  #about .row {  
    align-items: center;  
  }  
  
  #about .col-md-6:first-child {  
    display: flex;  
    justify-content: center;  
    align-items: center;  
    margin-bottom: 1.5rem;  
  }  
  
  /* Feature Cards */  
  .feature-card {  
    transition: transform 0.3s ease, box-shadow 0.3s ease;  
    cursor: pointer;  
    border-radius: 15px;  
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);  
    background-color: #fff;  
    height: 100%;  
    padding: 1rem;  
    margin-bottom: 1rem;  
  }  
  
  .feature-card h4 {  
    font-size: 1rem;  
  }  
  
  .feature-card p {  
    font-size: 0.85rem;  
  }  
  
  .feature-card:hover {  
    transform: translateY(-5px) scale(1.03);  
    box-shadow: 0 8px 20px rgba(255, 71, 87, 0.4);  
  }  
  
  /* Contact Section */  
  #contact .card {  
    border: none;  
    border-radius: 1rem;  
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);  
    margin-bottom: 1.5rem;  
  }  
  
  #contact h4 {  
    font-weight: 700;  
    font-size: 1.1rem;  
  }  
  
  #contact form .form-control.is-invalid {  
    border-color: #dc3545;  
  }  
  
  #contact form .form-control:focus {  
    box-shadow: 0 0 0 0.2rem rgba(255, 71, 87, 0.25);  
  }  
  
  /* Partnership Section */  
  #partnership .card {  
    margin-bottom: 1.5rem;  
  }  
  
  #partnership h4 {  
    font-size: 1.1rem;  
  }  
  
  /* Medium devices (tablets, 768px and up) */  
  @media (min-width: 768px) {  
    .navbar {  
      padding: 0.5rem 2rem;  
    }  
    
    .navbar-brand {  
      font-size: 1.25rem;  
    }  
    
    .navbar-brand img {  
      width: 36px;  
      height: 36px;  
      margin-right: 0.75rem;  
    }  
    
    .hero-section h1 {  
      font-size: 3rem;  
    }  
    
    .hero-section p {  
      font-size: 1.25rem;  
    }  
    
    .hero-section .btn {  
      font-size: 1.1rem;  
      padding: 0.75rem 2rem;  
    }  
    
    .menu-item .card-img-container {  
      height: 180px;  
    }  
    
    .menu-item .card-title {  
      font-size: 1.1rem;  
    }  
    
    #menu h3 {  
      font-size: 1.5rem;  
    }  
    
    .feature-card {  
      padding: 1.5rem;  
    }  
    
    .feature-card h4 {  
      font-size: 1.1rem;  
    }  
    
    #partnership .card {  
      margin-bottom: 0;  
    }  
  }  
  
  /* Large devices (desktops, 992px and up) */  
  @media (min-width: 992px) {  
    .hero-section h1 {  
      font-size: 4rem;  
    }  
    
    .hero-section p {  
      font-size: 1.5rem;  
    }  
    
    .menu-item .card-img-container {  
      height: 200px;  
    }  
    
    .timeline-item h5 {  
      font-size: 1rem;  
    }  
    
    .scroll-to-top {  
      bottom: 30px;  
      right: 30px;  
      width: 42px;  
      height: 42px;  
    }  
    
    .floating-whatsapp {  
      bottom: 90px;  
      right: 30px;  
      width: 48px;  
      height: 48px;  
    }  
  }  