/********** Template CSS **********/
:root {
    --primary: #FF3E41;
    --secondary: #51CFED;
    --light: #F8F2F0;
    --dark: #060315;
    font-family: 'Poppins', sans-serif;
    
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
#about {
    margin-top: 50px; /* Ensures gap between Hero and About */
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/




/*** About ***/
/* About Section Image Box */
/* Make About Image same as Map */
/* About Image - Keep Original Dimensions but Styled Like Map */
.about-image-container {
    width: 100%;
    height: auto; /* Keep original height */
    border-radius: 10px; /* Same rounded edges as the map */
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15); /* Soft shadow like map */
    position: relative;
}

/* Ensure image keeps its original size */
.about-image-container img {
    width: 100%;
    height: auto; /* Keep original aspect ratio */
    border: none; /* Remove any borders */
    object-fit: cover;
}

@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Feature ***/
/* Our Features Image - Styled Like Map, Keep Original Size */
.feature-image-container {
    width: 100%;
    height: auto; /* Keep original height */
    border-radius: 10px; /* Same rounded edges as the map */
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15); /* Soft shadow like map */
    position: relative;
}

/* Ensure image keeps its original dimensions */
.feature-image-container img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border: none; /* Remove any borders */
    object-fit: cover;
}

@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service, Price & Team ***/
.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item img,
.team-item img {
    transition: .5s;
}

.service-item:hover img,
.team-item:hover img {
    transform: scale(1.1);
}

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}


/*** Testimonial ***/
/********** Contact & Map Section Styling **********/

.contact-map-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Reduce space between address and map */
    flex-wrap: wrap;
}
body {
    padding-top: 80px; /* Adds space below navbar */
}

.contact-info {
    flex: 1;
    max-width: 40%; /* Address takes less space */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
    font-size: 20px;
    font-weight: bold;
    color: #212121;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

/* Map Styling */
.map-container {
    flex: 1;
    width: 100%;
    height: 350px; /* Set a proper height */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Ensure iframe fits the container */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-map-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .contact-info,
    .map-container {
        max-width: 100%;
        text-align: center;
    }
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

html {
    scroll-behavior: smooth;
}

.read-more-content {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa; /* Light background */
    border-top: 1px solid #ddd;
    font-size: 14px;
}

/*** New Optimized Navbar CSS ***/
.custom-navbar {
    position: fixed;  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #FF3E41;  
    padding: 1.2rem 1.2rem;   
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}




/* Navbar brand (logo) */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo-img {
    height: 80px;  /* Increase logo size */
    transition: height 0.3s ease;
}

.navbar-text {
    font-size: 18px; /* Slightly larger font size */
    font-weight: 700; /* Bold font weight */
    color: white !important; /* Ensure white color */
    text-transform: uppercase; /* Uppercase text for a modern look */
    padding: 0.8rem 1.2rem !important; /* Consistent spacing */
    position: relative;
    transition: all 0.3s ease-in-out;
    background: linear-gradient(45deg, #ffffff, #f8f2f0); /* Gradient text effect */
    -webkit-background-clip: text; /* Apply gradient to text */
    -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Subtle text shadow */
    letter-spacing: 1px; /* Slightly spaced letters */
    margin-left: 10px; /* Space between logo and text */
}

.navbar-text:hover {
    opacity: 0.8; /* Slight opacity change on hover */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}



/* Navbar links */
.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    padding: 0.8rem 1.2rem !important;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

/* Apply underline only to non-dropdown links */
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: white;
    left: 50%;
    bottom: 5px;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
    transform: translateX(-50%);
}

/* Expand underline on hover and active state */
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle).active::after {
    width: 80%;
}


/* Navbar toggler (hamburger menu) */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dropdown menu */
/* Default dropdown styles */
.dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute !important;
    background-color: #FF3E41; /* Keep theme color */
    z-index: 1000; /* Ensure it appears on top */
}

/* Enable hover-based dropdown only on large screens */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Ensure dropdown behaves like other nav links on mobile */
@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        display: none; /* Keep hidden by default */
        position: static; /* Prevents overlapping issues */
        width: 100%; /* Full width for proper alignment */
        background-color: #FF3E41; /* Same as navbar */
    }
    
    .navbar-nav .dropdown-menu.show {
        display: block; /* Show dropdown when toggled */
    }
}


.dropdown-item {
    color: white !important;
    padding: 0.7rem 1.2rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

/* Mobile View Adjustments */
@media (max-width: 991px) {
    .custom-navbar {
        padding: 1.5rem 1rem;
    }
    
    .navbar-logo-img {
        height: 60px;
    }
    
    .navbar-toggler {
        transform: scale(1.2);
        margin-right: 15px;
    }
    
    .navbar-collapse {
        background-color: #FF3E41;
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .nav-link {
        text-align: center;
        margin: 0.5rem 0;
        font-size: 1.1rem;
        padding: 1rem 0 !important;
    }
    
    .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.1);
        text-align: center;
    }
}

/* Extra Small Screens */
@media (max-width: 575px) {
    .custom-navbar {
        padding: 1.2rem 0.5rem;
    }
    
    .navbar-logo-img {
        height: 50px;
    }
}
@media (max-width: 991px) {
    
    
    .navbar-logo-img {
        height: 70px !important; /* Increase logo size */
    }
}

@media (max-width: 575px) {
    .navbar-logo-img {
        height: 60px !important; /* Slightly smaller for extra small screens */
    }
}
/* Default (Desktop) */
/* Default (Desktop) */
/* Default Styles (Desktop) */
/* Default Styles (Desktop) */
.navbar-text {
    font-size: 16px !important; /* Keep SkyAnchor size larger */
    font-weight: 700;
    color: white !important;
    text-transform: uppercase;
    display: flex;
    flex-direction: column; /* Stack text like mobile */
    text-align: center;
    gap: 3px;
}

/* Make "Logistics India" smaller */
.brand-sub {
    font-size: 12px !important; /* Reduce size */
    font-weight: 600; /* Keep it slightly bold */
}

.brand-india {
    font-size: 10px !important; /* Even smaller for better alignment */
    font-weight: 500; /* Reduce weight slightly */
}

/* Mobile-specific changes */
@media (max-width: 991px) {
    .navbar-text {
        font-size: 14px !important; /* Adjust size for mobile */
    }

    .brand-main {
        font-size: 16px !important; /* Keep SkyAnchor larger */
    }

    .brand-sub {
        font-size: 11px !important; /* Reduce Logistics size */
    }

    .brand-india {
        font-size: 9px !important; /* Keep India even smaller */
    }
}






/* ... rest of your existing CSS ... */
/*** Updated Logo Box Effect ***/
.navbar-brand {
    background-color: white; /* White background for the logo box */
    padding: 10px 15px; /* Add padding to create the box effect */
    border-radius: 8px; /* Rounded corners for the box */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-right: 20px; /* Space between logo box and other navbar items */
}

.navbar-logo-img {
    height: 50px; /* Adjust logo size as needed */
    margin-right: 10px; /* Space between logo image and text */
}

.navbar-text {
    background: none !important; /* Remove gradient */
    -webkit-text-fill-color: initial; /* Reset text color */
    color: #0056b3 !important; /* Professional blue color */
    text-shadow: none; /* Remove text shadow */
    padding: 0 !important; /* Remove default padding */
}

.brand-main {
    color: #0056b3 !important; /* Main brand blue */
    font-size: 20px !important;
    font-weight: 700;
}

.brand-sub {
    color: #1a73e8 !important; /* Slightly lighter blue */
    font-size: 14px !important;
    font-weight: 600;
}

.brand-india {
    color: #004a99 !important; /* Darker blue accent */
    font-size: 12px !important;
    font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-brand {
        padding: 8px 12px; /* Smaller padding on mobile */
        margin-right: 15px;
    }

    .navbar-logo-img {
        height: 40px;
    }

    .brand-main {
        font-size: 18px !important;
    }

    .brand-sub {
        font-size: 12px !important;
    }

    .brand-india {
        font-size: 10px !important;
    }
}

/********** Modern Full-Screen Hero Section **********/
/********** Smart Full-Screen Hero Section with Video or Thumbnail **********/

.hero-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen */
    overflow: hidden;
}

/* Background Video */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Fallback Thumbnail */
.hero-thumbnail {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;  /* Ensures full coverage */
    background: rgba(0, 0, 0, 0.5); /* Adjust transparency */
    display: flex; 
    align-items: center;  /* Center text vertically */
    justify-content: center; /* Center text horizontally */
    text-align: center;
    padding: 20px;
}

.hero-container {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Ensures it takes full screen */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Adds space to prevent overlap */
}


.hero-container h5 {
    color: #51CFED !important; /* Change this color as needed */
}

/* Centered Text Content */
.hero-content {
    color: white;
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
}

.highlight-text {
    color: #FF3E41; /* Bright Red */
}

.hero-desc {
    font-size: 20px;
    color: #ddd;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.btn-primary {
    background-color: #FF3E41; /* Bright Red */
    border: none;
    color: white;
}

.btn-primary:hover {
    background-color: #D32F2F;
}

.btn-secondary {
    background-color: #212121; /* Dark Gray */
    border: none;
    color: white;
    margin-left: 20px;
}

.btn-secondary:hover {
    background-color: #444;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 991px) {
    .back-to-top {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .hide-on-mobile {
        display: none !important;
    }
}




/* Quote Section Styling */
#quote {
    background: #f8f9fa;
    padding: 60px 20px;
    border-radius: 10px;
}

.quote-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.quote-box:hover {
    transform: scale(1.02);
}

/* Multi-select dropdown */
.form-select[multiple] {
    height: auto;
}

/* Buttons */
.btn-lg {
    font-size: 18px;
    font-weight: 600;
}

.btn-success {
    background-color: #25D366 !important;
    border: none;
}

.btn-primary {
    background-color: #007bff !important;
    border: none;
}

/* Responsive */
@media (max-width: 768px) {
    .quote-box {
        padding: 20px;
    }
    
    .btn-lg {
        font-size: 16px;
    }
}


@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center; /* Centers horizontally */
        justify-content: center; /* Centers vertically */
        height: 100%; /* Ensures it takes full height */
    }

    .hero-content .btn {
        margin: 5px 0; /* Small margin for spacing */
    }
}


