@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-dark: #020d1e;
  --primary-light: #0c1a30;
  --gold: #d4af37;
  --gold-gradient: linear-gradient(to right, #cf982e, #e9c05e, #cf982e);
  --text-light: #ffffff;
  --text-gray: #a0aec0;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --card-shadow: 0 10px 30px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h4 {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: 36px;
  color: var(--primary-dark);
  font-weight: 700;
}
.section-title.light h2 {
  color: var(--text-light);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--primary-dark);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--text-light);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--primary-dark);
}
.btn-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
}
.btn-dark:hover {
  background-color: var(--primary-light);
}
.btn-blue { background-color: #0056b3; color: #fff; }
.btn-green { background-color: #28a745; color: #fff; }
.btn-orange { background-color: #fd7e14; color: #fff; }

.btn-blue:hover, .btn-green:hover, .btn-orange:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* --- NAVBAR --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(2, 13, 30, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 28px;
  font-weight: 800;
}
.logo i {
  color: var(--gold);
  font-size: 32px;
}
.logo-sub {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  line-height: 1;
}
.logo-text-wrapper {
  display: flex;
  flex-direction: column;
}
.nav-links {
  display: flex;
  gap: 30px;
}
.nav-links li a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links li a:hover, .nav-links li a.active {
  color: var(--gold);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-icons a {
  color: var(--text-light);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  transition: var(--transition);
  margin-left: 5px;
}
.social-icons a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
}

/* --- IMAGE PATHS FOR EASY OFFLINE REPLACEMENT --- */
/* Replace the URLs inside url() with your local paths like url('images/hero-bg.jpg') */
.bg-hero-main {
  background-image: linear-gradient(rgba(2, 13, 30, 0.8), rgba(2, 13, 30, 0.9)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=1920&auto=format&fit=crop');
}
.bg-hero-travel {
  background-image: linear-gradient(rgba(2, 13, 30, 0.8), rgba(2, 13, 30, 0.9)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=1920&auto=format&fit=crop');
}
.bg-hero-skills {
  background-image: linear-gradient(rgba(2, 13, 30, 0.8), rgba(2, 13, 30, 0.9)), url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?q=80&w=1920&auto=format&fit=crop');
}
.bg-hero-marketing {
  background-image: linear-gradient(rgba(2, 13, 30, 0.8), rgba(2, 13, 30, 0.9)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=1920&auto=format&fit=crop');
}
.bg-about-img {
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=800&auto=format&fit=crop');
}
.bg-impact-map {
  background-image: linear-gradient(rgba(2, 13, 30, 0.9), rgba(2, 13, 30, 0.9)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920&auto=format&fit=crop');
}
.bg-cta {
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1920&auto=format&fit=crop');
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.hero-text {
  flex: 1;
  max-width: 600px;
}
.hero-text h4 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-text h1 {
  color: var(--text-light);
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
}
.hero-text p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 20px;
}
.hero-graphic {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.huge-logo {
  text-align: center;
  color: var(--text-light);
}
.huge-logo i {
  font-size: 150px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -10px;
}
.huge-logo h2 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.huge-logo p {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
}
.huge-logo .tagline {
  font-size: 12px;
  letter-spacing: 4px;
  margin-top: 15px;
  color: var(--text-gray);
  text-transform: uppercase;
}

/* --- ABOUT SECTION --- */
.about-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
.about-text {
  flex: 1;
}
.about-text h4 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.about-text h2 {
  font-size: 42px;
  color: var(--primary-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  color: #555;
  margin-bottom: 20px;
  font-size: 15px;
}
.about-visual {
  flex: 1;
  position: relative;
}
.about-image {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  border: 4px solid var(--gold);
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
  box-shadow: var(--card-shadow);
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 30, 0.2);
  border-radius: inherit;
}
.about-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.about-logo-overlay i { color: var(--gold); }

/* --- OUR COMPANIES SECTION --- */
.companies-section {
  padding: 100px 0;
  background-color: var(--primary-dark);
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.company-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.company-card:hover {
  transform: translateY(-10px);
}
.company-icon-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.company-icon-title i {
  font-size: 36px;
}
.company-icon-title h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}
.company-icon-title h3 span {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.company-card p {
  color: #666;
  font-size: 14px;
  flex-grow: 1;
  margin-bottom: 25px;
}

/* Card Specific Colors */
.card-travel .company-icon-title i { color: #0056b3; }
.card-travel .company-icon-title h3 { color: var(--primary-dark); }
.card-travel .company-icon-title h3 span { color: #0056b3; }

.card-marketplace .company-icon-title i { color: #28a745; }
.card-marketplace .company-icon-title h3 { color: var(--primary-dark); }
.card-marketplace .company-icon-title h3 span { color: #28a745; }

.card-skills .company-icon-title i { color: #0056b3; }
.card-skills .company-icon-title h3 { color: var(--primary-dark); }
.card-skills .company-icon-title h3 span { color: #0056b3; }

.card-marketing .company-icon-title i { color: #fd7e14; }
.card-marketing .company-icon-title h3 { color: var(--primary-dark); }
.card-marketing .company-icon-title h3 span { color: #fd7e14; }

/* --- WHY CHOOSE US --- */
.features-section {
  padding: 100px 0;
  background: var(--bg-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.feature-box {
  text-align: center;
}
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-size: 28px;
  color: var(--primary-dark);
  border: 2px solid var(--gold);
}
.feature-box h4 {
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 12px;
  color: #666;
}

/* --- IMPACT SECTION --- */
.impact-section {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 20px;
  margin-bottom: 40px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.impact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-light);
}
.impact-icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
}
.impact-text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 0;
}
.impact-text p {
  font-size: 13px;
  color: var(--text-gray);
}

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--primary-light);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 30, 0.85);
  border-radius: inherit;
  z-index: 1;
}
.cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-light);
}
.cta-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.cta-text h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
.cta-text p {
  font-size: 14px;
  color: var(--text-gray);
}
.cta-btn {
  position: relative;
  z-index: 2;
}

/* --- FOOTER --- */
footer {
  background: var(--primary-dark);
  padding: 120px 0 30px;
  color: var(--text-gray);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-about p {
  font-size: 14px;
  margin: 20px 0;
  max-width: 300px;
}
.footer-title {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: 12px;
}
.footer-links li a:hover {
  color: var(--gold);
  transform: translateX(5px);
}
.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
}
.footer-contact i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 3px;
}
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
}

/* --- INNER PAGES SPECIFIC --- */
.page-hero {
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
.page-hero h1 {
  font-size: 48px;
  color: var(--text-light);
  margin-bottom: 15px;
}
.page-hero p {
  color: var(--text-gray);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px 0;
}
.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.service-content {
  padding: 25px;
}
.service-content h3 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 15px;
}
.service-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Specific Service Images (Replaceable offline) */
.img-travel-umrah { background-image: url('https://images.unsplash.com/photo-1565552645632-d725f8bfc19a?q=80&w=800&auto=format&fit=crop'); }
.img-travel-air { background-image: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=800&auto=format&fit=crop'); }
.img-travel-car { background-image: url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?q=80&w=800&auto=format&fit=crop'); }
.img-travel-tour { background-image: url('https://images.unsplash.com/photo-1589808383850-843de285c531?q=80&w=800&auto=format&fit=crop'); }

.img-skills-ecom { background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?q=80&w=800&auto=format&fit=crop'); }
.img-skills-design { background-image: url('https://images.unsplash.com/photo-1626785774573-4b799315345d?q=80&w=800&auto=format&fit=crop'); }
.img-skills-web { background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?q=80&w=800&auto=format&fit=crop'); }
.img-skills-ai { background-image: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?q=80&w=800&auto=format&fit=crop'); }

.img-mkt-promo { background-image: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?q=80&w=800&auto=format&fit=crop'); }
.img-mkt-social { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=800&auto=format&fit=crop'); }
.img-mkt-pr { background-image: url('https://images.unsplash.com/photo-1585829365295-ab7cd400c167?q=80&w=800&auto=format&fit=crop'); }


/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 20px; }
  .companies-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text { margin-bottom: 50px; }
  .hero-btns { justify-content: center; }
  .huge-logo { transform: scale(0.8); }
  .about-wrapper { flex-direction: column; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; } /* Mobile menu needed in JS for real app */
  .hero-text h1 { font-size: 40px; }
  .companies-grid, .services-grid, .features-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
}
