* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fffaf8;
  }
  
  /* Navbar */
  .car-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background-color: #fff5f5;
    border-bottom: 4px solid #a74d4a;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #a74d4a;
  }
  
  .nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
  }
  
  .nav-menu a {
    text-decoration: none;
    color: #444;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 500;
    transition: color 0.3s;
  }
  .nav-menu a:hover {
    color: #a74d4a;
  }
  
  /* Section Basics */
  .home-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: linear-gradient(to right, #fbd3d3, #f5b8a6);
    display: flex;
    align-items: center;
  }
  
  .home-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
    gap: 3rem;
    min-height: 80vh;
    padding: 2rem 1rem;
  }
  
  /* Text Styling */
  .home-text {
    flex: 1 1 400px;
  }
  
  .home-text h1 {
    font-size: clamp(6.5rem, 6vw, 7rem);
    font-weight: 800;
    color: #8b1e1b;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    letter-spacing: 1px;
    animation: fadeSlideIn 1s ease-in-out;
  }
  
  .home-text p {
    font-size: clamp(1rem, 2vw, 1.6rem);
    color: #4b1a19;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeSlideIn 1.2s ease-in-out;
  }
  
  .book-now-btn {
    padding: 1.2rem 2.5rem;
    background-color: #a74d4a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    animation: fadeSlideIn 1.4s ease-in-out;
  }
  
  .book-now-btn:hover {
    background-color: #6c1c1a;
    transform: scale(1.05);
  }
  
  .image-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 13 / 10;
    flex: 1 1 300px;
    margin-inline: auto;
  }
  
  .image-box {
    position: absolute;
    width: clamp(140px, 30%, 300px);
    height: clamp(90px, 20%, 190px);
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }
  
  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .img-1 { top: 0%; left: 0%; transform: rotate(8deg); z-index: 1; }
  .img-2 { top: 10%; left: 20%; transform: rotate(-6deg); z-index: 2; }
  .img-3, .img-35 { top: 20%; left: 40%; transform: rotate(0deg); z-index: 3; }
  .img-34 { top: 50%; left: 40%; transform: rotate(0deg); z-index: 3; }
  .img-4 { top: 30%; left: 60%; transform: rotate(-20deg); z-index: 2; }
  .img-5 { top: 40%; left: 80%; transform: rotate(-20deg); z-index: 1; }
  
  .image-box:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 5;
  }
  

  /* ...................ABOUT US............ */
  .about-section {
    padding: 5rem 2rem;
    background-color: #fff0ec;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 3rem;
  }
  
  .about-text {
    flex: 1 1 400px;
  }
  
  .about-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #a74d4a;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: capitalize;
  }
  
  .about-text p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #4b1a19;
    line-height: 1.7;
  }
  
  .about-image {
    flex: 1 1 400px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
  }
  
  /* ...................SERVICES................. */
  .services-section {
    padding: 5rem 2rem;
    background: linear-gradient(to right, #fff0ec, #fbd3d3);
  }
  
  .services-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #a74d4a;
    margin-bottom: 3rem;
    font-weight: bold;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card h3 {
    color: #8b1e1b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #4b1a19;
    line-height: 1.6;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  /* .................FORM............ */
  .contact-section {
    padding: 5rem 2rem;
    background-color: #fffaf8;
  }
  
  .contact-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .contact-btn {
    padding: 1rem 2rem;
    background-color: #a74d4a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-transform: uppercase;
  }
  
  .contact-btn:hover {
    background-color: #6c1c1a;
  }
  
  /* ..................TESTIMONIAL......... */
  .testimonials-section {
    padding: 5rem 2rem;
    background: linear-gradient(to right, #fbd3d3, #ffe0dc);
  }
  
  .testimonials-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-style: italic;
    color: #4b1a19;
    position: relative;
  }
  
  .testimonial-card h4 {
    margin-top: 1rem;
    color: #a74d4a;
    font-weight: bold;
    font-style: normal;
  }

  /* ............Portfolio............ */
  .portfolio-section {
    padding: 5rem 2rem;
    background-color: #fff5f5;
  }
  
  .portfolio-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .portfolio-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .portfolio-card h3 {
    color: #a74d4a;
    margin: 1rem 0 0.5rem;
    font-size: 1.3rem;
  }
  
  .portfolio-card p {
    color: #4b1a19;
    font-size: 1rem;
    padding: 0 1.5rem 2rem;
  }
  
  .portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }
  
  /* .............NEWSLETTER............ */
  .newsletter-section {
    padding: 4rem 2rem;
    background: linear-gradient(to right, #fbd3d3, #f5b8a6);
    text-align: center;
  }
  
  .newsletter-container {
    max-width: 700px;
    margin: auto;
  }
  
  .newsletter-text {
    font-size: 1.1rem;
    color: #4b1a19;
    margin-bottom: 2rem;
  }
  
  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .newsletter-form input {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    width: clamp(200px, 60%, 400px);
  }
  
  .newsletter-form button {
    padding: 1rem 2rem;
    background-color: #a74d4a;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .newsletter-form button:hover {
    background-color: #6c1c1a;
  }
  

  /* ..................FOOTE................ */
  .site-footer {
    background-color: #fff0ec;
    color: #4b1a19;
    padding: 3rem 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    border-top: 4px solid #a74d4a;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 2rem;
  }
  
  .footer-about,
  .footer-links,
  .footer-social {
    flex: 1 1 250px;
  }
  
  .footer-about h3 {
    color: #a74d4a;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
  
  .footer-links h4,
  .footer-social h4 {
    color: #a74d4a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #4b1a19;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #a74d4a;
  }
  
  .social-icons {
    display: flex;
    gap: 1rem;
  }
  
  .social-icons a img {
    width: 24px;
    height: 24px;
    filter: invert(25%) sepia(20%) saturate(300%) hue-rotate(330deg);
    transition: transform 0.3s ease;
  }
  
  .social-icons a:hover img {
    transform: scale(1.2);
    filter: invert(36%) sepia(30%) saturate(650%) hue-rotate(330deg);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
  }
  
  .powered-by-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.7rem;
    flex-wrap: wrap;
  }
  
  .powered-by-alt p {
    margin: 0;
    font-size: 0.95rem;
    color: #a74d4a;
    font-weight: 500;
  }
  
  .powered-by-alt img {
    height: 26px;
    width: auto;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
  }
  
  .powered-by-alt img:hover {
    transform: scale(1.05);
  }
  
  
  
  
  @keyframes fadeSlideIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  }
  
  
  /* Responsive */
  @media (max-width: 1024px) {
    .home-container {
      flex-direction: column;
      text-align: center;
    }
  
 
    .img-2 { left: 30px; top: 40px; }
    .img-3, .img-35 { left: 60px; top: 90px; }
    .img-4 { left: 90px; top: 140px; }
    .img-5 { left: 100px; top: 190px; }
  }
  
  @media (max-width: 480px) {
    .car-navbar {
      flex-direction: column;
      padding: 1rem;
    }
  
    .nav-menu {
      flex-direction: column;
      gap: 1rem;
      margin-top: 1rem;
    }
  
    .img-2 { left: 20px; top: 30px; }
    .img-3, .img-35 { left: 40px; top: 70px; }
    .img-4 { left: 60px; top: 110px; }
    .img-5 { left: 80px; top: 150px; }
  }
  