/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   GLOBAL
========================= */
body {
  font-family: 'Sora', sans-serif;
  background: #000;
  color: #fff;
}

/* =========================
   PAGE HERO
========================= */
.page-hero {
  height: 340px;
  background: linear-gradient(
    135deg,
    #000000 0%,
    #0c0f2f 45%,
    #2a2f86 100%
  );
  position: relative;
}

/* =========================
   NAVBAR
========================= */
.nav {
  height: 90px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 
.logo img {
  height: 52px;
} */

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links li {
  color: rgba(255,255,255,0.85);
  cursor: pointer;
}

.nav-links li:hover,
.nav-links .active {
  color: #ffffff;
}

/* PHONE */
.nav-phone-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

.divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.35);
}

.nav-phone {
  display: flex;
  gap: 12px;
  align-items: center;
}

.phone-icon {
  font-size: 18px;
  color: #fff;
}

.phone-text span {
  font-size: 12px;
  opacity: 0.75;
}

.phone-text strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

/* =========================
   PAGE TITLE
========================= */
.page-hero-content {
  position: absolute;
  left: 70px;
  bottom: 80px;
}

.page-hero-content h1 {
  font-size: 42px;
  font-weight: 600;
}
/* welcome section  */
/* =========================
   ABOUT INTRO SECTION
========================= */
/* =========================
   CORE LAYOUT
   ========================= */
.about-intro {
  background: #ffffff;
  padding: 80px 0; /* Reduced padding for a tighter look */
  color: #111;
  position: relative;
}

.about-intro-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 60px; 
}

/* =========================
   IMAGE - THE FIX
   ========================= */
.about-intro-image {
  flex: 0 0 50%; 
  max-width: 550px; 
  
  
  aspect-ratio: 4 / 3; 
  
  max-height: 450px; 
  
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); 
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  transition: transform 0.5s ease;
}


.about-intro-image:hover img {
  transform: scale(1.05);
}

/* =========================
   CONTENT SIDE
   ========================= */
.about-intro-content {
  flex: 0 0 45%; /* Text takes 45% width */
}

/* GOLD LABEL */
.about-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c79a4b;
  margin-bottom: 20px;
  position: relative;
  padding-left: 45px;
}

.about-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background-color: #c79a4b;
}

/* HEADLINE */
.about-intro-content h2 {
  font-size: 46px; /* Slightly larger for impact */
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #0e1118;
}

.about-intro-content h2 .highlight {
  color: #c79a4b;
}

/* PARAGRAPH */
.about-intro-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

/* =========================
   BUTTON STYLE
   ========================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 12px 28px; /* Padding for pill shape */
  background-color: #0e1118;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 60px;
  transition: all 0.3s ease;
  min-width: 180px;
}

/* The Circle Arrow */
.btn-primary .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #fff;
  color: #0e1118;
  border-radius: 50%;
  margin-left: 15px;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Button Hover */
.btn-primary:hover {
  background-color: #c79a4b; /* Changes to Gold */
  transform: translateY(-2px);
}

.btn-primary:hover .arrow {
  background: #0e1118;
  color: #fff;
  transform: rotate(-45deg); /* Cool rotation effect */
}

/* =========================
   RESPONSIVE (Mobile)
   ========================= */
@media (max-width: 992px) {
  .about-intro-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .about-intro-image, 
  .about-intro-content {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  /* On mobile, we let the image be a bit shorter */
  .about-intro-image {
    aspect-ratio: 16 / 9;
  }
  
  .about-label {
    padding-left: 0;
  }
  .about-label::before {
    display: none;
  }
  
  .about-intro-content h2 {
    font-size: 34px;
  }
  
  .btn-primary {
    margin: 0 auto; /* Center button */
  }
}

/* =========================
   ABOUT – INDUSTRY LEADER 
========================= */

.about-leader {
  background: #ffffff;
  padding: 100px 0;
  color: #0f172a; /* Slate 900 */
  font-family: sans-serif; /* Replace with your specific font */
}

.about-leader-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;

  /* THE GRID FIX */
  display: grid;
  /* 280px Left | 400px Center | Remaining space Right */
  grid-template-columns: 280px 400px 1fr; 
  gap: 50px; /* Even spacing between columns */
  align-items: start;
}

/* =========================
   LEFT COLUMN
   ========================= */
.col-left {
  display: flex;
  flex-direction: column;
}

.left-image-container {
  width: 100%;
  aspect-ratio: 3 / 4; 
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 24px;
}

.left-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.left-image-container:hover img {
  transform: scale(1.05);
}

.intro-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569; 
  margin-bottom: 24px;
  font-weight: 500;
}

/* BUTTON */
.know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 20px;
  border-radius: 50px;
  border: 1px solid #2563eb;
  color: #2563eb;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}

.know-more-btn .btn-icon {
  width: 32px;
  height: 32px;
  background-color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.3s ease;
}

.know-more-btn:hover {
  background-color: #eff6ff;
}

.know-more-btn:hover .btn-icon {
  transform: rotate(45deg);
}

/* =========================
   CENTER COLUMN (TALL IMAGE)
   ========================= */
.col-center {
  height: 560px; 
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.col-center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
   RIGHT COLUMN
   ========================= */
.col-right {
  padding-top: 10px; 
}

.about-pill {
  display: inline-block;
  padding: 6px 16px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.col-right h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
  color: #0f172a;
}

/* INFO BOXES */
.info-box {
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  transition: border 0.3s ease;
  border: 1px solid transparent;
}


.info-box.mission {
  background-color: #f1f5f9; 
}

.info-box.vision {
  background-color: #f8fafc; 
}

.info-box:hover {
  border-color: #cbd5e1;
}

.info-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-circle {
  color: #2563eb;
  display: flex;
  align-items: center;
}

.info-head strong {
  font-size: 16px;
  color: #0f172a;
}

.info-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .about-leader-wrapper {
    grid-template-columns: 1fr; 
    max-width: 600px;
    gap: 40px;
  }

  .col-center {
    height: 400px; 
  }
  
  .col-left {
    order: 2; 
  }
}