


* {
        .logo-image {
        width:130px;
        height: 130px;
        border-radius: 100%;
        margin-right: 10px; /* Reduced margin */
        object-fit: cover;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        border: 1px solid #FFD700; /* Thinner border */
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .hero-section {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            
            /* Background image - change the path as needed */
            background-image: 
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;url('.Images/1.jpg');
            
            /* Fallback background color */
            background-color: #8B4513;


        /* Dark overlay for better text readability */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            text-align: center;
            color: #f4d03f;
            max-width: 900px;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
            font-weight: bold;
            letter-spacing: 2px;
        }

        .hero-content p {
            font-size: 1.4rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            line-height: 1.6;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }









            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
            min-height: 100vh;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #FFF8DC;
            min-height: 100vh;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }

        .header {
            background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            color: #FFD700;
        }

        .logo-symbol {
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 24px;
            font-weight: bold;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .logo-text {
            font-size: 20px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .search-box {
            display: flex;
            gap: 5px;
        }

        .search-box input {
            padding: 8px 12px;
            border: 2px solid #FFD700;
            border-radius: 5px;
            font-size: 14px;
            outline: none;
        }

        .search-box button {
            padding: 8px 15px;
            background: #FFD700;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            color: #8B0000;
            transition: all 0.3s ease;
        }

        .search-box button:hover {
            background: #FFA500;
            transform: translateY(-1px);
        }

        .navigation {
            background: linear-gradient(135deg, #B22222 0%, #8B0000 100%);
            padding: 0;
        }

        .nav-container {
            max-width: 1160px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-item {
            padding: 15px 25px;
            color: #FFD700;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255, 215, 0, 0.3);
        }

        .nav-item:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .nav-item:last-child {
            border-right: none;
        }

        .hero-section {
            height: 400px;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), 
                        url('2.jpg') no-repeat center center;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            color: #FFD700;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .main-content {
            padding: 40px 20px;
            max-width: 1160px;
            margin: 0 auto;
        }

        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .content-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid #FFD700;
        }

        .content-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }

        .card-image {
            height: 200px;
            background: linear-gradient(45deg, #FFB347, #FF6347);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }




    .profile-image {
        width: 347px;
        height: 200px;
        background-size: cover;
        border-radius: 6%; /* Makes it circular */
        object-fit: cover;
        border: 3px solid white; /* Optional: adds a white border */
        box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Optional: adds shadow */
    }


        .card-content {
            padding: 25px;
        }

        .card-title {
            font-size: 22px;
            font-weight: bold;
            color: #8B0000;
            margin-bottom: 15px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .card-description {
            color: #666;
            line-height: 1.6;
            text-align: center;
        }

        .announcements {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 3px solid #FFD700;
        }

        .announcements h2 {
            color: #8B0000;
            font-size: 28px;
            margin-bottom: 20px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .announcement-item {
            background: linear-gradient(135deg, #FFF8DC 0%, #F5E6D3 100%);
            padding: 20px;
            margin: 15px 0;
            border-radius: 10px;
            border-left: 5px solid #B22222;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .announcement-item:hover {
            transform: translateX(10px);
        }

        .announcement-item h3 {
            color: #8B0000;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .sidebar {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .sidebar-section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
            border: 3px solid #FFD700;
        }

        .sidebar-title {
            color: #8B0000;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .sidebar-item {
            padding: 12px 15px;
            margin: 5px 0;
            border-bottom: 1px solid #eee;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 5px;
        }

        .sidebar-item:hover {
            color: #B22222;
            background: #FFF8DC;
            transform: translateX(5px);
        }

        .footer {
            background: linear-gradient(135deg, #8B0000 0%, #B22222 100%);
            color: #FFD700;
            text-align: center;
            padding: 30px 20px;
            margin-top: 40px;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .contact-item {
            background: rgba(255, 215, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-3px);
            background: rgba(255, 215, 0, 0.15);
        }

        .contact-item h4 {
            margin-bottom: 10px;
            font-size: 18px;
        }

        .social-links {
            margin: 20px 0;
        }

        .social-links a {
            color: #FFD700;
            font-size: 24px;
            margin: 0 10px;
            text-decoration: none;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .social-links a:hover {
            transform: scale(1.3);
        }

        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #8B0000;
            color: #FFD700;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            font-size: 18px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background: #B22222;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }
            
            .logo-text {
                font-size: 16px;
                text-align: center;
            }
            
            .nav-item {
                padding: 10px 15px;
                font-size: 14px;
            }
            
            .hero-content h1 {
                font-size: 32px;
            }
            
            .hero-content p {
                font-size: 16px;
            }

            .main-content {
                padding: 20px 15px;
            }

            .announcements,
            .sidebar-section {
                padding: 20px;
            }
        }

