:root {
  --primary: #0041a8; /* Vibrant Blue */
  --secondary: #e62020; /* Pro Red */
  --accent: #2e7d32;
  --dark: #1a1a1a;
  --light: #f4f7fa;
  --gray: #6b7280;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #0041a8 0%, #002c73 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

p {
  text-align: justify;
  text-justify: inter-word;
}

.hero p, .section-title p, .subhero p, .footer-bottom p, .stat-item p, .process-step p, .thank-you-card p {
    text-align: center !important;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
}

nav ul {
  display: flex;
  gap: 2rem;
}

nav ul li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  display: block;
}

nav ul li a:hover {
  color: var(--secondary);
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 3px solid var(--secondary);
    border-radius: 0 0 8px 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    display: block; /* Overrides the ul global hidden if any */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
}

.dropdown-menu li a {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.95rem !important;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--light);
}

.header-cta {
  background: var(--secondary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 127, 39, 0.3);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #e66a1a;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 65, 130, 0.7), rgba(0, 65, 130, 0.7)), url('Photos/hero.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto; /* Ensure it stays centered regardless of container width */
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: white;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-primary:hover {
  background: #c51a1a;
  transform: scale(1.05);
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* Sections Styling */
section {
  padding: 50px 0; /* Reduced from 100px as requested */
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.about-content p, .about p {
  margin-bottom: 1.2rem;
  color: #4b5563;
  text-align: justify !important;
  text-justify: inter-word;
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 65, 168, 0.08);
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 65, 168, 0.1);
  border-color: var(--secondary);
}

.stat-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(230, 32, 32, 0.1);
  color: var(--secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem !important;
  font-weight: 800;
}

.stat-info p {
  margin: 0 !important;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
  text-align: left !important;
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.about-full {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('Photos/Transport and Logistics.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect for modern feel */
  color: white;
  padding: 80px 0;
}

.about-full h2 {
  color: white;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.about-full p {
  color: rgba(255, 255, 255, 0.9);
  text-align: justify !important;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.about-full .container {
    max-width: 1000px;
}
.services {
  background: var(--light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
    text-align: justify;
}

/* Collapsible Content */
.expandable-content {
  max-height: 100px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.expandable-content.expanded {
  max-height: 1000px;
}

.read-more-btn {
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Features/Why Choose Us Section */
.features {
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.features .section-title h2 {
    color: var(--primary);
}

.feature-box {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-box .img-wrapper {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.feature-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-box:hover img {
    transform: scale(1.05);
}

.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.feature-box p {
  color: #4b5563;
  line-height: 1.6;
  text-align: justify;
}


/* Process Section */
.process {
  background: var(--primary);
  color: white;
}

.process h2, .process p {
  color: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-img {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--secondary);
  overflow: hidden; /* Added to keep everything inside */
  padding: 0; /* Setting padding to 0 as requested */
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Back to cover to fill the circle */
}

.process-step h3 {
  color: white;
  margin-bottom: 1rem;
}

/* Premium Footer Section */
footer {
    background: #0a1128; /* Deep Midnight Blue */
    color: white;
    padding: 100px 0 40px;
    margin-top: 80px;
    position: relative;
    border-top: 5px solid var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 60px;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left !important;
}

.contact-info li span {
    color: var(--secondary);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-align: center !important;
}

/* Sticky Contact */
.call-sticky {
  position: fixed;
  bottom: 30px; /* Moved down since WhatsApp is removed */
  right: 30px;
  background: var(--secondary);
  color: white !important; /* Force white icon */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: pulse 2s infinite; /* Added pulse for visibility */
}

.call-sticky svg {
    display: block;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* FAQ Section */
.faq {
    background: #fdfdfd;
    padding: 80px 0;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Gradient Sidebar for Non-Active */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--secondary) 100%);
    z-index: 2;
}

.faq-question {
    padding: 1.8rem 2.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary);
    background: rgba(0, 65, 168, 0.03); /* Soft blue by default */
    transition: all 0.4s ease;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.faq-question .faq-icon {
    width: 32px;
    height: 32px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: white;
    color: var(--secondary);
}

.faq-item.active {
    box-shadow: 0 25px 50px rgba(0, 65, 168, 0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 800px;
}

.faq-answer-content {
    padding: 2.5rem 2.8rem;
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.05rem;
    background: #fff;
}

/* Enhanced Responsive Styling */
@media (max-width: 991px) {
  .container {
    width: 92%;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  header {
    background: rgba(255, 255, 255, 0.98);
  }

  .logo img {
    height: 50px;
  }

  /* Hamburger Styling */
  .hamburger {
    display: block;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    margin: 6px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  /* Hamburger Animation */
  .hamburger.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  .hamburger.toggle span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -7px);
  }

  /* Mobile Nav Drawer */
  nav {
    display: block !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  nav.nav-active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  nav ul li a {
    font-size: 1.3rem;
    font-weight: 700;
  }

  .header-cta {
    display: none !important;
  }
  
  /* Hero Refinement */
  .hero {
    height: auto;
    min-height: 80vh;
    padding: 120px 0 80px;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 10px;
  }

  .cta-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section Titles */
  .section-title h2 {
    font-size: 1.8rem;
  }

  /* Grids and Spacing */
  section {
    padding: 60px 0;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-info li {
    justify-content: center;
  }

  .call-sticky, .whatsapp-sticky {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Contact Page Form & Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: flex-start;
    padding: 80px 0;
}

.contact-info-box {
    background: var(--primary);
    color: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-info-box h2 {
    color: white;
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-form-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(230, 32, 32, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #c51a1a;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

