 /* #e30b5d Hex */
html, body {
  overflow-x: hidden;
}

.custom-navbar {
    background-color: #f8f9fa; 
    padding: 15px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Navbar Brand */
.navbar-brand {
    font-size: 22px;
    font-weight: bold;
    color: #333;
}

/* Navbar Links */
.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #e30b5d;
}

/* Custom Dropdown Styles for Large Screens */
@media (min-width: 992px) {
    .custom-navbar .dropdown-menu {
      background: #ffffff;
      border: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      margin-top: 0.75rem;
      padding: 0.5rem 0;
      min-width: 220px;
      border-radius: 8px;
    }
  
    .custom-navbar .dropdown-item {
      position: relative;
      padding: 0.75rem 1.5rem;
      color: #2d3748;
      transition: all 0.3s ease;
    }
  
    /* Hover Animation */
    .custom-navbar .dropdown-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #e30b5d;
      transition: width 0.3s ease;
    }
  
    .custom-navbar .dropdown-item:hover {
      background: transparent;
      color: #e30b5d;
      padding-left: 1.75rem;
    }
  
    .custom-navbar .dropdown-item:hover::after {
      width: 100%;
    }
  
    .custom-navbar .dropdown-menu[aria-labelledby="companyDropdown"] {
      left: auto;
      right: 0;
    }
  }

  

/*-------------------- Navbar Button--------------------------- */


.book-btn {
    position: relative;
    display: inline-block;
    padding: 10px 25px; 
    background-color: #e30b5d;
    color: white;
    font-size: 16px; 
    text-decoration: none;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.book-btn:hover {
    background-color: #810433;
    
}

/* Hide spans by default */
.book-btn span {
    position: absolute;
    display: none;
}

/* Show animated spans on hover */
.book-btn:hover span {
    display: block;
}

/* Top border animation */
.book-btn span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, rgba(227, 11, 93, 0), rgba(227, 11, 93, 1));
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Right border animation */
.book-btn span:nth-child(2) {
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(227, 11, 93, 0), rgba(227, 11, 93, 1));
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate2 {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Bottom border animation */
.book-btn span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, rgba(227, 11, 93, 0), rgba(227, 11, 93, 1));
    animation: animate3 2s linear infinite;
}

@keyframes animate3 {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Left border animation */
.book-btn span:nth-child(4) {
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, rgba(227, 11, 93, 0), rgba(227, 11, 93, 1));
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate4 {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}


/* ------------------------------------------------------------------- */


.hero-section {
    position: relative;
    width: 100%;
    height: 83vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 100vh;
  }
}


/* Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}




/* Content Wrapper */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Welcome Section */
.welcome-text {
    padding: 30px;
}

/* Shipping Form */
.shipping-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    max-width: 450px;
    margin: auto;
}






/*   --------------services-------------*/


.services-section {
            padding: 50px 0;
            background: #f9f9f9;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: all 0.5s ease-in-out;
        }

        .service-card img:hover {
            transform: scale(1.1);
          }

        .service-content {
            flex-grow: 1;
            padding: 20px;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        .service-card p {
            color: #555;
            font-size: 1rem;
        }

        .read-more-btn {
            display: inline-block;
            padding: 8px 16px;
            color: #e30b5d;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: bold;
            cursor: pointer;
        }

        .read-more-btn:hover {
            letter-spacing: 3px;
        }
        
[data-aos] {
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .border-animate {
            width: 100%;
            height: 1px;
            background: #e30b5d;
            position: relative;
            transition: all 0.5s ease-in-out;
        }

        .service-card:hover .border-animate {
            width: 0%;
            margin-left: auto;
            margin-right: auto;
        }

        
        .about-section {
            padding: 80px 0;
            background: #f9f9f9;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        }

        .about-content {
            padding-left: 20px;
            animation: fadeInRight 1s ease-in-out;
        }

        .about-content h2 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 15px;
            color: #333;
        }

        .about-content p {
            font-size: 1rem;
            color: #555;
            line-height: 1.6;
            padding: 20;
        }

        .about-features {
            list-style: none; 
            padding: 0;
            margin-top: 20px;
        }
        
        .about-features li {
            font-size: 1rem;
            color: #333;
            padding-left: 20px; 
            position: relative;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .about-features li::before {
            content: "\2022"; 
            color: #e68900; 
            font-size: 1.5rem; 
            position: absolute;
            left: 0; 
            top: 50%;
            transform: translateY(-50%); 
        }
               

       

        @media (max-width: 768px) {
            .about-content {
                padding-left: 0;
                padding-top: 20px;
                text-align: center;
            }

            .about-features li {
                text-align: left;
                padding-left: 25px;
            }
        }


        @media (max-width: 768px) {
            .choose-us-content {
                text-align: center;
            }

            .choose-us-features li {
                text-align: left;
                padding-left: 25px;
            }

            .choose-us-image {
                margin-top: 20px;
            }
        }

        .form-bg{
            background: url('images/form.webp') center/cover no-repeat;
            background-attachment: fixed;
            padding: 100px 0;
            
            position: relative;
          
        }

        .form-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Dark overlay */
        }

        .form-bg .container{
            position: relative;
            z-index: 2;
        }


        .cta-section {
            background: url('images/service.webp') center/cover no-repeat;

            padding: 100px 0;
            text-align: center;
            position: relative;
            color: white;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6); /* Dark overlay */
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center; /* Centers the buttons horizontally */
            gap: 20px; /* Space between buttons */
        }
        
        /* Make sure the buttons don't stack */
        .book-btn, .btn-shipping {
            display: inline-block; /* Ensure the buttons are inline with each other */
        }


        .btn-shipping {
            text-decoration: none;
            background-color: transparent;
            color: white;
            border: 2px  solid white;
            padding: 10px 25px;
        }
        .btn-shipping:hover {
            background-color: white;
            color: #333;
        }

       

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #f1f1f1;
    font-size: 15px;
    line-height: 1.8;
    padding-top: 40px;
}

.footer-logo {
    font-size: 26px;
    font-weight: bold;
    color: #e30b5d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #e30b5d;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #e30b5d;
    transform: translateX(5px);
}

.footer-about p {
    margin-top: 10px;
    color: #cccccc;
}

.social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
    color: #f1f1f1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #e30b5d;
    transform: scale(1.2);
    filter: drop-shadow(0 4px 6px #e30b5d);

}

i{
    color: #e30b5d;
}

.footer-divider {
    border-top: 1px solid #444;
    margin: 30px 0;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.footer-bottom-links li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: #e30b5d;
}

/* ------------------testimonail------------------- */

.testimonial-item {
    position: relative;
    padding-top: 80px; /* Half of image height */
    text-align: center;
}

/* Circle for image */
.circles {
    position: absolute;
    top: -20px; /* Adjust this value to make the circle go out of the box */
    left: 50%;
    transform: translateX(-50%);
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    border-radius: 50%;
    z-index: 2;
    overflow: hidden;
    
}

.circles img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the circle perfectly */
}

/* Testimonial Box */
.testimonial-box {
    background: #000;
    color: #fff;
    padding: 80px 25px 25px 25px; /* Top padding = half image height */
    border-radius: 15px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    margin: 0 15px;
}

.testimonial-box::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 18px;
    background: linear-gradient(45deg, #333, #000);
    z-index: -1;
}

.review {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #fff;
}

.name {
    margin-bottom: 5px;
    color: #fff;
    font-size: 20px;
}

.designation {
    font-size: 14px;
    color: #ccc;
}

/* Owl Carousel Adjustments */
.owl-stage-outer {
    padding: 30px 0;
}

.owl-item {
    display: flex;
    justify-content: center;
}

.owl-dots {
    margin-top: 30px !important;
}

.owl-dot span {
    background: #666 !important;
}

.owl-dot.active span {
    background: #fff !important;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transform: perspective(1000px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    will-change: transform;
}

/* Hover Effects */
.about-image:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(2deg);
}

.about-image:hover img {
    transform: translateZ(30px) scale(1.05);
    filter: brightness(1.1) drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Shine Effect */
.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.8s;
}

.about-image:hover::before {
    left: 150%;
}

  /* Contact Section */
  .contact-section {
    background-color: #fff;
    padding-top: 60px;
  }

  .contact-form {
    background-color: #fefefe;
    padding: 40px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .contact-form h2 {
    color: #e30b5d;
    margin-bottom: 20px;
  }

  .form-control {
    background-color: #f9f9f9;
    color: #333;
  }

  .btn-custom {
    background-color: #e30b5d;
    color: #fff;
    transition: 0.3s;
  }


  .map iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
  }

  .map {
    margin-top: 0;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
  }

  @media (max-width: 767px) {
    .info-box {
      margin-bottom: 20px;
    }

    .contact-form {
      border-radius: 10px 10px 0 0;
    }

    .map {
      border-radius: 0 0 10px 10px;
    }
  }

  /* -----------------faqs--------------------- */
    


    .loader {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background: white;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 9999;
    }

    .circle-container {
        position: relative;
        width: 100px;
        height: 100px;
    }

    .circle {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        animation: pulse 1.5s infinite ease-in-out;
    }

    .circle:nth-child(1) {
        background-color: #e30b5d;
        left: 0;
        animation-delay: 0s;
    }

    .circle:nth-child(2) {
        background-color: #e30b5d;
        left: 40px;
        animation-delay: 0.2s;
    }

    .circle:nth-child(3) {
        background-color: #e30b5d;
        left: 80px;
        animation-delay: 0.4s;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(0);
            opacity: 0.5;
        }
        50% {
            transform: scale(1);
            opacity: 1;
        }
    }

    #main-content {
        display: none;
    }

    .network-node {
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.network-node:hover {
  transform: scale(1.05);
}

.tracking-visual {
  position: relative;
  background: rgba(0, 180, 216, 0.05);
  border-radius: 50%;
}


.tracking-visual {
    background: radial-gradient(circle, rgba(0,180,216,0.1) 0%, rgba(0,0,0,0) 70%);
    overflow: hidden;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #00b4d8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    box-shadow: 0 0 15px #00b4d8;
}

.radar-sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    mask: radial-gradient(transparent 70%, #000 90%);
    animation: radarSweep 2s infinite linear;
    background: conic-gradient(
        transparent 270deg,
        rgba(0,180,216,0.8),
        transparent
    );
}

.radar-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at center, rgba(0,180,216,0.1) 1px, transparent 1px),
        repeating-radial-gradient(circle at center, transparent 0 5%, rgba(0,180,216,0.05) 5.1%);
    background-size: 20px 20px;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid #00b4d8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    opacity: 0;
    animation: radarPulse 3s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.delay-1 { animation-delay: 1s; }
.delay-2 { animation-delay: 2s; }
.delay-3 { animation-delay: 3s; }

@keyframes radarSweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes radarPulse {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.status-icon {
    width: 15px;
    height: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
}

.status-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.5rem;
}

.status-icon {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #00b4d8;
  border-radius: 50%;
}




    
      