/* Fixed Header Styling */
.header {
    background-color: #8B0000; /* Reverted to previous color */
    height: 120px; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    position: fixed; /* Makes the header fixed */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays above other elements */
}

.header .title-font {
    color: white; /* Changes font color to white */
}


/* Push content down to avoid overlap */
body {
    padding-top: 120px; /* Equal to the header height */
}

/* Logo Styling (Perfect Round Shape) */
.logo {
    width: 70px;  /* Adjust size */
    height: 70px; /* Make it a perfect circle */
    border-radius: 50%; /* Makes the logo fully round */
    overflow: hidden; /* Ensures no square edges */
    object-fit: cover; /* Ensures the image fits properly */
}


/* Navbar Styling */
.navbar {
    margin-left: auto; /* Push navigation to the right */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px; /* Increased space between menu items */
}

.nav-links a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: bold;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

/* Home Section */
#home {
    position: relative;
    height: 100vh;
    background: url('images/home.jpg') center center/cover no-repeat;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: flex;
    z-index: 0;
}

.hero {
    background-size: cover;
    background-position: center;
    color: #f6f5f4; 
    background-color: transparent;
    position: relative;
    z-index: 3;
}

.home1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-gray-600 .home1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Premium Rounded Footer */
footer {
    background-color: #8B0000; /* Deep red for a luxurious feel */
    color: #fff;
    padding: 20px 0; /* Balanced padding */
    text-align: center;
    font-weight: bold;
    position: relative;
    box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    margin-top: 30px; /* Creates spacing from the content */
}

/* Footer Content */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Sections */
.footer-section {
    flex: 1;
    min-width: 200px;
    font-size: 1rem; /* Standard text size */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.fa {
    padding: 12px;
    font-size: 22px;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.fa:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

/* Social Media Colors */
.fa-facebook {
    background: #3b5998;
    color: white;
}

.fa-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.fa-twitter {
    background: #55acee;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 15px;
    font-size: 0.9rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subtle Hover Effects */
.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section a:hover {
    color: #FFD700; /* Gold hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}




/* Dropdown Button */
.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Dropdown Button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
    background-color: #2980B9;
    transform: scale(1.05);
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-in-out;
}

/* Dropdown Links */
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

/* Change background and add animation on hover */
.dropdown-content a:hover {
    background-color: #f0f0f0;
    padding-left: 20px;
}

/* Show the dropdown with smooth animation */
.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #1f6698;
}


/* About Us Section Styling */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.about-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Text Content - Left Side */
.about-section .text {
    flex: 1;
    max-width: 45%;
    padding-right: 30px;
}

.about-section .text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.about-section .text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Image Section - Right Side (Two Images) */
.about-section .image {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

/* Each Image */
.about-section .image img {
    width: 48%; /* Two images side by side */
    max-width: 300px; /* Adjust as needed */
    height: 200px; /* Keep uniform size */
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-section .container {
        flex-direction: column;
        text-align: center;
    }

    .about-section .text {
        max-width: 100%;
        padding-right: 0;
    }

    .about-section .image {
        max-width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .about-section .image img {
        width: 90%;
        height: auto;
    }
}


