:root {
            --s-blue: #00338d;
            --s-green: #4caf50;
            --s-orange: #ff7a18;
            --white: #ffffff;
        }

        .hero-slider {
            width: 100%;
            height: 85vh; /* Hero section height */
            overflow: hidden;
            position: relative;
        }

        .swiper-slide {
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Dark Overlay for better text visibility */
        .swiper-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(0, 51, 141, 0.8), rgba(0, 0, 0, 0.3));
            z-index: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
            text-align: left;
            margin-right: auto;
            margin-left: 10%;
        }

        /* Text Animations */
        .slide-content h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(30px);
            transition: 0.8s ease forwards;
        }

        .slide-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            border-left: 4px solid var(--s-orange);
            padding-left: 15px;
            opacity: 0;
            transform: translateY(30px);
            transition: 0.8s 0.2s ease forwards;
        }

        /* Active Slide Animation Trigger */
        .swiper-slide-active .slide-content h2,
        .swiper-slide-active .slide-content p,
        .swiper-slide-active .slide-btns {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slider Buttons */
        .slide-btns {
            display: flex;
            gap: 15px;
            opacity: 0;
            transform: translateY(30px);
            transition: 0.8s 0.4s ease forwards;
        }

        .btn-s {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
            display: inline-block;
        }

        .btn-apply {
            background: var(--s-green);
            color: white;
        }

        .btn-apply:hover {
            background: var(--s-blue);
            transform: scale(1.05);
        }

        .btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover {
            background: var(--s-orange);
            border-color: var(--s-orange);
        }

        /* Navigation Arrows */
        .swiper-button-next, .swiper-button-prev {
            color: var(--white);
            background: rgba(255, 122, 24, 0.2);
            width: 50px;
            height: 50px;
            border-radius: 50%;
        }
        .swiper-button-next:after, .swiper-button-prev:after { font-size: 20px; }

        /* Responsive Mobile */
        @media (max-width: 768px) {
            .hero-slider { height: 60vh; }
            .slide-content { text-align: center; margin: 0 auto; }
            .slide-content h2 { font-size: 2rem; }
            .slide-content p { font-size: 1rem; border-left: none; }
            .slide-btns { justify-content: center; flex-direction: column; }
        }


        /* --- General Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Features Section --- */
.features-section {
    padding: 100px 0 60px; /* Padding बढ़ाई गई है */
    background: #fdfdfd;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -120px; /* स्लाइडर पर ओवरलैप इफेक्ट */
    position: relative;
    z-index: 10;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95); /* हल्का ट्रांसपेरेंट */
    padding: 50px 30px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* बाउंस इफेक्ट */
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
    position: relative;
}

/* कार्ड के पीछे एक छोटा सा ग्रेडिएंट सर्कल (Hover पर दिखेगा) */
.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,94,20,0.05) 0%, transparent 70%);
    transition: 0.5s;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255,94,20,0.15);
    background: #fff;
}

.feature-card .icon-box {
    font-size: 50px;
    background: linear-gradient(135deg, #ff5e14, #ff9055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.4s;
    position: relative;
    z-index: 1;
}

.feature-card:hover .icon-box {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* --- About Preview Section --- */
.about-preview {
    padding: 100px 0;
    overflow: hidden;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff5e14;
    font-weight: 600;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(to right, #ff5e14, #ff9055);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.about-image {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    transition: 0.5s;
    filter: grayscale(20%);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

/* इमेज होवर इफेक्ट */
.about-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* फोटो के पीछे का सजावटी बॉक्स */
.about-image::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid #ff5e14;
    border-radius: 30px;
    z-index: -1;
    transition: 0.5s;
}

.about-image:hover::after {
    top: 15px;
    right: -15px;
}

/* --- Button Styling --- */
.btn-s {
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-apply {
    background: #ff5e14;
    color: #fff;
    box-shadow: 0 10px 20px rgba(255,94,20,0.3);
}

.btn-apply:hover {
    background: #e54e0d;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255,94,20,0.4);
}

/* --- Responsive Fix --- */
@media (max-width: 768px) {
    .features-grid {
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-flex {
        gap: 40px;
    }
    
    .about-image::after {
        display: none; /* मोबाइल पर इसे हटाना क्लीन दिखता है */
    }
}


/* --- Global Variables (आसानी से कलर बदलने के लिए) --- */
:root {
    --primary-dark: #0a192f;   /* गहरा नेवी ब्लू */
    --accent-orange: #ff5e14;  /* ब्राइट ओआरेंज */
    --text-light: #ccd6f6;     /* हल्का टेक्स्ट */
    --white: #ffffff;
    --bg-light: #f4f7f9;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.section-title .subtitle {
    color: var(--accent-orange);
    background: rgba(255, 94, 20, 0.1);
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2 {
    color: var(--primary-dark);
    font-size: 40px;
    font-weight: 800;
}

/* --- Service Card: Interactive Design --- */
.service-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    border-bottom: 4px solid transparent; /* नीचे की बॉर्डर होवर पर दिखेगी */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
    position: relative;
    overflow: hidden;
}

/* Hover: गहरा नीला बैकग्राउंड और ओआरेंज बॉर्डर */
.service-card:hover {
    background: var(--primary-dark);
    transform: translateY(-15px);
    border-bottom: 4px solid var(--accent-orange);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

/* --- Service Image Frame --- */
.service-img {
    width: 110px;
    height: 110px;
    background: var(--white);
    border: 3px solid var(--accent-orange);
    border-radius: 20px; /* मॉडर्न स्क्वीकल शेप */
    padding: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.2);
}

.service-card:hover .service-img {
    transform: rotate(360deg); /* इमेज पूरी घूमेगी */
    background: var(--accent-orange);
    border-color: var(--white);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* --- Text Styling --- */
.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
    transition: 0.3s;
}

.service-card:hover h3 {
    color: var(--white); /* होवर पर सफ़ेद टाइटल */
}

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    transition: 0.3s;
}

.service-card:hover p {
    color: var(--text-light); /* होवर पर हल्का नीला-सफ़ेद टेक्स्ट */
}

/* --- Button Styling --- */
.btn-apply {
    background: var(--accent-orange);
    color: var(--white);
    padding: 12px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
    border: 2px solid var(--accent-orange);
    display: inline-block;
}

.btn-apply:hover {
    background: transparent;
    color: var(--accent-orange);
    box-shadow: 0 5px 15px rgba(255, 94, 20, 0.4);
}

.service-card:hover .btn-apply {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
}

/* --- Responsive View --- */
@media (max-width: 991px) {
    .section-title h2 { font-size: 32px; }
    .service-card { padding: 40px 20px; }
}

@media (max-width: 767px) {
    .services-section { padding: 60px 0; }
    .row > div { margin-bottom: 30px; } /* मोबाइल कार्ड्स के बीच गैप */
    .section-title h2 { font-size: 26px; }
}


/* --- Stats Section Styling --- */
.stats-section {
    padding: 80px 0;
    background-color: #0a192f; /* नेवी ब्लू बैकग्राउंड */
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* बैकग्राउंड में हल्का सा डिजाइन (Decorative) */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(255, 94, 20, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: 0.3s;
}

.stat-icon {
    font-size: 45px;
    color: #ff5e14; /* ओआरेंज आइकॉन */
    margin-bottom: 20px;
    display: inline-block;
}

.stat-content {
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
}

.stat-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.stat-content span {
    font-size: 30px;
    color: #ff5e14;
    font-weight: 700;
    margin-left: 5px;
}

.stat-item p {
    width: 100%;
    font-size: 18px;
    color: #ccd6f6; /* हल्का नीला-सफ़ेद टेक्स्ट */
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Hover Effect */
.stat-item:hover .stat-icon {
    transform: translateY(-10px) scale(1.1);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- Responsive View --- */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    .stat-content h2 {
        font-size: 36px;
    }
    .stats-grid {
        gap: 30px;
    }
}


.cta-section {
    padding: 80px 0;
    background: #0a192f;
    margin: 40px 0;
    border-radius: 20px; /* अगर आप इसे बॉक्स लुक देना चाहें */
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-text h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.highlight-orange {
    color: #ff5e14;
}

.cta-text p {
    color: #ccd6f6;
    font-size: 18px;
    line-height: 1.6;
}

.cta-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Primary Button (Orange) */
.btn-main {
    background: #ff5e14;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(255, 94, 20, 0.3);
    border: 2px solid #ff5e14;
}

.btn-main:hover {
    background: transparent;
    color: #ff5e14;
    transform: translateY(-5px);
}

/* Secondary Button (Outline) */
.btn-outline-white {
    background: transparent;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #ffffff;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #0a192f;
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .cta-box {
        text-align: center;
        flex-direction: column;
    }
    .cta-btns {
        justify-content: center;
    }
    .cta-text h2 {
        font-size: 28px;
    }
}


/* --- Testimonial Section Styles --- */
.testimonial-section {
    padding: 100px 0;
    background-color: #f8f9fa; /* हल्का बैकग्राउंड ताकि सफेद कार्ड उभर कर दिखें */
}

/* Section Title */
.section-title {
    margin-bottom: 60px;
}

.section-title .subtitle {
    color: #ff5e14;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0a192f;
}

.section-title .highlight {
    color: #ff5e14;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    position: relative;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
}

/* Hover Effect */
.testimonial-card:hover {
    transform: translateY(-15px);
    border-color: #ff5e14;
    box-shadow: 0 20px 40px rgba(255, 94, 20, 0.1);
}

/* Quote Icon */
.quote-icon {
    font-size: 35px;
    color: #ff5e14;
    opacity: 0.2;
    margin-bottom: 15px;
    transition: 0.3s;
}

.testimonial-card:hover .quote-icon {
    opacity: 1;
    transform: rotate(-10deg);
}

/* Description Text */
.testi-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

/* Star Rating */
.stars {
    margin-bottom: 25px;
}

.stars i {
    font-size: 14px;
    margin-right: 2px;
}

/* User Info Section */
.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testi-user img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff5e14; /* ओआरेंज बॉर्डर */
    transition: 0.4s;
}

.testimonial-card:hover .testi-user img {
    transform: scale(1.1);
}

.user-info h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0a192f;
    margin: 0;
}

.user-info span {
    font-size: 14px;
    color: #ff5e14;
    font-weight: 600;
    display: block;
}

/* --- Responsive View --- */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-grid {
        gap: 20px;
    }
    
    /* मोबाइल पर कार्ड्स के बीच थोड़ा गैप */
    .testimonial-card {
        margin-bottom: 10px;
    }
}


/* --- Campaigns Section Styling --- */
.campaigns-section {
    padding: 100px 0;
    background-color: #f4f7f6;
}

.camp-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.05);
    transition: 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
}

.camp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.12);
}

/* Image & Badge */
.camp-img {
    position: relative;
    height: 230px;
}

.camp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.camp-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff5e14;
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Content */
.camp-content {
    padding: 30px 25px;
}

.camp-content h3 {
    font-size: 22px;
    color: #0a192f;
    font-weight: 700;
    margin-bottom: 15px;
}

.camp-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Progress Bar Styling */
.camp-progress {
    margin-bottom: 25px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: #0a192f;
}

.bar-bg {
    width: 100%;
    height: 8px;
    background: #eef1f6;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #ff5e14;
    border-radius: 10px;
    transition: width 1.5s ease-in-out;
}

.goal-label {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    font-weight: 500;
}

/* Action Buttons */
.camp-btns {
    display: flex;
    gap: 10px;
}

.btn-donate {
    flex: 1;
    background: #0a192f;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-donate:hover {
    background: #ff5e14;
    color: #fff;
}

.btn-view {
    width: 48px;
    height: 48px;
    background: #fdf2ed;
    color: #ff5e14;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view:hover {
    background: #ff5e14;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .campaigns-section {
        padding: 60px 0;
    }
    .camp-img {
        height: 200px;
    }
}

/* --- Services Section Styling --- */
.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.subtitle-yellow {
    color: #ffb400; /* इमेज वाला पीला रंग */
    font-size: 20px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title h2 {
    color: #2d3e50; /* इमेज वाला नेवी ब्लू */
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 60px;
}

.section-title h2 span {
    color: #2d3e50;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* डेस्कटॉप पर 3 कॉलम */
    gap: 50px 30px;
}

/* Individual Item */
.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.service-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
}

.service-icon img {
    width: 100%;
    filter: sepia(100%) saturate(2000%) hue-rotate(10deg); /* इमेज जैसा पीला कलर आइकन के लिए */
}

/* Line Indicator (The orange vertical line in your image) */
.service-text {
    border-left: 2px solid #ffb400;
    padding-left: 20px;
}

.service-text h3 {
    font-size: 24px;
    color: #2d3e50;
    margin-bottom: 10px;
    font-weight: 700;
}

.service-text p {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Adjustments --- */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* टैबलेट पर 2 कॉलम */
    }
}

/* Mobile Phones (768px and below) */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .section-title h2 {
        font-size: 30px;
    }
    .services-grid {
        grid-template-columns: 1fr; /* मोबाइल पर 1 कॉलम */
        gap: 40px;
    }
    .service-item {
        flex-direction: column; /* आइकन को ऊपर लाने के लिए */
        align-items: center;
        text-align: center;
    }
    .service-text {
        border-left: none;
        border-top: 2px solid #ffb400; /* मोबाइल पर लाइन ऊपर दिखेगी */
        padding-left: 0;
        padding-top: 15px;
    }
}

/* --- Updated Icon Styling --- */
.service-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 40px; /* आइकॉन का साइज़ */
    color: #ffb400; /* इमेज वाला पीला/नारंगी रंग */
    transition: 0.3s;
}

/* Hover Effect: आइकॉन का रंग बदलना */
.service-item:hover .service-icon i {
    transform: scale(1.1);
    color: #2d3e50; /* होवर करने पर नेवी ब्लू */
  }