/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f9f9f9;
    color: #1f2937; /* cool gray text */
    line-height: 1.6;
}

/* ================================================= */
/* 1. Hero Section */
/* ================================================= */

.about-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.05));
    z-index: 1;
}

.about-hero-overlay {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.about-hero-overlay h1 {
    text-transform: uppercase;
    font-size: 3.9rem; /* Base desktop size */
    font-weight: 900;
    font-family: 'Montserrat', 'Arial Black', Impact, sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================= */
/* 2. About Us Section (Your existing responsive CSS is good here) */
/* ================================================= */

.about-3pl {
    padding: 4rem 2rem 2rem 2rem;
    background-color: #f9fafb;
    text-align: left;
}

.about-3pl h2 {
    font-family: 'Georgia', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #0F766E;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.about-3pl p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 0.2rem;
    width: 100%;
    max-width: 1200px; /* Added max-width for better desktop readability */
    margin-left: auto;
    margin-right: auto;
}

/* ================================================= */
/* 3. Services Capabilities Section */
/* ================================================= */

.services-capabilities {
    padding: 4rem 2rem;
    background: #f8fafc;
    text-align: center;
}

.services-capabilities h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem; /* Base desktop size */
    margin-bottom: 3rem;
    color: #0F766E;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem 1.5rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: left;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #f9fafb, #e0f2f1);
}

.service-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    color: #14b8a6;
    background: #d1fae5;
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #374151;
}

.service-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* ================================================= */
/* 4. Strategic Assets Section (Carousel) */
/* ================================================= */
.strategic-assets {
  padding: 60px 20px;
  text-align: center;
}

.assets-header h3 {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0F766E;
}

.assets-header p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.assets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  justify-content: center;
}

.asset-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.asset-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.asset-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.asset-content {
  padding: 20px 24px;
}

.asset-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0F766E; /* Teal color for title icon */
}

.asset-title h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.asset-location {
  font-weight: 500;
  color: #666;
  margin: 4px 0 12px;
}

.asset-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ✅ Make these headings black */
.sub-section h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 16px 0 8px;
  color: #0F766E;
}

/* List styling */
.asset-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.asset-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  color: #444;
  font-size: 0.95rem;
}

/* ✅ All icons in teal */
.asset-list i,
.asset-title i {
  color: #0F766E;
  width: 18px;
  height: 18px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .strategic-assets {
    padding: 40px 16px;
  }

  .asset-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .assets-header h3 {
    font-size: 1.3rem;
  }

  .asset-content {
    padding: 16px;
  }
}



/* ================================================= */
/* 5. Vision & Mission Section */
/* ================================================= */

.vision-mission {
    padding: 4rem 2rem;
    background: #ffffff;
}

.vision-mission h2 {
    text-align: center;
    font-size: 2.2rem; /* Base desktop size */
    font-family: 'Georgia', serif;
    margin-bottom: 3rem;
    color: #0F766E;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Desktop grid */
    gap: 2rem;
    max-width: 1200px; /* constrain width */
    margin: 0 auto;
}

.vm-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.vm-icon img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.vm-header h3 {
    font-size: 1.5rem;
    color: #374151;
}

.vm-card p, .vm-card ul li {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
}

/* ================================================= */
/* 6. Why Choose Us Section */
/* ================================================= */

.why-choose {
    padding: 4rem 2rem;
    background: #f9f9f9;
    text-align: center;
}

.why-choose h2 {
    font-family: 'Georgia', serif;
    font-size: 2.5rem; /* Base desktop size */
    color: #0F766E;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px; /* constrain width */
    margin-left: auto;
    margin-right: auto;
}

.feature {
    background: #ffffff;
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0f766e;
}

.feature p {
    font-size: 1rem;
    color: #475569;
}

.about-company p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #334155;
}

/* ================================================= */
/* MEDIA QUERIES - RESPONSIVENESS */
/* ================================================= */

/* ---------- Large Laptops (max-width: 1200px) ---------- */
@media (max-width: 1200px) {
  .about-hero-overlay h1 {
    font-size: 3.2rem;
  }

  .services-capabilities h2,
  
  .vision-mission h2,
  .why-choose h2 {
    font-size: 2rem;
  }

  .service-item {
    padding: 1.5rem;
  }
}

/* ---------- Tablets (max-width: 992px) ---------- */
@media (max-width: 992px) {
  .about-hero {
    height: 350px;
  }

  .about-hero-overlay h1 {
    font-size: 2.8rem;
  }

  

  .service-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .service-icon {
    margin-bottom: 0.8rem;
  }

  .vm-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .features {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .feature i {
    font-size: 2rem;
  }
}

/* ---------- Mobile Devices (max-width: 768px) ---------- */
@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }

  .about-hero {
    height: 300px;
  }

  .about-hero-overlay h1 {
    font-size: 2.3rem;
    letter-spacing: 1px;
  }

  .about-3pl h2 {
    font-size: 1.6rem;
  }

  .about-3pl p {
    font-size: 1rem;
  }

  .services-capabilities h2,
  
  .vision-mission h2,
  .why-choose h2 {
    font-size: 1.8rem;
  }

  .service-item {
    padding: 1.3rem;
    gap: 1rem;
  }

  .service-content h3 {
    font-size: 1.2rem;
  }

  

  

  .vm-card {
    padding: 1.5rem;
  }

  .vm-header h3 {
    font-size: 1.25rem;
  }

  .vm-icon img {
    width: 50px;
    height: 50px;
  }

  .feature {
    padding: 1.5rem 1rem;
  }

  .feature h3 {
    font-size: 1.1rem;
  }

  .feature p {
    font-size: 0.95rem;
  }
}

/* ---------- Small Mobiles (max-width: 480px) ---------- */
@media (max-width: 480px) {
  .about-hero {
    height: 260px;
  }

  .about-hero-overlay h1 {
    font-size: 1.8rem;
  }

  .about-3pl {
    padding: 2.5rem 1rem;
  }

  .services-capabilities {
    padding: 2.5rem 1rem;
  }

 

  .vision-mission {
    padding: 2.5rem 1rem;
  }

  .why-choose {
    padding: 2.5rem 1rem;
  }

  .service-item {
    padding: 1rem;
  }

  .service-icon {
    font-size: 1.5rem;
    padding: 0.7rem;
  }

  .vm-header h3 {
    font-size: 1.1rem;
  }

  .vm-card p,
  .service-content p {
    font-size: 0.9rem;
  }

  .feature i {
    font-size: 1.8rem;
  }

  .feature h3 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .about-company p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }
}

/* ---------- Very Large Screens (min-width: 1600px) ---------- */
@media (min-width: 1600px) {
  .about-hero {
    height: 500px;
  }

  .about-hero-overlay h1 {
    font-size: 4.2rem;
  }

  .about-3pl p,
  .service-content p,
  
  .vm-card p {
    font-size: 1.15rem;
  }

  .service-item {
    max-width: 1000px;
    margin: 0 auto;
  }
}


