/* ================= ABOUT US BANNER ================= */

.aboutus-banner {
  position: relative;
  height: 60vh;
  background: url("../images/abouttopbanner.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DARK OVERLAY */
.aboutus-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* CONTENT */
.aboutus-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  padding: 0 20px;
}

.aboutus-banner-content h1 {
  font-size: 60px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.aboutus-banner-content p {
  font-size: 18px;
  color: #ddd;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .aboutus-banner {
    height: 50vh;
  }

  .aboutus-banner-content h1 {
    font-size: 36px;
  }

  .aboutus-banner-content p {
    font-size: 16px;
  }
}

/* ================= ABOUT US First section ================= */
/* ================= ABOUT FIRST SECTION ================= */

.aboutfirst-section {
  width: 100%;
  padding: 60px 0;
  background: #fff;
}

.aboutfirst-wrapper {
  display: grid;
  grid-template-columns: 35% 40% 25%;
  align-items: center;
  max-width: 1400px;
  margin: auto;
}

/* LEFT SIDE */
.aboutfirst-left {
  background: #f26522;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.aboutfirst-left h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
}

/* MIDDLE IMAGE */
.aboutfirst-middle {
  display: flex;
  justify-content: center;
}

.aboutfirst-middle img {
  width: 100%;
  /* max-width: 400px; */
  object-fit: contain;
}

/* RIGHT SIDE */
.aboutfirst-right {
  background: #e6d3bd;
  height: 300px;
}

@media (max-width: 991px) {
  .aboutfirst-wrapper {
    grid-template-columns: 1fr;
  }

  .aboutfirst-left,
  .aboutfirst-right {
    height: auto;
    padding: 30px;
    text-align: center;
  }

  .aboutfirst-middle {
    margin: 30px 0;
  }

  .aboutfirst-left h2 {
    font-size: 24px;
  }

  .aboutfirst-section {
    width: 100%;
    padding: 0;
    background: #fff;
  }
}

@media (max-width: 792px) {}

@media (max-width: 428px) {}

/* ================= CRAFTED SECTION ================= */

.crafted-section {
  padding: 80px 0;
  /* background: radial-gradient(circle at top right, #f3f7ff, #fff7f2); */
  background: #000;
  position: relative;
  overflow: hidden;
}

.crafted-header {
  text-align: center;
  margin-bottom: 100px;
}

.crafted-header h2 {
  color: #fff;
}

/* TITLE */

/* GRID */
.crafted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: center;
}

/* CARD */
.crafted-card {
  position: relative;
  padding: 50px 30px;
  text-align: center;
  border-radius: 25px;

  /* GLASS EFFECT */
  background: #111;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  /* SOFT SHADOW */
  box-shadow:
    8px 8px 20px rgba(0, 0, 0, 0.6),
    -5px -5px 15px rgba(255, 255, 255, 0.05);

  border: 1px solid #bbbbbb;

  transition: 0.4s ease;
}

/* HOVER */
.crafted-card:hover {
  transform: translateY(-10px);
  box-shadow:
    12px 12px 30px rgba(0, 0, 0, 0.8),
    -8px -8px 20px rgba(255, 255, 255, 0.08);
}

/* ICON */
.icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.8);

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;

  backdrop-filter: blur(10px);

  box-shadow:
    5px 5px 15px rgba(0, 0, 0, 0.1),
    -5px -5px 15px rgba(255, 255, 255, 0.7);
}

.icon img {
  height: 45px;
}

/* ICON POSITION */
.icon.top {
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.icon.bottom {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

/* TEXT */
.crafted-card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.crafted-card p {
  font-size: 14px;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .crafted-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .crafted-title {
    font-size: 32px;
  }
}


/* ================= CONSULTING SECTION ================= */

.consulting-section {
  padding: 90px 0;
  margin: 0 auto;
  max-width: 1400px;
}

.consulting-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  gap: 60px;
}

/* LEFT SIDE */
.consulting-left {
  position: relative;
}

.main-img img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* YELLOW BORDER */
.yellow-border {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 8px solid #ffd400;
  border-radius: 20px;
  z-index: 1;
}

/* CIRCLE IMAGE */
.circle-img {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #fff;
  z-index: 3;
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT SIDE */
.section-subtitle {
  letter-spacing: 4px;
  font-size: 18px;
  color: #f57c00;
  margin-bottom: 15px;
  font-weight: 600;
}

.consulting-right h2 {
  font-size: 48px;
  font-family: "Playfair Display", serif;
  color: #202020;
  margin-bottom: 20px;
  line-height: 1.1;
}

.section-subtitle span {
  display: inline-block;
  opacity: 0;
}

.whatwedo-head .section-subtitle {
  color: #f57c00;
}

.consulting-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.whatwedo-title {
  font-size: 42px !important;
  color: #111111 !important;
}

/* FEATURES */
.consulting-features {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-box i {
  width: 50px;
  height: 50px;
  background: #e8ecea;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #123b2f;
  font-size: 18px;
}

/* SIGN */
.consulting-sign {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.consulting-sign img {
  width: 120px;
}

.consulting-sign p {
  font-size: 14px;
  color: #777;
}

/* LIST */
.consulting-list {
  list-style: none;
  margin-bottom: 30px;
}

.consulting-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.consulting-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f3d2e;
}



/* HOVER */
.consulting-btn:hover {
  background: #123b2f;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .consulting-wrapper {
    grid-template-columns: 1fr;
  }

  .circle-img {
    left: 10px;
    width: 120px;
    height: 120px;
  }

  .consulting-right h2 {
    font-size: 32px;
  }
}

/* ================= OUR WORK ================= */

.aboutus-ourwork {
  padding: 60px 0;
  background: #f5f5f5;
}

.services-header-about {
  text-align: center;
}

/* HEADING */
.work-heading {
  text-align: center;
  margin-bottom: 60px;
}

.work-heading h2 {
  letter-spacing: 4px;
  font-size: 18px;
  color: #bd8305;
  margin-bottom: 15px;
  font-weight: 600;
}

.work-heading p {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
}

/* GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 380px;
}

/* BOX */
.work-box {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* COLORS */
.work-box.dark {
  background: #2f3a4d;
  color: #fff;
}

.work-box.orange {
  background: #f39c12;
  color: #000;
}

/* TEXT */
.work-box h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.work-box h3 span {
  color: #f39c12;
}

.work-box.orange h3 span {
  color: #fff;
}

.work-box p {
  font-size: 14px;
  line-height: 1.5;
}

/* IMAGE */
.work-box.image {
  padding: 0;
  overflow: hidden;
  position: relative;
  transition:
    transform 0.3s ease,
    z-index 0.3s;
}

.work-box.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* BIG BOX */
.work-box.big {
  grid-column: span 2;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid #f39c12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 18px;
}

/* HOVER EFFECT */
.work-box.image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.3s;
}

.work-box.image:hover::after {
  opacity: 1;
}

.work-box.image:hover img {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-box.big {
    grid-column: span 2;
  }
}

/* ================= WHY CHOOSE US (DARK) ================= */

.why-choose {
  padding: 60px 0;
  background: #0f1115;
  text-align: center;
  color: #fff;
}

/* HEADER */
.why-header h2 {}

.why-header p {}

/* GRID */
/* FLEX VERSION (CENTER PERFECT) */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* center all cards */
  gap: 30px;
  max-width: 1100px;
  /* keeps layout centered */
  margin: 0 auto;
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  border-radius: 16px;
  flex: 0 0 calc(33.33% - 20px);
  /* 3 cards */
  max-width: 320px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.371);

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.6),
    inset 0 0 0 rgba(255, 255, 255, 0.02);

  transition: 0.35s ease;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px) scale(1.02);

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(255, 122, 24, 0.2);
}

/* ICON */
.why-card i {
  font-size: 28px;
  margin-bottom: 15px;

  background: linear-gradient(135deg, #ff7a18, #ffd400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TITLE */
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .why-card {
    flex: 0 0 calc(50% - 20px);
    /* 2 cards */
  }
}

@media (max-width: 576px) {
  .why-card {
    flex: 0 0 100%;
    /* 1 card */
  }

  .why-header h2 {
    font-size: 28px;
  }
}

/* ================= WHAT WE DO ================= */

.whatwedo-section {
  padding: 60px 0;
  background: #e9e9e9;
}

/* WRAPPER */
.whatwedo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* LEFT IMAGE */
.whatwedo-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.whatwedo-left img {
  width: 100%;
  max-width: 620px;
  border-radius: 5px;
  object-fit: cover;
}

/* RIGHT CONTENT */
.whatwedo-right {
  flex: 1;
  max-width: 550px;
}

/* HEADING */
.whatwedo-right h2 {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #3a3a3a;
  margin-bottom: 25px;
}

/* TEXT */
.whatwedo-right p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 15px;
}



@media (max-width: 991px) {
  .whatwedo-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .whatwedo-right h2 {
    font-size: 36px;
  }
}