 :root {
        --primary-orange: #FF6B35;
        --primary-blue: #004E89;
        --dark-blue: #002D62;
        --light-blue: #E8F4FF;
        --light-gray: #f8f9fa;
        --dark-gray: #333;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Montserrat', 'Segoe UI', sans-serif;
        color: var(--dark-gray);
        line-height: 1.6;
        overflow-x: hidden;
    }




    /* Main Navigation */
    .main-navigation {
        background-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 0;
    }

    .navbar-brand {
        font-weight: 800;
        font-size: 1.8rem;
        color: var(--dark-blue);
        display: flex;
        align-items: center;
    }

    .navbar-brand span:first-child {
        color: var(--primary-orange);
    }

    .navbar-brand span:last-child {
        color: var(--dark-blue);
    }

    /* Phone Number Display in Desktop Navigation */
    .desktop-phone {
        display: flex;
        align-items: center;
        font-weight: 700;
        font-size: 1.3rem;
        color: var(--dark-blue);
        margin-right: 25px;
        white-space: nowrap;
    }

    .desktop-phone i {
        color: var(--primary-orange);
        margin-right: 10px;
        font-size: 1.4rem;
    }

    .nav-link {
        color: var(--dark-blue) !important;
        font-weight: 600;
        padding: 30px 18px !important;
        position: relative;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-orange) !important;
    }

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 18px;
        right: 18px;
        height: 3px;
        background-color: var(--primary-orange);
    }
    .logo{
        width: 180px;
    }
.breadcrumb-item+.breadcrumb-item::before{
    color:white !important;
}
    /* Dropdown Styles */
    .dropdown-menu {
        border: none;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        padding: 15px 0;
        margin-top: 0;
        border-top: 3px solid var(--primary-orange);
        min-width: 220px;
    }

    .dropdown-item {
        padding: 12px 20px;
        font-weight: 500;
        color: var(--dark-gray);
        transition: all 0.2s;
    }

    .dropdown-item:hover {
        background-color: rgba(255, 107, 53, 0.08);
        color: var(--primary-orange);
        padding-left: 25px;
    }

    .dropdown-toggle::after {
        margin-left: 6px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Get Quote Button */
    .quote-btn {
        background-color: var(--primary-orange);
        color: white;
        border: none;
        padding: 12px 28px;
        font-weight: 700;
        border-radius: 4px;
        transition: all 0.3s ease;
        white-space: nowrap;
        margin-left: 15px;
    }

    .quote-btn:hover {
        background-color: var(--dark-blue);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 46, 98, 0.2);
    }

    /* Mobile Navigation - Right Side Menu */
    .mobile-nav-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 1100;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .mobile-nav-container.open {
        right: 0;
    }

    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1099;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .mobile-nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }

    .mobile-nav-header {
        padding: 25px 20px;
        background-color: var(--dark-blue);
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-nav-header h3 {
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0;
    }

    .mobile-nav-header h3 span:first-child {
        color: var(--primary-orange);
    }

    .mobile-close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        padding: 5px;
    }

    .mobile-nav-body {
        padding: 20px;
    }

    .mobile-nav-item {
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .mobile-nav-link {
        color: var(--dark-blue);
        font-weight: 600;
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
    }

    .mobile-nav-link.active {
        color: var(--primary-orange);
    }

    .mobile-nav-link i {
        font-size: 0.9rem;
        transition: transform 0.3s;
    }

    .mobile-nav-link[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .mobile-dropdown-menu {
        padding-left: 15px;
        margin-top: 10px;
        border-left: 2px solid var(--primary-orange);
    }

    .mobile-dropdown-item {
        padding: 7px 0;
        color: var(--dark-gray);
        text-decoration: none;
        display: block;
        transition: all 0.2s;
    }

    .mobile-dropdown-item:hover {
        color: var(--primary-orange);
        padding-left: 5px;
    }

    .mobile-phone-display {
        background-color: var(--light-blue);
        padding: 20px;
        border-radius: 8px;
        margin: 25px 0;
        text-align: center;
    }

    .mobile-phone-display .phone-number {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--dark-blue);
        margin-bottom: 5px;
    }

    .mobile-phone-display .phone-label {
        color: #666;
        font-size: 0.9rem;
    }

    .mobile-quote-btn {
        background-color: var(--primary-orange);
        color: white;
        border: none;
        padding: 15px;
        font-weight: 700;
        border-radius: 4px;
        width: 100%;
        margin-top: 20px;
        font-size: 1.1rem;
    }

    .navbar-toggler {
        border: none;
        padding: 10px;
        font-size: 2.5rem;
        color: var(--primary-blue);
        background: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }


    /* Responsive Styles */
    @media (max-width: 1199px) {
        .desktop-phone {
            font-size: 1.2rem;
            margin-right: 15px;
        }
    }

    @media (max-width: 991.98px) {
        .desktop-phone {
            display: none;
        }

        .quote-btn {
            margin-left: 0;
        }

        .mobile-phone-display {
            display: block;
        }
    }

    @media (min-width: 992px) {
        .mobile-phone-display {
            display: none;
        }
    }

    .mobile-nav-container {
        will-change: transform;
    }

    .top-contact-bar {
        background: #ff6b35;
        color: #fff;
        font-size: 0.95rem;
        padding: 10px 0;
    }

    .top-contact-bar a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
    }

    .top-contact-bar a:hover {
        text-decoration: underline;
    }

    .top-contact-bar i {
        color: #fff;
        font-size: 1rem;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 6px;
        white-space: nowrap;
    }

    .top-social a {
        font-size: 1.1rem;
    }

    .top-separator {
        color: rgba(255, 255, 255, 0.5);
        font-weight: 600;
    }

    .quote-btn {
        background: #002D62;
        color: #fff;
        border: none;
        padding: 8px 20px;
        font-weight: 600;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .quote-btn:hover {
        background: #001f45;
        transform: translateY(-1px);
    }
    .breadcrumb-section {
  background-image: url('https://www.sheetalsafestorageservice.in/img/blog-5.jpg'); /* change image if needed */
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay */
.breadcrumb-overlay {
  background: linear-gradient(
    135deg,
    rgba(10, 30, 60, 0.85),
    rgba(10, 30, 60, 0.65)
  );
  padding: 90px 0;
  text-align: center;
}

/* Title */
.breadcrumb-title {
  color: #fff;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 12px;
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #ff6b35;
}

.breadcrumb-item.active {
  color: #ffb089;
}

/* Mobile */
@media (max-width: 575px) {
  .breadcrumb-title {
    font-size: 1.6rem;
  }

  .breadcrumb-overlay {
    padding: 60px 0;
  }
}
.service-detail-section {
  background: #ffffff;
}

/* Title */
.service-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1c1f3a;
  margin-bottom: 20px;
}

/* Text */
.service-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 16px;
}

/* Checklist */
.service-checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.service-checklist li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #1f2937;
}

.service-checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background: #ff6b35;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sidebar */
.service-sidebar {
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  position: sticky;
  top: 100px;
}

.sidebar-title {
  font-weight: 800;
  margin-bottom: 20px;
  color: #1c1f3a;
}

/* Sidebar Links */
.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #ffffff;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  margin-bottom: 14px;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  transition: 0.3s ease;
}

.sidebar-link i {
  transition: transform 0.3s ease;
}

.sidebar-link:hover {
  background: #ff6b35;
  color: #fff;
}

.sidebar-link:hover i {
  transform: translateX(6px);
}

/* Active */
.sidebar-link.active {
  background: #ff6b35;
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .service-sidebar {
    position: static;
  }

  .service-title {
    font-size: 1.8rem;
  }
}

 .logistics-highlight-section {
        background: linear-gradient(135deg, #1c1f3a, #242850);
        color: #fff;
        position: relative;
        overflow: visible;
        /* 🔥 IMPORTANT */
        padding: 50px 0 50px;
    }

    /* Circle Boxes */
    .highlight-circle {
        width: 220px;
        height: 220px;
        margin: auto;
        background: #d94c0a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 25px;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        transition: all 0.3s ease;
    }

    .highlight-circle:hover {
        transform: translateY(-10px);
        background: #ff6b35;
    }

    .highlight-circle p {
        margin: 0;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 500;
    }

    .highlight-circle strong {
        font-weight: 800;
    }

    /* PERSON IMAGE FLOATING UP */
    .logistics-person {
        position: absolute;
        right: 0;
        top: -316px;
        /* 🔥 pulls image upward */
        max-height: 520px;
        z-index: 10;
        /* 🔥 above all */
        filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
    }

    /* Tablet & Mobile */
    @media (max-width: 991px) {
        .logistics-person {
            position: static;
            max-height: 320px;
            margin-top: 30px;
        }

        .highlight-circle {
            width: 190px;
            height: 190px;
        }

        .logistics-highlight-section {
            padding: 50px 0 0px;
        }
    }

    @media (max-width: 575px) {
        .highlight-circle {
            width: 170px;
            height: 170px;
        }
    }

      .all-india-warehouse {
        background: linear-gradient(180deg, #f8fafc, #ffffff);
    }

    /* Heading */
    .warehouse-title {
        font-size: 2.4rem;
        font-weight: 800;
        color: #1c1f3a;
    }

    .warehouse-subtitle {
        max-width: 720px;
        margin: 10px auto 0;
        color: #6b7280;
        font-size: 1.05rem;
    }

    /* City Card */
    .city-card {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #ffffff;
        border-radius: 14px;
        padding: 14px 18px;
        font-weight: 600;
        color: #1c1f3a;
        text-decoration: none;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .city-card i {
        color: white;
        font-size: 1.1rem;
    }

    .city-card:hover {
        background: linear-gradient(135deg, #ff6b35, #ff8f59);
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    }

    .city-card:hover i {
        color: #fff;
    }

    /* Mobile */
    @media (max-width: 575px) {
        .warehouse-title {
            font-size: 1.9rem;
        }
    }