* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Using Inter font, which is clean and modern */
    font-family: 'Inter', Arial, sans-serif;
}

/* Load Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* Header */
header {
    background-color: #fd8900;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

header h1 {
    font-size: 28px;
}

header p {
    font-size: 16px;
}


.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

/* When the element becomes visible */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MODERN ABOUT SECTION --- */
.modern-about {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fd8900;
    color: white;
    padding: 100px 50px 100px 50px;
    gap: 60px;
    position: relative;
}

.about-images {
    flex: 1;
    position: relative;
}

.about-images .image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.about-images .image1 {
    width: 80%;
    margin-left: 0;
    z-index: 1;
}

.about-images .image1 img {
    width: 85%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.about-images .image2 {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 70%;
    z-index: 2;
}

.about-images .image2 img {
    width: 70%;
    height: auto;
    border-radius: 10px;
}

.image-line {
    position: absolute;
    bottom: 60px;
    left: 30px;
    width: 100px;
    height: 3px;
    background: #fd8900;
}

.about-content {
    flex: 1;
    color: white;
}

.about-content h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.about-content p {
    color: #fff;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
}

.experience-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    padding: 20px 30px;
    margin: 30px 0;
}

.experience-box h3 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-right: 15px;
}

.experience-box p {
    margin: 0;
    font-size: 1rem;
    color: #fd8900;
    line-height: 1.4;
}

.btn-read {
    display: inline-block;
    background: #fd8900;
    color: #0c0c0c;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-read:hover {
    background: #ffa733;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-about {
        flex-direction: column;
        padding: 80px 30px;
    }

    .about-images {
        margin-bottom: 40px;
    }
}


/* --- SERVICES SECTION --- */
.services-section {
    background-color: #fd8900;
    color: white;
    padding: 100px 50px;
    text-align: center;
}

.services-header {
    text-align: center;
    width: 55%;
    margin: 0 auto 100px auto;
}

.services-header h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto;
    line-height: 1.4;
    max-width: 700px;
    /* Controls text width */
    text-align: center;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: #fff;
    color: #222;
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 10px 25px rgba(253, 137, 0, 0.3); */
}

.service-icon {
    font-size: 3rem;
    color: #fd8900;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #fd8900;
    color: #fd8900;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #fd8900;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-section {
        padding: 70px 30px;
    }

   .services-header h2 {
       font-size: 1.8rem;
       max-width: 90%;
   }
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    padding: 5px 30px;
    width: 90%;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    background: white;
    transition: all 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    /* logo left, menu right */
    align-items: center;
    /* ✅ perfectly vertical center */
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    /* ✅ ensures logo text stays centered */
    font-size: 1.4rem;
    font-weight: 700;
    color: #fd8900;
    margin-left: 15px;
    line-height: 1;
    /* ✅ removes extra space from text */
}

.nav-menu {
    display: flex;
    align-items: center;
    /* ✅ vertically aligns menu items */
    gap: 30px;
    margin-right: 15px;
}

.nav-link {
    display: inline-flex;
    /* ✅ ensures equal line height */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: black;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fd8900;
}

/* Mobile Menu Styles */
#mobile-menu {
    backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.95);
}

.mobile-nav-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary) !important;
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background: #fd8900;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.cursor-ring {
    width: 30px;
    height: 30px;
    border: 1px solid #fd8900;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease;
}

.logo{
    height: 70px;
    width: 200px;
}

/* Hero Section */
/* Heading Section */
.about-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    font-weight: 700;
    margin-top: 100px;
    margin-bottom: 50px;
    position: relative;
}

.about-heading::after {
    content: "";
    display: block;
    width: 30%;
    height: 4px;
    background-color: #fd8900;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* About Layout */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 100px;
    gap: 60px;
    background-color: #fff;
    margin-bottom: 70px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.about-text i {
    font-style: italic;
    font-weight: bold;
    color: #fd8900;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 12px;
    
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
        justify-content: center;
    }

    .about-image img {
        max-width: 90%;
    }

    .about-heading {
        font-size: 2rem;
    }
}

/* --- NEW COUNTS SECTION STYLES --- */
.counts-section {
    background-color: #fd8900;
    color: white;
    padding: 80px 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.count-item {
    flex: 1;
    padding: 10px;
    margin: 0 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    /* Separator line */
}

.counts-section .count-item:last-child {
    border-right: none;
    /* Remove separator on the last item */
}

.count-number {
    font-size: 4rem;
    /* Large impressive number size */
    font-weight: 900;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.count-item:hover .count-number {
    color: #f7f7f7;
    /* Slightly brighter on hover */
}

.count-label {
    font-size: 1.15rem;
    /* Label size */
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* --- END NEW COUNTS SECTION STYLES --- */

/* WhatsApp Chat Button */
.chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ebf2eeff;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 2px 2px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(0, 150, 0, 0.4);
    transition: transform 0.2s, background-color 0.2s;
    z-index: 100;
}

.chat-btn:hover {
    transform: scale(1.05);
    background-color: #ffffffff;
}

.chat-btn img {
    width: 54px;
    height: 54px;
}

/* --- HOW IT WORKS SECTION STYLES --- */
.how-it-works-section {
    padding: 100px 50px 80px 50px;
    background-color: #ffffff;
    text-align: center;
    
}

.how-it-works-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    max-width: 280px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(97, 163, 208, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #fd8900;
    /* Blue accent color */
    fill: none;
    stroke-width: 1.5;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-item span {
    font-weight: 900;
    margin-right: 5px;
    color: #333;
}

.step-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* --- END HOW IT WORKS SECTION STYLES --- */

/* --- GALLERY SECTION STYLES (New Content) --- */
.gallery-section {
    padding: 100px 50px 100px 50px;
    background-color: white;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 100px;
}

.gallery-container {
    display: grid;
    /* Grid layout for responsive columns */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    /* Fixed height for consistent look */
    object-fit: cover;
    /* Ensures image covers the space */
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Optional: Add captions below the image if needed */
.gallery-caption {
    padding: 15px 10px;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    background-color: #fff;
    text-align: left;
}

.gallery-more {
    margin-top: 30px;
    text-align: center;
}

.gallery-more a {
    display: inline-block;
    padding: 10px 25px;
    /* background: #fd8900; */
    border: 1px solid #fd8900;
    color: #fd8900;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.gallery-more a:hover {
    background: #fd8900;
    color: #fff;
}

/* .active{
    background: #fd8900 !important;
    color: #fff !important;
} */

/* --- PARTNERS SLIDER SECTION STYLES (New Content) --- */
.partners-section {
    padding: 0px 50px 100px 50px;
    background-color: #ffffff;
    text-align: center;
}

.partners-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}

.logo-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.logo-slide {
    flex: 0 0 33.333%;
    min-width: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-slide img {
    max-width: 80%;
    height: auto;
    max-height: 100px;
    filter: grayscale(0%);
    opacity: 1;
    transition: opacity 0.3s;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #fd8900;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s, color 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background: #fd8900;
    color: white;
}

.slider-arrow.left {
    left: 10px;
}

.slider-arrow.right {
    right: 10px;
}

/* Dots for navigation */
.slider-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fd8900;
}

/* --- FOOTER SECTION STYLES (New Content) --- */
footer {
    background-color: #222222;
    padding: 100px 50px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    color: #333;
    border-top: 1px solid #eee;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.footer-column h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fd8900;
    margin-bottom: 30px;
}

/* Follow Us Styles */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    color: black;
    background-color: #fd8900;
}

.svgicon {
    border: 2px solid white;
}


/* Opening Hours Styles */
.opening-hours p {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: white;
    display: flex;
    align-items: center;
    /* vertically center text + icon */
    gap: 8px;
    /* small space between icon and text */
}

.contact-info strong {
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    /* space between icon and colon */
}

.contact-info svg {
    vertical-align: middle;
    width: 18px;
    height: 18px;
}

/* Location Map Styles */
.map-container {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}



/* Media Queries for Responsiveness */
@media(max-width: 1024px) {
    .count-number {
        font-size: 3rem;
    }
}

@media(max-width: 900px) {

    /* Header/Nav adjustment */
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 0 10px 0 0;
        padding: 3px 6px;
    }

    /* About Section adjustment */
    .about-section {
        flex-direction: column;
        padding: 50px 30px;
    }

    .about-text {
        margin-right: 0;
    }

    .about-image {
        margin-top: 40px;
    }

    .about-image img {
        max-width: 90%;
    }

    /* Counts Section adjustment */
    .counts-section {
        flex-direction: column;
        gap: 40px;
        padding: 50px 30px;
    }

    .count-item {
        margin: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 20px;
        width: 100%;
    }

    .counts-section .count-item:last-child {
        border-bottom: none;
    }

    .count-number {
        font-size: 3rem;
    }
}

@media(max-width: 600px) {
    .overlay h2 {
        font-size: 1.8rem;
        padding: 20px 30px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }
}

/* Responsive adjustments */
@media(max-width: 1024px) {
    .steps-container {
        flex-wrap: wrap;
    }

    .step-item {
        flex: 0 0 45%;
        /* Two items per row on tablet */
        margin-bottom: 40px;
    }
}

@media(max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 0 10px 0 0;
        padding: 3px 6px;
    }

    .partners-section {
        padding: 50px 0;
    }

    .partners-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .slider-container {
        padding: 0 10px;
    }

    .logo-slide {
        flex: 0 0 50%;
        /* Show 2 items on smaller screens */
    }

    .slider-arrow {
        /* Hide arrows on very small screens for better touch experience */
        display: none;
    }

    .how-it-works-section {
        padding: 50px 20px;
    }

    .how-it-works-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .step-item {
        flex: 0 0 100%;
        /* One item per row on mobile */
        max-width: 100%;
    }
}

/* Responsive adjustments */
@media(max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 0 10px 0 0;
        padding: 3px 6px;
    }

    .gallery-section {
        padding: 50px 20px;
    }

    .gallery-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .gallery-item img {
        height: 250px;
    }
}

@media(max-width: 480px) {
    .logo-slide {
        flex: 0 0 100%;
        /* Show 1 item on mobile */
    }
}

/* Responsive adjustments */
@media(max-width: 1024px) {
    footer {
        flex-wrap: wrap;
        padding: 50px 30px;
    }

    .footer-column {
        min-width: 45%;
    }
}

@media(max-width: 768px) {
    header {
            padding: 60px 30px 120px;
        }
    
        header h1 {
            font-size: 32px;
        }
    
        header p {
            font-size: 16px;
        }
    
        nav {
            padding: 15px 20px;
            gap: 5px;
            width: 90%;
        }
    
        nav.scrolled {
            padding: 15px 30px;
        }
    
        nav a {
            margin: 0 8px;
            font-size: 14px;
            padding: 8px 12px;
        }

    footer {
        flex-direction: column;
        gap: 50px;
    }

    .footer-column {
        min-width: 100%;
        max-width: 100%;
    }

}


@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
}



