@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
html {
    scroll-behavior: smooth;
}
/* Body */
body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Navbar Logo */
.logo {
    max-width: 250px;
}

/* Navbar Menu */
.navbar-menu {
    display: flex;
    list-style: none;
}

.navbar-menu li a{
    margin: 0 20px;
    display: inline-block; /* Ensure the link is treated as a block for scaling */
    transition: transform 0.3s ease; /* Smooth transition for scaling effect */
}

.navbar-menu li a:hover {
    transform: scale(1.5); /* Scale up by 10% on hover */
}

.navbar-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding: 8px 0;
}

.navbar-menu a:hover {
    color: #f5bf03;
    border-bottom: 2px solid #f5bf03;
}

/* Contact Button */
.navbar-contact .contact-btn {
    padding: 10px 20px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    color: #f8f7f3;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.navbar-contact .contact-btn:hover {
    background-color: #f5bf03;
    color: #000;
    border-color: #f5bf03;
}

/* Navbar Toggle (Menu Icon) */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
        background-color: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 70px;
        left: 0;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-contact {
        display: none;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-menu li {
        text-align: center;
        margin: 10px 0;
    }
}

/* Toggle animation */
.navbar-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-image: url('images/Group-1171274919-1200x780.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.hero-content {
    max-width: 800px;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}
.masked-text {
    display: inline-block;
    background: url('images/4.jpg') no-repeat center;
    background-size: cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-content .highlight {
    color: #d1dfe9; /* #f5bf03 color */
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    background: #f5bf03;
    margin: 10px;
    transition: background 0.3s, transform 0.3s;
    font-size: 1rem;
}

.cta-buttons .btn:hover {
    background: #f5bf03;
    transform: scale(1.09);
}

.cta-buttons .btn.secondary {
    background: #fff;
    color: #000;
}

.cta-buttons .btn.secondary:hover {
    background: #E0E0E0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .cta-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        padding: 12px;
        margin: 5px 0;
        font-size: 0.9rem;
    }
}
/* 2nd block code here  */


/* Base styles */

.service-section {
    margin: 0;
    padding: 0;
    position: relative;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #4d4d4d 100%); */
}

/* Transition styles */
.section-container, .third-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    position: relative;
    z-index: 1;
}
.background-image {
    position: absolute;
    top: 0;
    margin-left: -100px;
    left: 0;
    width: auto;
    height: auto;
    z-index: 0;
}

/* State when elements are visible */
.section-container.visible, .third-block.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Existing styles for desktop */
.section-container {
    display: flex;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;    
    max-width: 80%;
    justify-content: center;
    align-items: center;
}

.section-container .text-div, .action-div {
    padding: 20px;
    color: #fff; /* White text color */
}

.section-container .text-div {
    flex: 1;
    text-align: center;
}

.section-container .text-div p {
    font-size: 3.5em;
    font-weight: 400;
}

.section-container .action-div {
    flex: 1;
    text-align: center;
}

.explore-button {
    margin-top: 20px;
    padding: 10px 20px;
    border: none;
    font-size: larger;
    max-width: 200px;
    width: 200px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    border: 1px solid white;
    position: relative;
    background-color: #000; /* Added background color */
}

.explore-button:hover {
    background-color: white;
    color: black; /* Slightly lighter gray on hover */
    padding-right: 30px;
}

.explore-button:hover::after {
    position: absolute;
    right: -20px;
    transition: all 0.3s ease;
}

.third-block-container {
    margin: 0 auto;
}

.third-block {
    display: flex;
    justify-content: space-between;
    background-color: #000;
    border-radius: 20px;
    max-height: 100vh;
    background-image: url('images/Group-1171274919-1200x780.png');
    padding: 20px 100px 20px 100px;
    border-top: 1px solid rgb(227, 225, 225);
    border-bottom: 1px solid rgb(227, 225, 225);
    margin: 3px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);

}

.third-block-text-content {
    max-width: 50%;
    text-align: left;
}

.third-block-text-content h2 {
    color: white;
    font-size: 2em;
    margin-bottom: 20px;
}

.third-block-text-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: whitesmoke;
}

.third-block-button {
    padding: 12px 25px;
     border: 1px solid white;
     background-color: black;
     color: white;
    border-radius: 15px;
    cursor: pointer;
    align-self: start;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.third-block-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    color: black;
}

.third-block-image-content img {
    border-radius: 20px;
    object-fit: cover;
    max-height: 100vh;
    margin-top: 10vh;
    margin-bottom: 10vh;
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-container .text-div,
    .section-container .action-div {
        text-align: left;
        padding: 10px;
    }

    .section-container .text-div p {
        font-size: 2em;
    }

    .section-container .action-div p {
        font-size: 1em;
    }

    .third-block {
        flex-direction: column;
        align-items: center;
        padding: 2px;
    }

    .third-block-text-content {
        max-width: 100%;
        text-align: center;
    }

    .third-block-image-content img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .explore-button {
        width: 100%;
        font-size: medium;
    }

    .section-container .text-div p {
        font-size: 1.5em;
    }

    .section-container .action-div p {
        font-size: 0.9em;
    }
}



/* fourth block  */
.fourth-block-parent {
    position: relative;
    width: 100%; /* Ensure it takes the full width of its container */
    min-height: 300px; /* Adjust as needed */
}

.fourth-block-container {
    padding: 20px;
    margin: 0 auto;
    position: relative;
    z-index: 2; /* Make sure the container is above the image */
}

.fourth-block-title {
    text-align: center;
    margin-bottom: 30px;
}

.fourth-block-title h1 {
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fourth-block-title p {
    font-size: 1.2em;
    color: whitesmoke;
    margin: 0 auto;
    max-width: 600px;
    line-height: 1.5;
}

.fourth-block {
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
    padding: 20px;
    gap: 20px;
}

.fourth-block-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    max-width: 46vw;
    max-height: 80vh;
    padding: 20px;
    background: linear-gradient(
        to bottom,
        rgba(26, 25, 25, 0.4),
        rgba(5, 5, 5, 0.2)
    );
    border-radius: 20px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 2; /* Ensure it is above the background image */
}

.mini-half-circle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1; /* Ensure it is below the .fourth-block-child */
    height: auto;
}

.fourth-block-text-content, .fourth-block-image-content {
    position: relative;
    z-index: 3; /* Ensure text and image inside the block are above background image */
}


.fourth-block-text-content {
    text-align: left;
    margin-bottom: 20px;
}

.fourth-block-text-content h2 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 20px;
}

.fourth-block-text-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #dcdcdc; /* Light gray text for better contrast */
}

.fourth-block-button {
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    align-self: start;
}

.fourth-block-image-content {
    width: 100%;
    margin-top: 20px;
    max-height: calc(80vh - 120px); /* Adjusts the height of the image based on the block height */
    overflow: hidden;
    border-radius: 20px;
}

.fourth-block-image-content img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}
/* Initial hidden state for transition */
.fourth-block-child {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* When the element becomes visible */
.fourth-block-child.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Transitions for text content */
.fourth-block-text-content h2,
.fourth-block-text-content p,
.fourth-block-button {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fourth-block-child.visible .fourth-block-text-content h2,
.fourth-block-child.visible .fourth-block-text-content p,
.fourth-block-child.visible .fourth-block-button {
    opacity: 1;
    transform: translateX(0);
}

/* Transitions for image content */
.fourth-block-image-content {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fourth-block-child.visible .fourth-block-image-content {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .fourth-block {
        flex-direction: column;
        gap: 20px;
    }

    .fourth-block-child {
        max-width: 100%;
        padding: 10px;
    }

    .fourth-block-image-content img {
        max-height: 50vh;
    }

    .fourth-block-title h1 {
        font-size: 2em;
    }

    .fourth-block-title p {
        font-size: 1em;
    }
}


/* code for fifth block  */
.parent-service-img-block{
    background-image: url('images/mini-half-circle-image-blue.png');
    background-repeat: no-repeat;
}

/* Container for the fifth block, making it responsive */
.fifth-blocks-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 20px;
    max-width: 80vw;
}

/* Each individual block */
.fifth-block {
    position: relative;
    width: calc(33.33% - 10px); /* Three blocks per row with some space between */
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.7);
    height: 60vh;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.7), rgba(50, 50, 50, 0.5)); /* Gradient background */
    opacity: 0; /* Start hidden */
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fifth-block:hover{
    border: 2px solid white;

}

/* Light background variant */
.fifth-block.white-bg {
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(200, 200, 200, 0.7)); /* Light gradient */
}

/* Image styling */
.fifth-block img {
    width: auto;
    height: 250px;
    max-height: 60%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /* Center image horizontally */
    transition: transform 0.8s ease; /* Smooth zoom-in effect */
}

/* Image zoom effect on hover */
.fifth-block:hover img {
    transform: translateX(-50%) scale(1.1); /* Zoom in while staying centered */
}

/* Content overlay */
.fifth-block-content {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    z-index: 1;
    padding: 10px 20px;
    border-radius: 10px;
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth entry of text */
}

/* Light background variant */
.fifth-block.white-bg .fifth-block-content {
    color: #000;
}

/* When the block becomes visible */
.fifth-block.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Text content slide-in on hover */
.fifth-block:hover .fifth-block-content {
    transform: translateX(10px);
    height: 98%;
}

/* Paragraph styling */
.fifth-block-content p {
    margin-top: 10px;
    margin-bottom: 20px; /* Space between paragraph and button */
    font-size: 1em;
    line-height: 1.5;
    opacity: 1; /* Always visible */
    transition: none; /* No transition needed since it's always visible */
}

/* Learn More button styling */
/* Learn More button styling */
.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    opacity: 0;
     z-index: 1;
}

/* Button visibility on hover */
.fifth-block:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive design for tablets */
@media (max-width: 1024px) {
    .fifth-block {
        width: calc(50% - 10px); /* Two blocks per row */
        height: 60vh; /* Reduce height for tablets */
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .fifth-block {
        width: 100%; /* Full width for mobile */
        height: 50vh; /* Reduce height for mobile */
    }

    .fifth-block-content {
        top: 10px;
        left: 10px;
        padding: 5px 10px; /* Adjust padding for smaller screens */
    }

    .learn-more {
        right: 10px;
        bottom: 10px;
        padding: 8px 16px; /* Adjust padding for smaller screens */
    }

    .fifth-block-content p {
        font-size: 0.9em;
        margin-bottom: 15px; /* Reduce space for smaller screens */
    }
}



.full-size-back{
    background-image: url('images/full-size-line.png');
    background-repeat: no-repeat;
    background-size: contain;
    
}

/* faq block  */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('background-image.jpg'); /* Gradient and background image */
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}

.faq-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #fff; /* White title color */
}

.faq-divider {
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white divider color */
    margin: 10px 0;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(50, 50, 50, 0.9)); /* Black to grey gradient */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.7); /* Semi-transparent white border */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7); /* Semi-transparent white border */
    color: #fff; /* White text color */
    font-weight: bold;
}

.faq-question span {
    font-size: 1.2em;
}

.faq-toggle {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #fff; /* White toggle color */
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 15px;
}

.faq-answer p {
    margin: 15px 0;
    font-size: 1em;
    color: #fff; /* White text color */
}

.faq-item.open .faq-answer {
    max-height: 200px; /* Adjust based on content length */
}

/* why us block  */

/* Container for the 'Why Us' section */
.why-us-container {
    display: flex;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
    padding: 20px;
    margin-top: 100px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(50, 50, 50, 0.9)); /* Black to grey gradient */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.7); /* Semi-transparent white border */
    opacity: 0; /* Start hidden */
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth fade-in and slide-up */
}

/* Image styling */
.why-us-image {
    width: 40%; /* Adjust as needed */
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.8s ease; /* Smooth zoom effect on hover */
}

/* Content area */
.why-us-content {
    width: 60%; /* Takes remaining space */
    padding: 20px;
    color: #fff; /* White text color */
}

/* Title styling */
.why-us-title {
    font-size: 2em;
    margin-bottom: 15px;
    color: #fff; /* Highlight color */
    font-weight: bold;
}

/* Description text */
.why-us-description {
    font-size: 1.2em;
    line-height: 1.5;
}

/* Hover effect on image */
.why-us-container:hover .why-us-image {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* When the block becomes visible */
.why-us-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive design for tablets */
@media (max-width: 1024px) {
    .why-us-container {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
    }

    .why-us-image {
        width: 100%; /* Full width on smaller screens */
        margin-bottom: 20px; /* Space between image and content */
    }

    .why-us-content {
        width: 100%; /* Full width content */
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .why-us-title {
        font-size: 1.8em; /* Smaller title font on mobile */
    }

    .why-us-description {
        font-size: 1.1em; /* Adjust description size */
    }
}

/* connect with us  */

/* Container for 'Connect With Us' section */
.connect-with-us-container {
    position: relative;
    background: linear-gradient(to right, #333, #555); /* Dark gradient background */
    border: 2px solid rgba(255, 255, 255, 0.7); /* Semi-transparent white border */
    border-radius: 15px;
    max-width: 1200px;
    margin: 20px auto;
    padding: 40px;
    color: #fff; /* White text color */
    text-align: center;
    overflow: hidden;
    opacity: 0; /* Start hidden */
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease; /* Smooth fade-in and slide-up */
}

/* Title styling with background effect */
.connect-with-us-title {
    font-size: 3em;
    font-weight: bold;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.connect-with-us-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: black;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.6;
}

/* Content area */
.connect-with-us-content {
    font-size: 1.2em;
    margin-top: 20px;
    line-height: 1.6;
}

/* Button styling */
.connect-with-us-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background-color: #ff6f00; /* Bright accent color */
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
}

/* Hover effect for the button */
.connect-with-us-button:hover {
    background-color: #ffcc00; /* Lighter shade on hover */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* When the section becomes visible */
.connect-with-us-container.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive design for tablets */
@media (max-width: 1024px) {
    .connect-with-us-title {
        font-size: 2.5em; /* Adjusted font size */
    }

    .connect-with-us-content {
        font-size: 1.1em; /* Slightly smaller content font size */
    }

    .connect-with-us-button {
        font-size: 1.1em; /* Adjust button text size */
        padding: 12px 25px; /* Adjust padding */
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .connect-with-us-title {
        font-size: 2em; /* Smaller title font */
    }

    .connect-with-us-content {
        font-size: 1em; /* Smaller content font */
    }

    .connect-with-us-button {
        font-size: 1em; /* Smaller button text */
        padding: 10px 20px; /* Adjust padding */
    }
}

/* footer code  */

/* footer code  */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    margin-left: 60px;
    margin-right: 40px;
}

.footer-links,
.footer-logo,
.footer-social {
    flex: 1; /* Ensures equal width for each section */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    align-items: flex-start; /* Center-aligns items horizontally in the footer-links */
}
.footer-social{
    align-items: flex-end;
}


.footer-links h4 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
}

.footer-links a,
.footer-social a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 5px;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #ffcc00;
}

.footer-logo img {
    width: 250px;
}

.footer-social a img {
    width: 24px;
    height: 24px;
    margin: 5px;
}

.footer-copy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center; /* Center-aligns items vertically in mobile view */
    }

    .footer-links,
    .footer-logo,
    .footer-social {
        margin-bottom: 20px;
        flex: none; /* Prevents equal spacing in mobile view */
    }
}
