* {
  margin: 0; 
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../assets/aboutusimage.jpeg') center/cover no-repeat;
  color: white;
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 60px;
}

/* --- Header Bar (Top Part) --- */
.header-bar {
  display: flex;
  justify-content: space-between; /* logo left, menu right */
  align-items: center;
  width: 100%;
}

/* Left Side */
.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo */
.logo img {
  color: blue;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: 1px;
  width: 50%;
}

/* Login Icon */
.login-icon i {
  color: white;
  font-size: 22px;
  transition: color 0.3s ease;
}
.login-icon i:hover {
  color: #d1a218;
}

/* Right Side */
.right-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Menu Text */
.menu-text {
  font-size: 20px;
  font-weight: 600;
  color: white;
}

/* This targets the <a> inside the .menu-text */
.menu-text a {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* make link same color as text */
  cursor: pointer;         /* make it clickable */
  display: inline-block;
  transition: color 0.3s ease;
}

.menu-text a:hover {
  color: #d1a218;          /* optional hover color */
}


/* Toggle Icon */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.menu-toggle:hover span {
  background: #d1a218;
}
.overlay-text {
  position: relative;
  text-align: center;
  color: white;
}

.overlay-text h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* 🟦 RESPONSIVE DESIGN */

/* --- For Laptops & Tablets (<=1200px) --- */
@media (max-width: 1200px) {
  .hero-content {
    padding: 30px 40px;
  }
  .logo img {
    height: 75px;
  }
}

/* --- For Tablets (<=992px) --- */
@media (max-width: 992px) {
  .header-bar {
    padding: 15px 30px;
  }

  .menu-text {
    font-size: 18px;
  }

  .logo img {
    height: 70px;
  }
}

/* --- For Mobile (<=768px) --- */
@media (max-width: 768px) {
  .header-bar {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
  }

  .right-header {
    gap: 10px;
  }

  .menu-text {
    display: none; /* Hide text menu on mobile */
  }

  .menu-toggle {
    display: flex; /* Show hamburger icon */
  }

  .logo img {
    height: 65px;
  }
}

/* --- For Small Mobile Screens (<=480px) --- */
@media (max-width: 480px) {
  .hero-content {
    padding: 20px;
  }

  .header-bar {
    padding: 10px 15px;
  }

  .logo img {
    height: 55px;
  }

  .login-icon i {
    font-size: 20px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
}
.who-we-are {
  position: relative;
  width: 100%;
  height: 500px; /* section height adjust karo */
  /* <-- yahan apni image ka naam/path likho */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clip-path: ellipse(100% 90% at 50% 10%); /* curved bottom */
}


/* Text styling */
.overlay-text {
  position: relative;
  text-align: center;
  color: white;
}

.overlay-text h2 {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== About Section Styling ===== */
/* ================================
   ABOUT SECTION – KIANA TILES
================================ */
.about-section {
  background: #fff;
  padding: 80px 5%;
  overflow: hidden;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
}

.about-section h2 {
  text-align: center;
  font-size: 42px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 60px;
  position: relative;
}

.about-section h2 span {
  color: #d1a218;
}

.about-section h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #d1a218;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ================================
   LAYOUT
================================ */
.about-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* LEFT SIDE TEXT */
.about-text {
  flex: 1 1 50%;
  font-family: 'Poppins', sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  animation: fadeUp 1.2s ease both;
}

.about-text p {
  margin-bottom: 18px;
  text-align: justify;
}

.about-text strong {
  color: #1e3a8a;
}

/* RIGHT SIDE IMAGES AUTO SCROLL */
.about-images {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  overflow: hidden;
}

.scroll-row {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

.scroll-row2 {
  animation: scrollRight 22s linear infinite;
}

.scroll-row img {
  width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.scroll-row img:hover {
  transform: scale(1.05);
}

/* AUTO SCROLL ANIMATIONS */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .about-text, .about-images {
    flex: 1 1 100%;
  }

  .scroll-row img {
    width: 220px;
    height: 140px;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 60px 20px;
  }

  .about-section h2 {
    font-size: 32px;
  }

  .scroll-row img {
    width: 180px;
    height: 120px;
  }

  .about-text {
    font-size: 15px;
  }
}

/* ================================
   FADE-UP ANIMATION
================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* ===== VISION SECTION ===== */
.vision-section {
  padding: 56px 10%;
  background:white;
  border-radius: 12px;
  margin: 40px auto;
  box-shadow: 0 6px 20px rgba(14,20,30,0.06);
  font-family: 'Poppins', sans-serif;
}

.vision-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.vision-icon {
  width: 500px;
  height: 500px;
  object-fit: contain;
  flex: 0 0 110px;
  background: rgba(209,162,24,0.08); /* subtle golden backdrop */
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(209,162,24,0.08);
}

.vision-text {
  flex: 1 1 480px;
  text-align: left;
}

.vision-text h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: #d1a218;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.vision-statement {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.6;
  font-weight: 600;
}

.vision-sub {
  margin: 0;
  font-size: 0.98rem;
  color: #555;
  line-height: 1.6;
}
/* ================= RESPONSIVE DESIGN ================= */

/* ---------- Large Desktops (1200px and below) ---------- */
@media (max-width: 1200px) {
  .vision-section {
    padding: 50px 8%;
  }
  .vision-icon {
    width: 400px;
    height: 400px;
  }
}

/* ---------- Laptops & Medium Screens (992px and below) ---------- */
@media (max-width: 992px) {
  .vision-inner {
    flex-direction: column;
    text-align: center;
  }
  .vision-icon {
    width: 350px;
    height: 350px;
    margin-bottom: 20px;
  }
  .vision-text {
    text-align: center;
  }
  .vision-text h2 {
    font-size: 1.8rem;
  }
}

/* ---------- Tablets (768px and below) ---------- */
@media (max-width: 768px) {
  .vision-section {
    padding: 40px 6%;
  }
  .vision-icon {
    width: 300px;
    height: 300px;
  }
  .vision-text h2 {
    font-size: 1.6rem;
  }
  .vision-statement {
    font-size: 1rem;
  }
  .vision-sub {
    font-size: 0.95rem;
  }
}

/* ---------- Mobile Phones (576px and below) ---------- */
@media (max-width: 576px) {
  .vision-section {
    padding: 30px 5%;
    margin: 20px auto;
  }
  .vision-icon {
    width: 260px;
    height: 260px;
  }
  .vision-text h2 {
    font-size: 1.4rem;
  }
  .vision-statement {
    font-size: 0.95rem;
  }
  .vision-sub {
    font-size: 0.9rem;
  }
}

/* ---------- Small Phones (400px and below) ---------- */
@media (max-width: 400px) {
  .vision-section {
    padding: 25px 4%;
  }
  .vision-icon {
    width: 220px;
    height: 220px;
  }
  .vision-text h2 {
    font-size: 1.2rem;
  }
  .vision-statement,
  .vision-sub {
    font-size: 0.9rem;
  }
}

/* ===== CORE VALUES SECTION ===== */
.core-values {
  padding: 60px 10%;
  background: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.core-values h2 {
  font-size: 2.5rem;
  color: #d1a218;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.value-icon {
  font-size: 80px; /* 👈 icon size yahan badhao (default 50px tha) */
  color: #d1a218;
  margin-bottom: 15px;
}


.value-card h3 {
  font-size: 1.3rem;
  color: #2c2c2c;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.value-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}