/* ===== Global ===== */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; color: #000; background: #fff; line-height:1.6; }
h1,h2,h3,h4 { color:#294952; }
a { text-decoration:none; }

/* ===== Navbar ===== */
.navbar {
  display: flex; justify-content: space-between; align-items:center;
  background:#294952; padding:1rem 2rem; position:sticky; top:0; z-index:999;
}
.navbar .logo { color:#fff; font-size:1.5rem; font-weight:bold; }
.nav-links { display:flex; gap:1.5rem; list-style:none; }
.nav-links li a { color:#fff; font-weight:500; transition:0.3s; }
.nav-links li a:hover { color:#418283; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; }
.hamburger span { width:25px; height:3px; background:#fff; border-radius:3px; transition:0.3s; }

/* ===== Hero ===== */
.hero { height:100vh; background:#fff; color:#294952; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; padding:2rem; }
.hero h1 { font-size:3rem; margin-bottom:1rem; }
.hero p { font-size:1.2rem; margin-bottom:2rem; color:#000; }
.hero .btn { background:#418283; color:#fff; padding:0.8rem 1.6rem; border:none; border-radius:5px; cursor:pointer; transition:0.3s; }
.hero .btn:hover { background:#294952; }

/* ===== About ===== */
.about { background:#fff; color:#000; padding:4rem 2rem; text-align:center; }
.about h2 { margin-bottom:2rem; }
.about p { max-width:800px; margin:0 auto; line-height:1.6; }

/* ===== Services ===== */
.services { background:#f8f8f8; padding:4rem 2rem; text-align:center; }
.services h2 { margin-bottom:2rem; }
.services ul { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:2rem; list-style:none; }
.services li { background:#fff; padding:1.5rem; border-radius:8px; box-shadow:0 2px 8px rgba(0,0,0,0.1); transition:0.3s; }
.services li:hover { transform:translateY(-5px); border:2px solid #418283; }

/* ===== Service Card Icons Styling ===== */
.services ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.08rem;
}
.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #eaf7f6;
  border-radius: 50%;
  color: #294952;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(65,130,131,0.08);
  margin-right: 0.5rem;
}

/* ===== Projects ===== */
.projects-section {
  background: #f8f8f8;
  padding: 4rem 2rem;
  text-align: center;
}
.projects-section h2 {
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
  color: #294952;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.project-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(41,73,82,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  aspect-ratio: 4 / 5;
  min-width: 0;
  min-height: 0;
}
.project-card:hover {
  box-shadow: 0 8px 32px rgba(41,73,82,0.13);
  transform: translateY(-6px) scale(1.03);
}
.project-img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  flex-shrink: 0;
}
.project-info {
  padding: 1.3rem 1.1rem 1.5rem 1.1rem;
  text-align: left;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.project-info h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
}
.project-info p {
  font-size: 0.98rem;
  color: #58606a;
}
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .project-card {
    aspect-ratio: 4 / 5;
    min-width: 0;
    min-height: 0;
    height: auto;
    max-width: 100%;
  }
  .project-img {
    height: 60%;
    min-height: 80px;
    max-height: 120px;
  }
}

/* ===== Why Us ===== */
/* Why Choose – 2 columns */
.why-choose { background:#fff; padding:64px 16px; }
.wc-container{
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:start;
}

/* Left column */
.wc-left h2{ color:#222; font-size:2rem; margin:0 0 .5rem; }
.wc-left p{ color:#58606a; margin:0 0 1.25rem; line-height:1.65; }

.wc-list{ display:flex; flex-direction:column; gap:14px; }
.wc-item{
  display:flex; align-items:flex-start; gap:14px;
  width:100%; text-align:left; cursor:pointer;
  background:#f6f8f9; border:1px solid #edf1f2; border-left:4px solid transparent;
  padding:18px 20px; border-radius:12px; transition:transform .25s, background .25s, border-color .25s, color .25s;
}
.wc-item:hover{ transform:translateX(4px); }
.wc-icon{ color:#294952; font-size:20px; line-height:1; margin-top:2px; }
.wc-copy h3{ margin:0; font-size:1.125rem; color:#0f1720; }
.wc-copy p{ margin:.35rem 0 0; color:#5d6670; font-size:.95rem; }

/* Active highlight */
.wc-item.active{
  background:#294952; border-color:#294952; border-left-color:#418283;
  box-shadow:0 10px 24px rgba(41,73,82,.18);
}
.wc-item.active .wc-icon,
.wc-item.active .wc-copy h3,
.wc-item.active .wc-copy p{ color:#fff; }

/* Right column image */
.wc-right{ position:relative; }
.wc-right img{
  width:100%; display:block; border-radius:16px;
  box-shadow:0 12px 28px rgba(0,0,0,.08);
  object-fit:cover; aspect-ratio: 4 / 3;
}

/* Responsive */
@media (max-width: 992px){
  .wc-container{ grid-template-columns:1fr; gap:28px; }
  .wc-right{ order:2; }
  .wc-left{ order:1; }
}

/* ===== Custom Navbar & Hero Styling for Ant Hill (Image-based) ===== */

/* Navbar */
.styled-navbar {
  background: #fff;
  box-shadow: 0 2px 16px rgba(41,73,82,0.07);
  padding: 1.2rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Montserrat', Arial, sans-serif;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.navbar-logo {
  width: 48px;
  height: 48px;
  background: #eaf7f6;
  box-shadow: 0 2px 8px rgba(65,130,131,0.08);
}
.navbar-brand {
  font-size: 1.45rem;
  font-weight: 700;
  color: #294952;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.navbar-brand-sub {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #418283;
  letter-spacing: 2px;
  margin-top: -2px;
}
.styled-nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  margin: 0 2.5rem 0 0;
}
.styled-nav-links li a {
  color: #294952;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.styled-nav-links li a:hover, .styled-nav-links li a:focus {
  background: #eaf7f6;
  color: #418283;
}
.learn-now-btn {
  background: #418283;
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 8px;
  padding: 0.7rem 2.1rem;
  box-shadow: 0 2px 8px rgba(65,130,131,0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  margin-left: 1.5rem;
}
.learn-now-btn:hover, .learn-now-btn:focus {
  background: #294952;
  color: #fff;
}

/* ===== Anthill Hero Custom Style ===== */
.anthill-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 80vh;
  background: #fff;
  padding: 3.5rem 7vw 2.5rem 7vw;
  overflow: hidden;
}
.anthill-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #222;
}
.anthill-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 0.7rem;
  line-height: 1.1;
  text-align: left;
}
.anthill-hero .hero-desc {
  color: #58606a;
  font-size: 1.25rem;
  margin-bottom: 2.1rem;
  line-height: 1.6;
  text-align: left;
}
.anthill-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 0.5rem;
}
.anthill-hero .hero-btn {
  min-width: 200px;
  font-size: 1.25rem;
  padding: 1rem 0;
  text-align: center;
}
.anthill-hero .hero-btn-alt {
  color: #2b8c87;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 0;
  min-width: 160px;
  text-align: center;
}
.anthill-hero .hero-image-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  max-width: none;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.anthill-hero .hero-image-bg img {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  min-width: 700px;
  object-fit: cover;
  display: block;
}

/* ===== Responsive Hero Section for All Devices ===== */
@media (max-width: 1200px) {
  .anthill-hero {
    padding: 2rem 2vw;
  }
}
@media (max-width: 992px) {
  .anthill-hero {
    grid-template-columns: 1fr;
    padding: 2rem 2vw;
    min-height: 60vh;
  }
  .anthill-hero .hero-content {
    justify-self: center;
    align-items: center;
    text-align: center;
    max-width: 100%;
  }
  .anthill-hero .hero-title,
  .anthill-hero .hero-desc {
    text-align: center;
  }
  .anthill-hero .hero-actions {
    justify-content: center;
  }
  .anthill-hero .hero-image-bg {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 2rem;
    justify-content: center;
  }
  .anthill-hero .hero-image-bg img {
    width: 100%;
    height: auto;
    min-width: 0;
    max-width: 100vw;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .anthill-hero {
    padding: 1rem 0.5rem;
    min-height: 50vh;
  }
  .anthill-hero .hero-title {
    font-size: 1.5rem;
  }
  .anthill-hero .hero-btn,
  .anthill-hero .hero-btn-alt {
    min-width: 100px;
    font-size: 0.95rem;
    padding: 0.5rem 0;
  }
  .anthill-hero .hero-image-bg img {
    min-width: 0;
    width: 100vw;
    height: 30vh;
    object-fit: contain;
  }
}
@media (max-width: 480px) {
  .anthill-hero {
    padding: 0.5rem 0.2rem;
    min-height: 40vh;
  }
  .anthill-hero .hero-title {
    font-size: 1.1rem;
  }
  .anthill-hero .hero-desc {
    font-size: 0.9rem;
  }
  .anthill-hero .hero-btn,
  .anthill-hero .hero-btn-alt {
    min-width: 80px;
    font-size: 0.8rem;
    padding: 0.4rem 0;
  }
}

/* ===== Counters ===== */
.counters-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.counter-card {
  flex: 1 1 180px;
  margin: 20px;
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #294952; /* from your brand palette */
  margin-bottom: 10px;
}


/* ===== Testimonials ===== */
.testimonials { background:#fff; padding:4rem 2rem; text-align:center; }
.testimonials h2 { margin-bottom:2rem; }

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  min-height: 180px;
}
.testimonial-item {
  display: none;
  font-size: 1.15rem;
  color: #294952;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  margin: 0 auto;
  min-height: 120px;
  transition: opacity 0.3s;
}
.testimonial-item.active {
  display: block;
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-item blockquote {
  font-style: italic;
  margin-bottom: 1rem;
  color: #294952;
}
.testimonial-item cite {
  display: block;
  font-size: 1rem;
  color: #418283;
  margin-top: 0.5rem;
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #294952;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
  opacity: 0.85;
}
.testimonial-arrow.left { left: -48px; }
.testimonial-arrow.right { right: -48px; }
.testimonial-arrow:hover { background: #418283; }
@media (max-width: 600px) {
  .testimonial-carousel {
    max-width: 98vw;
    min-height: 140px;
  }
  .testimonial-arrow.left { left: 0; }
  .testimonial-arrow.right { right: 0; }
  .testimonial-item {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    font-size: 1rem;
  }
}

/* ===== Footer ===== */
.footer {
  background: #294952; /* Changed to match logo color */
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 2px solid #00c4cc;
  display: inline-block;
  padding-bottom: 5px;
}

.footer p, .footer ul, .footer form {
  font-size: 14px;
  margin: 0;
  line-height: 1.8;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #00c4cc;
}

/* Newsletter */
.footer-col form {
  display: flex;
  margin-top: 10px;
}

.footer-col form input {
  padding: 8px;
  border: none;
  outline: none;
  width: 70%;
  border-radius: 4px 0 0 4px;
}

.footer-col form button {
  background: #00c4cc;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  margin-bottom: 10px;
}

.footer-bottom .socials {
  display: flex;
  gap: 10px;
}

.footer-bottom .socials a {
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}

.footer-bottom .socials a:hover {
  color: #00c4cc;
}
.footer-logo {
  width: 120px;   /* adjust size */
  margin-bottom: 15px;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col form {
    justify-content: center;
  }
}

/* ===== Mobile Navigation Menu Button and Dropdown ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  margin-left: 1rem;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: #294952;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  .styled-nav-links {
    position: absolute;
    top: 70px;
    right: 2vw;
    background: #fff !important;
    box-shadow: 0 8px 32px rgba(41,73,82,0.12);
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 1.2rem 0.5rem;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    gap: 0.5rem;
  }
  .styled-nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    background: #fff !important;
  }
  .styled-nav-links li {
    width: 100%;
  }
  .styled-nav-links li a {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    color: #294952;
    border-radius: 6px;
    font-size: 1.1rem;
  }
  .styled-nav-links li a:hover {
    background: #eaf7f6;
    color: #418283;
  }
}

/* ===== Responsive Services Grid: 4 per row on desktop, 2 per row on tablet, 1 per row on mobile ===== */
.services ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 992px) {
  .services ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: unset;
    min-height: 220px;
  }
}

/* ===== Service Card Aspect Ratio 5:4 ===== */
.services ul li {
  aspect-ratio: 5 / 4;
  min-height: 0;
  min-width: 0;
  box-sizing: border-box;
}

/* ===== Modern Construction Service Cards: Consistent Size, Responsive, Aligned Text ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(41,73,82,0.07);
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  aspect-ratio: 5 / 4;
  min-width: 0;
  min-height: 0;
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
  justify-content: flex-start;
}
.service-card:hover {
  background: #294952;
  color: #fff;
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
  color: #fff;
}
.service-card:hover .service-icon {
  background: #fff;
  color: #294952;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1.2rem;
  margin-top: 0.2rem;
  box-shadow: 0 2px 8px rgba(65,130,131,0.08);
}
.service-icon-yellow { background: #fffbe6; color: #f7c948; }
.service-icon-blue { background: #e6f0ff; color: #3b82f6; }
.service-icon-green { background: #e6fff6; color: #10b981; }
.service-icon-black { background: #f2f2f2; color: #222; }
.service-icon-orange { background: #fff6e6; color: #f59e42; }
.service-icon-red { background: #ffeaea; color: #e74c3c; }
.service-icon-teal { background: #e6f7f7; color: #418283; }
.service-icon-brown { background: #f5ede6; color: #a0522d; }
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222;
  text-align: left;
}
.service-card p {
  font-size: 0.98rem;
  color: #58606a;
  margin-bottom: 1.5rem;
  flex: 1 1 auto;
  text-align: left;
}
.service-link {
  font-weight: 600;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  text-align: left;
}
.service-link span {
  font-size: 1.1em;
  margin-left: 0.2em;
}
.service-link:hover {
  color: #418283;
}
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .service-card {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: unset;
    min-height: 220px;
  }
}

/* ===== About Vision & History Section (Image-based) ===== */
.about-vision-history {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.about-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.about-row-reverse {
  flex-direction: row-reverse;
}
.about-col {
  flex: 1 1 0;
  min-width: 320px;
}
.about-text h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #222;
}
.about-text p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.about-list i {
  color: #418283;
  font-size: 1.1rem;
}
.about-imgs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
/* About Section Main Image Only */
.about-img-main {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  margin: 0 auto 0 auto;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 12px rgba(41,73,82,0.13);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
}

/* Remove overlay image styles */
.about-img-overlay { display: none !important; }

@media (max-width: 1100px) {
  .about-col.about-imgs {
    max-width: 100%;
    flex: 1 1 100%;
    justify-content: center;
  }
  .about-img-main {
    width: 260px;
    height: 160px;
  }
}
@media (max-width: 900px) {
  .about-row, .about-row-reverse {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .about-col.about-imgs {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .about-img-main {
    width: 100%;
    max-width: 260px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
  }
  .about-img-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
}
@media (max-width: 600px) {
  .about-vision-history {
    padding: 1rem 0.2rem;
  }
  .about-row, .about-row-reverse {
    flex-direction: column !important;
    gap: 1.2rem;
    align-items: stretch;
  }
  .about-col.about-imgs {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    flex: 1 1 100%;
    margin-bottom: 1.2rem;
  }
  .about-img-main {
    width: 100%;
    max-width: 220px;
    height: 180px;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    aspect-ratio: 4 / 5;
  }
}
