* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Playfair Display', serif;
    background-color: #fff;
    color: #1a1a1a;
    line-height: 1.6;
  }
  
  .navbar {
    background-color: #ece9e5;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 28px;
    letter-spacing: 1px;
    color: #1a1a1a;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links a {
    position: relative;
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* HERO */
  .hero {
    min-height: 100vh;
    background-color: #c6c2cd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 60px;
  }
  
  .hero-content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .hero-text {
    flex: 1;
    min-width: 300px;
  }
  
  .hero-text h1 {
    font-family: freight-display-pro;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.1;
    color: rgb(30, 33, 48);
    margin-bottom: 24px;

    
  }
  
  .hero-text p {
    font-size: 18px;
    color: #444;
    max-width: 500px;
    margin-bottom: 30px;
  }
  .cta-button {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    transition: background 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #333;
  }
  
  .hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 650px;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  /* ..............SERVICE.............. */
  .services {
    padding: 80px 40px;
    background-color: #ffffff;
    color: #1a1a1a;
  }
  
  .services-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .services-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #1a1a1a;
  }
  
  .services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 10px;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
  }
  
  .service-card p {
    font-size: 16px;
    color: #444;
  }

  /* .................CHOOSE US....... */
  .why-choose-us {
    background-color: #f9f9f9;
    padding: 80px 40px;
  }
  
  .why-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .why-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
  }
  
  .reasons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .reason-card {
    flex: 1 1 300px;
    max-width: 350px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .reason-card:hover {
    transform: translateY(-4px);
  }
  
  .reason-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
  }
  
  .reason-card p {
    font-size: 16px;
    color: #444;
  }
/* .............ABOUT................   */
.about-section {
    padding: 100px 40px;
    background-color: #fff;
    color: #1a1a1a;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #1a1a1a;
  }
  
  .about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
  }
  
  .about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }
  
  .about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  
  /* .................PROFILE.............. */
  
  .portfolio-section {
    padding: 100px 40px;
    background-color: #f4f4f4;
    color: #1a1a1a;
  }
  
  .portfolio-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .portfolio-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .portfolio-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
  }
  
  .portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  
  .portfolio-item {
    flex: 1 1 300px;
    max-width: 350px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .portfolio-item:hover {
    transform: translateY(-5px);
  }
  
  .portfolio-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    object-fit: cover;
    height: 200px;
  }
  .portfolio-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .portfolio-item p {
    font-size: 15px;
    color: #444;
  }

  
  /* .........CONTACT FORM............ */
  .contact-section {
    background-color: #fff;
    padding: 100px 40px;
    color: #1a1a1a;
  }
  
  .contact-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
  }
  
  .contact-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .contact-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    margin-bottom: 6px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #1a1a1a;
    color: #fff;
    padding: 14px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #333;
  }
/* ................FOOTER..............   */
.site-footer {
    background-color: #c6c2cd; /* warm light tone */
    color: #1a1a1a;
    padding: 60px 40px 30px;
    font-family: sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-brand {
    flex: 1 1 300px;
  }
  
  .footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  
  .footer-brand p {
    font-size: 15px;
    color: #444;
  }
  
  .footer-links {
    flex: 1 1 200px;
  }
  
  .footer-links h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .footer-partners {
    flex: 1 1 300px;
  }
  
  .footer-partners h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .partners-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .partners-logos img {
    height: 30px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
  }
  
  .partners-logos img:hover {
    filter: grayscale(100%);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #555;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: #ece9e5;
      padding: 20px 0;
      gap: 20px;
      text-align: center;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-text h1 {
      font-size: 48px;
    }
  
    .hero-text p {
      font-size: 18px;
    }
  
    .hero-image img {
      max-width: 100%;
      height: auto;
    }


    /* ............. */
    .services {
        padding: 80px 40px;
        background-color: #ffffff;
        color: #1a1a1a;
      }
      
      .services-content {
        max-width: 1200px;
        margin: auto;
        text-align: center;
      }
      
      .services-content h2 {
        font-size: 36px;
        margin-bottom: 40px;
        font-weight: 600;
        color: #1a1a1a;
      }
      
      .services-grid {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
      }
      
      .service-card {
        background-color: #f5f5f5;
        padding: 30px;
        border-radius: 10px;
        flex: 1 1 300px;
        max-width: 350px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
      }
      
      .service-card:hover {
        transform: translateY(-5px);
      }
      
      .service-card h3 {
        font-size: 22px;
        margin-bottom: 16px;
        color: #1a1a1a;
      }
      
      .service-card p {
        font-size: 16px;
        color: #444;
      }
      
  }

  @media (max-width: 480px) {
    .navbar {
      padding: 16px 20px;
    }
  
    .logo {
      font-size: 20px;
    }
  
    .menu-toggle {
      font-size: 24px;
    }
  
    .nav-links a {
      font-size: 14px;
      padding: 10px 0;
    }
  
    .hero {
      padding: 100px 20px 40px;
    }
  
    .hero-text h1 {
      font-size: 36px;
      line-height: 1.2;
    }
  
    .hero-text p {
      font-size: 16px;
    }
  
    .hero-image img {
      height: auto;
      max-height: 300px;
      border-radius: 8px;
    }
  
    .hero-content {
      gap: 30px;
    }
  }

  
  @media (max-width: 360px) {
  .navbar {
    padding: 12px 16px;
  }

  .logo {
    font-size: 18px;
  }

  .menu-toggle {
    font-size: 22px;
  }

  .nav-links a {
    font-size: 12px;
    padding: 8px 0;
  }

  .hero {
    padding: 80px 16px 30px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
  }

  .hero-content {
    gap: 20px;
  }


  /* ................. */
  .services {
    padding: 60px 20px;
  }

  .services-content h2 {
    font-size: 24px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }
}

  