  :root {
            --water-blue: #1e88e5;
            --water-light: #64b5f6;
            --water-dark: #0d47a1;
            --water-accent: #00acc1;
            --water-bg: #e3f2fd;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--water-bg) 0%, #ffffff 100%);
            min-height: 100vh;
        }

        .header-section {
            background: linear-gradient(135deg, var(--water-dark) 0%, var(--water-blue) 100%);
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .government-emblem, .department-logo {
            flex-shrink: 0;
        }

        .government-emblem svg, .department-logo svg {
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .header-text {
            flex-grow: 1;
        }

        .government-text {
            text-align: left;
        }

        .hindi-text {
            font-family: 'Noto Sans Devanagari', 'Arial Unicode MS', sans-serif;
            font-weight: 600;
        }

        .certification-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
        }

        .certification-badges .badge {
            display: inline-flex;
            align-items: center;
            gap: 3px;
        }

        /* Responsive adjustments for logos */
        @media (max-width: 768px) {
            .logo-section {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            
            .government-emblem svg, .department-logo svg {
                width: 60px;
                height: 60px;
            }
            
            .government-text {
                text-align: center;
            }
            
            .certification-badges {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .government-emblem svg, .department-logo svg {
                width: 50px;
                height: 50px;
            }
            
            .hindi-text {
                font-size: 0.8rem !important;
            }
            
            .english-text {
                font-size: 0.7rem !important;
            }
        }

        .water-icon {
            font-size: 3rem;
            color: var(--water-accent);
        }

        .hero-section {
            background: linear-gradient(rgba(30, 136, 229, 0.1), rgba(100, 181, 246, 0.1)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z" fill="%23e3f2fd" opacity="0.5"/></svg>');
            padding: 80px 0;
            text-align: center;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 8px 25px rgba(30, 136, 229, 0.15);
            transition: all 0.3s ease;
            border-top: 4px solid var(--water-blue);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(30, 136, 229, 0.25);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--water-blue);
            margin-bottom: 20px;
        }

        .btn-water {
            background: linear-gradient(135deg, var(--water-blue), var(--water-accent));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-water:hover {
            background: linear-gradient(135deg, var(--water-dark), var(--water-blue));
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
            color: white;
        }

        .login-section {
            background: var(--water-bg);
            padding: 60px 0;
            border-radius: 20px;
            margin: 40px 0;
        }

        .contact-section {
            background: var(--water-dark);
            color: white;
            padding: 60px 0;
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 15px 0;
        }

        .wave-decoration {
            position: relative;
            overflow: hidden;
        }

        .wave-decoration::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z" fill="%23ffffff" opacity="0.1"/></svg>');
            background-size: cover;
        }

        .status-tracker {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }

        .footer {
            background: var(--water-dark);
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        /* Header Slider Styles */
        .header-slider {
            top: 0;
            left: 0;
            z-index: 1;
        }

        .slider-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slider-image.active {
            opacity: 1;
        }

        .slider-nav {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot:hover,
        .slider-dot.active {
            background: white;
            border-color: white;
            transform: scale(1.2);
        }

        /* Animated Water Drops */
        .water-drop {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: waterDrop 8s infinite linear;
        }

        @keyframes waterDrop {
            0% {
                top: -10px;
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                top: 100%;
                opacity: 0;
            }
        }

        /* Responsive adjustments for slider */
        @media (max-width: 768px) {
            .slider-nav {
                right: 10px !important;
                gap: 8px;
            }
            
            .slider-dot {
                width: 10px;
                height: 10px;
            }
            
            .water-drop {
                width: 6px;
                height: 6px;
            }
        }

        /* GIGW Accessibility Styles */
        .accessibility-bar {
            font-size: 0.9rem;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* High Contrast Mode */
        .high-contrast {
            background: #000000 !important;
            color: #ffffff !important;
        }

        .high-contrast .service-card {
            background: #000000 !important;
            color: #ffffff !important;
            border: 2px solid #ffffff !important;
        }

        .high-contrast .btn-water {
            background: #ffffff !important;
            color: #000000 !important;
            border: 2px solid #ffffff !important;
        }

        .high-contrast .text-primary {
            color: #ffffff !important;
        }

        /* Font Size Controls */
        .font-large {
            font-size: 1.2em !important;
        }

        .font-larger {
            font-size: 1.4em !important;
        }

        .font-largest {
            font-size: 1.6em !important;
        }

        /* Focus Indicators */
        button:focus,
        input:focus,
        select:focus,
        a:focus {
            outline: 3px solid #ffbf47 !important;
            outline-offset: 2px !important;
        }

        /* Skip Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: #000;
            color: #fff;
            padding: 8px;
            text-decoration: none;
            z-index: 1000;
        }

        .skip-link:focus {
            top: 6px;
        }

        /* GIGW Compliance Indicators */
        .gigw-compliant {
            border-left: 4px solid #28a745;
            padding-left: 15px;
        }

        /* Language Indicator */
        .lang-indicator {
            position: fixed;
            top: 50%;
            right: 10px;
            background: var(--water-blue);
            color: white;
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            z-index: 1000;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, var(--water-blue), var(--water-accent));
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            background: linear-gradient(135deg, var(--water-dark), var(--water-blue));
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
        }

        .scroll-to-top:active {
            transform: translateY(-1px);
        }

        /* Responsive adjustments for scroll button */
        @media (max-width: 768px) {
            .scroll-to-top {      bottom: 20px;    right: 20px;   width: 45px; height: 45px;   font-size: 1rem; }
        }
      .emblem-wrapper {
    display: inline-block;    padding: 8px;    background-color: /*rgb(6 54 59 / 11%);rgb(143 119 119 / 11%); */   border-radius: 10%;   /* box-shadow: 0 0 12px rgba(0, 0, 139, 0.5);*/ /* Dark blue shadow */  }
	.tagline {color:rgb(255 241 119 / 83%);}
  .headertext{color:#00acc1;/*#aaf0f1;*/
    font-weight: bolder;}
   .headertext1{color:#ffd67d;/*#aaf0f1;*/
    font-weight: bolder;} 
    .text-primary-dark{color:rgb(3, 126, 179);/*rgb(2 150 214);*/}
    .contact-box {
  background-color: #efecec;
  color:rgb(1 77 110);;/*rgb(3, 126, 179);*/
}

 .leadpara{

            --bs-bg-opacity: 1;
    background-color: rgb(2 58 114 / 57%) !important;
        --bs-text-opacity: 1;
    color: #fafcfd !important;
        }
.slogan-box {
  position: relative;
}

.slogan-text {
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px #000;
}
/* Default for large screens */
.responsive-logo {
  max-height: 120px;
}

/* Scale down on smaller screens */
@media (max-width: 767.98px) {
  .responsive-logo {
    max-height: 64px;
  }
}
.object-fit-cover {
  object-fit: cover;
  object-position: center;
}