*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family:Arial, Helvetica, sans-serif;
}
body {
    background-image: url("bgimg.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
/* General Navbar Styling */
.navi {
    position: sticky;
    top: 0;
    z-index: 1020; /* Ensure it stays on top of other elements */
    background-color: black;
    height: 75px; /* Adjusted navbar height */
    padding: 0; /* Removed extra padding */
    width: 100%;
}

/* Logo Styling */
.navbar-brand {
    margin: 0; /* Removed any margin */
    padding: 0; /* Removed any padding */
}
.navbar-brand img {
    width: 120px; /* Adjusted logo size */
    height: auto; /* Maintained aspect ratio */
}

/* Navbar Links Styling */
.navbar-nav {
    display: flex;
    justify-content: flex-end; /* Align nav links to the extreme right */
    align-items:flex-end;
    gap: 10px; /* Adjust space between nav links */
    margin-left: 0; /* Push nav links to the extreme right */
    margin-right: 0; /* Ensure no extra space at the end */
    padding-right: 0; /* Remove padding from the right of the nav */
    width: 94%;
    
    
}

.navbar .navbar-nav .nav-link {
    color: white;
    font-size: 12px; /* Adjusted font size */
    font-weight: bolder; /* Bold for better emphasis */
    padding: 0.5em 0.8em; /* Adjusted padding for compact spacing */
    transition: color 0.3s ease-in-out; /* Smooth color transition */
    font-family:Georgia, 'Times New Roman', Times, serif
}

/* Remove space from the nav links */
.navbar-nav li:last-child {
    margin-right: 0; /* Ensure no extra margin for the last link */
}

/* Hover Effect for Nav Items */
.nav-item:hover {
    transform: none; /* Disabled scaling effect */
}
.navbar .navbar-nav .nav-link:hover {
    color: red; /* Only change color on hover */
}

/* Media Query for Larger Screens */
@media screen and (min-width: 768px) {
    .navbar-brand img {
        width: 140px; /* Slightly larger logo size for larger screens */
    }

    .navbar .navbar-nav .nav-link {
        font-size: 16px; /* Adjusted font size for larger screens */
    }
}

/* Background Image Styling */
.background {
    background-image: url('faqbgimg3.png'); /* Replace with your background image */
    background-size: 150%; /* Zoom in on the background image */
    background-position: top center;
    background-repeat: no-repeat;
    height: 110vh;
    width: 100%;
    position: relative;
    z-index: -2;
}

/* Lamp Container */
.lamp-container {
    position: absolute; /* Fixed in place */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    z-index: 2;
}

/* Lamp Image */
.lamp-image {
    display: block;
    width: 120%;
    height: auto;
    position: relative;
    z-index: 3;
}


/* Brightened Glow Effect */
.lamp-container::before {
    content: '';
    position: absolute;
    top: 60%;
    left: 56%;
    transform: translate(-50%, -50%);
    width: 300px; /* Size of the glow */
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.7) 0%, /* Brighter center */
        rgba(255, 255, 150, 0.4) 40%, /* Softer edges */
        rgba(0, 0, 0, 0) 70%
    );
    border-radius: 50%;
    animation: pulse 2.5s infinite;
    z-index: 1; /* Place behind the lamp image */
}

/* Pulsating Animation */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8; /* Brighter pulse */
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3); /* Slightly larger pulse */
        opacity: 1; /* Maximum brightness */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
}
/* Info Section */
.info-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto; /* Center the section horizontally */
    padding: 50px 20px; /* Add padding to avoid text sticking to edges */
    font-family: 'Times New Roman', Times, serif;
    color: white;
    position: relative; /* Remains relative for internal flow */
    
    z-index: 1; /* Ensure it's above the background image */
   
}

/* Toggle Header */
.toggle-header {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

/* Toggle Content */
.toggle-content {
    display: none;
    font-size: 18px;
    color: rgb(117, 79, 9);
    line-height: 1.6;
    font-weight: bold;
}

/* Toggle Symbol */
.toggle-symbol {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Email Section */
.email h1 {
    color: white;
    
    font-size: 16px;
    justify-content: center;
    text-align: center;
}

  





















/* Footer Styling */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 20px;
    z-index: 10; /* Ensure footer is above other elements */
    position: relative; /* Make sure it stays above the glow effect */
   
}

.footer-left {
    flex: 1;
}

.footer-center {
    text-align: center;
    flex: 2;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-logo {
    width: 100px; /* Adjust the width of the logo */
    height: auto;
}

.footer-center p {
    margin: 5px 0;
    color: white; /* Ensure the text color is white */
}

.footer-center a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

/* Remove underline from social media icons */
.social-icon {
    color: white;
    margin-left: 15px;
    font-size: 24px;
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition for the glow effect */
    text-decoration: none; /* Ensure no underline */
}

/* Glow effect on the cursor when hovering over the social icons */
.footer-right {
    position: relative;
}

.footer-right .social-icon {
    z-index: 2;
}

.footer-right .social-icon:hover::after {
    content: "";
    position: absolute;
    bottom: -10px; /* The glow will appear beneath the footer */
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.7);
    z-index: -1; /* Ensure the glow is behind the footer */
}

/* Ensure that all text in the footer is white */
.footer-left,
.footer-center,
.footer-right,
.footer-center a,
.footer-center p {
    color: white !important; /* Force text to be white */
}
