/* style2.css - Enhanced Modern Header */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.modern-navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 60px;
  transition: 0.3s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  transition: 0.3s;
  border-radius: 6px;
}

.nav-links li a:hover {
  background-color: #c31919;
  color: #fff;
}

.call-btn a {
  background-color: #c31919;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.call-btn a:hover {
  background-color: #a10d0d;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* Shrink on scroll */
.shrink {
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.shrink .nav-logo {
  height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background: #fff;
      flex-direction: column;
      display: none;
      text-align: center;
      padding: 10px 0;
  }

  .nav-links.active {
      display: flex;
  }

  .call-btn {
      display: none;
  }

  .menu-toggle {
      display: block;
  }
}
/* Services Section Styling */
.services-section {
background-color: #f7f7f7;
padding: 80px 0;
font-family: 'Poppins', sans-serif;
}

.section-title h2 {
font-size: 36px;
margin-bottom: 10px;
font-weight: 700;
color: #222;
}

.section-title h2 span {
color: #c31919;
}

.section-title p {
font-size: 16px;
color: #666;
margin-bottom: 40px;
}

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

.service-card {
background: #fff;
padding: 30px 25px;
border-radius: 12px;
text-align: center;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease-in-out;
position: relative;
}

.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
font-size: 40px;
color: #c31919;
margin-bottom: 20px;
}

.service-card h4 {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
color: #222;
text-transform: uppercase;
}

.service-card p {
font-size: 14px;
color: #555;
text-align: justify;
}

/* Responsive tweaks */
@media (max-width: 767px) {
.section-title h2 {
  font-size: 28px;
}

.service-card {
  padding: 20px;
}
}
/* Super Attractive Services Section */
.super-services {
  background: linear-gradient(145deg, #f0f4ff, #ffffff);
  padding: 100px 0;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  color: #222;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-header h2 span {
  color: #c31919;
}

.section-header p {
  color: #666;
  font-size: 16px;
  margin: 0 auto;
  max-width: 600px;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-box {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 35px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #c31919, #c31919);
  color: white;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.service-box h4 {
  font-size: 20px;
  color: #333;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-box p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 32px;
  }

  .icon-box {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
}
.appointment-section {
  background: #f5f7fb;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.appointment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.appointment-content {
  flex: 1 1 70%;
}

.appointment-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.appointment-content h2 span {
  color: #c31919;
}

.appointment-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

.appointment-cta {
  flex: 1 1 30%;
  text-align: right;
}

.cta-btn {
  background: #c31919;
  color: white;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 600;
}

.cta-btn:hover {
  background: #c2185b;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .appointment-box {
    flex-direction: column;
    text-align: center;
  }

  .appointment-content {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .appointment-cta {
    flex: 1 1 100%;
    text-align: center;
  }

  .appointment-content h2 {
    font-size: 26px;
  }
}
.why-choose-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafd, #e6f2f7);
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-title h2 span {
  color: #2358a2;
}

.section-title .subtitle {
  font-size: 18px;
  color: #666;
}

.main-img {
  border-radius: 12px;
  border: 4px solid #2358a2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.content-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.content-box h3 {
  font-weight: 600;
  color: #004f6e;
  margin-bottom: 15px;
}

.btn-explore {
  display: inline-block;
  margin-top: 20px;
  background: #2358a2;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: #006e8c;
  transform: translateY(-2px);
}

.feature-grid {
  margin-top: 60px;
}

.feature-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-card .icon {
  font-size: 32px;
  margin-bottom: 15px;
  color: #2358a2;
}

.feature-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #004f6e;
}

.feature-card p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 767px) {
  .main-content {
    flex-direction: column;
  }

  .feature-card {
    margin-bottom: 30px;
  }
}
.features-section {
  padding: 80px 0;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1b1f3b;
}

.section-header h2 span {
  color: #2457a2;
}

.section-header .subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.features-image img {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-box {
  background: #f9f9f9;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  height: 100%;
}

.feature-box:hover {
  background: linear-gradient(135deg, #fefefe, #f4f7ff);
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.feature-box .icon {
  font-size: 30px;
  color: #2457a2;
  margin-bottom: 15px;
}

.feature-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.feature-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 15px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .features-image {
    margin-bottom: 30px;
  }
}
/* FAQ Section Styles */
.faq-area {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.faq-area .site-heading h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 10px;
}

.faq-area .site-heading h2 span {
  color: #cf4a43;
}

.faq-area .site-heading p {
  font-size: 1.2rem;
  color: #6c757d;
}

.faq-area .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.faq-area .col-md-6 {
  padding: 15px;
}

.map-container {
  max-width: 100%;
  border: 2px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-items .accordion .card {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
}

.faq-items .accordion .card-header {
  background-color: #f1f1f1;
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 1.1rem;
}

.faq-items .accordion .card-header .btn-link {
  color: #343a40;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: left;
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
}

.faq-items .accordion .card-header .btn-link:focus {
  outline: none;
}

.faq-items .accordion .collapse.show .card-body {
  background-color: #f8f9fa;
  padding: 20px;
  font-size: 1rem;
  color: #555;
}

.faq-number {
  font-weight: bold;
  color: #cf4a43;
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .faq-area .site-heading h2 {
      font-size: 2.5rem;
  }

  .faq-area .site-heading p {
      font-size: 1rem;
  }

  .faq-items .accordion .card-header {
      font-size: 1rem;
  }

  .faq-items .accordion .card-body {
      padding: 15px;
  }
}

/* Add some subtle hover effects */
.faq-items .accordion .card-header .btn-link:hover {
  color: #cf4a43;
  text-decoration: none;
}

.faq-items .accordion .collapse.show .card-body p {
  line-height: 1.6;
}

.faq-area .map-container img {
  width: 100%;
  border-radius: 8px;
}

/* Add spacing between FAQ items */
.faq-items .accordion .card {
  margin-bottom: 20px;
}

/* Styling the "Our Presence Across India" section */
.faq-area h3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 20px;
}

.faq-area .map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}


.warehousing-express-signup-area {
  background-color: #333;
  padding: 60px 0;
  color: #fff;
}

.warehousing-express-signup-area .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.warehousing-express-signup-area .row {
  display: flex;
  justify-content: space-between;
  gap: 30px; /* Add gap between columns */
  flex-wrap: wrap; /* Ensures it wraps on smaller screens */
}

.warehousing-express-signup-area .col-md-3 {
  flex: 1 1 22%; /* Make each card take up roughly 22% of the row */
  margin: 0;
  text-align: center;
  box-sizing: border-box;
}

.warehousing-express-signup-area .step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Add light shadow for depth */
}

.warehousing-express-signup-area .step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.warehousing-express-signup-area .step-icon {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.warehousing-express-signup-area .icon-img {
  max-width: 50px;
  max-height: 50px;
}

.warehousing-express-signup-area .step-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.warehousing-express-signup-area .step-description {
  font-size: 16px;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .warehousing-express-signup-area .col-md-3 {
      flex: 1 1 45%; /* Make two cards per row on medium screens */
  }
}

@media (max-width: 767px) {
  .warehousing-express-signup-area .col-md-3 {
      flex: 1 1 100%; /* Stack the cards on small screens */
  }
  .warehousing-express-signup-area .section-title {
      font-size: 28px;
  }

  .warehousing-express-signup-area .step-title {
      font-size: 20px;
  }

  .warehousing-express-signup-area .step-description {
      font-size: 14px;
  }
}
/* General Footer Styling */
.footer {
    background-color: #1e1e1e;
    color: #fff;
    font-family: 'Arial', sans-serif;
    padding: 50px 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer .footer-about-text {
    font-size: 14px;
    line-height: 1.8;
}

.footer .footer-logo-img {
    max-width: 180px;
    height: auto;
}

.footer .footer-links li {
    margin-bottom: 10px;
}

.footer .footer-contact-info li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer .footer-contact-info i {
    margin-right: 8px;
    color: #c31919;
}

/* Bottom Footer Text */
.footer-bottom-text {
    font-size: 14px;
    margin: 0;
}

.social-icons li {
    display: inline-block;
    margin-left: 10px;
}

.social-icons li:first-child {
    margin-left: 0;
}

.social-icons a {
    color: #ddd;
    font-size: 16px;
}

.social-icons a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 767px) {
    .footer .row > div {
        text-align: left !important;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        margin-bottom: 30px;
    }

    .footer-logo-img {
        max-width: 150px;
    }

    .footer .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer .social-icons {
        text-align: left;
        padding-top: 15px;
    }

    .footer .social-icons li {
        margin-left: 0;
        margin-right: 10px;
    }

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

.beautiful-contact-form {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: auto;
  transition: 0.3s ease;
}

.beautiful-contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.form-title {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: #c31919;
  font-weight: 600;
}

.form-row {
  margin-bottom: 20px;
}

.beautiful-contact-form input,
.beautiful-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s;
}

.beautiful-contact-form input:focus,
.beautiful-contact-form textarea:focus {
  border-color: #cf4a43;
  outline: none;
}

.beautiful-contact-form button {
  background-color: #c31919;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.beautiful-contact-form button:hover {
  background-color: #b83936;
}
.custom-contact-form {
  background: linear-gradient(to bottom right, #ffffff, #f9f9f9);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
  max-width: 500px;
  margin: auto;
}

.custom-contact-form h2 {
  text-align: center;
  font-size: 26px;
  color: #c31919;
  margin-bottom: 30px;
  font-weight: 700;
}

.custom-contact-form h2 span {
  color: #12499a;
}

.custom-contact-form .form-group {
  margin-bottom: 20px;
}

.custom-contact-form .form-control {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.custom-contact-form .form-control:focus {
  border-color: #cf4a43;
  outline: none;
  box-shadow: 0 0 5px rgba(207, 74, 67, 0.3);
}

.submit-btn {
  background: #cf4a43;
  color: #fff;
  border: none;
  padding: 12px 35px;
  font-size: 16px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #a93832;
  cursor: pointer;
}
.client-logo-carousel .client-logo {
  text-align: center;
  padding: 10px;
}
.client-logo-carousel .client-logo img {
  max-width: 120px;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease;
}
.client-logo-carousel .client-logo img:hover {
  transform: scale(1.1);
}