* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    background-color: #11121A;
    margin: 0;
    padding: 0;
    font-family: Poppins;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

.slider {
    display: flex;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    width: 100%;
    height: 100vh;
    position: relative;
}

.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 100; /* Align to the left side */
    transform: translateY(-50%); /* Vertically center the div */
    color: white;
    text-align: left;
    z-index: 2;
    padding: 0 20px;
    max-width: 80%; /* Adjust width to prevent overflow */
    box-sizing: border-box; /* Prevents padding from affecting layout */
}

@media (max-width: 768px) {
    .slider-content {
        transform: translateY(-40%); /* Vertically center the div */
        left: 2%; /* Add some space on small screens */
        max-width: 90%; /* Allow more space on smaller screens */
    }
}


.slider-content h1 {
    font-size: 75px; /* Adjust font size as needed */
    margin: 0;
    padding: 0;
    font-weight: bolder;
    line-height: 1.2; /* Light space between lines of text */
}

.slider-content p {
    font-size: 12px;
    margin: 0;
    font-weight: 200;
    max-width: 80%;
}

.slider-content #content {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
}


.slider-content a {
    text-decoration: none;
    color: #fff;
    margin-right: 40px;
    font-weight: 200;
    font-size: 16px;
}

.slider-content #joins {
    font-weight: 200;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px 10px 30px;
    background-color:  transparent;
    border: 1px solid #fff;
    font-size: 16px
}

/* Navigation buttons */
.slider-nav {
    display: flex;
    column-gap: 2rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: transparent;
    opacity: 0.75;
    transition: opacity ease 250ms;
    border: 2px solid #fff;
    margin-bottom: 50px;
}

.slider-nav a:hover {
    opacity: 1;
}

/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .slider-content {
        top: 50%;
        padding: 0 15px;
    }

    .slider-content h1 {
        font-size: 32px;
    }

    .slider-content p {
        font-size: 1rem;
    }
    .slider-content #content {
        font-size: 16px;
    }
}


/* Tablet and mobile responsiveness */
@media screen and (max-width: 1024px) {
    .slider-wrapper {
        height: 100vh; /* Maintain full height */
    }

    .slider {
        height: 100vh; /* Ensure it still takes full screen */
    }

    .slider-nav {
        bottom: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .slider-wrapper {
        height: 100vh; /* Ensure fullscreen on tablets */
    }

    .slider {
        height: 100vh; /* Maintain height */
    }

    .slider-nav {
        bottom: 0.5rem;
        column-gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .slider-wrapper {
        height: 100vh; /* Fullscreen on mobile */
    }

    .slider {
        height: 100vh; /* Maintain full height */
    }

    .slider-nav {
        bottom: 0;
        column-gap: 0.5rem;
        margin-bottom: 0
    }
}

/* About Section */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
}

/* General reset and container setup */
.about {
    display: flex;
    justify-content: space-between; /* Space between the sections */
    align-items: center; /* Center content vertically */
    height: 100vh; /* Full screen height */
    box-sizing: border-box;
}

#about-section {
    flex: 1; /* Take up half the space */
    padding: 2rem;
    box-sizing: border-box;
}

#pic-section {
    flex: 1.5; /* Take up the other half */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    box-sizing: border-box;
    height: 100%;
    background-color: #202231;
    /* Default clip-path for larger screens (desktop) */
    clip-path: polygon(100% 0, 0 0%, 100% 400%);
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3); /* Apply shadow */
}


/* Image styling inside #pic-section */
@keyframes fadeZoom {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#pic-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeZoom 1.5s ease-in-out;
}

/* Styling for text content */
#about-section h1, #about-section h2 {
    margin: 0;
    color: #fff;
    font-weight: bold;
}

#about-section h1 {
    font-size: 60px;
    margin-bottom: 1rem;
    color: #DC431D;
    animation: fadeIn 1s ease-in-out;
}

#about-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

#about-section p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #F4F4F4;
}

/* Mobile responsiveness (up to 768px) */
@media screen and (max-width: 768px) {
    .about {
        flex-direction: column; /* Stack the sections vertically */
        height: auto; /* Allow height to adjust based on content */
    }

    #about-section, #pic-section {
        flex: none; /* Let sections take natural size */
        width: 100%; /* Make each section take full width */
    }

    #about-section h1 {
        font-size: 2rem; /* Adjust font size for mobile */
    }

    #about-section h2 {
        font-size: 1.25rem; /* Adjust font size for mobile */
    }

    #about-section p {
        font-size: 1rem; /* Adjust font size for mobile */
    }

    #pic-section img {
        max-width: 100%; /* Make the image fit the screen on mobile */
    }

    /* Adjust clip-path for mobile */
    #pic-section {
        clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 100%);
    }
}

/* Further adjustments for small mobile screens (up to 480px) */
@media screen and (max-width: 480px) {
    #about-section h1 {
        font-size: 1.75rem; /* Adjust heading size for very small screens */
    }

    #about-section h2 {
        font-size: 1.125rem;
    }

    #about-section p {
        font-size: 0.95rem;
    }

    #pic-section img {
        max-width: 100%; /* Ensure the image fits on very small screens */
    }

    /* Further adjustment for clip-path on very small screens */
    #pic-section {
        clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
    }
}


/*Navbar CSS*/ 
li {
    list-style: none;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover {
    color: #FF7C33;
}

/*HEADER*/

header {
    position: fixed;
    top: 0;         /* Fixes the header to the top of the page */
    left: 0;        /* Ensures the header starts from the left edge of the screen */
    right: 0;       /* Ensures the header stretches to the right edge of the screen */
    padding: 0 2rem;
    z-index: 99;    /* Keeps it above other elements */
    background-color: transparent; /* Header is transparent at the top */
    transition: background-color 0.3s ease; /* Smooth transition */
}

/* When scrolled, background color appears */
header.scrolled {
    backdrop-filter: blur(15px);
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

a img {
    width: 100px;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}

.navbar .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    background-color: #DC431D;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    z-index: 1000;
    margin-left: 0%;

}

.auth-buttons {
    display: flex;
    gap: 10px; /* space between buttons */
}

.auth-buttons form {
    margin: 0; /* remove default margin */
}

.action_btn:hover {
    scale: 1.05;
    color: #fff;
}

.action_btn:active {
    scale: 0.95;
}
/*Navbar CSS*/ 


/*Dropdown Menu*/

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    width: 300px;
    height: 0;
    background: #202231;
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);   
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.dropdown_menu.open {
   height: 350px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu.action_btn {
    width: 100%;
    display: flex;
}

/*Dropdown Menu*/


/* RESPONSIVE CSS DESIGN*/

@media(max-width: 992px) {
    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
        font-size: 1rem;  /* Make text readable */
        padding: 0;  /* Adjust for touch screens */
    }
}

/* RESPONSIVE CSS DESIGN*/

/* Offers Section*/

#join {
    height: 100vh;
}

.pic2-section {
    position: relative; /* Create a containing block for the absolute positioning */
}

.picture-div {
    position: relative; /* Allows child elements to be positioned relative to this container */
}

.picture-div img {
    width: 100%; /* Ensure the image takes up the full width of the container */
    height: 50vh; /* Keep the image aspect ratio intact */
    object-fit: cover;
    
}


/* .text-div styles */
.text-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centering element */
    max-width: 80%;
    width: 90%; /* Allow some flexibility in width */
    height: auto; /* Allow height to adjust based on content */
    color: white;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; /* Center text within the div */
    border-radius: 10px; /* Optional: rounded corners for a smooth look */
}

/* .text-div p styling */
.text-div p {
    font-size: 18px; /* Adjust font size */
    margin: 0;
    color: #F4F4F4;
    line-height: 1.6; /* Improve readability */
}

/* .div2-offers section styles */
.div2-offers {
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center the content horizontally and vertically */
    background-color: #11121A; /* Light background for contrast */
    padding: 30px;
    box-sizing: border-box;
}

/* .div2-offers h1 styling */
.div2-offers h1 {
    font-size: 50px; /* Larger title size */
    color: #DC431D; /* Warm color for the heading */
    margin: 0;
    text-align: center;
    font-weight: 700; /* Bold for emphasis */
}

/* Responsive Design */

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .text-div {
        max-width: 90%; /* Allow for slightly more space on tablets */
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .text-div p {
        font-size: 16px; /* Slightly smaller font size for better readability */
    }

    .div2-offers {
        height: auto; /* Allow .div2-offers to expand on tablets */
        padding: 20px; /* Reduce padding */
    }

    .div2-offers h1 {
        font-size: 40px; /* Reduce heading size for tablet */
    }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .text-div {
        max-width: 100%; /* Take up the full width on smaller screens */
        padding: 10px; /* Further reduce padding on mobile */
    }

    .text-div p {
        font-size: 14px; /* Even smaller text size for better fit */
    }

    .div2-offers {
        padding: 15px; /* Reduce padding even more */
        text-align: center; /* Ensure content is centered on mobile */
    }

    .div2-offers h1 {
        font-size: 32px; /* Even smaller font for mobile */
    }
}

/**/

.contents1-div {
    display: flex;
    flex-wrap: wrap;  /* Allow items to wrap onto the next line on smaller screens */
    justify-content: space-between; /* Space between items */
    align-items: center; /* Vertically center items if they have unequal heights */
    gap: 70px; /* Space between items, adjust as needed */
    margin: 0 auto; /* Centers the container horizontally */
    padding: 20px; /* Add padding inside the container for spacing */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/* Responsive Adjustments */

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    .contents1-div {
        justify-content: center; /* Center items on smaller screens */
        gap: 10px; /* Reduce gap on smaller screens */
    }

    .contents1-div > .item {
        flex: 1 1 45%; /* Allow items to take up 45% of the container width */
    }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .contents1-div {
        flex-direction: row; /* Stack items vertically on small screens */
        gap: 15px; /* Reduce gap even further on mobile */
    }

    .contents1-div > .item {
        flex: 1 1 100%; /* Items will take full width on mobile */
    }

    #one {
        width: 100px;
        height: 200px;
        padding: 12px;
    }

    #one img {
        width: 40px;
    }

    #one p {
        font-size: 10px;
    }

    #one h3 {
        font-size: 18px;
    }
}





#one {
    width: 240px;
    height: 240px;
    background-color: #D9D9D9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #11121A;
    padding: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    
        /* Initial state (hidden) */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

#one.show {
    opacity: 1;
    transform: translateY(0);
}
#one img {
    width: 80px;
}

#one p {
    text-align: center;
    font-weight: normal;
    margin: 0;
    margin-top: 10px;
    font-size: 15px;
    color: #11121A;
}

#one h3 {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    margin-top: 10px;
    color: #11121A;
}

#one h1 {
    font-size: 48px;
    font-weight: bolder;
}

/* Media Query for Tablets */
@media (max-width: 768px) {
    #one {
        width: 100px;
        height: 200px;
        padding: 12px;
    }

    #one img {
        width: 40px;
    }

    #one p {
        font-size: 10px;
    }

    #one h3 {
        font-size: 18px;
    }
}

@media (max-width: 1333px) {
    #one {
        width: 130px;
        height: 130px;
        padding: 10px;
    }

    #one img {
        width: 40px;
    }

    #one p {
        font-size: 10px;
    }

    #one h3 {
        font-size: 18px;
    }
}


/* Media Query for Mobile Devices */
@media (max-width: 480px) {

    #join {
        height: 110vh;
    }
    #one {
        width: 120px;
        height: 120px;
        padding: 5px;
    }

    #one img {
        width: 35px;
    }

    #one p {
        font-size: 10px;
    }

    #one h3 {
        font-size: 15px;
    }
}


/**/

.custom-shape-divider-bottom-1734442411 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1734442411 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 71px; /* Adjust the height for larger screens */
}

.custom-shape-divider-bottom-1734442411 .shape-fill {
    fill: #11121A;
}

/* Responsive Adjustments */

/* For Tablets (portrait) */
@media (max-width: 768px) {
    .custom-shape-divider-bottom-1734442411 svg {
        width: 100%;
        height: 50px; /* Adjust height for tablet */
    }
}

/* For Mobile Devices */
@media (max-width: 480px) {
    .custom-shape-divider-bottom-1734442411 svg {
        width: 100%;
        height: 40px; /* Further reduce height for mobile */
    }
}
/* Offers Section*/




/*Team Section*/


/* Team Section */
#team {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #202231;
    color: #fff;
    padding: 60px 5%;
    text-align: center;
}

/* Section Title */
.title-div h1 {
    font-size: clamp(32px, 4vw, 50px);
    color: #DC431D;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Team Members Container */
.contents-div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1300px;
}

/* Individual Team Card */
.container-div {
    display: flex;
    flex-direction: column;
    background: #11121A;
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    
        /* Initial state (hidden) */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.container-div.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.container-div:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Image */
.pic-area img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* Text Content */
.context-area {
    padding: 20px;
}

.context-area h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.context-area h4 {
    font-size: 16px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 10px;
}

.context-area p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: justify;
}

.context-area a {
    font-size: 14px;
    font-weight: 700;
    color: #DC431D;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container-div {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .contents-div {
        flex-direction: column;
        align-items: center;
    }

    .container-div {
        width: 90%;
        max-width: 420px;
    }
}

@media (max-width: 480px) {
    .title-div h1 {
        font-size: 28px;
    }

    .context-area h2 {
        font-size: 20px;
    }

    .context-area h4 {
        font-size: 14px;
    }

    .context-area p {
        font-size: 12px;
    }
}



/*Plan Section*/

#plan {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#plan h1 {
    font-size: 96px;
    font-weight: bolder;
}

.plan-container {
    display: flex;
    justify-content: space-around;
}

#plan-one {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FAF9F6;
    width: 340px;
    height: 600px;
    border-radius: 5px;
}

#plan-two {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FAF9F6;
    width: 340px;
    height: 600px;
    border-radius: 5px;
}

#plan-three {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #FAF9F6;
    width: 340px;
    height: 600px;
    border-radius: 5px;
}

.plans-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

.plans-div img {
    width: 75px;
}

#plan-one .image-container {
    width: 100%;
    background-color: #CD7F32;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#plan-two .image-container {
    width: 100%;
    background-color: #7A7980;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#plan-three .image-container {
    width: 100%;
    background-color: #FFD700;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

#plan-one .price-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #CD7F32;
    align-items: center;
    justify-content: space-around;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#plan-two .price-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #7A7980;
    align-items: center;
    justify-content: space-around;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

#plan-three .price-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #FFD700;
    align-items: center;
    justify-content: space-around;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.price-div h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    color: #FBF6FF;
    line-height: 1; /* Makes the line height 1.5 times the font size */
}

.price-div h4 {
    font-size: 16px;
    font-weight: 900;
}

.price-div h2 {
    font-size: 64px;
    font-weight: bolder;
}

.price-div h3 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 55px;
}

.perks-div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.perks-div p {
    color: #202231;
    font-size: 20px;
    font-weight: 500;
}

.button-div {
    padding: 10px;
    height: 65px;
}

.button-div #get-btn-1 {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    color: #CD7F32;
    font-size: 16px;
    font-weight: 700;
    background-color: #202231;
}

.button-div #get-btn-2 {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    color: #7A7980;
    font-size: 16px;
    font-weight: 700;
    background-color: #202231;
}

.button-div #get-btn-3 {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    color: #FFD700;
    font-size: 16px;
    font-weight: 700;
    background-color: #202231;
}


@media (min-width: 600px) and (max-width: 1024px) {
    #plan-one {
        height: 400px;
        width: 250px;
    }

    #plan-two {
        height: 400px;
        width: 250px;
    }

    #plan-three {
        height: 400px;
        width: 250px;
    }

    .plans-div img {
        width: 40px;
    }

    .price-div h2 {
        font-size: 36px;
    }

    .price-div h3 {
        margin-bottom: 30px;
        font-size: 18px;
    }

    .perks-div p {
        margin: 3px;
        font-size: 16px;
    }
  }


  @media (max-width: 800px) {

    #plan {
        padding-top: 20px;
    }

    .plans-div {
        flex-direction: column;
    }

    #plan-one {
        height: 245px;
        width: 355px;
    }

    #plan-two {
        height: 245px;
        width: 355px;
    }

    #plan-three {
        height: 245px;
        width: 355px;
    }

    .plans-div img {
        width: 40px;
    }

    .price-div h2 {
        font-size: 24px;
    }

    .price-div h3 {
        margin-bottom: 15px;
        font-size: 14px;
    }

    .price-div h4 {
        font-size: 12px;
    }

    .perks-div p {
        margin: 1px;
        font-size: 14px;
    }
  }

/*Plan Section*/



/*Location Section*/

/* Location Section */
#location {
    width: 100%;
    min-height: 100vh;
    background-color: #202231;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5vw; /* Scales padding based on screen size */
    box-sizing: border-box;
    text-align: center;
}

/* Map Container */
.map-container {
    width: 100%;
    max-width: 1000px; /* Adjusts for large screens */
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 500px; /* Larger for big screens */
    max-height: 60vh; /* Prevents excessive height */
    border: 0;
    border-radius: 10px;
}

/* Contact Info */
.contact-info {
    background-color: #11121A;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 1000px; /* Scales with larger screens */
    color: #FBF6FF;
    text-align: center;
    font-size: 1.5rem; /* Adjusts for readability */
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .map-container {
        max-width: 850px;
    }

    .map-container iframe {
        height: 400px;
    }

    .contact-info {
        max-width: 850px;
        font-size: 1.3rem;
    }
}

@media (max-width: 960px) {
    #location {
        padding: 4vw;
    }

    .map-container {
        max-width: 700px;
    }

    .map-container iframe {
        height: 350px;
    }

    .contact-info {
        max-width: 700px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    #location {
        padding: 30px 15px;
    }

    .map-container {
        max-width: 90%;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-info {
        max-width: 90%;
        padding: 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 250px;
    }

    .contact-info {
        padding: 15px;
        font-size: 0.9rem;
    }
}


/*Location Section*/

/*Footer Section*/

footer {
    background-color: #111;
    color: #fff;
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-links,
.footer-contact,
.footer-social {
    flex: 1;
    margin: 0 20px;
    min-width: 250px; /* Ensure the columns have some minimum width */
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links ul,
.footer-contact p {
    font-size: 14px;
    margin: 5px 0;
}

.footer-links ul li {
    list-style: none;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #fcbf49;
}

.footer-contact p {
    font-size: 14px;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icon {
    font-size: 20px;
    color: #ccc;
    transition: color 0.3s;
}

.footer-social .social-icon:hover {
    color: #fcbf49;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

/* Media Queries for Responsiveness */

/* For tablets */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        width: 120px; /* Smaller logo on tablet */
    }

    .footer-links,
    .footer-contact,
    .footer-social {
        text-align: center;
        margin: 20px 0;
    }

    .footer-social .social-icons {
        justify-content: center; /* Center align social media icons */
    }

    .footer-links ul {
        padding-left: 0; /* Remove default padding */
    }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
    footer {
        padding: 20px 0;
    }

    .footer-logo img {
        width: 100px; /* Even smaller logo on mobile */
    }

    .footer-links ul li a {
        font-size: 12px; /* Smaller font size for mobile */
    }

    .footer-social .social-icons {
        gap: 10px; /* Reduce space between social icons */
    }

    .footer-bottom p {
        font-size: 12px; /* Smaller footer text on mobile */
    }
}

