/* =========================================================================
   AUM Travels - Premium Vehicle Rental Service Stylesheet
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. Base & Variables
   ------------------------------------------------------------------------- */
:root {
    --primary-color: #184983;
    /* Premium Gold/Amber */
    --primary-dark: #d97706;
    --secondary-color: #0f172a;
    /* Deep Slate Blue */
    --secondary-dark: #020617;
    --text-color: #475569;
    --heading-color: #0f172a;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;

    --font-main: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);

    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --box-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-header.text-center .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-desc {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
    font-family: var(--font-main);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

/* -------------------------------------------------------------------------
   2. Header & Navigation
   ------------------------------------------------------------------------- */
/* Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info a,
.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info a:hover {
    color: var(--primary-color);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--primary-color);
}

/* Main Header */
.header {
    background-color: var(--white);
    padding: 7px 0px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: inline;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    /*! position: relative; */
    /*! top: -40px; */
}

.logo-text span {
    color: var(--primary-color);
    font-weight: 300;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--heading-color);
    position: relative;
    padding: 5px 0;
}

/* 
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
} */

/* .nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
} */

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

/* Mobile Menu Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--heading-color);
    transition: var(--transition);
}

/* -------------------------------------------------------------------------
   3. Hero Slider
   ------------------------------------------------------------------------- */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: scale(1.05);
    /* Zoom out effect */
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(15, 23, 42, 0.4) 50%,
            rgba(15, 23, 42, 0.1) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    z-index: 10;
    color: var(--white);
    width: 100%;
}

.slide-subtitle {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(245, 158, 11, 0.76);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.slide-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.slide-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
}

.slide-buttons {
    display: flex;
    gap: 20px;
}

/* Slide Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .delay-1 {
    transition-delay: 0.3s;
}

.slide.active .delay-2 {
    transition-delay: 0.5s;
}

.slide.active .delay-3 {
    transition-delay: 0.7s;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

/* -------------------------------------------------------------------------
   4. About Section
   ------------------------------------------------------------------------- */

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    padding: 0;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.exp-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.exp-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.2;
}

.about-content {
    padding-left: 3rem;
}

.about-desc {
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    color: var(--heading-color);
}

.about-features i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* -------------------------------------------------------------------------
   5. Services / Vehicles Section
   ------------------------------------------------------------------------- */
.service-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-slow);
    border: 1px solid var(--border-color);
    position: relative;
    top: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
    border-color: transparent;
}

.service-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-color);
    margin-bottom: 20px;
    height: 72px;
    /* Fixed height to keep cards uniform */
    overflow: hidden;
}

.service-amenities {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.service-amenities li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.875rem;
    color: var(--text-color);
}

.service-amenities i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--heading-color);
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-color);
}

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

.service-link:hover i {
    transform: translateX(5px);
}

/* Quick Contact Links */
.quick-contact-link {
    transition: var(--transition);
}

.quick-contact-link:hover {
    color: var(--primary-color) !important;
}

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

.quick-contact-link:hover i {
    transform: scale(1.15) translateY(-2px);
}

/* Other Services Grid */
.feature-box {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition);
}

.feature-box:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white) !important;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* -------------------------------------------------------------------------
   6. Gallery Section
   ------------------------------------------------------------------------- */
.gallery .nav-pills .nav-link {
    color: var(--heading-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 25px;
    margin: 0 5px;
    transition: var(--transition);
}

.gallery .nav-pills .nav-link:hover {
    color: var(--primary-color);
    background-color: rgba(245, 158, 11, 0.1);
}

.gallery .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    visibility: visible;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

/* -------------------------------------------------------------------------
   7. Contact Section
   ------------------------------------------------------------------------- */
.contact-desc {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.25rem;
}

.contact-item p {
    color: var(--text-color);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--box-shadow-hover);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--heading-color);
    background-color: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.error-msg {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.form-group.has-error .form-control {
    border-color: #ef4444;
}

.form-group.has-error .error-msg {
    display: block;
}

.submit-btn {
    width: 100%;
    gap: 10px;
    font-size: 1.125rem;
}

.form-success {
    background-color: #ecfdf5;
    color: #059669;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    align-items: center;
    gap: 10px;
}

.form-success.show {
    display: flex;
}

/* -------------------------------------------------------------------------
   8. Footer
   ------------------------------------------------------------------------- */
.footer {
    background-color: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
    font-weight: 300;
}

.footer-desc {
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-grid-replacement ul {
    padding-left: 0;
}

.footer-title {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-col p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    border: none;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
}

/* -------------------------------------------------------------------------
   9. Scroll Animations
   ------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------------------------------------------------------------
   10. Responsive Design
   ------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }

    .slide-title {
        font-size: 3rem;
    }

    .logo img {
        width: 20%;
    }

    .logo-text {
        font-size: 17px;
    }

    .about-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .logo img {
        width: 90%;
    }

    .logo-text {
        font-size: 17px;
    }

    .footer-logo {
        font-size: 23px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        /* Header height approx */
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
    }

    .dropdown-menu {
        display: none;
        position: static;
        box-shadow: none;
        text-align: center;
        width: 100%;
        background-color: var(--bg-light);
        margin-top: 10px;
        border: none;
        padding: 5px 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .nav-item.dropdown .nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    /* Perfect match to mobile screenshot */
    .hero {
        /*height: 550px;
        min-height: 550px;*/
        height: 300px;
        min-height: 300px;
    }

    .slide {
        background-color: #6a7c8c;
        /* Slate blue background for bottom section */
    }

    .slide-image,
    .slide-overlay {
        height: 100%;
        /* Top 60% for image */
        object-fit: cover;
    }

    .slide-content {
        height: 100%;
        top: 0;
        transform: translateX(-50%);
        padding: 0;
        display: block;
    }

    .slide-subtitle {
        position: absolute;
        top: 16%;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: fit-content;
        background-color: #d19426;
        /* Adjusted pill color to match */
        color: #1a4980;
        border: none;
        padding: 6px 18px;
        font-size: 0.9rem;
        font-weight: 700;
        border-radius: 30px;
        backdrop-filter: none;
        white-space: nowrap;
    }

    .slide-title {
        position: absolute;
        top: 24%;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 0 15px;
        text-align: center;
        font-size: 2.4rem;
        font-weight: 800;
        /* Extra bold */
        text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.6), 3px 3px 0px rgba(0, 0, 0, 0.4);
        /* Solid blocky shadow */
        line-height: 1.1;
    }

    .slide-desc {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 60px;
        /* Extra padding to avoid arrow overlap */
        text-align: center;
        font-size: 1.05rem;
        font-weight: 400;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.9);
    }

    .slide-buttons {
        display: none !important;
        /* Design implies no buttons */
    }

    .slider-btn {
        top: 80%;
        /* Center horizontally in the 40% bottom: 60 + (40/2) = 80 */
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        font-size: 16px;
        background-color: rgba(0, 0, 0, 0.3);
        /* Dark circle */
        border: 1px solid rgba(255, 255, 255, 0.6);
        /* Clean white boundary */
        color: #fff;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 15px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 20px;
        /* Very large and impactful on small screens */
        top: 28%;
        text-align: left;
    }

    .slide-subtitle {
        top: 16%;
        font-size: 11px;
        padding: 4px 14px;
        margin: 0px 15px;
    }

    .slide-desc {
        padding: 19px;
        font-size: 12px;
        text-align: left;
        top: 35%;
        width: 67%;
    }

    .slider-btn {
        width: 20px;
        height: 20px;
        font-size: 9px;
        top: 50%;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}


/* -------------------------------------------------------------------------
   11. Whatsapp And Call Button Design
   ------------------------------------------------------------------------- */

.whatsapp-btn {
    position: fixed;
    bottom: 6em;
    left: 1%;
    width: 50px;
    height: 50px;
    z-index: 999;
}

.whatsapp-btn .icon_logo>a>img {
    width: 100%;
    padding: unset;
    border: none;
}

.whatsapp-btn .circle_waves {
    border-radius: 50%;
    background-color: #3cc04e;
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
    bottom: 1px;
    left: 0px;
    z-index: 99;
    animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.whatsapp-btn .icon_logo {
    position: relative;
    z-index: 100;
    padding: 5px;
}

.flot-call-btn {
    position: fixed;
    bottom: 1em;
    left: 1%;
    width: 50px;
    height: 50px;
    z-index: 999;
}

.flot-call-btn .icon_logo>a>img {
    width: 100%;
    padding: unset;
    border: none;
}

.flot-call-btn .circle_waves {
    border-radius: 50%;
    background-color: #3399ff;
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
    bottom: 1px;
    left: 0px;
    z-index: 99;
    animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.flot-call-btn .icon_logo {
    position: relative;
    z-index: 100;
    padding: 5px;
}

@keyframes waves {
    from {
        transform: scale(0.55, 0.55);
        opacity: 0.6;
    }

    to {
        transform: scale(1.8, 1.8);
        opacity: 0;
    }
}


.whatsappr-btn {
    position: fixed;
    bottom: 9em;
    right: 1%;
    width: 50px;
    height: 50px;
    z-index: 999;
}

.whatsappr-btn .icon_logo>a>img {
    width: 100%;
    padding: unset;
    border: none;
}

.whatsappr-btn .circle_waves {
    border-radius: 50%;
    background-color: #3cc04e;
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
    bottom: 1px;
    left: 0px;
    z-index: 99;
    animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.whatsappr-btn .icon_logo {
    position: relative;
    z-index: 100;
    padding: 5px;
}

.flot-callr-btn {
    position: fixed;
    bottom: 5em;
    right: 1%;
    width: 50px;
    height: 50px;
    z-index: 999;
}

.flot-callr-btn .icon_logo>a>img {
    width: 100%;
    padding: unset;
    border: none;
}

.flot-callr-btn .circle_waves {
    border-radius: 50%;
    background-color: #3399ff;
    width: 50px;
    height: 50px;
    position: absolute;
    opacity: 0;
    bottom: 1px;
    left: 0px;
    z-index: 99;
    animation: waves 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
}

.flot-callr-btn .icon_logo {
    position: relative;
    z-index: 100;
    padding: 5px;
}

@keyframes waves {
    from {
        transform: scale(0.55, 0.55);
        opacity: 0.6;
    }

    to {
        transform: scale(1.8, 1.8);
        opacity: 0;
    }
}

/* -------------------------------------------------------------------------
   12. Navigation Dropdown Hover & Back to Top
   ------------------------------------------------------------------------- */
/* Dropdown on Hover for Desktop */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-5px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* -------------------------------------------------------------------------
   About Page Start
   ------------------------------------------------------------------------- */
.page-header {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('../images/banner-01.png') center/cover no-repeat;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 800;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-nav a {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb-nav a:hover {
    color: var(--white);
}

.mission-vision-box {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.mission-vision-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--primary-color);
}

.mission-vision-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stats-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* -------------------------------------------------------------------------
   About Page End
   ------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------
   Services Page Start
   ------------------------------------------------------------------------- */
/* New Service Detail Styles */
.service-detail-section {
    padding: 80px 0;
    overflow: hidden;
}

.about-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-title {
    color: var(--heading-color);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.title-line {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.check-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.check-list-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
    margin-right: 15px;
}

.check-list-text {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
    max-width: 90%;
}

.floating-box {
    position: absolute;
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-bottom: 4px solid var(--primary-color);
    z-index: 2;
}

.floating-box h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1;
}

.floating-box p {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .about-title {
        font-size: 2.2rem;
    }

    .floating-box {
        right: 10px !important;
        left: auto !important;
        padding: 15px;
        bottom: -20px !important;
    }

    .floating-box h3 {
        font-size: 1.5rem;
    }

    .img-fluid.rounded-4 {
        height: 350px !important;
    }
}

@media (max-width: 575px) {
    .about-title {
        font-size: 1.8rem;
    }

    .floating-box {
        right: 5px !important;
        bottom: -15px !important;
        padding: 10px 15px;
    }

    .floating-box h3 {
        font-size: 1.2rem;
    }

    .floating-box p {
        font-size: 0.7rem;
    }
}

/* -------------------------------------------------------------------------
   Services Page End
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   Gallery Page Start
   ------------------------------------------------------------------------- */
/* Masonry Gallery Styles */
.masonry-gallery {
    column-count: 3;
    column-gap: 1.5rem;
    padding-top: 1rem;
}

.masonry-gallery .gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.masonry-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.masonry-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* -------------------------------------------------------------------------
   Gallery Page End
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   Contact Page Start
   ------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------
   Contact Page End
   ------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------
   Download Page End
   ------------------------------------------------------------------------- */
.download h6 {
    background-color: #0069b5;
    color: #fff;
    padding: 10px;
    margin: 10px 0px 10px 0px;
    text-align: center;
}

.download h6:hover {
    background-color: #2074b0;
}

/* -------------------------------------------------------------------------
   Download Page End
   ------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------
   Google Translate Widget Fix Start
   ------------------------------------------------------------------------- */
.footer-widgets {
    gap: 20px !important;
}

.goog-te-gadget-simple {
    display: inline-flex !important;
    align-items: center !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
    background-color: #fff !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.goog-te-gadget-simple .goog-te-menu-value {
    display: inline-flex !important;
    align-items: center !important;
    text-decoration: none !important;
    color: #444 !important;
}

.goog-te-gadget-simple .goog-te-menu-value span {
    white-space: nowrap !important;
    color: #444 !important;
    border-left: none !important;
}

.goog-te-gadget-simple .goog-te-menu-value span:nth-child(5) {
    margin-left: 8px !important;
    color: #888 !important;
}

.goog-te-gadget-simple img {
    margin-right: 8px !important;
}

body {
    top: 0 !important;
}
/* -------------------------------------------------------------------------
   Google Translate Widget Fix End
   ------------------------------------------------------------------------- */