/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    "Poppins",
    sans-serif;
  color: #111;
}

/* Topbar */
.topbar {
  background: #0f1720;
  color: #fff;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 12px;
}

.lang-list {
  display: flex;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.lang-list a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.lang-list a:hover {
  color: #aa6c39; /* pink hover */
}

.lang-list i {
  margin-right: 8px;
  color: #aa6c39; /* pink icon color */
  font-size: 1rem;
}

.topbar-ctas {
  display: flex;
  gap: 10px;
}

.cta {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
}

.cta-primary {
  background: #aa6c39;
  color: #fff;
}

.cta-accent {
  background: #aa6c39;
  color: #fff;
}

/* NAVBAR */
.navbar {
  background: #fff;
  box-shadow: 0 6px 20px rgba(10, 10, 12, 0.06);
  position: relative;
  /* z-index: 40; */
  padding-left: 20px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 12px;
}

/* Mobile toggle (hidden on desktop) */
.mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}

/* Menu */
.nav {
  flex: 3;
  margin-left: 150px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.menu-item {
  position: relative;
}

.menu-link {
  background: transparent;
  border: 0;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 6px;
}

/* ---------------------------
   Dropdown default (hidden)
----------------------------*/
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 10;
  min-width: 250px;
}

/* Show dropdown when open */
.menu-item.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-grid .col {
  min-width: 160px;
}

.dropdown-grid h4 {
  font-size: 13px;
  margin-bottom: 8px;
  color: #333;
}

.dropdown-grid a,
.simple-list a {
  display: block;
  padding: 8px 6px;
  color: #444;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.dropdown-grid a:hover,
.simple-list a:hover {
  background: #f6f7f8;
  color: #111;
}
/* ---------------------------
   Mobile View
----------------------------*/
@media (max-width: 980px) {
  .dropdown-panel {
    position: static;
    background: #aa6c39;
    border-radius: 6px;
    box-shadow: none;
    margin-top: 2px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: all 0.3s ease;
  }

  .menu-item.open .dropdown-panel {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
  }

  /* Dropdown text color on mobile */
  .dropdown-grid h4,
  .dropdown-grid a,
  .simple-list a {
    color: #fff;
  }
}
/* Small simple list */
.simple-list {
  list-style: none;
  padding: 6px 0;
  margin: 0;
}

/* Show on hover (desktop only) */
.menu-item:hover > .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

/* HERO */
.hero {
  position: relative;
  height: 92vh;
  display: flex;
  align-items: center;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(3, 7, 18, 0.5),
    rgba(3, 7, 18, 0.65)
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding-left: 8%;
  color: #fff;
}

.logo img {
  position: absolute;
  height: 174px;
  display: block;
  top: 5%;
  left: 4%;
  z-index: 4;
  border: 3px dotted #aa6c39;
}

.hero h1 {
  font-size: 54px;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 50px;
  margin-bottom: 14px;
  line-height: 1.05;
}

.accent {
  color: #aa6c39;
  font-weight: 800;
}

.accent-2 {
  color: #aa6c39;
  font-weight: 800;
}

.lead {
  font-size: 16px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero buttons */
.btn {
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.primary {
  background: #aa6c39;
  color: #fff;
}

.ghost {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
}

/* Responsive behavior */
@media (max-width: 980px) {
  .nav-inner {
    padding: 10px 16px;
    gap: 200px;
  }

  .menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 70%;
    flex-direction: column;
    background: #fff;
    padding: 12px 18px;
    gap: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(10, 10, 12, 0.08);
    z-index: 6;
    background-color: #aa6c39;
  }

  .menu.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .dropdown-panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 4px 0;
    background: transparent;
  }

  .menu-item {
    width: 100%;
  }

  .menu-link {
    width: 100%;
    text-align: left;
    padding: 10px 6px;
  }

  .dropdown-grid {
    flex-direction: column;
    gap: 10px;
  }

  .topbar-inner {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .hero-inner {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero h2 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 80px 20px 60px;
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .logo img {
    position: relative;
    height: 80px;
    top: 0;
    left: 0;
    margin-bottom: 20px;
    border: none;
  }

  .hero-inner {
    padding-left: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .lead {
    font-size: 15px;
    margin: 0 auto 16px;
    max-width: 90%;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .btn {
    width: 80%;
    text-align: center;
  }

  .bg-video {
    object-fit: cover;
    height: 100%;
  }
}

/* Section Base */
.who-we-help {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.who-we-help h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.who-we-help h2 span {
  color: #aa6c39;
}

.who-we-help p {
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 1.5rem;
  color: #444;
  line-height: 1.6;
}

/* Image grid layout */
.image-grid {
  padding: 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  /* remove space between images */
  height: 500px;
  /* adjust as you wish */
  /* border-radius: 10px; */
  overflow: hidden;
}

/* Left image takes full height */
.image-card:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

/* Right side images */
.image-card:nth-child(2) {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.image-card:nth-child(3) {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

/* Image and overlay styling */
.image-card {
  position: relative;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  /* Default subtle bronze gradient overlay */
  /* background: linear-gradient(to bottom, rgba(170, 108, 57, 0.3), rgba(170, 108, 57, 0.55)); */
  display: flex;
  align-items: flex-end;
  justify-content: left;
  padding: 15px 20px;
  transition: background 0.3s ease;
}

.overlay h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card:hover .overlay {
  background: linear-gradient(
    to bottom,
    rgba(170, 108, 57, 0.65),
    rgba(170, 108, 57, 0.85)
  );
}

/* Responsive layout */
@media (max-width: 992px) {
  .image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
    height: auto;
  }

  .image-card:nth-child(1),
  .image-card:nth-child(2),
  .image-card:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }
}

/* Sidebar container */
.sidebar {
  position: fixed;
  top: 30%;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 99999;
}

/* Common styles */
.sidebar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

/* "Have a Product in Mind?" vertical button */
.product-btn {
  background-color: #aa6c39;
  padding: 10px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 6px 0px 0px 6px;
  transform: translateX(0);
  width: 40px;
  text-align: center;
}

/* .product-btn:hover {
  transform: translateX(-80px);
  background-color: #e0266f;
} */

/* WhatsApp */
.sidebar-item.whatsapp {
  background-color: #25d366;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  transition: transform 0.4s ease;
  padding-right: 20px;
}

.sidebar-item.whatsapp:hover {
  transform: translateX(0);
}

/* Call */
.sidebar-item.call {
  background-color: #ff2a26;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  transition: transform 0.4s ease;
  padding-right: 70px;
}

.sidebar-item.call:hover {
  transform: translateX(0);
}

/* Icons */
.sidebar-item img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* LinkedIn button */
.sidebar-item.linkedin {
  background-color: #0077b5;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  padding-right: 30px;
}

.sidebar-item.linkedin:hover {
  transform: translateX(0);
}

/* Facebook button */
.sidebar-item.facebook {
  background-color: #3b5998;
  width: 140px;
  padding: 10px;
  border-radius: 6px 0 0 6px;
  gap: 8px;
  transform: translateX(100px);
  padding-right: 22px;
}

.sidebar-item.facebook:hover {
  transform: translateX(0);
}

/* Icons */
.sidebar-item img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Contact Panel (Right Side Slide-out) */
.contact-panel {
  position: fixed;
  top: 160px;
  right: -350px;
  width: 350px;
  height: 60vh;
  background: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  z-index: 999;
  padding: 20px;
  padding-right: 50px;
}

.contact-panel.open {
  right: 0;
}

/* Contact Header */
.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-header h3 {
  color: #aa6c39;
  margin: 0;
}

.contact-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Contact Form */
.contact-panel form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.contact-panel input,
.contact-panel textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-panel button {
  background: #aa6c39;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.process-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
  color: #222;
  font-family: "Poppins", sans-serif;
}

/* Header */
.process-header h2 {
  font-size: 2.5rem;
  color: #aa6c39;
  margin-bottom: 10px;
}

.process-header p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  font-weight: bold;
}

/* Subheading */
.process-content h3 {
  font-size: 1.8rem;
  color: #aa6c39;
  margin-bottom: 40px;
}

/* Grid Layout */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card Styles */
.process-card {
  border: 2px solid #aa6c39;
  border-radius: 10px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  background: #aa6c39;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  color: #fff;
}

.process-card:hover {
  background: #fff;
  color: #000;
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(43, 0, 73, 0.3);
}

.process-card .icon {
  font-size: 2.5rem;
  color: #aa6c39;
  margin-bottom: 15px;
}

.process-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.95rem;
  color: inherit;
  line-height: 1.6;
  margin-bottom: 15px;
}

.process-card a {
  display: inline-block;
  text-decoration: none;
  color: #aa6c39;
  background-color: #fff;
  font-weight: 600;
  border: 2px solid #aa6c39;
  padding: 8px 18px;
  border-radius: 25px;
  transition: 0.3s ease;
}

.process-card:hover a {
  background: #aa6c39;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .process-header h2 {
    font-size: 2rem;
  }

  .process-content h3 {
    font-size: 1.5rem;
  }

  .process-card {
    padding: 25px 15px;
  }
}

.why-urbazaar {
  background: #2b0049;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.why-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #aa6c39;
}

.why-header p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.underline {
  width: 80px;
  height: 3px;
  background: #aa6c39;
  margin: 0 auto 50px;
  border-radius: 3px;
}

/* Grid Layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.why-item {
  max-width: 220px;
}

.why-item img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.why-item p {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: bold;
  color: #aa6c39;
}

/* Responsive */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 2rem;
  }

  .why-grid {
    gap: 25px;
  }

  .why-item img {
    width: 50px;
    height: 50px;
  }

  .why-item p {
    font-size: 0.9rem;
  }
}

/* =======================
   Have a Product in Mind Section
======================= */
.product-in-mind {
  position: relative;
  background: #2b0049;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/* Content */
.product-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.product-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #aa6c39;
}

.product-content p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-get-in-touch {
  display: inline-block;
  background: #aa6c39;
  color: #fff;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.3s ease,
    transform 0.2s ease;
}

.btn-get-in-touch:hover {
  background: #e1256b;
  transform: translateY(-2px);
}

.corner-shape {
  position: absolute;
  width: 250px;
  height: 180px;
  background: #aa6c39;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.corner-shape.left {
  bottom: 0;
  left: 0;
  clip-path: polygon(0 100%, 100% 0, 0 0);
}

.corner-shape.right {
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 100%, 0 0, 100% 0);
}

/* =======================
   Responsive Design
======================= */
@media (max-width: 900px) {
  .product-content h2 {
    font-size: 1.8rem;
  }

  .product-content p {
    font-size: 0.95rem;
  }

  .corner-shape {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 600px) {
  .product-content h2 {
    font-size: 1.6rem;
  }

  .btn-get-in-touch {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .corner-shape {
    width: 120px;
    height: 120px;
  }
}

.urbazaar-footer {
  background: #2b0049;
  color: #fff;
  font-family: "Poppins", sans-serif;
  padding: 60px 20px 20px;
}

/* Main 3-column layout */
.footer-locations {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-location {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-location img {
  width: 80px;
  margin-bottom: 15px;
}

.footer-location h4 {
  font-size: 1.2rem;
  color: #aa6c39;
  margin-bottom: 10px;
}
.footer-location a {
  text-decoration: none;
  color: #fff;
}

.footer-location p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 6px 0;
  line-height: 1.5;
}

.footer-location i {
  color: #aa6c39;
  margin-right: 6px;
}

/* Social Icons */
.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.1rem;
  margin-right: 12px;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.social-icons a:hover {
  color: #aa6c39;
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: #aa6c39;
}

.footer-bottom_1 {
  background-color: #2b0049; /* optional: match your footer color */
  text-align: center;
  padding: 15px 0;
  color: #aa6c39;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-links a {
  color: #aa6c39;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #aa6c39;
}

/* Responsive Design */
@media (max-width: 900px) {
  .footer-locations {
    justify-content: center;
    text-align: center;
  }

  .footer-location {
    flex: 1 1 100%;
    max-width: 400px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .social-icons a {
    font-size: 1.3rem;
  }
}

/* ========================
   FLAG SLIDER SECTION
======================== */
.flag-slider {
  background: #2b0049;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-align: center;
  padding: 60px 0;
  overflow: hidden;
}

.flag-title {
  color: #aa6c39;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.flag-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  overflow: hidden;
}

/* ROW */
.flag-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: scrollLeft 40s linear infinite;
}

/* Reverse scroll */
.flag-track.reverse {
  animation: scrollRight 45s linear infinite;
}

/* Flag Styling */
.flag-track img {
  width: 70px;
  height: 40px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.flag-track img:hover {
  transform: scale(1.15);
}

/* Animations */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .flag-track img {
    width: 55px;
  }
  .flag-track {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .flag-title {
    font-size: 1.5rem;
  }
  .flag-track img {
    width: 45px;
  }
  .flag-track {
    gap: 20px;
    animation-duration: 55s;
  }
}

@media (max-width: 480px) {
  .flag-title {
    font-size: 1.3rem;
  }
  .flag-track img {
    width: 35px;
  }
  .flag-container {
    gap: 30px;
  }
}
/* CONTACT SECTION */
.contact-section {
  background: #f8f8f8;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

/* MAIN CONTAINER */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* LEFT SIDE INFO */
.contact-info {
  flex: 1;
  min-width: 320px;
}

.contact-info h2 {
  font-size: 2rem;
  color: #2b0049;
  margin-bottom: 15px;
}

.contact-info p {
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #2b0049;
}

.info-item i {
  font-size: 1.3rem;
  color: #aa6c39;
}

.info-item a {
  color: #2b0049;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.info-item a:hover {
  color: #aa6c39;
}

/* SOCIAL ICONS */
.social-icons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-icons a {
  color: #2b0049;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #aa6c39;
}

/* RIGHT SIDE FORM */
.contact-form {
  flex: 1;
  min-width: 320px;
}

.contact-form h3 {
  color: #2b0049;
  font-size: 1.6rem;
  margin-bottom: 20px;
  text-align: left;
}

.form-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
  transition:
    border 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #aa6c39;
  box-shadow: 0 0 5px rgba(170, 108, 57, 0.4);
}

.contact-form textarea {
  height: 130px;
  resize: none;
}

.btn {
  background: #aa6c39;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #8e582e;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE STYLES
=========================== */

/* Tablets */
@media (max-width: 992px) {
  .contact-container {
    padding: 40px 25px;
    gap: 40px;
  }

  .contact-info h2 {
    font-size: 1.8rem;
  }

  .contact-form h3 {
    font-size: 1.4rem;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
    padding: 35px 25px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .info-item {
    justify-content: center;
    flex-wrap: wrap;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-form h3 {
    text-align: center;
  }

  .btn {
    width: 100%;
    border-radius: 8px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .contact-section {
    padding: 60px 10px;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .contact-form h3 {
    font-size: 1.2rem;
  }
}

.aboutus {
  background: radial-gradient(circle at top right, #fff8ef 0%, #fff 60%);
  color: #222;
  font-family: "Poppins", sans-serif;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Container box */
.aboutus-container {
  position: relative;
  max-width: 1000px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 60px 50px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Title and text */
.aboutus h2 {
  color: #aa6c39;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}

.aboutus h3 {
  color: #b8860b;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.aboutus p {
  line-height: 1.7;
  color: #444;
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: justify;
}

/* Decorative golden sparkles */
.decor {
  position: absolute;
  width: 100px;
  height: 100px;
  background: url("https://cdn-icons-png.flaticon.com/512/1828/1828884.png")
    no-repeat center;
  background-size: contain;
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.decor1 {
  top: 20px;
  right: 40px;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.decor2 {
  bottom: 30px;
  left: 40px;
  width: 100px;
  height: 100px;
  animation-delay: 3s;
}

/* Floating animation for golden sparkles */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
}

/* Small shimmer effect on hover */
.aboutus-container:hover {
  box-shadow: 0 8px 35px rgba(212, 175, 55, 0.2);
  transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .aboutus-container {
    padding: 35px 20px;
  }

  .aboutus h2 {
    font-size: 1.8rem;
  }

  .aboutus h3 {
    font-size: 1.4rem;
  }

  .decor {
    width: 60px;
    height: 60px;
    opacity: 0.25;
  }
}
