
        /* General Styles & Reset */
        :root {
            font-size: 16px;
        }
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* All headers use flex for alignment */
        .header {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            box-sizing: border-box;
            width: 100%;
        }


/* Header 1: Ticker Style */
.header-1 {
    background-color: rgb(158, 6, 6);
    color: white;
    padding: 0.9rem 0;
    font-size: 1rem;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.header-1 .news-text {
    display: inline-block;
    animation: scroll-left 60s linear infinite; /* Adjust speed */
}

/* Smooth scrolling animation */
@keyframes scroll-left {
    0% { transform: translateX(70%); }   /* Start fully outside from right */
    100% { transform: translateX(-100%); } /* End fully outside to the left */
}


        /* Header 2: Green with White Text */
        .header-2 {
            background-color:  #019267;
            color: white;
            justify-content: space-between;
            font-size: 1.2rem;
            flex-wrap: wrap;
        }
        .header-2 .contact-info span {
            margin-right: 1rem;
        }
        .header-2 .social-icons a {
            color: white;
            font-size: 1.9rem;
            margin-left: 1.5rem;
        }

        /* Header 3: Logo and Hamburger Menu */
        .header-3 {
            background-color: #FFFFFF;
            padding: 1rem 1.5rem;
            position: relative;
            flex-direction: column;
            align-items: flex-start;
            border-bottom: 1px solid #ddd;
        }


        .book-now-btn {
            background-color: #FF9933;
            color: white;
            padding: 0.625rem 1.25rem;
            text-decoration: none;
            font-weight: bold;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .book-now-btn:hover {
            background-color: #f7bf08;
        }

        /* Navigation Menu */
    .main-nav {
        width: 100%;
        background-color: #0371ee;
        padding: 1;
        border-top: 1px solid #eee;
    }
    .main-nav ul {
        display: flex;
        flex-wrap: wrap;       /* Allow wrapping on smaller screens */
        justify-content: left; 
        gap: 1rem;
        list-style: none;
        margin: 0px;
        padding: 1rem 0.5rem;
    }
    .main-nav li {
        position: relative;
    }
    .main-nav a {
        text-decoration: none;
        color: #ffffff;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
        transition: color 0.3s, border-bottom 0.3s;
    }
    .main-nav a:hover,
    .main-nav a.active {
        color: #fffb02;
        border-bottom: 2px solid #ffffff;
    }  

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .brand-logo h1 {
            font-size: 1.3rem;
        }
        .main-nav ul {
            gap: 1rem;
            justify-content: flex-start;
        }
        .main-nav a {
            font-size: 0.95rem;
            padding: 0.5rem;
        }
    }

        /* Hamburger Menu Icon */
        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }
        
        /* Main Content Section */
        .main-content {
            padding: 3rem 1.5rem;
            flex-grow: 1;
             
            background-color: rgb(8, 145, 138); /* Added red background */
        }
        
       
        /* ================================
   Track Shipment & Find Pincode
   ================================ */
.tab-section-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #9b1501; /* dark red background */
  padding: 4rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.tab-btn {
  background-color: #f0f0f0;
  color: #555;
  border: none;
  padding: 0.9rem 1.3rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.tab-btn.active {
  background-color: #007BFF;
  color: white;
}

.tab-content {
  padding-top: 1.2rem;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h2 {
  margin-top: 0;
  color: #fffb00; /* bright yellow heading */
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.tab-panel input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 80%;
  margin-bottom: 1rem;
}

.tab-panel .submit-btn {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.tab-panel .submit-btn:hover {
  background-color: #f8df01; /* yellow hover */
}

/* Responsive (mobile) */
@media (max-width: 768px) {
  .tab-section-container {
    padding: 1.8rem;
  }
  .tab-panel input {
    width: 100%;
  }
}


        /* Image Slideshow Section */
        .slideshow-container {
            max-width: 100%;
            position: relative;
            margin: 0;
            overflow: hidden;
        }
        .slide {
            display: none;
        }
        .slide img {
            width: 100%;
            height: auto;
            display: block;
        }
        .slide.fade {
            animation-name: fade;
            animation-duration: 1.5s;
        }
        @keyframes fade {
            from {opacity: .4}
            to {opacity: 1}
        }
        .slide-text {
            color: #f2f2f2;
            font-size: 2rem;
            font-weight: bold;
            padding: 8px 12px;
            position: absolute;
            bottom: 30%;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            text-align: center;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 10px;
        }
        
        /* Services Section Styles */
        .services-section {
            padding: 3rem 1.5rem;
            background-color: #f8f8f8;
            text-align: center;
        }
        .services-section h2 {
            margin-bottom: 2rem;
            color: #333;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            justify-content: center;
        }
        .service-card {
            background-color: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease-in-out;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .service-card i {
            font-size: 3rem;
            color: #FF9933;
            margin-bottom: 1rem;
        }
        .service-card h3 {
            margin-top: 0;
            color: #297D3C;
        }
        
        /* Network & Operations Section Styles */
        .network-section {
            padding: 3rem 1.5rem;
            text-align: center;
        }
        .network-section h2 {
            color: #333;
            margin-bottom: 2rem;
        }
        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            justify-content: center;
        }
        .network-item {
            background-color: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .network-item i {
            font-size: 3rem;
            color: #007BFF;
            margin-bottom: 1rem;
        }
        .network-item h3 {
            margin-top: 0;
        }

        /* Contact Form Section Styles */
        .contact-form-section {
            padding: 3rem 1.5rem;
            text-align: center;
        }
        .contact-form-section h2 {
            margin-bottom: 1rem;
            color: #333;
        }
        .social-icons-real-color {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
        .social-icons-real-color a {
            font-size: 2.5rem;
            text-decoration: none;
            transition: transform 0.3s ease-in-out;
        }
        .social-icons-real-color a:hover {
            transform: scale(1.1);
        }
        .social-icons-real-color .fa-facebook-f {
            color: #3b5998;
        }
        .social-icons-real-color .fa-twitter {
            color: #1da1f2;
        }
        .social-icons-real-color .fa-instagram {
            color: #C13584; 
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            background-color: #a14901;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(238, 241, 3, 0.05);
            text-align: left;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            font-size: 1rem;
            border: 1px solid #ffffff;
            border-radius: 5px;
            box-sizing: border-box;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .submit-form-btn {
            background-color: #066ac7;
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: auto;
        }
        .submit-form-btn:hover {
            background-color: #11a803;
        }

        
       
       /* ================================
   Footer 1 (Top Footer)
   ================================ */
.footer-top {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 1.5rem 2rem;
    background-color: rgb(158, 6, 6);
    color: white;
    gap: 2rem;
}
.footer-col {
    margin-bottom: 2rem;
    width: 250px;
    text-align: left;
}
.footer-col h4 {
    color: rgb(255, 251, 0);
    margin-bottom: 1rem;
    font-size: 1.4rem;   /* Bigger heading */
    font-weight: bold;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col a {
    color: #f7f4f4;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
    font-size: 1.rem;     /* Bigger link text */
}
.footer-col a:hover {
    color: #fff133;
}
.footer-col p,
.footer-col span {
    font-size: 1rem;     /* Bigger paragraph text */
    line-height: 1.6;
}

/* ================================
   Footer 2 (Middle Footer)
   ================================ */
.footer-middle {
    background-color: #019267;
    color: white;
    text-align: center;
    padding: 2.5rem 1.5rem;
}
.footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.footer-middle a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
}
.footer-middle a:hover {
    color: #fcec07;
}

/* ================================
   Footer 3 (Bottom Footer)
   ================================ */
.footer-bottom {
    background-color: #2b73df;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
}
.footer-bottom .social-icons a {
    color: white;
    margin: 0 0.5rem;
    font-size: 1.4rem;
}

/* ================================
   Responsive Adjustments (Mobile)
   ================================ */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }
    .footer-col {
        width: 100%;
        text-align: center;
    }
    .footer-middle ul {
        flex-direction: column;
        gap: 1rem;
    }
}


        /*
            ====================================================
            FLOATING WHATSAPP CHAT ICON
            ====================================================
        */
        .whatsapp-float {
            position: fixed;
            bottom: 65px;
            right: 25px;
            background-color: #1ae707;
            color: white;
            font-size: 2rem;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            z-index: 1000;
            transition: transform 0.3s ease-in-out;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        .whatsapp-float img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 0%;
        }
        /* Mobile Navigation Toggle */
        .header-3-top {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 0.5rem;
        }

        /*
            ====================================================
            MEDIA QUERIES FOR MOBILE DEVICES (<= 768px)
            ====================================================
        */
        @media (max-width: 768px) {
            .header-2 .contact-info, .header-2 .social-icons {
                margin-bottom: 0.5rem;
            }
            .header-3 {
                flex-direction: column;
                align-items: flex-start;
            }
            .header-3-top {
                justify-content: space-between;
                margin-bottom: 0;
            }
            .header-3-top .booking-button {
                display: none;
            }
            .nav-toggle {
                display: block; /* show hamburger only on mobile */
            }
            /* --- UPDATED MOBILE NAV CSS --- */
            .main-nav {
                max-height: 0; /* Initially hidden */
                overflow: hidden; /* Hide content that exceeds max-height */
                transition: max-height 0.5s ease-out; /* Smooth transition */
                position: relative; /* Make it part of the normal document flow */
                border-top: none;
                width: 100%;
            }
            .main-nav ul {
                flex-direction: column;
                align-items: flex-start;
                padding: 0.5rem 1rem;
                background-color: #FFFFFF;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                width: 100%;
                padding: 1rem;
                border-bottom: 1px solid #ddd;
                color: #0371ee;
            }
            .main-nav a:hover,
            .main-nav a.active {
                color: #0645ad; /* A slightly darker blue for hover */
                border-bottom: 1px solid #0645ad;
            }
            .main-nav.nav-active {
                max-height: 500px; /* Expands to show content */
            }
            /* --- END UPDATED MOBILE NAV CSS --- */
            .footer-top {
                flex-direction: column;
                align-items: center;
            }
            .footer-col {
                width: 100%;
                text-align: center;
            }
            .contact-form-section .contact-form {
                padding: 1rem;
            }
            .social-icons-real-color a {
                font-size: 2rem;
            }
            .slide-text {
                font-size: 1.25rem;
            }
        }