/* ---------- General Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background-color: #fffaf9;
  line-height: 1.6;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  height: 100vh;
  background: url("https://ftdotyou.com/images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 249, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1rem 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #222;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero-content p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: #444;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}
.hero-social {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-social a {
  display: inline-flex;
  align-items: center;
  background-color:  #E1306C;
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-social a:hover {
  background-color: #E1306C;
  color: white;
}

.hero-social img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* ---------- Button Styles ---------- */
.whatsapp-btn {
  background-color: #25d366;
  color: #fff;
}

.whatsapp-btn:hover {
  background-color: #1ebc5b;
}

.call-btn {
  background-color: #ffb6b6;
  color: #222;
}

.call-btn:hover {
  background-color: #ff9a9a;
}

.insta-btn {
  background-color: #f77737;
  color: #fff;
}

.insta-btn:hover {
  background-color: #e0672e;
}

/* ---------- About Section ---------- */
.about {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #fff;
}

.about h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #222;
}

.about p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
}

/* ---------- Footer ---------- */
footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background-color: #fffaf9;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #f1e5e3;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hero {
    height: 90vh;
    background-position: center top;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 80%;
    margin: 0 auto;
  }

  .about p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
  
}
/* Hero Section */
/* ========== HERO (image left on desktop, stacked on mobile) ========== */
/* Hero layout fix */
/* ===== HERO SECTION STABLE LAYOUT ===== */

.hero {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* LEFT: Image section */
.hero-media {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-img {
  width: 100%;
  height: auto;               /* ✅ allows full image to be visible */
  max-height: 100vh;          /* prevents it from exceeding screen */
  display: block;
  object-fit: contain;        /* ✅ keeps full image visible, no crop */
  object-position: center top;/* slight push down for face visibility */
}

/* optional gentle zoom-in on hover (looks premium) */
.hero-media:hover .hero-img {
  transform: scale(1.05);
}

/* on smaller devices, make image shorter */

/* Right text */
.hero-content {
  flex: 1 1 50%;
  padding: 40px;
  box-sizing: border-box;
  color: #222;
  background-color: #fff;
}

/* Responsive stacking on mobile */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
  }
  .hero-content {
    width: 100%;
    text-align: center;
    padding: 7px;
    background: linear-gradient(to right, #fff 90%, #fdf6f0);
  }

  .hero-media {
    width: 100%;
    text-align: center;
  }

  .hero-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .hero-content {
    padding: 24px;
    text-align: center;
    background: linear-gradient(to right, #fff 90%, #f8f8f8);
  }
}

/* subtle overlay (makes CTA readable if over image) */
.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.08));
  pointer-events: none;
}

/* RIGHT: content */

.hero-content h1 {
  font-family: var(--font-family-serif, "Playfair Display", serif);
  font-size: 2.8rem;
  margin: 0 0 10px;
  color: var(--primary-color, #111);
  line-height: 1.05;
  background: linear-gradient(to right, #fff 90%, #f8f8f8);
}




.lead {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: var(--text-color, #333);
  line-height: 1.6;
}

/* CTA Buttons */


.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem; /* space between buttons */
  margin-top: 1.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 28px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.16); }

.btn-cta.whatsapp { background: #25D366; }
.btn-cta.call     { background: #0069ff; }
.btn-cta.services {
  background: linear-gradient(135deg, #d4a373, #c59d5f);
  color: #fff;
  box-shadow: 0 6px 14px rgba(197, 157, 95, 0.45);
  border: none;
}

/* Hover effect (desktop) */
.btn-cta.services:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(197, 157, 95, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 28px;
  background: transparent;
  border: 2px solid var(--primary-color, #000);
  color: var(--primary-color, #000);
  text-decoration: none;
  font-weight: 600;
}

/* small helper text */
.mini {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    padding: 28px 18px;
    gap: 20px;
  }

  .hero-media {
    width: 100%;
    flex: 0 0 auto;
    min-height: 320px;
    border-radius: 10px;
  }

  .hero-content {
    width: 100%;
    text-align: center;
    padding: 7px;
    background: linear-gradient(to right, #fff 90%, #fdf6f0);
  }

  .hero-content h1 { font-size: 3rem;  }
  .lead { font-size: 3rem; }
 


@media (max-width: 600px) {
  .hero-content p { line-height: 1.8; }
}

}
@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply animation to hero text */
.hero-content h1,
.hero-content p,
.hero-content .cta-buttons {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
}

/* Add delays for a sequential reveal */
.hero-content h1 {
  animation-delay: 0.2s;
}

.hero-content p {
  animation-delay: 0.5s;
}

.hero-content .cta-buttons {
  animation-delay: 0.8s;
}
.logo-container {
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.logo {
  width: 120px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 1;
}

@media (max-width: 768px) {
  .logo-container {
    top: 10px;
    right: 20px;
  }

  .logo {
    width: 90px;
  }
}
.about-ftyou {
  padding: 80px 20px;
  background-color: #fffdf9;
  color: #333;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c59d5f;
  margin-top: 10px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2::after {
    margin: 10px auto;
  }
}

.founders-single {
  text-align: center;
  margin-top: 50px;
  position: relative;
}

.founder-photo-wide {
  width: 340px;
  max-width: 85%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  filter: brightness(1.05) contrast(1.05);
}

.founder-photo-wide:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 28px rgba(0,0,0,0.2);
  filter: brightness(1.1) contrast(1.08);
}

.founders-single::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

@media (max-width: 768px) {
  .founder-photo-wide {
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
  }
}


/* --- Scroll Animation for About Section --- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-text,
.about-image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-text.visible,
.about-image.visible {
  animation: fadeInUp 0.8s ease forwards;
}
/* --- Subtle slow zoom effect for embroidery image --- */
.zoom-slow {
  overflow: hidden;
  position: relative;
}

.zoom-slow {
  animation: fadeInUp 0.8s ease forwards, slowZoom 12s ease-in-out infinite alternate;
  animation-delay: 0s, 0.8s; /* fade first, zoom later */
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
/* -----------------------------
   ABOUT FT.YOU SECTION (Updated)
--------------------------------*/
.about-ftyou {
  padding: 80px 20px;
  background-color: #fffdf9;
  color: #333;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c59d5f;
  margin-top: 10px;
}

.about-text p {
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

/* --- Two Image Layout --- */
.about-gallery {
  display: flex;
  gap: 20px;
  flex: 1 1 400px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.img-frame {
  width: 48%;
  height: 320px; /* Set a consistent image height */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  background-color: #f8f8f8;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
}

/* --- Slow zoom effect for embroidery --- */
.zoom-slow img {
  animation: slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-content {
      .img-frame {
    width: 90%;
    height: 240px; /* smaller for phones */
  }
    
  }

  .about-text {
    text-align: center;
  }

  .about-gallery {
    flex-direction: column;
  }

  .img-frame {
    width: 90%;
  }

  .about-text h2::after {
    margin: 10px auto;
  }
}
/* === OUR TEAM BANNER SECTION === */
/* --- Border & Framing for Our Team Banner --- */
.our-team-banner {
  position: relative;
  text-align: center;
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  border: 5px solid #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.team-image {
  width: 100%;
  height: 350px; /* reduced height */
  object-fit: cover;
  object-position: center top; /* adjust to show faces properly */
  display: block;
  border-radius: 15px;
}

.team-overlay {
  position: absolute;
  bottom: 20px;              /* moved text slightly lower so faces stay visible */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.35); /* transparent background */
  backdrop-filter: blur(4px);                   /* subtle blur behind text */
  color: #000;
  padding: 15px 25px;
  border-radius: 10px;
  text-align: center;
  width: auto;
  max-width: 80%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.team-overlay h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
  font-weight: 600;
}

.team-overlay p {
  font-size: 1rem;
  line-height: 1.5;
}


/* Mobile responsive tweak */
@media (max-width: 768px) {
  .our-team-banner {
    width: 95%;
    margin: 20px auto;
  }

  .team-image {
    height: 250px; /* smaller height for mobile */
    object-position: center top;
  }

  .team-overlay {
    width: 90%;
    padding: 15px;
  }

  .team-overlay h3 {
    font-size: 1.3rem;
  }

  .team-overlay p {
    font-size: 0.95rem;
  }
}
/* --- Footer Styles --- */
/* --- Footer Styles --- */
/* --- Footer Styles --- */
.site-footer {
  background-color: #f7f7f7;
  color: #333;
  padding: 70px 20px 50px;
  text-align: center;
  border-top: 2px solid #d4a373;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 20px;
}

.footer-about {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #444;
  max-width: 600px;
}

.footer-actions {
  margin-bottom: 25px;
}

.cta-footer {
  display: inline-block;
  background-color: #b5651d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-footer:hover {
  background-color: #8e4712;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b5651d;
}

.footer-socials {
  margin: 25px 0;
}

.footer-socials a {
  color: #333;
  font-size: 22px;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #b5651d;
  transform: scale(1.1);
}

.footer-credit {
  font-size: 13px;
  color: #777;
  margin-top: 15px;
}

/* --- Responsive Footer Adjustments --- */
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 20px;
  }
  .footer-about {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .cta-footer {
    padding: 10px 22px;
    font-size: 14px;
  }
  .footer-socials a {
    font-size: 20px;
    margin: 0 8px;
  }
}
.cta-footer {
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  letter-spacing: 0.3px;
}
.hero-btn.whatsapp {
  background: #25D366;
  color: white;
  border-radius: 30px;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-btn.whatsapp:hover {
  background: #1da851;
  transform: scale(1.05);
}
.hero-btn.whatsapp i {
  font-size: 18px;
}

/* -----------------------------
   NEW SERVICES SECTION STYLES (UPDATED FOR CARD LAYOUT)
--------------------------------*/
.services-ftyou {
  padding: 80px 20px;
  background-color: #f8f8f8;
  text-align: center;
  border-top: 1px solid #eee;
}

.services-container {
  max-width: 1200px; /* Increased max width slightly for grid */
  margin: 0 auto;
}

.services-ftyou h2 {
  font-size: 2.5rem; /* Slightly larger title */
  color: #222;
  margin-bottom: 10px;
  position: relative;
}

.services-ftyou h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c59d5f; /* Gold accent color */
  margin: 10px auto 25px;
}

.services-lead {
  font-size: 1.15rem; /* Slightly larger lead-in */
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive 3-column grid */
  gap: 30px;
  margin-bottom: 50px;
  padding: 0 20px;
}

/* Service Card Styles */
.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid #c59d5f; /* Gold underline for emphasis */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #b5651d; /* Use the accent color for titles */
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.services-cta {
  margin-top: 30px;
}

/* Responsive for Services Section */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr; /* Stack on small screens */
    gap: 20px;
  }
  
  .services-ftyou h2 {
    font-size: 2rem;
  }
}/* ===== FORCE MOBILE HERO IMAGE FIX ===== */
@media (max-width: 768px) {

  .hero {
    height: auto !important;
    min-height: 0 !important;
  }

  .hero-inner {
    flex-direction: column !important;
    padding: 0 !important;
  }

  .hero-media {
    width: 100% !important;
    height: auto !important;
    max-height: 55vh !important;
    overflow: hidden !important;
  }

  .hero-media img,
  .hero-img {
    width: 100% !important;
    height: auto !important;
    max-height: 55vh !important;
    object-fit: contain !important;
    object-position: center top !important;
    display: block !important;
  }

  .hero-content {
    width: 100% !important;
    padding: 16px !important;
    text-align: center !important;
  }
}
/* ===== MOBILE HERO UI POLISH ===== */
@media (max-width: 768px) {

  /* --- HERO TEXT --- */
  .hero-content h1 {
    font-size: 2.1rem !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .hero-content .lead {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
    color: #444 !important;
  }

  .mini {
    font-size: 0.85rem !important;
    margin-top: 12px !important;
  }

  /* --- CTA BUTTON LAYOUT --- */
  .hero-ctas {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .hero-ctas .btn-cta {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    border-radius: 14px !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
  }

  /* WhatsApp = primary */
  .btn-cta.whatsapp {
    background: linear-gradient(135deg, #25D366, #1fbf5b) !important;
  }

  /* Call = secondary */
  .btn-cta.call {
    background: linear-gradient(135deg, #0069ff, #0053cc) !important;
  }

  /* Services = subtle */
.btn-cta.services {
  background: linear-gradient(135deg, #d4a373, #c59d5f) !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(197, 157, 95, 0.45) !important;
  border: none !important;
}
.btn-cta.services:active {
  transform: scale(0.97);
}

  /* Icons spacing */
  .btn-cta span,
  .btn-cta i {
    margin-right: 8px;
  }

  /* --- SOCIAL HANDLE --- */
  .hero-social {
    margin-top: 18px !important;
  }

  .hero-social a {
    font-size: 13px !important;
    padding: 7px 14px !important;
  }
}

/* ===== ABOUT FT.YOU – MOBILE STACK & TEXT ALIGN FIX ===== */
@media (max-width: 768px) {

  .about-ftyou {
    padding: 48px 16px;
  }

  .about-content {
    flex-direction: column;
    gap: 24px;
  }

  /* --- TEXT ALIGNMENT --- */
  .about-text {
    text-align: center;
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
    padding: 0 4px;
  }

  /* --- FORCE IMAGES TO STACK VERTICALLY --- */
  .about-gallery {
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .img-frame {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }

  .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

