
/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: Arial, sans-serif;
}

/*TOP NAIGATION*/
.top-navbar {
    background-color: #0274be; /* Dark background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding around content */
    display: flex; /* Flex container */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Center vertically */
}

.top-navbar .left-section {
    flex-grow: 1; /* Grow to fill space */
    text-align: left; /* Align text to the left */
}

.top-navbar .right-section {
    text-align: right; /* Align text to the right */
}

.top-navbar .date, .top-navbar .location {
    color: white; /* White text color */
}




/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f58520; 
    padding: 10px 20px;
    position: relative;
}

.logo a {
    color: #FFFFFF; /* White */
    text-decoration: none;
    font-size: 1.5em;
}

.logo img {
    max-width: 100%;
    height: 50px;
}

.nav-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links ul li {
    position: relative;
}

.nav-links ul li a {
    color: #FFFFFF; /* White */
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: background-color 0.3s, color 0.3s;
    text-align: center; /* Center text alignment */
}

.nav-links ul li a:hover {
    background-color: #FFA74D; /* Lighter shade of the navbar color */
    color: #333333; /* Dark Gray */
}

.nav-links ul li a i {
    margin-left: 5px;
}

.menu-toggle {
    display: none; /* Hide the toggle button by default */
    color: #FFFFFF; /* White */
    font-size: 20px;
    cursor: pointer;
}

/* Dropdown content styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FFA74D; /* Lighter shade of the navbar color */
    min-width: 200px;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.dropdown-content a {
    color: #333333; /* Dark Gray */
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #FFB888; /* Even lighter shade for hover */
    color: #333333; /* Dark Gray */
}

.dropdown .show {
    display: block !important; /* Ensure dropdowns are displayed properly */
}

/*Landing page*/

/*Landing page*/



.header {
    background-image: url('wall\ of\ fame.jpg'); /* Replace with the URL of your background image */
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 180px;

}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #f58520;
}




/*Pattner and logo*/

h1 {
    margin: 0;
    color: green;
    text-align: center;
    margin-bottom: 10px;
}

section {
    padding: 2em;
    margin: 2em 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.logo-grid img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    transition: transform 0.3s;
}

.logo-grid img:hover {
    transform: scale(1.1);
}

h2 {
    text-align: center;
    margin-bottom: 1em;
    color: #f58520;
    margin-top: 1em;
}

h1{
    text-align: center;
    margin-bottom: 1em;
    color: #f58520 ;
    margin-top: 1em;
}

h4{
    text-align: center;
    margin-bottom: 15px;
    color: blue;
    margin-bottom: 1em;
    margin-top: 1em;
    font-size: 25px;
}


/*Floating Email button*/

.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.floating-button:hover {
    background-color: #0056b3;
}

.floating-button i {
    font-size: 24px;
    margin-right: 10px;
}

.button-label {
    font-size: 16px;
    margin-left: 10px;
}





/*FOOTER*/

footer {
    background: linear-gradient(135deg, #f58520, #ff9f45); /* Gradient from orange to a lighter orange */
    color: #fff;
    padding: 10px 15px;
    font-family: 'Arial', sans-serif;
    border-top: 5px solid wheat; /* Blue border */
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Footer Sections */
.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

/* Footer headings */
.footer-left h3, .footer-center h3, .footer-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    border-bottom: 2px solid wheat; /* Blue border */
    padding-bottom: 10px;
}

.footer-left p, .footer-center ul, .footer-right .social-icons a {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
}

.quick-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #007bff; /* Blue color */
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 30px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 30px; /* Increased font size */
}

.social-icons a:hover {
    color: #00bfae; /* Teal-green color */
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    border-top: 1px solid wheat; /* Blue border */
}


  @media (max-width: 768px) {

   
    /* Adjusting styles for smaller screens */
    .top-navbar {
     flex-direction: column; /* Stack items vertically */
     padding: 10px 0; /* Reduce vertical padding */
     }
 
   .top-navbar .left-section,
   .top-navbar .right-section {
   text-align: center; /* Center-align text */
   margin-bottom: 10px; /* Space between sections */
    }
 
    /*Main navbar*/
 
     .navbar {
         padding: 10px; /* Adjust padding for smaller screens */
     }
 
     .menu-toggle {
         display: block; /* Show the toggle button on mobile */
     }
 
     .nav-links {
         display: none;
         flex-direction: column;
         width: 100%;
         background-color: #f58520; /* Navbar color */
         position: absolute;
         top: 60px;
         left: 0;
         padding: 0;
         transition: max-height 0.3s;
         max-height: 0;
         overflow: hidden;
         align-items: center; /* Center align items */
         
         
     }
 
     .nav-links ul {
         flex-direction: column;
         width: 100%; /* Full width for better centering */
         align-items: center; /* Center align items */
     }
 
     .nav-links ul li {
         border-bottom: 1px solid #FFA74D; /* Lighter shade */
         width: 100%; /* Full width for better centering */
     }
 
     .nav-links ul li:last-child {
         border-bottom: none; /* Remove border from last item */
     }
 
     .nav-links ul li a {
         padding: 15px 20px;
         width: 100%; /* Full width for better centering */
     }
 
     .nav-links ul li .dropdown-content {
         position: static;
         box-shadow: none;
         display: none;
         padding-left: 0;
     }
 
     .nav-links ul li .dropdown-content a {
         padding: 10px 15px;
         text-align: center; /* Center text alignment for dropdown items */
     }
 
     .nav-links ul li .dropdown:hover .dropdown-content {
         display: block;
     }
 
     .nav-links.show {
         display: flex !important; /* Important to override display: none */
         max-height: 500px; /* Arbitrary large value to allow full expansion */
     }
 
     .dropdown-content{
         background-color: #333333; /*gives backgroud color to dropdown content on mobile view*/
     }
 
     .dropdown .show {
         display: block !important; /* Ensure dropdowns are displayed properly */
         position: relative; /* Ensure dropdowns are positioned correctly */
     }

     /*Main body*/
     .logo-grid img {
        width: 100px;
        height: 100px;
    }


    /*Footer*/

  footer {
    text-align: center; /* Center align content on mobile */
    padding: 30px 20px; /* Add more padding for better spacing */
}

  .footer-content {
    flex-direction: column;
    align-items: center; /* Center align items on mobile */
}

.footer-section {
    flex: 1 1 100%; /* Full width for sections on mobile */
    margin-bottom: 15px;

    text-align: center; /* Center text on mobile */
    padding: 0 10px; /* Adjust padding */
}

.footer-section h3 {
    font-size: 1rem; /* Adjust heading font size for mobile */
}

.footer-section p {
    font-size: 0.85rem; /* Adjust paragraph font size for mobile */
}

.quick-links a {
    font-size: 0.85rem; /* Adjust font size for links on mobile */

    margin: 0 10px; /* Adjust margin between icons */
}

.social-icons {
    margin-top: 10px; /* Reduce margin for social icons on mobile */

    margin-top: 30px; /* Add margin top */
}


/*Floating Email Button*/

.floating-button {
    padding: 10px 15px;
    bottom: 20px;
    right: 15px;
}

.floating-button i {
    font-size: 20px;
    margin-right: 8px;

}

.button-label {
    font-size: 14px;
}




/*Footer*/
.footer-content {
    flex-direction: column;
    text-align: center;
}

.footer-left, .footer-center, .footer-right {
    margin: 10px 0;
}


.footer-bottom {
    font-size: 16px;
}
}