@charset "utf-8";
/* CSS Document */

/* OUTER SPACE */
.brand-story-wrapper {
  position: relative;
  margin-top: -120px; /* 👈 PULL UP */
  z-index: 5;
}

/* INNER BOX (MAIN DESIGN) */
.brand-story-box {
  background: #1d51a3;
  padding: 60px;
  border-radius: 25px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

/* HEADING */
.brand-content h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* TEXT */
.brand-content p {
  font-size: 16px;
  line-height: 1.8;
}

/* IMAGE */
.image-wrapper img {
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}

/* CIRCLE EFFECT */
.image-wrapper::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .brand-story-box {
    padding: 30px;
  }

  .brand-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .brand-content h2 {
    font-size: 28px;
  }
}



.about-tabs-section {
  padding: 20px 0;
  background: #f7f9fc;
  font-family: 'Montserrat', sans-serif;
}

/* TAB MENU */
.tabs-menu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.tabs-menu li {
  flex: 1;
  text-align: center;
  padding: 20px;
  cursor: pointer;
  border-radius: 15px;
  transition: 0.3s;
}

/* ICON BIG */
.tabs-menu li i {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  color: #1d51a3;
}

/* TEXT */
.tabs-menu li span {
  font-size: 14px;
  font-weight: 600;
}

/* ACTIVE TAB */
.tabs-menu li.active {
  background: #1d51a3;
  color: #fff;
}

.tabs-menu li.active i {
  color: #fff;
}

/* CONTENT BOX */
.tab-content {
  display: none;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.tab-content.active {
  display: block;
}

/* HEADING */
.tab-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */
.tab-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .tabs-menu {
    flex-direction: column;
    gap: 10px;
  }
}



.about-slider-section {
  padding: 10px 0;
  background: #f7f9fc;
}

/* CARD */
.info-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.info-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TITLE */
.info-box h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.info-box p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
}


/* HERO SECTION */

.about-hero-section {
  position: relative;
  background: url('../images/about-khaleejpack.webp') center/cover no-repeat;
  height: 750px; /*  reduce from 750 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 0; /* remove gap */
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

/* MAIN TITLE */
.hero-content h1 {
  font-size: 38px;
  font-weight: 900; /* EXTRA BOLD */
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 15px;
  font-family: 'Montserrat', sans-serif;
}

/* DESCRIPTION */
.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
}

/* OVERLAP EFFECT */
.about-hero-section {
  margin-bottom: -80px;
  z-index: 1;
}

.brand-story-wrapper {
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .about-hero-section {
    height: 320px;
  }
}


.why-wrap {
  font-family: 'Montserrat', sans-serif;
}

/* TOP WHITE */
.why-top {
  background: #f7f7f7;
  padding: 100px 0 20px;
}

.why-top h3 {
  font-weight: 700;
}

/* GREEN AREA */
.why-main {
  background: #0047BA; /* same green */
  padding: 50px 0;
  position: relative;
}

/* LEFT CONTENT */
.why-content h2 {
  color: #fff;
  margin-bottom: 10px;
  font-weight: 900;
 font-size: 25px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* BOX */
.why-box {
  text-align: center;
  padding: 20px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.why-box i {
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}

.why-box h4 {
  color: #fff;
  font-weight: 700;
	font-size: 20px;
	line-height: 15px
}

.why-box p {
  color: #ddd;
  font-size: 12px;
}

/* FORM (OVERLAP) */
.why-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  position: relative;
  margin-top: -150px; /* 👈 OVERLAP */
}

/* FORM TEXT */
.why-form h3 {
  font-weight: 800;
  margin-bottom: 10px;
}

.why-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* INPUT */
.why-form input,
.why-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 15px;
}

/* BUTTON */
.why-form button {
  width: 100%;
  background: #0047BA;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-form {
    margin-top: 30px;
  }
}


.brands-section {
  padding: 20px 0;
  background: #f7f9fc;
  font-family: 'Montserrat', sans-serif;
}

/* TITLE */
.brands-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.brands-section p {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #666;
}

/* CARD */
.brand-card {
  background: #fff;
  padding: 20px 15px;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* LOGO BLACK */
.brand-card img {
  height: 100px;
  margin-bottom: 10px;

  
}

/* HOVER EFFECT */
.brand-card:hover img {
  filter: none; /* color on hover */
  opacity: 1;
}

.brand-card:hover {
  transform: translateY(-5px);
}

/* NAME */
.brand-card h4 {
  font-size: 16px;
  font-weight: 600;
}