/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #333 0%, #000 100%); /* Restored original background */
    color: #fff; /* White text */
    font-size: 16px;
    line-height: 1.6;
}

/* General Styles */
main {
    padding: 20px;
    background: url('path-to-your-image.jpg') no-repeat center center fixed; /* Add your image path here */
    background-size: cover;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    animation: fadeIn 1.5s ease-in-out;
}



/* Scrollbar Styles for Webkit Browsers */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar for horizontal scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2); /* Track color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4); /* Inner shadow for depth */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(249, 219, 61, 0.8) 0%, rgba(255, 0, 255, 0.5) 100%); /* Gradient handle color */
    border-radius: 10px; /* Rounded corners */
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease; /* Smooth transition */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Light border for contrast */
    box-shadow: 0 0 8px rgba(249, 219, 61, 0.8), 0 0 16px rgba(255, 0, 255, 0.5); /* Glowing effect */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.8) 0%, rgba(249, 219, 61, 0.7) 100%); /* Bright gradient on hover */
    transform: scale(1.1); /* Slightly enlarge on hover for emphasis */
    box-shadow: 0 0 12px rgba(255, 0, 255, 1), 0 0 24px rgba(249, 219, 61, 1); /* Enhanced glow on hover */
}

/* Scrollbar Styles for Firefox */
html {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: rgba(249, 219, 61, 0.8) rgba(255, 255, 255, 0.2); /* Handle color and track color */
}



/* General Navigation Bar Styles */
/* General Navigation Bar Styles */
/* General Navigation Bar Styles */
/* General Navigation Bar Styles */
header {
    background: linear-gradient(135deg, rgba(249, 219, 61, 0.75) 0%, rgba(252, 235, 108, 0.75) 100%); /* Slightly more transparent */
    padding: 10px 30px; /* Adjusted padding for better mobile appearance */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.6s ease, box-shadow 0.3s ease; /* Smooth transition */
    top: 0;
    z-index: 100;
}

/* Scrolled Header Styles */
.header-scrolled {
    background: linear-gradient(135deg, rgba(249, 219, 61, 0.6) 0%, rgba(252, 235, 108, 0.6) 100%); /* Slightly more transparent when scrolled */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Adjust shadow if needed */
}

.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    position: relative;
}

.navbar li {
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
}

/* Main Links */
.main-link {
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.main-link:hover {
    background-color: #333;
    color: #F9DB3D;
    transform: scale(1.08);
    border-color: #000;
}
/* Active Class */
.main-link.active, .dropdown-toggle.active {
    background-color: #333;
    color: #F9DB3D;
    border-color: #F9DB3D;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for active state */
    transform: scale(1.05);
}
/* Dropdown Button Styling */
.dropdown-toggle {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    margin-left: 5px;
    color: #000;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}
.dropdown-toggle i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover {
    color: #333;
}

.dropdown-toggle:hover i {
    transform: rotate(180deg); /* Rotate arrow on hover */
}

.dropdown-toggle:hover {
    color: #333;
    transform: rotate(180deg); /* Rotate arrow on hover */
}

/* Dropdown Menu Styling */
.nav-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #F9DB3D;
    list-style-type: none;
    padding: 15px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-dropdown .dropdown-menu li a {
    color: #333;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-dropdown .dropdown-menu li a:hover {
    background-color: #333;
    color: #F9DB3D;
}

/* Show dropdown with transition */
.nav-dropdown.show .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Logo Styles */
.logo-container {
    padding: 5px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.logo {
    max-height: 80px;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-container:hover .logo {
    filter: brightness(1.3);
    transform: rotate(2deg);
}

/* Menu button styling */
.menu-button {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Added padding for a better click area */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

/* Hide navbar by default on mobile */
.navbar {
    display: flex;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .navbar {
        display: none; /* Hidden initially on mobile */
        flex-direction: column;
        background-color: rgba(249, 219, 61, 0.95); /* Slightly transparent version of #F9DB3D */
        border-radius: 10px; /* Rounded corners for navbar */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
        padding: 15px; /* Padding for content */
        position: absolute; /* Position it absolutely for better control */
        top: 70px; /* Adjust position to be below the button */
        right: 20px; /* Align with the button */
        z-index: 1000; /* Ensure it's above other elements */
        transition: max-height 0.5s ease-in-out; /* Smooth transition */
        max-height: 0; /* Collapse by default */
        overflow: hidden; /* Hide overflow */
    }
    

    /* Display menu button on mobile */
    .menu-button {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
    }

    /* Show navbar when 'show' class is added */
    .navbar.show {
        display: flex; /* Show navbar */
        max-height: 500px; /* Limit max-height for animation */
    }
    
}

/* Hover effect for menu button */
.menu-button:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Lighten on hover */
    transform: scale(1.05); /* Slightly grow on hover */
}




/* Responsive Styles */
@media (max-width: 768px) {
    /* Header Adjustment for Mobile */
    header {
        padding: 10px 15px;
        flex-direction: column;
        gap: 10px;
    }

    /* Navbar Adjustment for Mobile */
    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .main-link {
        padding: 10px 15px;
        width: 100%;
        text-align: center;
    }

    /* Dropdown Adjustment for Mobile */
    .dropdown-toggle {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }

    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 10px 0;
        border-radius: 0;
    }

    /* Logo Adjustment for Mobile */
    .logo {
        max-height: 60px;
    }
}

/* Logo Styles */
.logo-container {
    padding: 5px; 
    border-radius: 5px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 15px; /* Add margin to create space between logo and clock */
}

.logo-container:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo {
    max-height: 100px;
    transition: filter 0.3s ease;
}

.logo-container:hover .logo {
    filter: brightness(1.2);
}

/* Clock Styles */
.clock-container {
    font-size: 0.9rem; /* Smaller font size */
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5); /* Slightly transparent background */
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-align: center;
}

.clock-container .date,
.clock-container .time {
    display: block;
    margin: 0;
}


@media (max-width: 768px) {
    .clock-container {
        font-size: 0.8rem;
        padding: 2px 6px;
        background-color: rgba(0, 0, 0, 0.7); /* Slightly darker for mobile */
    }
}


/* Responsive layout adjustment */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    }







/* Welcome Section Styles */
#welcome-section {
    padding: 80px 30px; /* More padding for better spacing */
    text-align: center;
    color: #fff; /* White text for contrast against background */
    background: linear-gradient(135deg, #333, #111); /* Sleek dark gradient background */
    animation: fadeIn 1.5s ease-in-out;
    border-radius: 15px; /* Rounded section for a modern look */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3); /* Add shadow for depth */
}

/* Welcome Section Heading Styles */
#welcome-section h1 {
    font-family: 'Playfair Display', serif; /* Stylish serif font */
    font-size: 3em; /* Larger for more emphasis */
    margin-bottom: 10px; /* Adjust margin for better spacing */
    color: #F9DB3D; /* Gold color for impact */
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6); /* Stronger shadow for readability */
    text-transform: uppercase; /* Uppercase for boldness */
    letter-spacing: 2px; /* Space between letters */
}

#welcome-section p, #welcome-section .p1{
    font-size: 1.3em;
    font-family: 'Roboto', sans-serif; /* Modern sans-serif for clarity */
    margin-top: 10px;
	line-height: 1.6; /* Increased line height for better text spacing */
}

/* Welcome Section Text Color Update */
#welcome-section h1,
#welcome-section p,
#welcome-section .p1 {
    color: #F9DB3D; /* Gold color */
}


#welcome-section .p1 {
    margin-top: -5px;
}
.btn-primary1 {
    display: flex; /* Use flexbox for layout */
    gap: 20px; /* Adjust the gap size as needed */
    justify-content: center; /* Center buttons if needed */
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    color: #000;
    background-color: #F9DB3D;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.3em;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e0c53f;
    transform: scale(1.05);
}


/* Reasons to Choose Styles */
#reasons-to-choose {
    padding: 60px 20px;
    border-top: 5px solid #F9DB3D;
    border-bottom: 5px solid #F9DB3D;
    animation: slideUp 1.5s ease-in-out;
}

#reasons-to-choose h2 {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    color: #F9DB3D;
    font-size: 2.5em;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card1 {
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
    animation: cardAppear 1s ease-in;
}

/* Enlarging the title */
.info-card1 h3 {
    color: #F9DB3D;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-size: 32px; /* Adjusted font size for h3 */
}

/* Enlarging the paragraph text */
.info-card1 p {
    color: #F9DB3D;
    font-family: 'Roboto', sans-serif;
    font-size: 18px; /* Adjusted font size for paragraph */
}

.info-card {
    background-color: #e0c53f;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
    animation: cardAppear 1s ease-in;
}
.info-card h3 {
    color: #1e1d1d;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.info-card p {
    color: #1e1d1d;
    font-family: 'Roboto', sans-serif;
}

/* Icon resizing */
.info-icon {
    width: 90px; /* Adjusted icon size */
    height: 90px;
    margin-bottom: 10px; /* Space between icon and title */
    transform: scale(1.05);
}
/* Icon resizing */
.info-icon {
    width: 130px; /* Adjusted icon size */
    height: 130px;
    margin-bottom: 10px; /* Space between icon and title */
    transform: scale(1.05);
    transition: transform 0.3s ease, filter 0.3s ease; /* Added transition for filter effect */
}

/* Hover effect */
.info-icon:hover {
    transform: scale(1.2); /* Slightly increase the size on hover */
    filter: brightness(1.2); /* Make the icon a bit brighter */
}

.info-card:hover {
    transform: scale(1.05);
    
}



/* Responsive Design */
@media (max-width: 1200px) {
    .info-cards {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
    
    #welcome-section {
        padding: 50px 20px; /* Reduce padding for mobile */
    }
    
    #welcome-section h1 {
        font-size: 2.5em; /* Decrease font size for mobile */
    }

    #welcome-section p, #welcome-section .p1 {
        font-size: 1.1em; /* Adjust text size for readability */
    }

    .btn-primary {
        font-size: 1.1em; /* Smaller button for mobile */
        padding: 10px 20px; /* Adjust padding */
    }

    .btn-primary1 {
        flex-direction: column; /* Stack buttons vertically */
        align-items: center; /* Center buttons */
        gap: 10px; /* Smaller gap between buttons */
    }

    #reasons-to-choose h2 {
        font-size: 2em; /* Adjust heading size */
    }
}

@media (max-width: 576px) {
    .info-cards {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }
    
    .info-card {
        padding: 15px; /* Smaller padding on mobile */
    }

    #welcome-section h1 {
        font-size: 2em; /* Further decrease font size */
    }

    .btn-primary {
        font-size: 1em; /* Smaller button */
        padding: 8px 16px; /* Adjust padding */
    }

    .btn-primary1 {
        gap: 5px; /* Further decrease gap for smaller screens */
    }


    #reasons-to-choose h2 {
        font-size: 1.8em; /* Adjust heading size */
    }
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes cardAppear {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Company Updates Section Styles */
#company-updates {
    padding: 60px 20px;
}

#company-updates h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #F9DB3D;
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
}

/* Applying the Same Styles to the Info Cards */

/* ABOUT US PAGE CSS */

/* About Section Styles */
/* About Us Section */
/* About Section */
#about {
    padding: 40px 20px;
    background: linear-gradient(135deg, #333 0%, #000 100%); /* Restored original background */
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1200px;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
}

/* Centered heading and upgraded font */
.about-heading {
    color: #F9DB3D;
    background: linear-gradient(135deg, #333 30%, #555 100%); /* Gradient for a modern look */
    padding: 15px 30px; /* Increased padding for prominence */
    border-radius: 12px; /* Slightly more rounded for a sleeker look */
    margin-bottom: 25px;
    display: inline-block;
    text-align: center;
    font-family: 'Playfair Display', sans-serif; /* Modern and stylish font */
    font-size: 40px; /* Larger font size for more impact */
    text-transform: uppercase; /* Uppercase for boldness */
    letter-spacing: 2px; /* More spacing for a clean look */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); /* Add shadow for better visibility */
    animation: fadeInUp 1s ease-in-out;
}

/* About Us Section */
.about-us {
    text-align: center; /* Ensure child elements align centrally */
    margin-bottom: 40px; /* Add some spacing below the heading */
}

.about-content {
    display: flex;
    flex-direction: row; /* Align children in a row */
    justify-content: space-between; /* Space out children */
    align-items: flex-start; /* Align children at the top */
    gap: 20px; /* Add some space between items */
}

/* Flex container for paragraph and tabs */
.about-main-container {
    display: flex;
    flex-direction: row; /* Align children in a row */
    gap: 20px; /* Space between items */
}

/* Paragraph and Tabs container styles */
.about-paragraph-container {
    flex: 1; /* Allow the paragraph container to grow */
}

.tabs-container {
    flex: 1; /* Allow the tabs container to grow */
    display: flex;
    flex-direction: column; /* Stack tabs and content vertically */
}

/* Upgraded Paragraph Design with Improved Alignment */
.about-paragraph {
    font-size: 18px; /* Slightly larger font size for better readability */
    line-height: 1.8; /* Increased line height for improved readability */
    color: #f5f5f5; /* Lighter color for better contrast */
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.9), rgba(51, 51, 51, 0.7)); /* Gradient background for depth */
    padding: 30px; /* Increased padding for a more spacious look */
    border-radius: 15px; /* More rounded corners for a softer appearance */
    margin: 20px auto; /* Centering with vertical margin for spacing */
    max-width: 800px; /* Slightly narrower max-width for better alignment on larger screens */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Enhanced shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
    animation: fadeInUp 1s ease-in-out; /* Apply fade-in-up animation */
    font-family: 'Poppins', sans-serif; /* Stylish and clean font */
    text-align: justify; /* Justify text for a cleaner look */
}

/* Hover Effect */
.about-paragraph:hover {
    transform: scale(1.03); /* Slightly enlarge on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7); /* Increase shadow on hover for emphasis */
}

/* Ensure margin auto for horizontal centering and additional spacing */
@media (max-width: 768px) {
    .about-paragraph {
        max-width: 100%; /* Full width on smaller screens for better use of space */
        margin: 20px; /* Adjust margins for mobile devices */
    }
}

/* Mission, Vision & Core Values */
.mission-vision {
    display: flex;
    justify-content: space-between; /* Distribute space evenly between items */
    align-items: stretch; /* Ensure all items have the same height */
    flex-wrap: wrap; /* Allow wrapping if necessary */
    gap: 10px; /* Space between items */
}

/* Tabs Container */
.tabs-container {
    margin-top: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Added transition for smooth effect */
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    transform: translateY(0); /* Move content to its original position */
    animation: fadeInUp 1s ease-in-out; /* Apply fade-in-up animation */
}

/* Tab Buttons */
.tab-button {
    background-color: #F9DB3D;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #333;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Transition for button hover effect */
}

.tab-button.active {
    background-color: #FFD700;
}

.tab-button:hover {
    background-color: #FFC107; /* Slightly different color for hover effect */
    transform: scale(1.05); /* Slight scale effect on hover */
}

/* Tab Content */
.tab-content {
    display: none;
    opacity: 0; /* Start with invisible content */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for fade-in and slide-up effect */
    transform: translateY(20px); /* Start with content slightly below */
}

/* Active Tab Content */
.tab-content.active {
    display: block;
    opacity: 1; /* Make content visible */
    transform: translateY(0); /* Move content to its original position */
    animation: fadeInUp 1s ease-in-out; /* Apply fade-in-up animation */
}

/* Keyframes for animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes backgroundAnimation {
    0% { background-color: #F9DB3D; }
    50% { background-color: #FFD700; }
    100% { background-color: #F9DB3D; }
}

/* Individual Mission, Vision, Core Values Cards */
/* Ensure all cards have the same margins */
/* Ensure all cards have the same margins */

/* Container to hold mission, vision, and core values */
.mission-vision-values-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    padding: 40px; /* Padding for the entire container */
    border-radius: 15px; /* Rounded corners for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for container depth */
}


/* Individual sections */
.mission, .vision, .core-values {
    background-color: #F9DB3D; /* Bright, contrasting background */
    color: #333; /* Dark text for readability */
    border-radius: 8px; /* Smooth corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    flex: 1; /* Allows items to expand evenly */
    margin: 0; /* No extra margin as gap handles spacing */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    animation: fadeInUp 1s ease-in-out;
    font-family: 'Poppins', sans-serif; /* Clean font */
    font-size: 16px;
    line-height: 1.6; /* Improved readability */
}


/* Reset margin and padding to prevent unintended spacing */
.mission, .vision, .core-values {
    margin: 20px; /* Uniform margin for spacing */
    padding: 20px; /* Consistent padding */
}

/* Ensure that no extra margin or padding is applied */
.mission * {
    margin: 0; /* Reset margins */
    padding: 0; /* Reset padding */
}

.vision * {
    margin: 0; /* Reset margins */
    padding: 0; /* Reset padding */
}

.core-values * {
    margin: 0; /* Reset margins */
    padding: 0; /* Reset padding */
}

/* Additional rules for hover effect */
.mission:hover, .vision:hover, .core-values:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}

/* Headers for Mission, Vision, Core Values */
.mission h3, .vision h3, .core-values h3 {
    color: #333;
    font-family: 'Poppins', sans-serif; 
    font-weight: 700; /* Heavier weight for more impact */
    font-size: 1.75rem; /* Slightly larger for emphasis */
    margin-bottom: 15px; /* More space below headings */
}

/* Lists within Mission and Core Values */
.mission ul, .core-values ul {
    list-style: disc;
    margin-left: 20px; /* Adjusted for better alignment */
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Hover effect */
.mission:hover, .vision:hover, .core-values:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
}




/* Mobile responsiveness */
@media (max-width: 768px) {
    .about-content, .about-main-container, .mission-vision {
        flex-direction: column;
        align-items: center;
    }

    .mission, .vision, .core-values {
        margin: 10px 0;
        width: 100%; /* Full width on mobile */
    }
}
/* Board of Directors Section */
/* Board of Directors Section */
.board-of-directors {
    padding: 40px 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 1600px;
    text-align: center; /* Center child elements */
    position: relative; /* Necessary for positioning the pseudo-element */
}


.board-of-directors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Adjust the thickness of the line */
    background-color: #F9DB3D; /* Yellow color */
    border-top-left-radius: 10px; /* Match border radius of the section */
    border-top-right-radius: 10px; /* Match border radius of the section */
}




/* Board Heading Styling */
.board-heading {
    color: #F9DB3D;
    background: linear-gradient(135deg, #333 30%, #555 100%); /* Gradient for a stylish background */
    padding: 15px 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: inline-block;
    text-align: center;
    font-family: 'Playfair Display', sans-serif; /* Modern and elegant font */
    font-size: 40px; /* Larger font size for more impact */
    text-transform: uppercase;
    letter-spacing: 2px; /* Wider letter spacing */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); /* Text shadow for visibility */
    animation: fadeInUp 1s ease-in-out;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards Container */
.feature-cards {
    display: flex;
    justify-content: space-between; /* Space items evenly with space around them */
    flex-wrap: wrap; /* Allow wrapping if needed */
    gap: 20px; /* Space between items */
}
/* Board Feature Card Description */
.board-feature-card .description {
    display: none; /* Hide description initially */
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-top: 15px;
}

/* Toggle Button */
.toggle-description {
    background: linear-gradient(135deg, #F9DB3D, #F7E06C); /* Gradient background */
    color: #333; /* Text color */
    border: none;
    padding: 12px 24px;
    margin-top: 15px;
    border-radius: 25px; /* Rounded edges */
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.toggle-description:hover {
    background: linear-gradient(135deg, #F7E06C, #F9DB3D); /* Reverse gradient on hover */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
}

.toggle-description:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2); /* Add custom focus ring */
}
/* Individual Board Feature Cards */
.board-feature-card {
    background-color: #F9DB3D; /* Updated background color */
    border-radius: 15px;
    padding: 30px;
    flex: 1; /* Grow to fill available space */
    min-width: 250px; /* Minimum width to ensure readability */
    margin: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.8s ease-in-out;
}

/* Hover Effect */
.board-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Feature Card Icon */
.feature-icon {
    width: 300px;
    height: 300px;
    margin-bottom: -25px;
    transition: border-color 0.3s ease;
}

.board-feature-card:hover .feature-icon {
    border-color: #F7E06C;
}

/* Text Styling */
.board-feature-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.board-feature-card p {
    color: #333;
    font-size: 1rem;
}

/* Description Paragraph */
.description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-top: 15px;
}



/* Text Styling within Feature Cards */
.board-feature-card h3,
.board-feature-card p,
.board-feature-card .description {
    font-family: 'Poppins', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-cards {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items horizontally */
    }

    .board-feature-card {
        width: 100%; /* Full width on small screens */
        max-width: 280px; /* Limit the width to avoid overly large cards */
    }
}
/* Partnership Section */
/* Partnership Section */
.partnerships {
    padding: 50px 20px;
    background: #1a1a1a; /* Dark background */
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1600px;
    position: relative; /* Necessary for positioning the pseudo-element */
    animation: fadeIn 1s ease-in-out;
    text-align: center;
}

.partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Adjust the thickness of the line */
    background-color: #F9DB3D; /* Yellow color */
    border-top-left-radius: 15px; /* Match border radius of the section */
    border-top-right-radius: 15px; /* Match border radius of the section */
}

.partnerships-header {
    margin-bottom: 25px; /* Space between header and cards */
}

.partnerships-header h2 {
    color: #F9DB3D;
    background: linear-gradient(135deg, #333 30%, #555 100%); /* Gradient for a modern touch */
    padding: 15px 30px;
    border-radius: 12px;
    display: inline-block;
    text-align: center;
    font-family: 'Playfair Display', sans-serif; /* Stylish font */
    font-size: 40px; /* Larger font size for emphasis */
    text-transform: uppercase; /* Bold uppercase text */
    letter-spacing: 2px; /* Wider letter spacing */
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7); /* Shadow for better readability */
    animation: fadeInUp 1s ease-in-out;
}

.partnerships-cards {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping of cards if there's not enough space */
    justify-content: center; /* Center the cards horizontally */
    gap: 10px; /* Space between cards */
}

/* Partnership Card */
.partnership-card {

    border-radius: 12px;
    padding: 30px;
    max-width: 300px; /* Adjusted max-width for better fit */
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInUp 0.8s ease-in-out;
}

/* Hover Effect for the Card */
.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}

/* Partner Logo */
.partner-logo {
    width: 150px; /* Adjusted size for better alignment */
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.partnership-card:hover .partner-logo {
    border-color: #F7E06C;
    transform: scale(1.05); /* Slight zoom effect */
}

/* Text Styling */
.partnership-card h3 {
    color: #F9DB3D;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.partnership-card p {
    color: #F9DB3D;
    font-size: 1rem;
    line-height: 1.6;
}

.short-description {
    display: block; /* Short description always visible */
}

.long-description {
    display: none; /* Hide long description initially */
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-top: 15px;
}

/* Button Styling */
.btn-toggle {
    background: linear-gradient(135deg, #F9DB3D, #F7E06C); /* Gradient background */
    color: #333; /* Text color */
    border: none;
    padding: 12px 24px;
    margin-top: 15px;
    border-radius: 25px; /* Rounded edges */
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-toggle:hover {
    background: linear-gradient(135deg, #F7E06C, #F9DB3D); /* Inverted gradient */
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Show/Hide Long Description on Button Click */
.partnership-card.active .long-description {
    display: block;
}

.partnership-card.active .short-description {
    display: none;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* About Section - mobile adjustments */
@media (max-width: 768px) {
    #about {
        padding: 20px 10px;
        max-width: 100%;
    }

    /* Heading adjustments */
    .about-heading {
        font-size: 28px;
        padding: 10px 20px;
        margin-bottom: 15px;
    }

    /* Stack content vertically */
    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Reduce the gap for smaller screens */
    }

    /* Paragraph adjustments */
    .about-paragraph {
        font-size: 16px;
        padding: 20px;
        max-width: 100%;
    }

    /* Mission, Vision & Core Values section - stack vertically on mobile */
    .mission-vision {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .mission, .vision, .core-values {
        width: 100%;
        margin: 10px 0; /* Adjust margins for better spacing */
    }

    /* Board of Directors adjustments */
    .board-of-directors {
        padding: 20px 10px;
    }

    /* Board feature cards - stack vertically */
    .feature-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .board-feature-card {
        width: 100%;
        margin: 10px 0;
    }

    /* Adjust text sizes */
    .board-feature-card h3 {
        font-size: 1.5rem;
    }

    .board-feature-card p {
        font-size: 0.9rem;
    }

    /* Toggle button adjustments */
    .toggle-description {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/*PROJECT PAGE CSS*/


/* Completed Projects Section Styles */
#completed-projects {
    padding: 40px 25px;
    background: linear-gradient(135deg, #F9DB3D, #F7E06C); /* Gradient from Yellow to Orange */
    margin: 40px 15px; /* Margin to avoid collision with the nav bar */
    border-radius: 10px; /* Rounded corners */
    text-align: center;
}

#completed-projects h1 {
    color: #333; /* Dark text for better contrast against the gradient */
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
	
}

/* Projects Container */
.projects-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.projects-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 500%; /* Ensure slider takes up the full width */
}

.projects-slide {
    display: flex;
    width: 100%; /* Each slide takes up the full container width */
    justify-content: space-between; /* Distribute cards evenly */
}

/* Adjusting card size */
.completed-project-card {
    background-color: #333; 
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    flex: 1 1 calc(20% - 20px);
    max-width: calc(20% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
    text-align: center;
    color: #fff; /* White text for better readability */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.completed-project-card p{
    color: #ddd;
    font-size: 0.95em;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Pagination Controls */
.pagination-controls {
    text-align: center;
    margin-top: 20px;
}

.prev-slide, .next-slide {
    background-color: rgba(255, 215, 0, 0.8); /* Semi-transparent gold */
    color: #333;
    border: none;
    padding: 12px 24px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.prev-slide:hover, .next-slide:hover {
    background-color: #e0c53f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* bahrain Section Styles */
#bahrain-projects {
    padding: 40px 20px;
    background: linear-gradient(135deg, #F9DB3D, #F7E06C); /* Gradient from Yellow to Orange */
    margin: 40px 15px; /* Margin to avoid collision with the nav bar */
    border-radius: 10px; /* Rounded corners */
    text-align: center;
}

#bahrain-projects h1 {
    color: #333; /* Dark text for better contrast against the gradient */
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
	
}

/* Projects Container */
.bahrain-projects-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

.bahrain-projects-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 400%; /* Ensure slider takes up the full width */
}

.bahrain-projects-slide {
    display: flex;
    width: 100%; /* Each slide takes up the full container width */
    justify-content: space-between; /* Distribute cards evenly */
}

/* Adjusting card size */
.bahrain-project-card {
    background-color: #333; 
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    flex: 1 1 calc(20% - 20px);
    max-width: calc(20% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
    text-align: center;
    color: #fff; /* White text for better readability */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bahrain-project-card p{
    color: #ddd;
    font-size: 0.95em;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.bahrain-project-card img {
    width: 100%; /* Ensure images take up the full width of their container */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners to match the card */
    object-fit: cover; /* Cover the area of the card without stretching */
	transition: transform 0.3s ease;
}

/* bahrain slide Controls */
.bahrain-project-navigation {
    text-align: center;
    margin-top: 20px;
}

.bahrain-project-prev,
.bahrain-project-next {
    background-color: rgba(255, 215, 0, 0.8); /* Semi-transparent gold */
    color: #333;
    border: none;
    padding: 12px 24px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bahrain-project-prev:hover, .bahrain-project-next:hover {
    background-color: #e0c53f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/*design for both bahrain and ph projcets*/
#completed-projects h1::after,
#bahrain-projects h1::after {
    content: '';
    width: 1450px;
    height: 4px;
    background-color: #333;
    margin: 10px auto 0;
    display: block;
    border-radius: 2px;
}
/* Design for both Bahrain and PH projects */
#completed-projects h1::after,
#bahrain-projects h1::after {
    content: '';
    width: 100%; /* Adjusts to container width */
    max-width: 1450px; /* Sets a maximum width for larger screens */
    height: 4px;
    background-color: #333;
    margin: 10px auto 0;
    display: block;
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    #completed-projects h1::after,
    #bahrain-projects h1::after {
        width: 80%; /* Smaller width on medium screens */
    }
}

@media (max-width: 768px) {
    #completed-projects h1::after,
    #bahrain-projects h1::after {
        width: 60%; /* Smaller width on mobile devices */
    }
}

@media (max-width: 576px) {
    #completed-projects h1::after,
    #bahrain-projects h1::after {
        width: 50%; /* Smaller width for very small screens */
    }
}
.completed-project-card h3,
.bahrain-project-card h3 {
    margin: 15px 0 10px;
    font-size: 1.5em;
    color: #F9DB3D; /* Highlighted title */
    transition: color 0.3s ease;
}

.completed-project-card:hover,
.bahrain-project-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.completed-project-card:hover img,
.bahrain-project-card:hover img {
    transform: scale(1.1);
}

.completed-project-card:hover h3,
.bahrain-project-card:hover h3 {
    color: #FFD700; /* Slight color change on hover */
}

.completed-project-card:hover p,
.bahrain-project-card:hover p {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .completed-project-card,
    .bahrain-project-card {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
    }
}

@media (max-width: 992px) {
    .completed-project-card,
    .bahrain-project-card {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .completed-project-card,
    .bahrain-project-card {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .projects-slider,
    .bahrain-projects-slider {
        flex-direction: column;
    }

    .completed-project-card,
    .bahrain-project-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 10px 0;
    }

    .prev-slide,
    .next-slide,
    .bahrain-project-prev,
    .bahrain-project-next {
        padding: 10px 20px;
        margin: 10px 5px;
        width: 45%;
    }
}

main {
    padding: 20px;
}

/* Keyframes Animations */

/* Fade In Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slide In Animation from Left */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide In Animation from Right */
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Zoom In Animation */
@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Slide Up Animation */
@keyframes slideUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation for Completed Projects Section */
#completed-projects h1 {
    animation: fadeIn 1s ease-in-out;
}

/* Animation for Bahrain Projects Section */
#bahrain-projects h1 {
    animation: fadeIn 1s ease-in-out;
}

/* Animating the slider to slide in from the right */
.projects-slider {
    animation: slideInRight 1.5s ease-in-out;
}

.bahrain-projects-slider {
    animation: slideInRight 1.5s ease-in-out;
}

/* Zoom In for Completed Project Cards */
.completed-project-card {
    animation: zoomIn 1s ease-in-out;
}

.bahrain-project-card {
    animation: zoomIn 1s ease-in-out;
}

/* Hover Zoom Effect on Project Cards */
.completed-project-card:hover,
.bahrain-project-card:hover {
    animation: zoomIn 0.5s ease-in-out;
    transform: scale(1.05);
}

/* Slide Up for the Paragraph Text inside Cards */
.completed-project-card p,
.bahrain-project-card p {
    animation: slideUp 1.2s ease-in-out;
}

/* Pagination Controls Hover Animation */
.prev-slide, .next-slide,
.bahrain-project-prev, .bahrain-project-next {
    animation: fadeIn 1s ease-in-out;
}

.prev-slide:hover, .next-slide:hover,
.bahrain-project-prev:hover, .bahrain-project-next:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Animation for the lines under the h1 */
#completed-projects h1::after,
#bahrain-projects h1::after {
    animation: slideUp 1.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .completed-project-card,
    .bahrain-project-card {
        animation: zoomIn 0.8s ease-in-out;
    }
}

@media (max-width: 992px) {
    .completed-project-card,
    .bahrain-project-card {
        animation: zoomIn 0.8s ease-in-out;
    }
}

@media (max-width: 768px) {
    .completed-project-card,
    .bahrain-project-card {
        animation: zoomIn 0.8s ease-in-out;
    }
}

@media (max-width: 576px) {
    .projects-slider,
    .bahrain-projects-slider {
        animation: slideInRight 1.2s ease-in-out;
    }

    .completed-project-card,
    .bahrain-project-card {
        animation: zoomIn 0.8s ease-in-out;
    }

    .prev-slide,
    .next-slide,
    .bahrain-project-prev,
    .bahrain-project-next {
        animation: fadeIn 1s ease-in-out;
    }
}

main {
    animation: fadeIn 1.5s ease-in-out;
}








/* Contact Page CSS */
/* Form Section Styles */
.newsletter-form {
    padding: 40px 10px;
    background: linear-gradient(135deg, #F9DB3D, #F7E06C); /* Gradient background */
    margin: 30px 10px; /* Margin to avoid collision with the nav bar */
    border-radius: 10px; /* Rounded corners */
    text-align: center;
}

#newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form h1 {
    font-size: 2.5em;
    color: #333; /* Black text */
    margin-bottom: 15px;
	border-bottom: 4px solid #333; /* Grey underline */
    display: inline-block;
    padding-bottom: 5px;
}

.newsletter-form p {
    font-size: 1.2em;
    color: #333; /* Dark grey text */
}

#newsletter-form input, #newsletter-form textarea {
    width: calc(100% - 22px); /* Adjust width to fit padding */
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background-color: #fff; /* White background for inputs */
    color: #000; /* Black text */
}

#newsletter-form button {
    background-color: rgba(255, 215, 0, 0.8); /* Semi-transparent gold */
    color: #333;
    border: none;
    padding: 12px 24px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 1em;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#newsletter-form button:hover {
    background-color: #e0c53f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
	
}

/* Additional Sections Styles */
.info-segment {
    padding: 5px;
    text-align: center;
    margin-bottom: 10px; /* Spacing between sections */

}

.info-segment h1 {
    font-size: 2.5em;
    color: #333; /* Dark grey text */
    margin-bottom: 15px;
}

.info-segment p {
    font-size: 1.2em;
    color: #555; /* Medium grey text */
}


/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section Styles */
    /* Contact Section Styles */
    #contact {
        padding: 20px 10px;
        text-align: center;
    }

    .contact-info {
        padding: 40px 20px;
        background: linear-gradient(135deg, #F9DB3D, #F7E06C);
        border-radius: 10px;
        margin: 10px;
    }

    .info-segment {
        text-align: center;
    }

    .contact-details-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 1200px;
    }

    .contact-image {
        flex: 1;
        max-width: 500px;
        margin: 0;
        order: 1;
    }

    .contact-image img {
        width: 100%;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .contact-info h1 {
        font-size: 2.5em;
        color: #333;
        margin-bottom: 15px;
        border-bottom: 4px solid #333;
        display: inline-block;
        padding-bottom: 5px;
    }

    .contact-info p {
        font-size: 1.2em;
        color: #000;
        margin: 10px 0;
    }

    .contact-details {
        flex: 2;
        max-width: 600px;
        order: 2;
        text-align: left;
    }

    .contact-details i {
        margin-right: 8px;
        color: #333;
    }

    .contact-details a {
        font-weight: bold;
        color: #333;
        text-decoration: none;
        font-size: 15px;
    }

    .contact-details .fa-envelope {
        color: #c71610;
    }

    .contact-details .fa-whatsapp {
        color: #25D366;
    }

    .contact-details .fa-viber {
        color: #7360F2;
    }

    .contact-details p {
        font-size: 1em;
        font-weight: bold;
        color: #333;
        margin: 10px 0;
        display: flex;
        align-items: center;
    }

    .contact-details h2 {
        font-size: 2em;
        color: #F9DB3D;
        margin-bottom: 20px;
    }

    /* Social Media Section */
    .social-media {
        display: flex;
        gap: 10px;
        margin-top: 20px;
        justify-content: flex-start;
    }

    .social-media a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-weight: bold;
    }

    .social-icon {
        width: 25px;
        height: 25px;
        margin-right: 8px;
        transition: transform 0.3s;
    }

    .address-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-top: 20px;
    }

    .address-container a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
    }

    .address-text {
        color: #333;
        font-weight: bold;
        font-size: 14px;
    }

    .pin-icon {
        display: block;
        width: 35px;
        height: 35px;
        margin-right: 10px;
        transition: transform 0.3s;
    }

    .social-icon:hover {
        transform: scale(1.2);
    }

    .contact-details p:last-child {
        margin-top: 20px;
        font-weight: bold;
        color: #333;
    }

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-details-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-image, .contact-details {
        max-width: 100%;
        text-align: center;
        order: initial;
    }

    .contact-info h1 {
        font-size: 2em;
    }

    .contact-info p, .contact-details p {
        font-size: 1em;
    }

    .contact-details h2 {
        font-size: 1.5em;
    }

    .social-media {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: 20px;
    }

    .contact-info h1 {
        font-size: 1.8em;
    }

    .contact-info p, .contact-details p {
        font-size: 0.9em;
    }

    /* Social media alignment update for mobile */
    .social-media {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
    }

    .social-media a {
        font-size: 0.9em;
    }

    .social-icon {
        width: 20px;
        height: 20px;
    }

    .pin-icon {
        width: 25px;
        height: 25px;
    }
}

/* Fade-in up animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover effect */
@keyframes buttonHover {
    from {
        background-color: rgba(255, 215, 0, 0.8);
        transform: scale(1);
    }
    to {
        background-color: #e0c53f;
        transform: scale(1.05);
    }
}

/* Contact image hover effect */
@keyframes imageHover {
    from {
        transform: scale(1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    to {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }
}

/* Apply animations */
.newsletter-form, .info-segment, .thank-you-message, .contact-info, .social-media {
    animation: fadeIn 1s ease-out;
}

.newsletter-form h1, .info-segment h1, .contact-info h1, .contact-details h2 {
    animation: fadeInUp 1s ease-out;
}

.newsletter-form p, .info-segment p, .contact-info p, .contact-details p {
    animation: fadeInUp 1.2s ease-out;
}

#newsletter-form button {
    animation: buttonHover 0.3s ease forwards;
}

.contact-image img {
    animation: imageHover 0.3s ease forwards;
}





/* Footer Styles */
footer {
    background: linear-gradient(135deg, #333, #555);
    color: #fff;
    padding: 20px 5%;
    border-top: 5px solid #F9DB3D;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative; /* Set footer as a relative positioning reference */
}


.footer-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

/* Footer Logo Styling */
.footer-logo {
    flex: 1; /* Takes up available space */
    max-width: 220px;
    animation: logoSlideIn 1s ease-in-out;
}

.footer-logo img {
    max-width: 100%;
    transition: transform 0.3s ease, filter 0.3s ease; /* Added filter transition */
}

.footer-logo img:hover {
    transform: scale(1.1);
    filter: brightness(1.2); /* Lightens the logo on hover */
	transform: rotate(2deg);
	filter: brightness(1.3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


/* Footer Links Styling */
.footer-links {
    flex: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 25px;
    font-size: 1em;
    animation: linksFadeIn 1.2s ease-in-out;
    margin-left: 70px; /* Add margin to move links to the right */
}


.footer-links a {
    color: #F9DB3D;
    text-decoration: none;
    margin: 0px 6px;
    font-size: 1.2em;
    font-family: 'Poppins', sans-serif; /* Stylish font */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateY(-3px);
    text-decoration: underline;
}

/* Social Media Icons (Aligned Right) */
.footer-social {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
    animation: iconsFadeIn 1.4s ease-in-out;
}

.footer-social a {
    margin: 0 10px; /* Space between icons */
    font-size: 1.5em; /* Adjust icon size */
    color: #F9DB3D; /* Default yellow color */
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: #fff;
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Added shadow effect */
}




/* Centered 'All Rights Reserved' */
.footer-rights {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
    animation: textFadeIn 1.6s ease-in-out;
    width: 100%;
}

.footer-links a {
    font-size: 1em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f9db3d; /* Link hover color */
}

/* Social Media Icons (Aligned to the Right) */
.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    animation: iconsFadeIn 1.4s ease-in-out;
    align-items: center;
    width: 15%; /* Align to the right */
}

.footer-social img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.footer-social img:hover {
    transform: scale(1.1);
}

/* Copyright Text Styling */
footer p {
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    opacity: 0.8;
    animation: textFadeIn 1.6s ease-in-out;
}


#pst-time {
    font-size: 0.9em;
    color: #F9DB3D;
    background: rgba(50, 50, 50, 0.8); /* Darker background */
    padding: 6px 12px;
    border-radius: 5px;
    position: absolute;
    right: 15px;
    bottom: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3); /* Softer shadow */
    font-family: 'Roboto', sans-serif;
    transition: transform 0.3s ease-in-out;
}

/* Hover effect */
#pst-time:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Adjustments for tablets and smaller screens */
@media (max-width: 768px) {
    #pst-time {
        font-size: 0.85em;
        padding: 5px 10px;
        right: 10px;
        bottom: 8px;
    }
}

@media (max-width: 480px) {
    #pst-time {
        font-size: 0.75em;
        padding: 4px 8px;
        right: 8px;
        bottom: 8px;
        background: rgba(50, 50, 50, 0.6); /* Slightly lighter on very small screens */
    }
}


/* Responsiveness */
@media (max-width: 1200px) {
    footer {
        padding: 20px 3%;
    }
    .footer-logo {
        max-width: 120px;
        width: 20%;
    }
    .footer-links a {
        font-size: 0.9em;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center items */
    }

    .footer-logo {
        max-width: 250px; /* Increased from 200px to 250px */
        width: 50%; /* Increased from 40% to 50% */
        margin-bottom: 15px; /* Space between logo and links */
    }



    
    .footer-links {
        margin-left: -5%; /* Reset margin */
        justify-content: center; /* Center links */
        flex-wrap: wrap; /* Wrap links if necessary */
    }

    .footer-social {
        width: 100%; /* Full width on mobile */
        justify-content: center; /* Center social icons */
    }

    footer p {
        font-size: 0.9em; /* Smaller text for mobile */
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 200px; /* Increased from 150px to 200px */
        width: 60%; /* Increased from 50% to 60% */
    }

    .footer-links a {
        font-size: 0.8em;
    }
    .footer-social img {
        width: 25px;
        height: 25px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes logoSlideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes linksFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes iconsFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}