@import url('https://fonts.googleapis.com/css2?family=Prata&family=Manrope:wght@400;500;600&display=swap');

/* DIVIDER */
.contact-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #bbb, transparent);
  margin: 6rem auto 5rem;
  border-radius: 2px;
  
}

/* CONTACT SECTION */
.contact-section {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 5rem;
  max-width: 1200px;
  margin: auto;
  padding: 6rem 2rem 9rem;
  font-family: 'Manrope', sans-serif;
  color: #222;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin-top: -4rem;
}

/* LEFT SIDE */
.contact-left {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left h2 {
  font-family: 'Prata', serif;
  font-size: 3rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #111;
}
.contact-left h2 span {
  color: #007bff;
}
.contact-left p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* CONTACT BUTTONS */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: #f7f9fc;
  padding: 1.2rem 1.6rem;
  border-radius: 16px;
  text-decoration: none;
  color: #111;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.contact-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.contact-item span {
  font-size: 1rem;
  font-weight: 500;
}

/* RIGHT SIDE IMAGE */
.contact-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.contact-right img {
  width: 100%;
  height: 100%;
  max-height: 700px;
  border-radius: 24px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.contact-right img:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 40px 100px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .contact-section {
    flex-direction: column-reverse;
    text-align: center;
    padding: 4rem 1.5rem 6rem;
  }
  .contact-left h2 { font-size: 2.4rem; }
  .contact-left p { font-size: 1rem; max-width: 100%; }
  .contact-links { align-items: center; }
  .contact-item { justify-content: center; }
  .contact-right img { max-width: 90%; height: auto; transform: none; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
}
@import url('https://fonts.googleapis.com/css2?family=Prata&family=Manrope:wght@400;500;600&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.about-section {
  background: #fff;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-text-size-adjust: 100%;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  gap: 3rem;
  -webkit-font-smoothing: antialiased;
}

/* LEFT SIDE */
.about-left { flex: 1; }

.mini-heading {
  font-family: 'Manrope', sans-serif;
  color: #007bff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
.mini-heading::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #007bff;
  border-radius: 3px;
}

.about-heading {
  font-family: 'Prata', serif;
  font-size: 3rem;
  color: #111;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: subpixel-antialiased;
}
.about-heading span {
  color: #007bff;
  display: inline-block;
  transform: rotate(-1deg);
}

.about-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
  -webkit-font-smoothing: antialiased;
}

/* POINTS */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
.point:hover {
  transform: translateX(8px);
  -webkit-transform: translateX(8px);
}
.point img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.1));
  -webkit-filter: drop-shadow(0 3px 8px rgba(0,0,0,0.1));
}
.point h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  color: #111;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.point p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

/* RIGHT SIDE */
.about-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.about-right img {
  width: 460px;
  height: 700px;
  border-radius: 22px;
  object-fit: contain;
  transform: rotate(-3deg);
  -webkit-transform: rotate(-3deg);
  box-shadow: 0 20px 55px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0 20px 55px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}
.about-right img:hover {
  transform: rotate(0deg) scale(1.03);
  -webkit-transform: rotate(0deg) scale(1.03);
  box-shadow: 0 30px 75px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0 30px 75px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .about-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-heading { font-size: 2.3rem; }
  .about-right img {
    width: 90%;
    height: auto;
    transform: none;
    -webkit-transform: none;
  }
  .about-points { align-items: center; }
  .point { flex-direction: column; }
}
@import url('https://fonts.googleapis.com/css2?family=Prata&family=Manrope:wght@400;500;600&display=swap');

.about-section {
  background: #fff;
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -13rem;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  gap: 3rem;
}

/* LEFT SIDE */
.about-left {
  flex: 1;
}

.mini-heading {
  font-family: 'Manrope', sans-serif;
  color: #007bff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
}
.mini-heading::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #007bff;
  border-radius: 3px;
}

.about-heading {
  font-family: 'Prata', serif;
  font-size: 3rem;
  color: #111;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-heading span {
  color: #007bff;
  display: inline-block;
  transform: rotate(-1deg);
}

.about-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* POINTS */
.about-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.point {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  transition: 0.3s ease;
}
.point:hover { transform: translateX(8px); }
.point img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.1));
}
.point h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  color: #111;
  margin-bottom: 0.2rem;
}
.point p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

/* RIGHT SIDE */
.about-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}
.about-right img {
  width: 460px;
  height: 700px;
  border-radius: 22px;
  object-fit: cover;
  transform: rotate(-3deg);
  box-shadow: 0 20px 55px rgba(0,0,0,0.1);
  transition: all 0.5s ease;
}
.about-right img:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 30px 75px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 950px) {
  .about-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-heading { font-size: 2.3rem; }
  .about-right img { width: 90%; height: auto; transform: none; }
  .about-points { align-items: center; }
  .point { flex-direction: column; }
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;500;600&display=swap');

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9rem 1rem;
  text-align: center;
  background: #fff;
  margin-top: -7rem;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* ✨ Tagline */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.4rem;
  font-weight: 700;
  color: #0b0b0b;
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #000, #222, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeSlide 1.2s ease both;
}

/* ✨ Description */
.hero-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  color: #666;
  font-weight: 500;
  margin-top: 1.3rem;
  line-height: 1.7;
  letter-spacing: 0.35px;
  opacity: 0.9;
  animation: fadeIn 1.6s ease both;
}

/* 🖼️ Image Layout */
.hero-top-images {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 4.5rem;
  gap: 3rem;
  position: relative;
}

/* Ambient center glow */
.hero-top-images::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(0,102,255,0.07), transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

/* Image Styling */
.hero-top-images img {
  width: 560px;
  height: 380px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.1);
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.3, 1), box-shadow 0.6s ease, filter 0.6s ease;
  filter: brightness(0.97) contrast(1.02) saturate(1.05);
  position: relative;
  z-index: 1;
}

/* 🎨 Artistic natural tilt */
.img-left {
  transform: rotate(-4deg) translateY(15px);
}
.img-right {
  transform: rotate(4deg) translateY(-15px);
}

/* Hover — smooth straighten & glow lift */
.hero-top-images img:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.05);
  box-shadow: 0 25px 70px rgba(0,0,0,0.18);
  filter: brightness(1.07) saturate(1.1);
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 5rem 0 1rem;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeIn 2s ease both;
}

.hero-divider span {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #ccc, transparent);
  border-radius: 3px;
}

/* ✨ Animations */
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 📱 Responsive */
@media (max-width: 900px) {
  .hero-title { font-size: 2.6rem; line-height: 1.3; }
  .hero-desc { font-size: 1.1rem; }
  .hero-top-images {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .hero-top-images img {
    width: 90%;
    max-width: 500px;
    height: auto;
    transform: none;
  }
}
