@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap');
html {
  scroll-behavior:smooth;
}
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e0e;
    color: #fff;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #000;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cmpName h4 {
    margin: 0;
    font-family: 'Poppins', serif;
    font-style: italic;
    font-size: 30px;
    font-weight: 600;
    color: #d4af37;
}
.cmpName h4::first-letter{
  font-size: 40px;
}
.navOptions {
    display: flex;
    gap: 30px;
}

.navOptions a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navOptions a:hover {
    color: #d4af37;
}
.tagLine {
    text-align: center;
    margin-top: 80px;
    padding: 0 20px;
}

.tagLine h2 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.tagLine p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: #ccc;
}
.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 3rem;
}

.btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #d4af37;
    color: #000;
    border: none;
}

.btn.primary:hover {
    background-color: #b8962e;
}

.btn.secondary {
    border: 1.5px solid #fff;
    color: #fff;
    background-color: transparent;
}

.btn.secondary:hover {
    background-color: #fff;
    color: #000;
}
.about-us {
    padding: 80px 40px;
    background-color: #111;
    text-align: center;
}

.about-us h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.2);
}

.service-card i {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: #ccc;
}
.why-choose-us {
    padding: 80px 40px;
    background-color: #0d0d0d;
    text-align: center;
}

.why-choose-us h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card i {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 15px;
}

.reason-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.reason-card p {
    color: #ccc;
    font-size: 14px;
}
.footer {
    background-color: #000;
    padding: 60px 40px 20px;
    color: #ccc;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 30px;
}

.footer-left h4 {
    color: #d4af37;
    font-family: 'Poppins', serif;
    font-size: 28px;
    margin-bottom: 10px;
}
.footer-left h4::first-letter{
  font-size: 36px;
}

.footer-right p {
    margin: 8px 0;
}

.footer-right i {
    margin-right: 8px;
    color: #d4af37;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #ccc;
    margin-right: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #222;
    padding-top: 15px;
    color: #999;
}
.contact-section {
  background-color: #0e0e0e;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #111;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
}

.contact-container h3 {
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  min-width: 48%;
  padding: 14px;
  font-size: 16px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.contact-form textarea {
  width: 100%;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  outline: none;
}

.contact-form button {
  align-self: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 16px;
  background-color: #d4af37;
  color: #000;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #b8962e;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    min-width: 100%;
  }

  .contact-form button {
    width: 100%;
    text-align: center;
  }
}

/* ------------------- Responsive Design ------------------- */

/* For tablets and below (≤ 991px) */
@media (max-width: 991px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
    }

    .navOptions {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px;
        margin-top: 10px;
    }

    .tagLine h2 {
        font-size: 36px;
    }

    .tagLine p {
        font-size: 16px;
    }

    .cta-buttons {
        padding: 2rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* For mobile devices (≤ 768px) */
@media (max-width: 768px) {
    .cmpName h4 {
        font-size: 24px;
    }

    .cmpName h4::first-letter {
        font-size: 32px;
    }

    .navOptions a {
        font-size: 15px;
    }

    .tagLine h2 {
        font-size: 28px;
    }

    .tagLine p {
        font-size: 15px;
        line-height: 1.5;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 1.5rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .about-us h3,
    .why-choose-us h3 {
        font-size: 28px;
    }

    .about-intro {
        font-size: 16px;
        padding: 0 10px;
    }

    .footer-left h4 {
        font-size: 22px;
    }

    .footer-left h4::first-letter {
        font-size: 28px;
    }

    .footer-right p {
        font-size: 14px;
    }

    .social-icons a {
        font-size: 18px;
    }

    .footer-content {
        gap: 20px;
    }
}

/* For small mobile (≤ 480px) */
@media (max-width: 480px) {
    .header {
        padding: 15px 20px;
    }

    .tagLine h2 {
        font-size: 24px;
    }

    .tagLine p {
        font-size: 14px;
    }

    .btn {
        font-size: 15px;
        padding: 10px 18px;
    }

    .services-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 40px 20px 15px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}
a { 
    text-decoration: none;
}