/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
  }
  
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
  }
  
  /* ..................Sliding Background Images */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 300%;
    display: flex;
    background: url('https://images.unsplash.com/photo-1495147466023-ac5c588e2e94?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
    background-size: cover;
    animation: slideImages 25s linear infinite;
    z-index: -2;
  }
  
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }
  
  /*...................Navbar */
  .navbar {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 10;
  }
  
  .logo {
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #ff4081;
    transition: 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }

  /* Hamburger Base */
.hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 20;
  }
  
  .hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 2px;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  
  /* Line Positions */
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 9px;
  }
  .hamburger span:nth-child(3) {
    top: 18px;
  }
  
  /* Transform to X when active */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
  }
  
  
  /*............................ Hero Content */
  .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 1.5s ease;
  }
  
  .hero-content h2 span {
    color: #ff4081;
  }
  
  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 2s ease;
  }
  
  .btn {
    background: linear-gradient(135deg, #ff4081, #ff8a65);
    color: white;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
  }
  
  .btn:hover {
    background: linear-gradient(135deg, #ff8a65, #ff4081);
    transform: scale(1.05);
  }
  /* About Section */
.about {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #fff5f0, #fffaf7);
    color: #333;
  }
  
  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-image {
    flex: 1 1 300px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
  
  .about-text {
    flex: 1 1 400px;
  }
  
  .about-text h2 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 1rem;
  }
  
  .about-text h2 span {
    color: #ff4081;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
  }
  

 
  
  /* Featured Section */
.menu {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #fffdfd, #fff8f0);
    text-align: center;
    color: #333;
  }
  
  .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .section-title h2 span {
    color: #ff4081;
  }
  
  .section-title p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-width: 280px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card h3 {
    text-align: center;
    margin: 1rem 0 0.5rem;
    color: #111;
  }
  
  .card p {
    font-size: 0.95rem;
    padding: 0 1rem 1.5rem;
    color: #555;
  }

  /* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #fff0f5, #ffe4e1);
    color: #333;
    text-align: center;
  }
  
  .testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .testimonial-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    max-width: 320px;
    padding: 2rem;
    font-style: italic;
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }
  
  .testimonial-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #444;
  }
  
  .testimonial-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ff4081;
  }
  
  /* Contact Section */
.contact {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #fef6ff, #fff9fb);
    text-align: center;
    color: #333;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    resize: none;
    outline: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #ff4081;
    box-shadow: 0 0 0 2px rgba(255, 64, 129, 0.2);
  }
  
  .contact-form button {
    background: linear-gradient(135deg, #ff4081, #ff8a65);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: linear-gradient(135deg, #ff8a65, #ff4081);
  }

  /* Newsletter Section */
.newsletter {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #fffaf0, #fff0f5);
    text-align: center;
    color: #333;
  }
  
  .newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .newsletter-form input {
    flex: 1 1 250px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .newsletter-form button {
    background: linear-gradient(135deg, #ff4081, #ff8a65);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background: linear-gradient(135deg, #ff8a65, #ff4081);
  }

  
  
  /* Location Section */
.location {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #fdf9ff, #fff);
    color: #333;
    text-align: center;
  }
  
  .location-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .location-info {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: left;
  }
  
  .location-info h4 {
    font-size: 1.1rem;
    color: #ff4081;
    margin-top: 1rem;
  }
  
  .location-info ul {
    list-style: none;
    padding-left: 0;
  }
  
  .location-info li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #444;
  }
  
  .location-map {
    flex: 1 1 300px;
    max-width: 500px;
  }

  /* Footer */
.site-footer {
    background: linear-gradient(to bottom right, #111, #222);
    color: #eee;
    padding: 3rem 2rem 1rem;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #444;
    padding-bottom: 2rem;
  }
  
  .footer-container div {
    flex: 1 1 250px;
  }
  
  .footer-about h3 {
    color: #ff4081;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .powered-by {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #aaa;
  }
  
  .powered-by img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  
  .footer-links h4,
  .footer-contact h4 {
    color: #ff8a65;
    margin-bottom: 0.8rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links ul li a {
    color: #eee;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links ul li a:hover {
    color: #ff4081;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 1.5rem;
    color: #aaa;
    font-size: 0.85rem;
  }

  
  
  
  /* Background Animation */
  @keyframes slideImages {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-66.666%); }
  }
  
  /* Text Animations */
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  

  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 100%;
      right: 0;
      flex-direction: column;
      width: 100%;
      text-align: center;
      padding: 1rem 0;
      display: none;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      z-index: 10;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      margin: 1rem 0;
    }
  
    .hamburger {
      display: block;
    }
  }
  