:root {
  --primary: #0B3D91;
  --accent: #1B873D;
  --light: #f9f9f9;
  --dark: #222;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.site-header .logo img {
  height: 50px;
}
.site-header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
}
.site-header nav ul li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: white;
  transition: 0.3s;
}
.site-header nav ul li a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.hero-text h1 {
  font-size: 3rem;
  animation: fadeInDown 1s ease;
}
.hero-text p {
  font-size: 1.2rem;
  animation: fadeInUp 1.5s ease;
}

@keyframes fadeInDown {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Sections */
section {
  padding: 4rem 2rem;
}
section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary);
}

/* Carriers */
  .carriers {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    text-align: center;
  }

  .carriers h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .carriers p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
  }

  .carrier-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .benefit {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 20px;
    width: 250px;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }

  .benefit:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
  }

  .benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .benefit p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .link-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #00c6ff;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .link-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #0072ff, #00c6ff);
  }

  @media (max-width: 768px) {
    .carrier-benefits {
      flex-direction: column;
      gap: 15px;
    }
    .benefit {
      width: 80%;
      margin: 0 auto;
    }
  }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.member {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Services */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--light);
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Safety */
.safety ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}
.safety ul li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}
.safety ul li i {
  color: var(--accent);
}

/* Contact */
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact input, .contact textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}
.contact button {
  background: var(--primary);
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.contact button:hover {
  background: var(--accent);
}

/* Consent Checkbox */
.consent-box {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}
.consent-box input[type="checkbox"] {
  margin-top: 0.3rem;
}
.consent-box a {
  color: var(--primary);
  text-decoration: underline;
}
.consent-box a:hover {
  color: var(--accent);
}

/* About Us Section */
.about {
  background: linear-gradient(135deg, #f9f9f9, #e6f7ff);
  padding: 4rem 2rem;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.about-text {
  flex: 1 1 500px;
}
.about-text h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #444;
}
.about-image {
  flex: 1 1 400px;
  text-align: center;
}
.about-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.about-image img:hover {
  transform: scale(1.05);
}

/* Footer */


/* new footer css */
.site-footer {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  padding: 2.5rem 2rem 1rem;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  margin-bottom: 8px;
}

.footer-right ul li a {
  color: #f5f5f5;
  text-decoration: none;
}

.footer-right ul li a:hover {
  color: #00bcd4;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #f5f5f5;
  font-size: 18px;
}

.social-icons a:hover {
  color: #00bcd4;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}


/* Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background: rgba(0,0,0,0.6);
}
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 12px;
  max-width: 700px;
  font-family: 'Merriweather', serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}
.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}
.modal h2 {
  margin-top: 0;
  color: var(--primary);
}
.modal-summary {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.modal-full {
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.read-more {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}
.read-more:hover {
  background: var(--primary);
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}