@import url("https://fonts.googleapis.com/css?family=Montserrat");

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

/* Hero section with background image */
.hero {
    height: 100vh;
    width: 100%;
    background-color: #201c29;
    background-image: url('./assets/front-pic.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Align content to the top */
    align-items: flex-start;
    /* Align content to the left */
    padding-top: 5vh;
    /* Adjust to occupy 40% of the photo */
}

/* Logo placement (Row 1, Column 0) */
.hero-logo {
    align-self: flex-start;
    margin-top: -20px;
    margin-left: 2%;
}

.hero-logo img {
    height: 150px;
    width: 150px;
    max-width: 150px;
}

/* Call Us button placement (Row 2, Column 10) */
.hero-call-button {
    align-self: flex-end;
    position: absolute;
    right: 20px;
    top: 20px;
    /* Align to the right */
    margin-right: 34%;
    margin-top: 4%;
    /* Space between rows */
}

.hero-call-button .call-button {
    background-color: #184fc5;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-call-button .call-button:hover {
    background-color: #184fc5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-call-button.inner-page {
    margin-right: 5%;
}

/* Nav links placement (Row 3, Columns 3 to 7) */
.hero-nav-links {
    margin-top: 1%;
    margin-left: 13%;
    /* Space between rows */
}

.hero-nav-links .bar {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-nav-links .bar li {
    margin: 0 15px;
    /* Reduced spacing */
}

.hero-nav-links .bar li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 900;
    white-space: nowrap;
    /* Prevent text wrapping */
    transition: color 0.3s ease;
}

.hero-nav-links .bar li a:hover {
    color: #184fc5;
}

/* New Section for Welcome Text, Heading, Quote, and Button */
.hero-content {
    margin-left: 8%;
    /* 22% margin from the left */
    margin-top: 4%;
    /* Adjust vertical positioning */
    max-width: 60%;
    /* Limit width to 50%-80% of the image */
}

.welcome-text {
    background-color: #184fc5;
    /* Blue background */
    color: white;
    /* White text */
    padding: 10px 20px;
    border-radius: 25px;
    /* Semi-circle border radius */
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.2%;
    /* Space below */
}

/* Blinking Animation */
@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
        /* Fully visible */
    }

    25%,
    75% {
        opacity: 0;
        /* Fully invisible */
    }
}

.hero-content h1 {
    color: white;
    /* White text */
    font-size: 3rem;
    /* Large font size */
    font-weight: 1000;
    text-transform: uppercase;
    margin-bottom: 0.1%;
    /* Space below */
    animation: blink 3.5s infinite;
    /* Apply blinking animation */
}

.hero-content p {
    color: white;
    /* White text */
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 2%;
    /* Space below */
}

.hero-content .explore-button {
    background-color: #184fc5;
    /* Blue background */
    color: white;
    /* White text */
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-content .explore-button:hover {
    background-color: #184fc5;
    /* Darker blue on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.call-button i {
    margin-left: 5px;
}

/* hidden rules*/

/* Modified header for non-Home sections */
.header-modified {
    background-color: black;
    height: 40vh;
    /* 50% of viewport height */
    background-image: none;
}

/* Hide hero content (h1, p, button) for non-Home sections */
.header-modified .hero-content {
    display: none;
}

/* Hidden sections */
.hidden {
    display: none !important;
    /* Ensure hidden sections do not occupy space */
}

.header-modified .hero-logo,
.header-modified .hero-nav-links,
.header-modified .hero-call-button {
    display: block;
}


/* Search button styles for hero section 
.hero-search-button {
    position: absolute;
    right: 150px;
    /* Position to the left of call button 
    top: 20px;
    margin-right: 36%;
    margin-top: 3%;
}

.hero-search-button .search-button {
    background-color: #184fc5;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hero-search-button .search-button:hover {
    background-color: #184fc5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
*/


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px; /* Increased height to accommodate the logo */
     /* Allow the navbar to grow if needed */
    position: fixed;
    top: -100px;
    left: 0;
    padding: 0 20px;
    box-sizing: border-box;
    background: rgba(24, 79, 197, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: top 0.5s ease;
}

.navbar.visible {
    top: 0;
}

.navbar.visible~.main_box .btn_one {
    display: none;
}

/* Retain the original logo size */
.navbar .logo img {
    height: 150px; /* Original size */
    width: 150px; /* Original size */
    object-fit: contain;
}

/* Call Us button placement in navbar */
.navbar .call-button {
    background-color: #184fc5;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 20px; /* Add spacing between nav links and button */
}

.navbar .call-button:hover {
    background-color: #184fc5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Nav links placement in navbar */
.navbar .bar {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.navbar.visible .bar {
    opacity: 1;
    transform: translateY(0);
}

.navbar .bar li {
    position: relative;
    list-style: none;
    border-radius: 1em;
    margin: 0 5px;
}

.navbar .bar li::before,
.navbar .bar li::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    content: "";
    width: 0%;
    height: 2px;
    background-color: #184fc5;
    transition: all 0.5s cubic-bezier(0.4, -1, 0.2, -1);
}

.navbar .bar li:before {
    top: 0;
    border-top-right-radius: 0.5em;
    border-top-left-radius: 0.5em;
}

.navbar .bar li::after {
    bottom: 0;
    border-bottom-right-radius: 0.5em;
    border-bottom-left-radius: 0.5em;
}

.navbar .bar li:hover::before,
.navbar .bar li:hover::after {
    width: 25%;
    height: 3px;
}

.navbar .bar li a {
    text-decoration: none;
    text-transform: uppercase;
    display: block;
    padding: 0.5em 1em;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.navbar .bar li.active {
    border-color: #184fc5;
}

.navbar .bar li.active::before,
.navbar .bar li.active::after {
    width: 100%;
    height: 50%;
}

.navbar-sidebar-toggle {
    display: none; 
    margin-left: auto; 
    margin-right: 15px;
}

.navbar-sidebar-toggle label {
    cursor: pointer;
}

.navbar-sidebar-toggle i {
    color: white;
    font-size: 24px;
}
/* Responsive adjustments for smaller screens */
@media only screen and (max-width: 768px) {
    .navbar {
        flex-wrap: wrap; /* Allow the navbar to wrap on smaller screens */
        padding: 10px 20px; /* Adjust padding for smaller screens */
        min-height: auto; /* Allow the navbar to adjust its height */
    }

    /* Retain the original logo size */
    .navbar .logo img {
        height: 150px; /* Original size */
        width: 150px; /* Original size */
    }

    /* Stack nav links vertically on smaller screens */
    .navbar .bar {
        flex-direction: column;
        width: 100%;
        margin-top: 10px; /* Add spacing between logo and nav links */
    }

    /* Adjust the Call Us button for smaller screens */
    .navbar .call-button {
        margin-left: 0; /* Remove left margin */
        margin-top: 10px; /* Add spacing between nav links and button */
    }
}

/* Search button styles for navbar 
    .navbar .search-button {
    background-color: #184fc5;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    border: none;
}

.navbar .search-button:hover {
    background-color: #184fc5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
    */
@media only screen and (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-content {
        max-width: 80%;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        word-break: break-word;
        white-space: normal;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content .explore-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .hero-logo img,
    .navbar .logo img {
        height: 100px;
        width: 100px;
    }

}

@media only screen and (max-width: 480px) {

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-content .explore-button {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Mobile adjustments */
    .hero-logo img,
    .navbar .logo img {
        height: 100px;
        width: 100px;
    }


}


/* Sidebar Styles */
.main_box {
    position: relative;
    display: none;
    /* Hide by default */
}

.btn_one i {
    position: fixed;
    /* Change from absolute to fixed */
    right: 20px;
    top: 20px;
    color: white;
    /* Make it white to be visible on both dark and light backgrounds */
    font-size: 30px;
    cursor: pointer;
    z-index: 2000;
    /* Increase z-index to ensure it's above other elements */
}




.sidebar_menu {
    position: fixed;
    height: 100vh;
    width: 280px;
    right: -280px;
    /* Change from left: -280px to right: -280px */
    left: auto;
    /* Reset any left value */
    background: rgba(24, 79, 197, 0.95);
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: all 0.3s linear;
    z-index: 1000;
}

/* Scroll Icon */
.scroll-icon {
    text-align: center;
    padding: 10px;
    color: white;
    font-size: 20px;
}


.sidebar_menu .btn_two i {
    font-size: 25px;
    line-height: 60px;
    position: absolute;
    right: 20px;
    top:0;
    /* Change from left: 240px to right: 20px */
    left: auto;
    /* Reset any left value */
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s linear;
    color: #fff;
    
}

/* Ensure the menu content is scrollable */
.sidebar_menu .menu {
    height: calc(100% - 60px);
    /* Adjust height to fit within the sidebar */
    overflow-y: auto;
    /* Enable scrolling */
}


.sidebar_menu .menu a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    padding: 14px 20px;
    display: block;
}

.sidebar_menu .menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar_menu .call-button {
    background-color: white;
    /* White background */
    color: #184fc5;
    /* Blue text */
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin: 20px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: none;
    box-shadow: none;
}

/* Ensure icon color matches text */
.sidebar_menu .call-button i {
    color: #184fc5;
    /* Blue icon */
}




/* Sidebar Toggle Logic */
#check {
    display: none;
}

#check:checked~.sidebar_menu {
    right: 0;
    /* Change from left: 0 to right: 0 */
}

#check:checked~.btn_one i {
    opacity: 0;
}

#check:checked~.sidebar_menu .btn_two i {
    opacity: 1;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .main_box {
        display: block;
        /* Show sidebar toggle on mobile */
    }

    .hero-nav-links,
    .hero-call-button {
        display: none;
        /* Hide nav links and Call Us button on mobile */
    }

    .hero {
        height: 50vh;
        /* Reduce hero section height to 50% on mobile */
    }

    .btn_one i {
        position: absolute;
        right: 20px;
        top: 40px;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
    }

    .milestone-text {
        max-width: 50%;
        /* Wider text area on mobile */
    }

   
    .footer-section {
        height: auto;
        /* Let height adjust to content */
        max-height: 50vh;
        /* Minimum height */
    }

    /* .sidebar_menu .call-button i {

        color: #184fc5;

    }


    .sidebar_menu .call-button {
        background-color: white;
        color: #184fc5;
    } */
     .menu .call-button{
        background-color: #184fc5;
        color: #fff;
     }
}

@media only screen and (max-width: 1024px) {

    /* Hide nav links and call button in header and hidden navbar */
    .hero-nav-links,
    .hero-call-button,
    .navbar .bar,
    .navbar .navbar-buttons {
        display: none;
    }

    /* Show sidebar icon */
    .main_box {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2000;
    }

    .milestone-image img,
    .footer-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .milestone-section {
       max-height: 50vh; /* Set to half viewport height */
    }
    
    .milestone-text {
        max-width: 50%; /* Allow more width for text */
    }
    
    .milestone-text h1 {
        font-size: 1.5rem; /* Smaller font size */
        white-space: normal; /* Allow text to wrap */
        line-height: 1.3; /* Better readability */
    }

    .navbar {
        display: flex;
        /* Changed from none to flex */
        height: 70px;
        /* Even smaller height for mobile */
    }

    /* Hide elements inside navbar that shouldn't appear on mobile */
    .navbar .bar,
    .navbar .navbar-buttons {
        display: none;
    }

    /* Ensure logo is properly sized */
    .navbar .logo img {
        height: 60px;
        width: 60px;
    }

    /* Keep the call button visible in the navbar */
    .navbar .call-button {
        display: block;
        padding: 8px 16px;
        /* Smaller padding for mobile */
        font-size: 0.9rem;
        /* Smaller font for mobile */
    }

    .navbar.visible .navbar-sidebar-toggle {
        display: block !important; /* Force display with !important */
        position: relative;
        margin-left: 10px;
        z-index: 2001; /* Higher z-index than other elements */
    }
    
    .navbar-sidebar-toggle i {
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    
    /* Hide all other sidebar toggles when navbar is visible */
    .navbar.visible ~ .main_box .btn_one {
        display: none !important;
    }
}



/* Hide navbar and Call Us button on black background for phone and tablet */
@media only screen and (max-width: 1023px) {

    .header-modified .hero-nav-links,
    .header-modified .hero-call-button,
    .header-modified .navbar {
        display: none !important;
        /* Hide these elements */
    }

    /* Keep the logo visible */
    .header-modified .hero-logo {
        display: block !important;
        /* Ensure the logo is visible */
    }
}

/* manifesto */
.manifesto {
    background-color: white;
    padding: 80px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.manifesto h1 {
    color: #201c29;
    /* Dark color for the heading */
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.manifesto p {
    color: black;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.more-button {
    background-color: #184fc5;
    /* Updated color */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.more-button:hover {
    background-color: #184fc5;
    /* Updated hover color */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 768px) {
    .manifesto {
        max-height: 70vh; /* Set to full viewport height */
        padding: 40px 0; /* Reduce padding to fit content */
        display: flex;
        align-items: center;
    }
    
    .manifesto h1 {
        margin-top: 8%;
        font-size: 2rem; /* Slightly smaller heading */
    }
    
    .manifesto p {
        font-size: 18px; /* Adjust paragraph text size */
        line-height: 1; /* Tighter line height for mobile */
    }
}

/* New Section Styling */
.milestone-section {
    width: 100%;
    height: 100vh;
    /* 80% of the screen height */
    position: relative;
    overflow: visible;
    /* Ensure text is not hidden */
}

.milestone-image {
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height of the section */
    position: relative;
}

.milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the entire area */
    display: block;
}

.milestone-text {
    position: absolute;
    top: 50%;
    /* Vertically center */
    left: 0;
    /* Start from the left edge */
    transform: translateY(-50%);
    /* Only translate vertically */
    text-align: left;
    /* Align text to the left */
    white-space: nowrap;
    /* Ensure text stays in one line */
    width: 50%;
    /* Limit width to 50% of the screen */
    padding-left: 20px;
    /* Add some padding for spacing */
    box-sizing: border-box;
    /* Include padding in the width calculation */
    z-index: 2;
    /* Ensure text is above the image */
}

.milestone-text h1 {
    color: white;
    /* White text */
    font-size: clamp(1.2rem, 5vw, 2.5rem);
    /* Smaller and more responsive font size */
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    /* Add shadow for better readability */
    white-space: nowrap;
    /* Ensure text stays in one line */
    overflow: visible;
    /* Ensure text is not hidden */
    text-overflow: ellipsis;
    /* Add ellipsis if text overflows */
    max-width: 100%;
    /* Ensure text doesn't exceed the container width */
}


/* Section Tag (Wheels & Wings) */
.section-tag {
    display: inline-block;
    background-color: #184fc5;
    /* Blue background */
    color: white;
    /* White text */
    padding: 10px 25px;
    border-radius: 25px;
    /* Semi-circle border radius */
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    /* Space below */
}

/* Footer Section Styling */
.footer-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
}

/* Footer Image */
.footer-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /* Ensures the image covers the entire area */
    display: block;
}

/* Footer Content */
.footer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    /* 90% of the footer height */
    display: flex;
    background: rgba(24, 79, 197, 0.15);
    /* Transparent blue like hidden navbar */
    backdrop-filter: blur(5px);
    /* Blur effect */
}

/* Footer Parts (30%, 30%, 40%) */
.footer-part {
    padding: 20px;
    box-sizing: border-box;
}

.footer-part-1 {
    width: 30%;
    /* First 30% */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-part-2 {
    width: 30%;
    /* Second 30% */
    display: flex;
    align-items: center;
}

.footer-part-3 {
    width: 40%;
    /* Third 40% */
    margin-top: 6%;
    display: flex;
    align-items: top;
}

/* Footer Logo (Top 40% of First 30%) */
.footer-logo {
    height: 40%;
    /* Top 40% of the first 30% section */
    display: flex;
}

.footer-logo img {
    height: 150px;
    /* Adjust logo size */
    width: 150px;
}

/* Footer Contact (Bottom 60% of First 30%) */
.footer-contact {
    height: 60%;
    /* Bottom 60% of the first 30% section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    /* White text */
    font-size: 1rem;
}

.footer-contact p {
    margin: 10px 0;
}

/* Footer Nav Links (Second 30%) */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-nav li {
    margin: 15px 0;
}

.footer-nav li a {
    color: white;
    /* White text */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

/* Footer icon styling */
.footer-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.footer-nav li a:hover {
    color: #184fc5;
    /* Blue on hover */
}

/* Footer Text (Third 40%) */
.footer-text {
    color: white;
    /* White text */
    font-size: 1rem;
    line-height: 1.5;
    max-width: 80%;
    /* Limit text width */
}

/* Footer Bottom Line */
.footer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%;
    /* Bottom 10% of the footer */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 79, 197, 0.15);
    /* Transparent blue like hidden navbar */
    backdrop-filter: blur(5px);
    /* Blur effect */
    color: white;
    /* White text */
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Subtle border */
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .footer-content {
        flex-wrap: wrap;
    }
    
    .footer-part-1, .footer-part-2 {
        width: 50%;
    }
    
    .footer-part-3 {
        width: 100%;
        margin-top: 0;
    }
}

/* Footer Section Mobile and Tablet Redesign */
@media screen and (max-width: 1024px) {
    /* Overall footer container */
    .footer-section {
        height: 70vh;
        position: relative;
    }
    
    /* Background image should cover entire container */
    .footer-image img {
        height: 70vh;
        width: 100%;
        object-fit: cover;
    }
    
    /* Main content area - takes 90% of height */
    .footer-content {
        height: 90%;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        background: rgba(24, 79, 197, 0.15);
        backdrop-filter: blur(5px);
    }
    
    /* First part - Logo and contact details (left 50% width, 70% height) */
    .footer-part-1 {
        width: 50%;
        height: 70%;
        display: flex;
        flex-direction: column;
        padding: 15px;
        box-sizing: border-box;
    }
    
    /* Logo section */
    .footer-logo {
        height: 80%;
        width: 100%;
        display: flex;
        align-items: center;
    }
    
    .footer-logo img {
        height: 100px;
        width: 100px;
        max-height: 100%;
    }
    
    /* Contact details section */
    .footer-contact {
        height: 75%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        color: white;
        font-size: 15px;
        padding-top: 5px;
    }
    
    /* Second part - Nav links (right 50% width, 70% height) */
    .footer-part-2 {
        width: 50%;
        height: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 15px;
        box-sizing: border-box;
    }
    
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    
    .footer-nav li {
        margin: 5px 0;
    }
    
    .footer-nav li a {
        color: white;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        display: flex;
        align-items: center;
    }
    
    .footer-icon {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }
    
    /* Third part - Text content (20% height, full width) */
    .footer-part-3 {
        width: 100%;
        height: 20%;
        padding: 15px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-text {
        color: white;
        font-size: 0.9rem;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
    
    /* Footer bottom - Copyright text (10% height, full width) */
    .footer-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(24, 79, 197, 0.15);
        backdrop-filter: blur(5px);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .footer-bottom p {
        color: white;
        font-size: 0.85rem;
        text-align: center;
        margin: 0;
        padding: 0 15px;
    }
}

/* Smaller mobile adjustments */
@media screen and (max-width: 600px) {
    /* Adjust logo size */
    .footer-logo img {
        height: 80px;
        width: 80px;
    }
    
    /* Make contact text smaller */
    .footer-contact {
        font-size: 0.8rem;
    }
    
    /* Make nav links smaller */
    .footer-nav li a {
        font-size: 0.8rem;
    }
    
    /* Make footer text smaller */
    .footer-text {
        font-size: 0.8rem;
    }
    
    /* Make copyright text smaller */
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Contact Section Styling */
/* Contact Section Styling */
/* Contact Section Styling */
#contact.section-bg {
    background-image: none;
    background-color: white;
    position: relative;
    background-position: center;
    padding: 0;
    min-height: auto;
    overflow: hidden;
}

#contact .overlay {
    background-image: none;
    background-color: white;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 80px 0;
}

#contact .container {
    position: relative;
    z-index: 10;
}

#contact .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

#contact .contact-info {
    padding: 0 30px 0px 0;
    color: black;
}

#contact h2.contact-title {
    font-size: 35px;
    font-weight: 600;
    color: black;
    margin-bottom: 30px;
}

#contact h2.contact-title span {
    color: #184fc5;
}

#contact h3.address-title {
    color: #184fc5;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

#contact .contact-info p {
    color: black;
    margin-bottom: 15px;
}

#contact ul.contact-info {
    margin-top: 30px;
    padding-left: 0;
}

#contact ul.contact-info li {
    margin-bottom: 22px;
    display: flex;
    width: 100%;
    list-style: none;
}

#contact .info-left {
    width: 10%;
}

#contact .info-left i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    color: #184fc5;
}


#contact .info-right h4 {
    color: #184fc5;
    font-size: 18px;
}

/* Contact Form Styling */
#contact .contact-form {
    position: relative;
    padding: 40px;
    background: #184fc5;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#contact .contact-form input,
#contact .contact-form textarea {
    border: 0;
    background: transparent;
    width: 100%;
    padding: 11px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    border-radius: 0;
    transition: .3s ease-in-out;
    border: 2px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 25px;
    color: white;
}

#contact .contact-form input::placeholder,
#contact .contact-form textarea::placeholder {
    color: white;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
    border: 2px solid transparent;
    border-bottom-color: white;
}

#contact .btn-big {
    color: #184fc5;
    box-shadow: 2px 5px 10px 0px rgba(45, 45, 45, 0.19);
    background: white;
    transition: .2s;
    border: 2px solid white;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
    cursor: pointer;
}

#contact .btn-big:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media only screen and (max-width: 767px) {
    #contact .contact-form {
        margin-top: 40px;
        padding: 30px;
    }

    #contact .contact-info {
        padding: 0 15px;
    }
}

/* Policy Section */
.policy-section {
    padding: 20px;
    /* Adds padding inside the section */
    margin: 4%;
    /* Adds 4% margin on all sides */
    font-family: Arial, sans-serif;
    /* Sets a clean font */
    line-height: 1.6;
    /* Improves readability with better line spacing */
    color: #000;
    /* Dark black color for all content */
}

.policy-section h1 {
    font-size: 28px;
    /* Larger font size for the main heading */
    color: #000;
    /* Dark black color for the heading */
    margin-bottom: 20px;
    /* Adds space below the heading */
    text-align: center;
    /* Centers the heading */
}

.policy-section h3 {
    font-size: 20px;
    /* Slightly larger font size for subheadings */
    color: #000;
    /* Dark black color for subheadings */
    margin-top: 20px;
    /* Adds space above subheadings */
    margin-bottom: 10px;
    /* Adds space below subheadings */
}

.policy-section p {
    font-size: 16px;
    /* Standard font size for paragraphs */
    color: #000;
    /* Dark black color for text */
    margin-bottom: 15px;
    /* Adds space below paragraphs */
}

.policy-section ul {
    margin-bottom: 15px;
    /* Adds space below lists */
    padding-left: 20px;
    /* Adds padding to the left of lists */
}

.policy-section ul li {
    margin-bottom: 10px;
    /* Adds space between list items */
    color: #000;
    /* Dark black color for list items */
}

.policy-section strong {
    color: #184fc5;
    /* Highlighted text color changed to #184fc5 */
}
strong{
    color: #184fc5;
}

/* about us section */
.about-section {
    padding: 20px;
    /* Adds padding inside the section */
    margin: 4%;
    /* Adds 4% margin on all sides */
    font-family: Arial, sans-serif;
    /* Sets a clean font */
    line-height: 1.6;
    /* Improves readability with better line spacing */
    color: #000;
    /* Dark black color for all content */
}

.about-section h1 {
    font-size: 28px;
    /* Larger font size for the main heading */
    color: #000;
    /* Dark black color for the heading */
    margin-bottom: 20px;
    /* Adds space below the heading */
    text-align: center;
    /* Centers the heading */
}

.about-section h3 {
    font-size: 20px;
    /* Slightly larger font size for subheadings */
    color: #000;
    /* Dark black color for subheadings */
    margin-top: 20px;
    /* Adds space above subheadings */
    margin-bottom: 10px;
    /* Adds space below subheadings */
}

.about-section p {
    font-size: 16px;
    /* Standard font size for paragraphs */
    color: #000;
    /* Dark black color for text */
    margin-bottom: 15px;
    /* Adds space below paragraphs */
}

.about-section strong {
    color: #184fc5;
    /* Highlighted text color changed to #184fc5 */
}

