/* =============================================
   ABUL AZAD INTERNATIONAL FREIGHT BROKER
   Color Palette: Black, White, Yellow/Gold, Red
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* === COLOR VARS === */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gold: #FFD700;
  --gold-dark: #c9a900;
  --red: #c8102e;
  --red-dark: #a00c24;
  --yellow: #FFC300;
  --gray: #f5f5f5;
  --text-muted: #666;
}

/* === GOLD TEXT === */
.gold { color: var(--gold); }

/* === BUTTONS === */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  color: var(--black);
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--yellow), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,215,0,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-block;
  font-size: 0.95rem;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* === HEADER === */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--black);
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-circle {
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 12px rgba(255,215,0,0.4);
}
.logo-text strong { display: block; color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 1rem; }
.logo-text small { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.5px; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { color: #ccc; font-size: 0.9rem; font-weight: 600; transition: color 0.2s; letter-spacing: 0.3px; }
nav a:hover { color: var(--gold); }
.btn-nav {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 4px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.hamburger { display: none; color: var(--gold); font-size: 1.8rem; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; background: #111; border-top: 1px solid #222; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #ccc; padding: 14px 24px; border-bottom: 1px solid #222; font-weight: 600; }
.mobile-menu a:hover { color: var(--gold); background: #1a1a1a; }

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex; align-items: center;
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,16,46,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,215,0,0.08) 0%, transparent 60%);
}
/* Animated diagonal stripes */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,215,0,0.015) 60px,
    rgba(255,215,0,0.015) 120px
  );
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  padding: 80px 20px;
  width: 100%;
}
.hero-logo-wrap { margin-bottom: 20px; }
.hero-logo-circle {
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  width: 80px; height: 80px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
}
.maple-leaf { font-size: 1.8rem; margin-bottom: 8px; }
.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 10px;
}
.hero-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.hero-tagline { color: #aaa; font-size: 1.05rem; margin-bottom: 36px; }
.hero-badges {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px;
  margin-bottom: 40px;
}
.badge {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  padding: 9px 20px;
  border-radius: 30px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.investor-strip {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 10px 28px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  animation: pulse-red 2s infinite;
}
.ai-strip {
  display: block;
  color: #888;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,16,46,0.5); }
  50% { box-shadow: 0 0 0 14px rgba(200,16,46,0); }
}

/* === SECTION COMMON === */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 10px;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 580px; margin: 0 auto; }

/* === ABOUT === */
.about { padding: 96px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text p { color: #444; margin-bottom: 18px; font-size: 0.98rem; }
.about-list { list-style: none; margin-top: 10px; }
.about-list li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-card {
  background: var(--black);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-card h3 { font-family: 'Montserrat', sans-serif; color: var(--gold); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.stat-card p { color: #999; font-size: 0.82rem; }

/* === SERVICES === */
.services { padding: 96px 0; background: var(--black); }
.services .section-title { color: var(--white); }
.services .section-sub { color: #888; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: #111;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #222;
  border-bottom: 4px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(255,215,0,0.1);
  border-color: var(--red);
}
.service-icon { font-size: 2.8rem; margin-bottom: 18px; }
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.service-card p { color: #999; font-size: 0.9rem; }

/* === LOCATIONS === */
.locations { padding: 96px 0; background: var(--gray); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 780px; margin: 0 auto;
}
.location-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-top: 4px solid var(--red);
}
.loc-icon { font-size: 2.5rem; margin-bottom: 14px; }
.location-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 12px;
}
.location-card p { color: #555; line-height: 2; }

/* === CONTACT === */
.contact { padding: 96px 0; background: var(--black); }
.contact .section-title { color: var(--white); }
.contact .section-sub { color: #888; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #111;
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-item a, .contact-item span { color: #ddd; font-size: 0.92rem; }
.contact-item a:hover { color: var(--gold); }
.contact-form {
  background: #111;
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid #222;
}
.contact-form h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 13px 16px;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--white);
  outline: none;
  transition: border 0.2s;
  margin-bottom: 14px;
  display: block;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #666; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form button { width: 100%; margin-top: 6px; font-size: 1rem; }

/* === FOOTER === */
footer { background: #050505; border-top: 3px solid var(--gold); }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 32px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo-circle {
  background: linear-gradient(135deg, var(--gold), var(--yellow));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-brand strong { display: block; color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.95rem; }
.footer-brand small { color: var(--gold); font-size: 0.75rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #888; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: #888; font-size: 0.88rem; margin-bottom: 6px; }
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid #1a1a1a;
  color: #555;
  font-size: 0.82rem;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: block; }
  .hero-content h1 { font-size: 2.4rem; letter-spacing: 3px; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2rem; }
}
.hero-global{
    color:#FFD700;
    font-size:20px;
    font-weight:700;
    margin-top:10px;
}

.hero-country{
    color:white;
    font-size:15px;
    letter-spacing:1px;
    margin-bottom:15px;
}
.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:80%;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,215,0,0.45), transparent);
    animation:cargoMove 3s infinite linear;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

@keyframes cargoMove{
    0%{ left:-150%; }
    100%{ left:150%; }
}

.hero{
    position:relative;
    overflow:hidden;
}
.hero{
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:-150%;
    width:80%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,215,0,0.35),
        transparent
    );

    animation:cargoMove 4s infinite linear;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}

@keyframes cargoMove{
    0%{
        left:-150%;
    }

    100%{
        left:150%;
    }
}

.hero-logo-circle img{
    animation:logoFloat 4s ease-in-out infinite;
    filter:drop-shadow(0 0 20px gold);
}

@keyframes logoFloat{

    0%{
        transform:translateY(0px) scale(1);
    }

    50%{
        transform:translateY(-8px) scale(1.05);
    }

    100%{
        transform:translateY(0px) scale(1);
    }
}