@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  width: 100%;
}

.pfd-font {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.kd-font {
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  color: #333;
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
}

/* Header */
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: white;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 100;
}
@media (max-width: 767px) {
  .header-wrapper {
    padding: 15px;
  }
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
  letter-spacing: 2px;
}
.logo .logo-container {
  width: 200px;
}

.nav-link-wrapper {
  position: relative;
}
.nav-link-wrapper .burger-icon {
  border: 1px solid black;
  border-radius: 4px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 30px;
  width: 30px;
  padding: 4px;
}
@media (min-width: 767px) {
  .nav-link-wrapper .burger-icon {
    display: none;
  }
}
.nav-link-wrapper .burger-icon .line {
  background-color: #000000;
  width: 100%;
  height: 2px;
  border-radius: 4px;
}
.nav-link-wrapper .nav {
  display: flex;
  gap: 30px;
}
@media (max-width: 767px) {
  .nav-link-wrapper .nav {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav-link-wrapper .nav.show {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    flex-direction: column;
    gap: 0;
    width: 150px;
    padding: 10px;
    border-radius: 6px;
  }
}
.nav-link-wrapper .nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 16px;
}
.nav-link-wrapper .nav a:last-child {
  background: #60053b;
  color: white;
  border-radius: 4px;
}

/* Hero Section with Purple Gradient */
.hero {
  background: url("/assets/2.jpg");
  background-position: center;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 120px 40px;
  position: relative;
}

.hero h2 {
  font-size: 1.6em;
  font-weight: 400;
  opacity: 0.9;
}

.hero h1 {
  font-size: 6rem;
  font-weight: 700;
}

.hero .subtitle {
  font-size: 6rem;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1;
}

.hero p {
  max-width: 800px;
  margin: 14px auto 0px auto;
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: transparent;
  color: white;
  border: 1px solid rgb(180, 180, 180);
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.cta-button:hover {
  background: white;
  color: #8b4a8c;
}

.meeting-image {
  max-width: 800px;
  width: 100%;
  height: 500px;
  margin: 0 auto 40px;
  border-radius: 50px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.meeting-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Who We Are Section */
.who-we-are {
  background: #f2f2f2;
  padding: 80px 40px;
  text-align: center;
}

.who-we-are h2 {
  font-size: 3em;
  color: #60053b;
  margin-bottom: 20px;
  font-weight: 700;
}

.who-we-are p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #60053b;
}

/* What We Do Section */
.services-section {
  padding: 80px 40px;
  background: white;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5rem;
  color: #60053b;
  margin-bottom: 60px;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.service-item {
  text-align: center;
}

.service-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #8b4a8c;
}

.service-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #191919;
}

.service-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #191919;
  max-width: 300px;
  margin: 0 auto;
}

/* Why Choose Section with Light Purple Background */
.why-choose {
  background: url("/assets/3.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 80px 40px;
  text-align: center;
}

.why-choose h2 {
  font-size: 3rem;
  color: #60053b;
  margin-bottom: 10px;
  font-weight: 500;
}

.why-choose h1 {
  font-size: 3.8rem;
  color: #60053b;
  margin-bottom: 40px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 50px auto;
}
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .values-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.value-item {
  background: white;
  padding: 30px 16px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #8b4a8c;
}

.value-item h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #141414;
}

.value-item p {
  font-size: 1em;
  line-height: 1.5;
  color: #141414;
}

.explore-btn {
  background: #60053b;
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  display: inline-block;
  font-size: 1.2em;
}

/* About Section with Dark Background */
.about-section {
  background: url("/assets/1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: white;
  padding: 80px 0px;
  display: flex;
  justify-content: end;
  gap: 60px;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about-section {
    padding: 0;
  }
}

.about-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 400;
  opacity: 0.9;
}

.about-content h1 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.quote-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 50px 70px;
  border-radius: 50px 0 0 50px;
  -webkit-backdrop-filter: blur(18px) brightness(0.7);
          backdrop-filter: blur(18px) brightness(0.7);
  width: 50%;
}
@media (max-width: 1024px) {
  .quote-box {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .quote-box {
    border-radius: 0;
    width: 100%;
    padding: 40px 30px;
  }
}

.quote-box h2 {
  font-weight: 400;
}

.quote-box h1 {
  font-size: 3em;
  margin-bottom: 16px;
}

.desc-text {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.quote-text {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 30px;
  opacity: 0.95;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  background: #8b4a8c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-details h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 2px;
}

.author-details p {
  font-size: 1rem;
  font-weight: 400;
}

.btn {
  padding: 15px 30px;
  border: 2px solid white;
  background: transparent;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: white;
  color: #8b4a8c;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1,
  .hero .subtitle {
    font-size: 2.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.contact-us-section {
  background-color: #60053b;
  padding: 80px 40px;
}
@media (max-width: 767px) {
  .contact-us-section {
    padding: 40px 20px;
  }
}
.contact-us-section .contact-us-wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}
@media (max-width: 1024px) {
  .contact-us-section .contact-us-wrapper {
    flex-direction: column;
  }
}
.contact-us-section .contact-us-wrapper .cu-col {
  flex: 1;
}
.contact-us-section .contact-us-wrapper .cu-col.description {
  color: #ffffff;
  padding-top: 60px;
}
@media (max-width: 1024px) {
  .contact-us-section .contact-us-wrapper .cu-col.description {
    padding-top: 0px;
  }
}
.contact-us-section .contact-us-wrapper .cu-col.description h1 {
  font-weight: 400;
  font-size: 6em;
  line-height: 1;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .contact-us-section .contact-us-wrapper .cu-col.description h1 {
    font-size: 5em;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .contact-us-section .contact-us-wrapper .cu-col.description h1 {
    font-size: 3em;
  }
}
.contact-us-section .contact-us-wrapper .cu-col.description p {
  font-size: 2.6em;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .contact-us-section .contact-us-wrapper .cu-col.description p {
    font-size: 2.4em;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .contact-us-section .contact-us-wrapper .cu-col.description p {
    font-size: 2em;
  }
}

.contact-us-form {
  background-color: #ffffff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 30px 40px 40px;
  max-width: 500px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .contact-us-form {
    max-width: 100%;
  }
}
.contact-us-form .input-wrapper {
  display: flex;
  flex-direction: column;
}
.contact-us-form .input-wrapper ~ .input-wrapper {
  margin-top: 30px;
}
.contact-us-form .input-wrapper label {
  margin-bottom: 10px;
  font-size: 1.2em;
}
.contact-us-form .input-wrapper input, .contact-us-form .input-wrapper textarea {
  font-family: "Karla", sans-serif;
  background-color: #f3f3f3;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  padding: 12px;
}
.contact-us-form .btn-container {
  display: flex;
  justify-content: end;
}
.contact-us-form button {
  cursor: pointer;
  background-color: #60053b;
  border: none;
  border-radius: 16px;
  color: #ffffff;
  font-size: 1em;
  padding: 14px 30px;
  margin-top: 30px;
}

.footer-container {
  background-color: white;
  padding: 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.footer-container .logo-section {
  width: 300px;
  margin-bottom: 10px;
}

.logo-plus {
  color: #8b4d6b;
  font-weight: 400;
}

.tagline {
  font-size: 14px;
  letter-spacing: 3px;
  color: #8b4d6b;
  margin: 8px 0 0 0;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

.contact-info {
  position: absolute;
  right: 60px;
  top: 40px;
  text-align: right;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 8px;
  font-size: 14px;
  color: #2c2c2c;
}

.contact-icon {
  width: 20px;
  height: 20px;
  background-color: #8b4d6b;
  border-radius: 50%;
  margin-left: 12px;
  position: relative;
  flex-shrink: 0;
}

.contact-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.company-name {
  font-size: 16px;
  color: #000;
  margin-top: 10px;
  font-weight: 400;
}

.contact-item span {
  min-width: 124px;
}

.contact-item a {
  color: #000;
  text-decoration: none;
}

.divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(95, 10, 60, 0) 0%, rgba(96, 5, 59, 0.5) 20%, rgb(96, 5, 59) 49.5%, rgba(96, 5, 59, 0.5) 80%, rgba(95, 10, 60, 0) 100%);
  margin-top: 50px;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 30px;
    text-align: center;
  }
  .footer-container .logo-section {
    margin: 0 auto;
  }
  .contact-info {
    position: static;
    text-align: center;
    margin-top: 30px;
  }
  .contact-item {
    justify-content: center;
    margin-bottom: 12px;
  }
  .contact-icon {
    margin-left: 0;
    margin-right: 12px;
  }
  .logo-text {
    font-size: 36px;
    letter-spacing: 4px;
  }
  .divider {
    margin-top: 30px;
  }
}/*# sourceMappingURL=style.css.map */