/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

p {
    font-family: 'Noto Sans Devanagari', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #2E8B57, #4CAF50);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: #f5f7fa;
}

.bg-animation span {
    position: absolute;
    bottom: -50px;
    width: 50px;
    height: 50px;
    background: rgba(0, 128, 0, 0.15);
    animation: float 60s linear infinite;
    border-radius: 50%;
}

/* Random positions & delays */
.bg-animation span:nth-child(1) {
    left: 10%;
    animation-duration: 20s;
}

.bg-animation span:nth-child(2) {
    right: 30%;
    animation-duration: 25s;
    width: 60px;
    height: 60px;
}

.bg-animation span:nth-child(3) {
    left: 50%;
    animation-duration: 30s;
}

.bg-animation span:nth-child(4) {
    right: 70%;
    animation-duration: 18s;
    width: 30px;
    height: 30px;
}

.bg-animation span:nth-child(5) {
    left: 70%;
    animation-duration: 35s;
}

.bg-animation span:nth-child(6) {
    right: 20%;
    animation-duration: 40s;
}

.bg-animation span:nth-child(7) {
    left: 0%;
    animation-duration: 50s;
}

.bg-animation span:nth-child(8) {
    right: 100%;
    animation-duration: 450s;
}

@keyframes float {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        opacity: 1.2;
    }

    100% {
        transform: translateY(-300vh);
        opacity: 1;
    }
}

.clock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: #ffffff;
    font-size: 1rem;
    flex-wrap: wrap;
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2E8B57, #3b973e);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-logo {
    margin-bottom: 30px;
}

.logo-circle {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    margin-bottom: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    animation: smoothPulse 1.8s infinite ease-in-out;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.loader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 20px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #DAF7A6, #ffffff);
    width: 0;
    animation: smoothLoading 2s ease-in-out infinite;
    border-radius: 2px;
}

.loader-text {
    font-size: 1.5rem;
    opacity: 0.9;
    animation: smoothFade 2s infinite;
    font-weight: 500;
}

/* Animations */
@keyframes smoothPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.5);
    }
}

@keyframes smoothLoading {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes smoothFade {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}



/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #2E8B57, #4CAF50);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-toggle {
    display: flex;
    margin-left: 2rem;
    border: 1px solid #000;
    border-radius: 20px;
    overflow: hidden;
}

body.dark-mode .lang-toggle {
    border-color: #000000;
}

/* body.dark-mode .nav-links {
    background-color: #000;
    color: #ffffff;
} */

/* body.dark-mode button {
    color: #ffffff;
} */

/* body.dark-mode .nav-link a {
    color: #ffffff;
} */


.lang-btn {
    padding: 5px 10px;
    background-color: #4caf7d;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 800;
}

body.dark-mode section {
    background: rgba(30, 30, 30, 0.95);
}

body.dark-mode .lang-btn {
    background-color: #0a5c36;
    color: #ffffff;
}

.lang-btn.active {
    background-color: #0a5c36;
    color: #ffffff;
}

body.dark-mode .lang-btn.active {
    background-color: #4caf7d;
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
    cursor: pointer;
    font-size: 1.6rem;
    color: #1a1a1a;
}

body.dark-mode .dark-mode-toggle {
    color: #e0e0e0;
}



/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    /* color: inherit; */
}

/* .logo-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
} */

.logo-text h1 {
    font-size: 1.5rem;
    color: #2E8B57;
    margin: 0;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
}

.nav-links {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover,
.nav-link.active {
    color: #2E8B57;
}

.dropdown {
    position: relative;
}

button>span {
    font-size: 1rem;
    font-weight: 500;
}

.dropdown-toggle {
    position: relative;
    padding-right: 3px;
}

.dropdown-icon {
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -50%;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(46, 139, 87, 0.1);
    color: #2E8B57;
    padding-left: 40px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-icon {
    width: 25px;
    height: 3px;
    background: #2E8B57;
    border-radius: 2px;
    transition: all 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-btn.active .menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Notice Bar */
.notice-bar {
    width: 100%;
    background: #fff8e1;
    border-bottom: 1px solid #ffecb3;
    padding: 5px 0;
    overflow: hidden;
}

.notice-container {
    display: flex;
    align-items: center;
    gap: 2px;
    /* border-radius: 8px;  */
}

.notice-label {
    display: flex;
    align-items: center;
    gap: 8px;
    border-right: 1.5px solid #000;
    background: #2E8B57;
    color: yellow;
    padding: 8px 10px;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-container {
    flex: 1;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 35s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 50px;
    white-space: nowrap;
    color: #5d4037;
    font-weight: 500;
}

.marquee-item i {
    color: #ff9800;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.hero {
    width: 100%;
    height: 130vh;
    overflow: hidden;
    padding: 10px 30px;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;

}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;

}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-img {
    width: 100%;
    height: 800px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.slider-img img {
    object-fit: cover;

    /* MASK REVEAL */
    clip-path: inset(0 100% 0 0);
}

.slide.active img {
    animation: reveal 1s ease forwards;
}

@keyframes reveal {
    to {
        clip-path: inset(0 0 0 0);
    }
}

/* CONTROLS */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 10;
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* INDICATORS */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #aaa;
    border: none;
    cursor: pointer;
}

.indicator.active {
    background: #fff;
}


/* Services Section */
.services-section {
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

.section-subtitle {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid #2E8B57;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
    transition: left 0.7s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-top-color: #FFD700;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B57, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.1);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333333;
}

.service-description {
    color: #666666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2E8B57;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover {
    color: #246b44;
    gap: 12px;
}

/* About Section */
.about-section {
    background: #f9f9f9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    padding-right: 30px;
}

.about-title {
    font-size: 2.2rem;
    color: #2E8B57;
    margin-bottom: 20px;
}

.about-description {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #2E8B57;
}

.image-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    /* background-color: red; */
}

.image-placeholder {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, #2E8B57, #4682B4);
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    position: relative;
    display: inline-block;
}

.image-placeholder img {
    width: 100%;
    border-radius: 10px;
}

/* Fullscreen icon */
.fullscreen-btn {
    position: absolute;
    bottom: 1px;
    right: 10px;
    background: transparent;
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.fullscreen-btn:hover {
    background: rgba(0, 128, 0, 0.9);
}

/* Lightbox modal */
.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Show lightbox */
.lightbox:target {
    display: flex;
}

/* Close button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.stats-box {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 30px;
    width: 80%;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E8B57;
    margin-bottom: 5px;
}

.stat-label {
    color: #666666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stats Counter */
.stats-counter {
    background: linear-gradient(135deg, #2E8B57, #4CAF50);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: #f9fdf9;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2rem;
    color: #2E8B57;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    color: #666;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e0f0e0;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #2E8B57;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #2E8B57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.benefit-content h3 {
    color: #2E8B57;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #f0f8f0;
    color: #2E8B57;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Stats Banner */
.stats-banner {
    background: #2E8B57;
    border-radius: 8px;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    text-align: center;
    color: white;
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    display: block;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.why-choose-cta {
    text-align: center;
    /* padding-top: 2rem; */
    /* border-top: 1px solid #e0f0e0; */
}

.why-choose-cta p {
    color: #555;
    /* margin-bottom: 1.5rem; */
}







/* Mini Map Section */
.mini-map-section {
    padding: 3rem 0;
    background: #f9fdf9;
    border-top: 1px solid #e0f0e0;
    border-bottom: 1px solid #e0f0e0;
}

.map-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-header h2 {
    color: #2E8B57;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.map-header h2 i {
    color: #2E8B57;
}

.map-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Map Container */
.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .map-container {
        grid-template-columns: 1fr;
    }
}

.map-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.map-embed iframe {
    display: block;
    border: none;
}

/* Location Details */
.location-details {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0f0e0;
}

.location-info {
    margin-bottom: 1.5rem;
}

.map-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.map-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.map-info-icon {
    width: 40px;
    height: 40px;
    background: #f0f8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2E8B57;
    flex-shrink: 0;
}

.map-info-content h4 {
    color: #2E8B57;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.map-info-content p {
    color: #555;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.address-note {
    color: #888;
    font-size: 0.85rem;
    font-style: italic;
}

.timings {
    margin-top: 0.5rem;
}

.timing-row {
    display: flex;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timing-row .day {
    color: #555;
    margin-right: 0.5rem;
    font-weight: 500;
}

.timing-row .time {
    color: #2E8B57;
    font-weight: 500;
}

.contact-number,
.contact-email {
    margin-bottom: 0.5rem;
}

.contact-number a,
.contact-email a {
    color: #2E8B57;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.contact-number a:hover,
.contact-email a:hover {
    color: #267349;
    text-decoration: underline;
}

/* Map Actions */
.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-map-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.5rem;
    background: #2E8B57;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    flex: 1;
    justify-content: center;
    min-width: 150px;
}

.btn-map-action:hover {
    background: #267349;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(46, 139, 87, 0.2);
}

.btn-map-action.secondary {
    background: #f0f8f0;
    color: #2E8B57;
    border: 1px solid #2E8B57;
}

.btn-map-action.secondary:hover {
    background: #2E8B57;
    color: white;
}

/* Landmarks */
.landmarks {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0f0e0;
    margin-top: 1rem;
}

.landmarks h4 {
    color: #2E8B57;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landmark-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: #f9fdf9;
    border-radius: 6px;
    border-left: 3px solid #2E8B57;
}

.landmark-item i {
    color: #2E8B57;
    width: 20px;
    text-align: center;
}

.landmark-item span {
    color: #555;
    font-size: 0.9rem;
}


/* Exchange Rate Section */
.exchange-section {
    background: white;
    padding: 2.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffffff;
}

.exchange-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.exchange-header h2 {
    color: #00974c;
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.exchange-title {
    font-size: 2.5rem;
    color: #2E8B57;
    position: relative;
    display: inline-block;
}

.exchange-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20vw;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}


.exchange-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.exchange-update {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #666;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.exchange-update i {
    color: #003366;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.source {
    background: #f0f7ff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: #00974c;
    font-weight: 500;
}

.currency-table {
    width: 100%;
    border: 1px solid grey;
    border-collapse: collapse;
}

.currency-table th {
    background: #00974c;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 99;
}

.currency-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    color: #c92323;
}

.currency-table td i {
    color: #c92323;
}

.currency-table tr:hover {
    background: #f8f9fa;
}

.currency-table tr:last-child td {
    border-bottom: none;
}

.currency-table td:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.change-up,
.change-down,
.change-stable {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.change-up {
    color: #155724;
}

.change-down {
    color: #721c24;
}

.change-stable {
    color: #856404;
}

/* Disclaimer */
.disclaimer {
    margin: 0.5rem 0.7rem;
    background: #f3f9ff;
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid #2E8B57;
}


.disclaimer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer i {
    color: #00e1ff;
    /* margin-top: 0.5rem; */
    align-items: center;
}


/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E8B57, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333333;
}

.contact-details p {
    color: #666666;
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #2E8B57;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: #246b44;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafafa;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E8B57;
    background: white;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #2E8B57;
    pointer-events: none;
}

.form-group textarea+.form-icon {
    top: 20px;
    transform: none;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-text h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0;
}

.footer-logo-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 5px 0 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 400px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #FFD700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #FFD700;
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: #FFD700;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal a:hover {
    color: #FFD700;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E8B57, #4CAF50);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Animations for scroll reveal */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-box {
        position: relative;
        bottom: 0;
        transform: none;
        margin-top: 30px;
        width: 100%;
    }
}

/* CSS-only dropdowns for mobile */
@media (max-width: 768px) {
    .dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }

    .dropdown-toggle::after {
        content: '';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    /* .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 10px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    } */

    /* Top Bar */

    /* .top-bar {
        height: 20vh;
    } */

    .top-bar-grid {
        flex-direction: row;
        text-align: center;
        gap: 10px;
    }

    .top-bar-actions {
        gap: 2px;
        position: absolute;
        top: 5px;
        right: 10px;
        font-size: 0.9rem;
    }

    .clock {
        width: 120px;
        position: absolute;
        top: 40px;
        right: 0px;
        font-size: 0.9rem;
    }

    .top-bar-info {
        display: inline-block;
        flex-direction: row;
        line-height: 1.2rem;
        flex-wrap: wrap;
        /* background-color: red; */
        gap: 20px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Hero */
    .hero {
        padding: 2px 0px;
        width: 100%;
        height: 100%;
    }

    .slider-img {
        height: auto;
        min-height: 30vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slider-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
    }


    .carousel-control {
        width: 40px;
        height: 40px;
    }

    /* Notice Bar */
    .notice-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .notice-label {
        width: 100%;
        justify-content: center;
    }

    /* Stats Box */
    .stats-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Footer */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }


}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        height: 50vh;
    }

    .slider-img {
        height: auto;
        min-height: 50vh;
    }

    .slider-img img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        border-radius: 0;
    }


    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1rem;
    }

    .logo-text p {
        font-size: 0.75rem;
    }


    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}



/* Responsive */
@media (max-width: 480px) {
    .mini-map-section {
        padding: 2rem 0;
    }

    .map-header h2 {
        font-size: 1.5rem;
    }

    .location-details {
        padding: 1rem;
    }

    .map-actions {
        flex-direction: column;
    }

    .btn-map-action {
        width: 100%;
    }

    .landmark-list {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-banner {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-box .stat-number {
        font-size: 1.5rem;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .exchange-section {
        padding: 1.5rem;
    }

    .exchange-header h2 {
        font-size: 1.5rem;
    }

    .exchange-grid {
        grid-template-columns: 1fr;
    }

    .currency-table {
        font-size: 0.85rem;
    }

    .currency-table th,
    .currency-table td {
        padding: 0.8rem 0.5rem;
    }

    .exchange-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-exchange {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .exchange-update {
        flex-direction: column;
        gap: 5px;
    }

    .currency-rates {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {

    .top-bar,
    .navbar,
    .notice-bar,
    .carousel-control,
    .carousel-indicators,
    .back-to-top,
    .footer-bottom,
    .mobile-menu-btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .section {
        padding: 20px 0;
        break-inside: avoid;
    }

    .service-card,
    .stat-card,
    .contact-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        break-inside: avoid;
    }

    .btn {
        display: none !important;
    }

    a {
        color: #000 !important;
        text-decoration: underline !important;
    }
}