body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

/* Styles for the navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 10vh;
    padding: 0 20px;
    background-color: #d8c6c2;
    transition: all 0.3s ease;
}

.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-links {
    position: absolute;
    bottom: 14px;
    right: 30px;
    display: flex end;
    gap: 15px;
}

.nav-links a {
    color: rgb(36, 35, 35);
    text-decoration: none;
    padding: 14px 20px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: red;
    transform: scale(1.1);
}

.nav-links a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 8px;
    left: 0;
    background-color: red;
    transition: width 0.3s;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active::before {
    width: 100%;
}

.nav-links a.active {
    color: red;
    transform: scale(1.1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 12px); /* Adjust to position below the dropdown toggle */
    left: 0;
    background-color: #d8c6c2;
    min-width: 230px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    flex-direction: column;
    font-size: small;
    font-family: Arial, Helvetica, sans-serif;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.social-icons {
    position: absolute;
    top: 15px;
    right: 50px;
    display: flex;
    gap: 10px;
}

.social-icons i {
    color: rgb(15, 14, 14);
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger i {
    font-size: 24px;
}

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 10vh;
        left: 0px;
        width: 80%;
        height: 50vh;
        background-color: #d8c6c2;
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.show {
        transform: translateX(0);
    }

   

    .nav-links a {
        padding: 8px;
        font-size: 15px;
    }

    .dropdown-content {
        position: relative;

    }

    .dropdown-content {
        position: absolute;
        top: 130%;
        left: 50%; /* Center horizontally */
        transform: translateX(-50%); /* Center the element */
        min-width: 250px;
        font-size: xx-small;
        background-color: #d8c6c2; /* Ensure background color is set */
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Add shadow for visibility */
        z-index: 1;
    }

    .social-icons {
        position: absolute;
        top: 29px;
        right: 50%;
        transform: translateX(50%);
    }

    .hamburger {
        display: block;
    }
}





/* form abn crousel css by shubham */



/* Styles for the carousel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
}

.carousel {
    display: flex;
    width: 100%;
    height: 90vh;
}

.carousel-slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.carousel-text {
    position: absolute;
    bottom: 50px;
    right: 50px;
    color: white;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

.carousel-text h1 {
    font-size: 3em;
}

.carousel-text p {
    font-size: 1.5em;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: rgb(34, 34, 34);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(200, 194, 194, 0.8);
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #f9f7f7;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active {
    background-color: red;
}

/* Media Queries */
@media (max-width: 1024px) {
    .carousel-text h1 {
        font-size: 2.5em;
    }


    .carousel-text p {
        font-size: 1.2em;
    }

    .prev, .next {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .carousel-text h1 {
        font-size: 2em;
    }

    .carousel-text p {
        font-size: 1em;
    }

    .prev, .next {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .carousel-text h1 {
        font-size: 1.5em;
    }

    .carousel-text p {
        font-size: 0.8em;
    }

    .prev, .next {
        font-size: 12px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    .carousel-dots {
        bottom: 5px;
    }
}


/* Styles for the booking form */
.booking-form {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust width as needed */
    max-width: 400px; /* Max width for larger screens */
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
    border-radius: 10px;

    
    /* Additional styles for responsiveness */
    @media (max-width: 768px) {
        width: 70%; /* Adjust width for medium screens */
    }

    @media (max-width: 576px) {
        width: 70%;
        height: 47%; /* Adjust width for smaller screens */
        padding: 15px; /* Adjust padding for smaller screens */
        top: 50%;
        left: 50%; /* Adjust vertical position for smaller screens */

        
    }

    
}
.booking-form h1 {
    font-size: 0.7em; /* Adjusted font size */
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.booking-form form {
    display: flex;
    flex-direction: column;
}

.booking-form .form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 1px; /* Adjusted margin */
}

.booking-form .form-group {
    flex: 1 0 48%; /* Adjust width for two columns layout */
    margin-bottom: 10px;
}

.booking-form .form-group.full-width {
    width: 100%;
}

.booking-form .form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.7em; /* Adjusted font size */
}

.booking-form .input-field {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 0.7em; /* Adjusted font size */
}

.booking-form .input-field.full-width {
    width: 100%;
}

.booking-form .input-field textarea {
    height: 100px;
    resize: vertical;
    font-size: 0.7em; /* Adjusted font size */
}

.booking-form .form-row button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.7em;
    background-color: rgb(242, 9, 9);
    color: white;
    cursor: pointer;
    align-self: flex-start;
}

.booking-form .form-row button:hover {
    background-color: #3e3e3f;
}


/* plane taps */

/* Styles for the main image and thumbnails */
.main-image {
    position: relative;
}

.main-image img {
    width: 100%;
    height: auto; /* Default auto height */
    display: block;
}

.image-overlay {
    position: absolute;
    top: 10px;
    right: 9px;
    color: rgb(251, 249, 249);
    padding: 20px;
    background-color: rgba(15, 14, 14, 0.8);
    border-radius: 5px;
    max-width: 320px;
    height: auto;
    text-align: left; /* Align text to the left */
}

.image-overlay h1 {
    margin: 0 auto;
    font-size: 24px;
    text-align: left; /* Align heading to the left */
}

.image-overlay p {
    margin-top: 10px;
    font-size: 12px;
    text-align: left; /* Align description to the left */
}

.thumbnails {
    position: absolute;
    
    top: 78%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 2px;
    border-radius: 45px;
}

.thumbnail-item {
    margin: 0 15px; /* Decrease margin for smaller screens */
    cursor: pointer;
    text-align: center;
}

.thumbnail-item img {
    width: 100px; /* Adjust thumbnail image size */
    height: auto;
    object-fit: cover;
    display: block;
    
    border-radius: 45px;
}

.thumbnail-item p {
    color: black;
    font-size: 12px; /* Adjust font size */
    margin-top: 5px;
}

.gallery {
    position: absolute;
    top: 125%; /* Adjust top position */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    overflow: hidden;
}

.gallery-list {
    display: flex;
    transition: transform 0.9s ease-in-out;
}

.gallery-item {
    min-width: 100%;
    box-sizing: border-box;
}

.gallery img {
    width: 100%; /* Adjust gallery image size */
    height: auto;
    display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
    .main-image img {
        height: 80vh; /* Set height to 80% of the viewport height */
    }

    .image-overlay {
        right: 20px;
        max-width: 280px;
        padding: 15px;
    }
    .thumbnails {
        top: 85%; /* Adjust top position */
    }

    .thumbnail-item {
        margin: 0 10px; /* Further decrease margin */
    }

    .thumbnail-item img {
        width: 90vh; /* Adjust thumbnail size */
    }

    .thumbnail-item p {
        font-size: 10px; /* Adjust font size */
    }

    .gallery {
        top: 150%; /* Adjust top position */
    }
}

@media (max-width: 768px) {
    .main-image img {
        height: 70vh; /* Set height to 70% of the viewport height */
    }

    .image-overlay {
        right: 10px;
        max-width: 100px;
        padding: 10px;
    }
    .thumbnails {
        top: 90%; /* Adjust top position */
    }

    .thumbnail-item {
        margin: 0 5px; /* Further decrease margin */
    }

    .thumbnail-item img {
        width: 80px; /* Adjust thumbnail size */
    }

    .thumbnail-item p {
        font-size: 8px; /* Adjust font size */
    }

    .gallery {
        top: 170%; /* Adjust top position */
    }
}

@media (max-width: 576px) {
    .main-image img {
        height: 33vh; /* Set height to 60% of the viewport height */
    }

    .image-overlay {
        top: 5px;
        right: 5px;
        max-width: 100px;
        height: auto;
        padding: 8px;
    }
    .thumbnails {
        top: 75%; /* Adjust top position */
    }

    .thumbnail-item {
        margin: 0px 3px; /* Further decrease margin */
    }

    .thumbnail-item img {
        width: 70px;
        height: 23px; /* Adjust thumbnail size */
        
    }

    .thumbnail-item p {
        font-size: 6px; /* Adjust font size */
    }

    .gallery {
        top: 115%;
        left: 24%; /* Adjust top position */
    }
}

@media (max-width: 1024px) {
    .image-overlay {
        max-width: 280px;
        max-height: 160px; /* Adjusted maximum height */
        padding: 15px;
    }

    .image-overlay h1 {
        font-size: 20px; /* Adjust heading font size */
    }

    .image-overlay p {
        font-size: 12px; /* Adjust paragraph font size */
    }
}

@media (max-width: 768px) {
    .image-overlay {
        max-width: 240px;
        max-height: 140px; /* Adjusted maximum height */
        padding: 10px;
    }

    .image-overlay h1 {
        font-size: 18px; /* Adjust heading font size */
    }

    .image-overlay p {
        font-size: 10px; /* Adjust paragraph font size */
    }
}

@media (max-width: 576px) {
    .image-overlay {
        max-width: 200px;
        max-height: 150px; /* Adjusted maximum height */
        padding: 8px;
    }

    .image-overlay h1 {
        font-size: 16px; /* Adjust heading font size */
    }

    .image-overlay p {
        font-size: 8px; /* Adjust paragraph font size */
    }
}

/* our services card */

/* Base styles for service cards */
.service-card {
    position: relative;
    width: 100%; /* Adjust width to fit container */
    max-width: 400px; /* Limit maximum width for larger screens */
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    transition: border 0.3s, background 0.3s, color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background-color: white;
}

/* Adjust grid layout for smaller screens */
@media (max-width: 1200px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr; /* Single column for smaller screens */
    }

    .service-card {
        max-width: none; /* Allow cards to expand to full width */
    }
}

/* Ensure images maintain aspect ratio */
.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Responsive text overlay */
.service-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 79%;
    background-color: rgba(76, 74, 74, 0.7);
    color: white;
    padding: 20px;
    text-align: left;
}

/* Show text overlay on hover */
.service-card:hover .service-text {
    display: block;
    top: 60%;
}

/* Center-align text and adjust padding for .our-services */
.our-services {
    text-align: center;
    padding: 20px;
}

/* Header styles */
.our-services h1 {
    margin-bottom: 40px;
    color: red;
}

/* Grid layout for service cards */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

/* Card header styles */
.card-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px 10px 0 0;
    transition: background-color 0.3s;
}

.card-header h1 {
    margin: 0;
    padding: 10px;
    font-size: 18px;
    color: white;
    text-align: center;
    transition: color 0.3s;
}

/* Service text overlay styles */
.service-text {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 79%;
    background-color: rgba(76, 74, 74, 0.7);
    color: white;
    padding: 20px;
    text-align: left;
}

.service-text p {
    margin: 10px 0;
}

.service-text a {
    color: white;
    text-decoration: underline;
}

/* Hover effect styles */
.service-card:hover .card-header {
    background-color: red;
}

.service-card:hover .service-text {
    display: block;
    top: 60%;
}

/* Responsive image styles */
.our-services img.main-image {
    width: 30%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 10px;
}

@media (max-width: 1200px) {
    .service-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
         /* Adjust the gap between cards */
    }
}

@media (max-width: 768px) {
    .service-cards {
        grid-template-columns: 1fr; /* Single column layout */
    }
}



/* fuelling services  */

/* Default styles (unchanged) */
.image-banner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-banner img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.1;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: rgb(6, 6, 6);
    z-index: 1;
}

.banner-content h1,
.banner-content p {
    margin: 0;
    padding: 0;
    margin-left: 5%;
}

.banner-content h1 {
    font-size: 2em;
    margin-bottom: 35px;
}

.banner-content p {
    font-size: 1em;
    margin-bottom: 20px;
}

.view-more {
    position: absolute;
    bottom: 25px;
    right: 90px;
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 45px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1;
}

.view-more:hover {
    background-color: darkred;
}

/* Media queries for responsiveness */
@media screen and (max-width: 768px) {
    .image-banner img {
        width: 100%; /* Ensure image width is 100% of container */
        height: auto; /* Maintain aspect ratio */
    }

    .banner-content {
        left: 10px;
        width: calc(100% - 20px); /* Adjust width to fit container */
        text-align: center;
    }

    .banner-content h1 {
        font-size: 1.8em; /* Smaller font size */
        margin-bottom: 25px;
    }

    .banner-content p {
        font-size: 0.9em; /* Smaller font size */
        margin-bottom: 15px;
    }

    .view-more {
        bottom: 10px;
        right: 10px;
        padding: 8px 16px; /* Smaller padding */
        font-size: 0.8em; /* Smaller font size */
    }
}

@media screen and (max-width: 480px) {
    .image-banner img {
        width: 100%; /* Ensure image width is 100% of container */
        height: 45vh; /* Maintain aspect ratio */
    }

    .banner-content {
        font-size: 0.8em; /* Even smaller font size */
    }

    .banner-content h1 {
        font-size: 1.5em; /* Further reduced font size */
        margin-bottom: 20px;
    }

    .banner-content p {
        font-size: 0.8em; /* Even smaller font size */
        margin-bottom: 10px;
        margin-right: 15px;
    }

    .view-more {
        padding: 60px 12px; /* Smallest padding */
        font-size: 0.7em; /* Smallest font size */
        left: 10%;
        right: 20%;
    }
}

/* Default styles */
.image-banner1 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-banner1 img {
    width: 100%; /* Ensure the image fills its container */
    height: auto; /* Maintain aspect ratio */
    display: block;
    opacity: 0.1;
}

.banner-content1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgb(6, 6, 6);
    z-index: 1;
    width: 80%; /* Adjust as needed */
    padding: 20px; /* Optional: Add padding */
    border-radius: 10px; /* Optional: Add border-radius */
}

.banner-content1 h1,
.banner-content1 p {
    margin: 0;
    padding: 0;
}

.banner-content1 h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.banner-content1 p {
    font-size: 1em;
    margin-bottom: 20px;
}

.view-more {
    position: absolute;
    bottom: 25px;
    right: 90px;
    padding: 10px 20px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 45px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 1;
}

.view-more:hover {
    background-color: darkred;
}

.corner-image-container {
    position: absolute;
    top: 12%;
    right: 1%; /* Adjust right position */
    width: 30%; /* Adjust width as needed */
}

.corner-image-container img {
    width: 100%;
    height: auto;
    max-height: 40vh; /* Limit max height to maintain aspect ratio */
    object-fit: contain;
    opacity: 1;
}

/* Media queries for responsiveness */
@media screen and (max-width: 1024px) {
    .image-banner1 {
        height: 400px; /* Adjust height for screens smaller than 1024px */
    }

    .banner-content1 {
        width: 90%; /* Adjust width for smaller screens */
    }

    .banner-content1 h1 {
        font-size: 1.8em; /* Reduce font size */
        margin-bottom: 20px;  /* Adjust margin */
    }

    .banner-content1 p {
        font-size: 0.8em; /* Reduce font size */
        margin-bottom: 20px;
        margin-right: 10px;
        margin-left: 10px; /* Adjust margin */
    }

    .view-more {
        bottom: 20px; /* Adjust position */
        right: 70px; /* Adjust position */
        padding: 8px 16px; /* Smaller padding */
        font-size: 0.9em; /* Smaller font size */
    }

    .corner-image-container {
        top: 5%; /* Adjust top position for smaller screens */
        right: 5%; /* Adjust right position */
        width: 40%; /* Adjust width as needed */
    }
}

@media screen and (max-width: 768px) {
    .image-banner1 {
        height: 300px; /* Adjust height for screens smaller than 768px */
    }

    .banner-content1 {
        width: 95%; /* Further adjust width for smaller screens */
        padding: 15px; /* Adjust padding */
    }

    .banner-content1 h1 {
        font-size: 1.5em; /* Further reduce font size */
        margin-bottom: 15px; /* Adjust margin */
    }

    .banner-content1 p {
        font-size: 0.8em; /* Further reduce font size */
        margin-bottom: 15px; /* Adjust margin */
        
    }

    .view-more {
        bottom: 15px; /* Adjust position */
        right: 50px; /* Adjust position */
        padding: 6px 12px; /* Smallest padding */
        font-size: 0.8em; /* Smallest font size */
    }

    .corner-image-container {
        top: 2%; /* Adjust top position for smaller screens */
        right: 2%; /* Adjust right position */
        width: 50%; /* Adjust width as needed */
    }
}

@media screen and (max-width: 480px) {
    .image-banner1 {
        height: 200px; /* Adjust height for screens smaller than 480px */
    }

    .banner-content1 {
        width: 100%; /* Full width for smallest screens */
        padding: 10px; /* Further reduce padding */
    }

    .banner-content1 h1 {
        text-align: center;
        font-size: 1.2em; /* Further reduce font size */
        margin-bottom: 10px; /* Further adjust margin */
    }

    .banner-content1 p {
        font-size: 0.6em; /* Further reduce font size */
        margin-bottom: 10px; /* Further adjust margin */
        margin-left: 40px;
        margin-right: 30px;
    }


    .view-more {
        bottom: 10px; /* Adjust position */
        right: 30px; /* Adjust position */
        padding: 4px 8px; /* Smallest padding */
        font-size: 0.7em; /* Smallest font size */
    }

    .corner-image-container {
        top: 2%; /* Adjust top position for smaller screens */
        right: 2%; /* Adjust right position */
        width: 40%; /* Full width for smallest screens */
        display: block; /* Ensure the corner image is displayed */
    }

    .corner-image-container img {
        width: 100%;
        height: 30vh;
        
    }
}
@media screen and (max-width: 480px) {
    /* Other styles for smaller screens */

    .corner-image-container {
        display: none; /* Hide the corner image container on screens smaller than 480px */
    }
}





/* General Footer Styling */
.footer {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
    color: white;
}

.footer-column {
    flex: 1;
    margin: 0 40px;
}

.footer-column img {
    width: 160px;
    margin: 10px;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 8px 0;
    margin-top: 20px;
    margin-left: 40px;
    transition: color 0.3s; /* Add transition effect */
}

.footer-column a:hover {
    color: red; /* Change color on hover */
    
        color: red;
        transform: scale(1.1); /* Make text bigger on hover */
    
}

.footer-column input {
    padding: 8px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.footer-column button {
    padding: 10px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 45px;
    transition: background-color 0.3s; /* Add transition effect */
}

.footer-column button:hover {
    background-color: darkred; /* Change color on hover */
}

.social-icons1 {
    display: flex;
    justify-content: flex-end; /* Align icons to the right */
    position: relative; /* Ensure proper positioning */ 
    right: 12%;
}

.social-icons1 i {
    font-size: 20px;
    cursor: pointer;
    margin: 0 2px; /* Adjusted margin between icons */
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column; /* Stack columns vertically */
        align-items: center; /* Center align items */
        text-align: center; /* Center align text */
    }

    .footer-column {
        flex: 1 0 auto;
        margin: 10px 0;
        text-align: center;
    }

    .footer-column img {
        max-width: 120px; /* Adjust logo size for smaller screens */
    }

    .social-icons1 {
        justify-content: center; /* Center align social icons */
        margin-top: 20px;
    }

    .footer-column a {
        display: inline-block; /* Display links inline */
        margin: 5px 10px; /* Adjust margin for links */
        font-size: 12px; /* Adjust font size for smaller screens */
    }

    .footer-column p,
    .footer-column button {
        width: 100%; /* Make paragraphs and buttons full width */
        font-size: 10px; /* Adjust font size for smaller screens */
    }

    .footer-column input[type="email"] {
        width: 100%; /* Make input full width */
        margin-bottom: 10px; /* Adjust margin for input */
    }

    .footer-column button {
        height: 30px; /* Adjusted height for button on smaller screens */
        width: auto; /* Allow button width to adjust naturally */
    }
}










