﻿body {
            font-family: 'Open Sans', sans-serif;
            background-color: #ffffff;
            color: #333333;
        }

        /* --- Header & Logo Styling --- */
        .header-brand {
            background-color: #ffffff;
            padding: 12px 0;
        }
        .logo-box {
            border: 2px solid #0091ea;
            border-radius: 35px;
            padding: 6px 20px 6px 12px;
            display: inline-flex;
            align-items: center;
            background-color: #f8f9fa;
        }
        .logo-icon {
            font-size: 2.2rem;
            color: #0091ea;
            margin-right: 12px;
            line-height: 1;
        }
        .logo-text {
            font-weight: 700;
            color: #1a237e;
            font-size: 1.15rem;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* --- Navigation Menu Styling --- */
        .navbar-custom {
            background-color: transparent !important;
            padding: 0;
            position:fixed;
        }
        .navbar-custom .nav-link {
            color: #ffffff !important;
            font-weight: 600;
            font-size: 1.05rem;
            padding: 12px 15px !important;
            transition: color 0.2s;
        }
        .navbar-custom .nav-link:hover {
            color: #ffab00 !important;
        }
        .navbar-custom .dropdown-toggle::after {
            vertical-align: middle;
            margin-left: 4px;
        }
          .navbar-custom .dropdown-menu   {
            
             border-radius:10px;
             
        }
         .navbar-custom .dropdown-menu-item:hover  {
            vertical-align: middle;
            margin-left: 4px;
             background-color: #ffab00 !important;
            margin-left: 0px;
        }

        /* --- Integrated Hero Banner Section --- */
        .campus-banner-wrapper {
            background: linear-gradient(135deg, #7b1fa2 0%, #0091ea 50%, #ffab00 100%);
            position: relative;
            width:100%;
        }
        .campus-banner-content {
            padding: 80px 20px;
            color: white;
            text-align: center;
        }
        .banner-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffcc00;
            margin-bottom: 5px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .banner-subtitle {
            font-size: 1.1rem;
            letter-spacing: 2px;
            font-weight: 600;
            opacity: 0.9;
        }

        /* --- Facilities Section Styling --- */
        .section-title {
            color: #689f38;
            font-weight: 600;
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 25%;
            right: 25%;
            bottom: -8px;
            height: 2px;
            background-color: #689f38;
        }

        /* Facility Utility Controls */
        .facility-btn {
            font-weight: 600;
            border: none;
            border-radius: 4px;
            padding: 10px 24px;
            margin: 5px;
            color: white;
            transition: transform 0.2s, opacity 0.2s;
        }
        .facility-btn:hover {
            transform: translateY(-2px);
            color: white;
            opacity: 0.9;
        }
        .btn-classroom { background-color: #689f38; }
        .btn-computer { background-color: #ffa726; }
        .btn-science { background-color: #ffa726; }
        .btn-library { background-color: #ffa726; }
        .btn-playground { background-color: #ffa726; }
        .btn-transport { background-color: #ffa726; }

        .description-text {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #444444;
            max-width: 950px;
            margin: 0 auto;
        }

        /* Photo Grid Layout */
        .gallery-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .gallery-img {
            height: 240px;
            object-fit: cover;
            width: 100%;
        }
        