body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #e0f2fe; /* Background color for air action section */
}
.container {
    max-width: 2560px;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    flex-wrap: wrap; /* Ensure the header items wrap if they overflow */
}

header .logo {
    margin: auto;
    cursor: pointer;
}

header .logo img {
    height: 80px;
}

.navbar-desktop {
    margin: 0 auto;
}

.navbar-desktop ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    position: relative;
    cursor: pointer;
}

.navbar-desktop ul li {
    margin-left: 100px;
    position: relative;
}
.navbar-desktop ul .active{
    color: #74d0f3;
}

.navbar-desktop ul li a {
    text-decoration: none;
    color: #2e63af;
    font-weight: bold; /* Set normal font weight for the main menu items */
    display: block; /* Ensure each menu item is treated as a block element */
    text-align: left; /* Left align text */
    padding-bottom: 1px; /* Adjust spacing between main text and subtext */
    transition: color 0.2s ease; /* Smooth transition for text color */
}

.navbar-desktop ul li a span {
    font-size: 0.9em; /* Adjusted font size for the subtext */
    display: block; /* Ensure subtext is on a new line */
    font-weight: normal; /* Keep subtext normal weight */
}

.navbar-desktop ul li .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    list-style: none;
    padding: 10px; /* Adjusted padding */
    margin: 0; /* Remove default margin */
    min-width: 200px; /* Set a minimum width */
}

.navbar-desktop ul li .dropdown-content li {
    margin: 0;
}

.navbar-desktop ul li .dropdown-content li a {
    padding: 10px 20px; /* Adjusted padding */
    color: #2e63af;
    text-decoration: none;
    display: block;
    font-size: 0.9em; /* Adjust font size */
    font-weight: normal; /* Adjust font weight as needed */
}

.navbar-desktop ul li .dropdown-content li a:hover {
    background-color: rgba(116, 208, 243, 0.3); /* Adjust alpha value (0.5 for 50% opacity) */
}

.navbar-desktop ul li:hover > a {
    color: rgba(116, 208, 243, 1); /* Hover text color */
}

.navbar-desktop ul li:hover .dropdown-content {
    display: block;
}
.burger-menu {
    display: none;
}

.nav-menu-mobile {
    background-color: #333;
    position: absolute;
    top: 60px; /* Adjust based on your header height */
    right: 0;
    width: 100%;
    text-align: center;
}
.nav-menu-mobile a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
}

.nav-menu-mobile {
    display: none;
}
.hero-mobile {
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
    align-items: center;
}
.hero-mobile img{
    width: 100%;
}

.hero-mobile-text {
    position: absolute;
    left: 30%;
    flex-wrap: nowrap;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    align-items: left;
    margin-top: 20%;
}
.hero-mobile-text h1 {
    font-size: 1.8em;
    font-weight: bold;
}
.hero-mobile {
    display: none;
}

.hero {
    position: relative;
    text-align: left;
    color: white;
    margin-top: 100px; /* Adjust margin-top to prevent content from being hidden behind the fixed header */
    margin-bottom: 0px;
}

.hero img {
    width: 100%;
    height: 100;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 28.0%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.7em;
    margin: 0;
}

.hero-text p {
    font-size: 1.0em;
    margin: 10px 0;
}


.content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px; /* Adjust padding as needed */
    background-image: url('images/content-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-text {
    flex: 1;
    max-width: 90%;
    z-index: 1; /* Ensure text is above background image */
    position: relative; /* Ensure relative positioning for absolute positioning within */
    text-align: left;
    background: rgba(255, 255, 255, 0.0); /* Optional: Semi-transparent background for readability */
    padding: 50px; /* Optional: Padding for content text */
}

.content-text h2 {
    font-size: 2.5em;
    color: #2e63af;
    margin-bottom: 20px;
    margin-top: 0px;
}

.content-text p {
    font-size: 1.2em;
    color: #666;
}

.content-image{
    position: relative;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 30px;
    margin-left: 10%;
    flex: 1;
    text-align: center;
    z-index: 1; 
}

.image-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 90%;
    display: block;
}


.services-mobile {
    display: none;
}
.services {
    padding: 160px 100px; /* Increased padding to increase height */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 70px; /* Reduced vertical gap and kept horizontal gap */
    background: linear-gradient(to bottom right, white, #74d0f3); /* Gradient background */
  }
  
.service {
    position: relative; /* For positioning the text */
    width: 300px; /* Set the width */
    height: 350px; /* Fixed height */
    overflow: hidden; /* Clip any overflow */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content at the bottom */
    align-items: center; /* Center align the text */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to the service box */
    border-radius: 10px; /* Optional: rounded corners for a softer look */
    cursor: pointer;
  }
.service img {
    width: 100%; /* Make the image take the full width of the service box */
    height: 100%; /* Make the image take the full height of the service box */
    object-fit: cover; /* Ensure the image covers the area without stretching */
    position: absolute; /* Position the image absolutely */
    top: 0;
    left: 0;
    z-index: 1; /* Ensure the image is behind the text */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.5); /* Add shadow to the image */
  }
  
.service::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 99, 175, 0.4); /* Semi-transparent overlay */
    z-index: 2; /* Ensure the overlay is above the image but below the text */
  }
  .service:nth-child(1),
  .service:nth-child(2) {
    margin-bottom: 30px; /* Adjust this value to reduce the spacing */
  }

  .service h2{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.0em;
    font-weight: bold;
    margin-bottom: 5px;
    z-index: 10;
    text-align: center;
    padding: 0 10px;
    width: 100%;
}
.service:hover{
    filter: brightness(1.2); /* Adjust brightness on hover */
    transform: translateY(-3px); /* Move icon up slightly on hover */
}


.consult-services{
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px; /* Adjust padding as needed */
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.consult-services-text{
    padding: 50px;
    text-align: center;
}
.consult-services-text h2{
    font-size: 2.5em;
    color: #2e63af;
    margin-bottom: 20px;
    margin-top: 0px;
}
    
.consult-services-text li {
        font-size: 1.2em;
        color: #666;
        text-align: left;
}
.consult-services-text a{
    color:#2e63af;
    cursor: pointer;
}
.services-mobile {
    display: none;
}

.whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1005; 
    justify-content: right;
    align-items: center;
}
.whatsapp-icon a img {
    width: 50px;
    margin-left: auto;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

footer {
    background-color: #015397;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 60px; /* Adjust the gap between items as needed */
    margin-bottom: 20px;
}


.footer-nav > div {
    text-align: left;
}

.footer-nav h3 {
    color: #fff;
    font-size: 1.0em;
    margin-bottom: 5px;
    font-weight: 550; /* Reduce font weight */
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 5px;
}

.footer-nav a {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #74d0f3;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 10px 0;
}

.addresses {
    display: flex;
    flex-wrap: wrap;
    flex: 1; /* Takes up the available space */
    margin-left: 20px; /* Increase left margin for indent */
    gap: 100px;
    margin-bottom: 50px;
}
.addresses h4 {
    font-weight: 550;
}

.social-media {
    flex: 1; /* Takes up the available space */
    text-align: center;
}

.social-media a {
    cursor: pointer;
    margin-left: 10px; /* Adjusted margin between icons */
    display: inline-block; /* Ensure each icon is inline */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition */
}

.social-media a:hover {
    filter: brightness(1.5); /* Adjust brightness on hover */
    transform: translateY(-3px); /* Move icon up slightly on hover */
}
.social-media img {
    height: 30px; /* Adjust size as needed */
}
.footer-info p {
    margin: 0; /* Remove default margin */

}

.footer-info:last-of-type {
    text-align: center; /* Center align the copyright notice */
    margin-top: 20px; /* Provide some space above the copyright notice */
}
.footer-info:last-of-type p {
    margin-left: 120px; /* Ensure same left margin as address */
}

.footer-info-copyright {
    padding-top: 0;
    align-self: flex-start;
}
.horizontal-line {
    border-top: 1px solid #fff; /* Adjust the color as needed */
    margin: 30px auto; /* Adjust the margin to center and provide vertical space */
    width: 83%; /* Adjust the width as needed */
}



@media (max-width: 1250px) {
    .container{
        width: 100%;
    }
    .service{
        width: 250px;
        height: 290px;
    }

    .footer-nav{
        flex-wrap: wrap;
        padding: 30px 30px;
    }
}


@media (max-width: 1205px) {
    .container {
        width: 100%;
    }

    .hero-text {
        margin-left: 50px;
    }
    .navbar-desktop{
        margin-right: 70px;
    }
    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 20px;
    }
    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1100px){
    container{
        width: 100%;
    }

    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1125px) {
    .container {
        width: 100%;
    }

    header .logo {
        margin-left: 90px;
    }
    
    header .logo img {
        height: 70px;
    }

    .navbar-desktop{
        margin-right:70px
    }
    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 20px;
    }

    .hero-text{
        margin-left:100px;
    }
    .services {
        gap: 20px 50px;
    }
}

@media (max-width: 1020px){
    .container{
        width: 100%;
    }
    header .logo img {
        height: 65px;
    }

    .navbar-desktop{
        margin-right: 70px;
    }

    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 15px;
    }
    .content{
        flex-direction: column;
    }
}

@media (max-width: 1005px) {
    .container{
        width: 100%;
    }
    header .logo img {
        height: 65px;
    }

    .navbar-desktop{
        margin-right: 100px;
    }

    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 15px;
    }
}

@media (max-width: 974px){
    .container{
        width: 100%;
    }

    header .logo {
        margin-left: 40px;
    }
    header .logo img {
        height: 65px;
    }

    .navbar-desktop{
        margin-right: 30px;
        gap: 10px;
    }

    .navbar-desktop ul li{
        font-size: 0.8em;
        margin-inline: 10px;
    }
}


@media (max-width: 878px) {
    .container {
        width: 100%;
    }

    .navbar-desktop {
        margin-right: 10px;
    }
    
    .hero-text{
        margin-left: 70px;
        margin-bottom: 30px;
        align-items: center;
    }
    .hero-text h1{
        font-size: 2em;
        font-weight: bold;
    }
    .hero-text p{
        font-size: 0.8em;
        padding-right: 100px;
    }

    .hero img{
        width:100%;
        height: auto;
    }

    .content{
        justify-content: center;
        width: 100%;
        padding: 50px 20px;
        flex-direction: column;
    }

    .consult-services {
        justify-content: center;
        width: 100%;
        padding: 50px 20px;
        flex-direction: column;
    }

    .consult-services-text h2{
        font-size: 1.8em;
        color: #2e63af;
        text-align: center;
    }
    .consult-services-text li{
        font-size: 1em;
        color: #666;
        text-align: justify;
    }
}


@media (max-width: 768px) {
.container {
    width: 100%;
}

header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: white;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    flex-wrap: wrap; /* Ensure the header items wrap if they overflow */
}

header .logo {
    margin-left: 40px;
}
header .logo img {
    height: 65px;
}

.navbar-desktop{
    display: none;
}

.nav-menu-mobile {
    background-color: #333;
    position: absolute;
    top: 60px; /* Adjust based on your header height */
    right: 0;
    width: 100%;
    text-align: center;
}
.nav-menu-mobile a {
    display: block;
    padding: 10px 0;
    color: #fff;
    text-decoration: none;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: 100px;
    cursor: pointer;
}

.burger-menu span {
    width: 30px;
    background-color: #2e63af;
    margin: 3.0px 0;
    border-radius: 60px;
    transition: all 0.3s ease-in-out;
    align-self: center;
    transition: transform 0.2s, opacity 0.3s;

}
.burger-menu span:nth-child(1),
.burger-menu span:nth-child(2),
.burger-menu span:nth-child(3) {
    height: 2.5px; /* Standardize height */
}
.burger-menu:hover {
    color: #74d0f3;
}

.burger-menu.open span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
}
.burger-menu.open span:nth-child(2){
    opacity: 0;
}
.burger-menu.open span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
}

.nav-menu-mobile {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 45%;
    height: auto;        
    background-color: #f0f0f1;
    top: 70%;
    position: absolute;
    border-radius: 10px;
    opacity: 0.95;
    margin-left: auto;
    margin-right: 150px;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 0px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 5.9s ease-in-out
}

.nav-menu-mobile ul{
    padding: 5px 0;
}
.nav-menu-mobile ul li a {
    text-decoration: none;
    color: #2e63af;
    font-weight: bold; /* Set normal font weight for the main menu items */
    font-size: 1em;
    display: block; /* Ensure each menu item is treated as a block element */
    text-align: left; /* Left align text */
    padding-bottom: 0.5px; /* Adjust spacing between main text and subtext */
    transition: color 0.2s ease; /* Smooth transition for text color */
}
.nav-menu-mobile ul li {
    list-style: none;
    margin: 1rem 0;
 }
 .nav-menu-mobile ul li a span {
    font-size: 0.8em; /* Adjusted font size for the subtext */
    display: block; /* Ensure subtext is on a new line */
    font-weight: normal; /* Keep subtext normal weight */
}
.nav-menu-mobile a{
    padding: 10px 0;
}
.nav-menu-mobile ul li .dropdown-content li a:hover {
    background-color: rgba(116, 208, 243, 0.3); /* Adjust alpha value (0.5 for 50% opacity) */
}

.nav-menu-mobile ul li:hover > a {
    color: rgba(116, 208, 243, 1); /* Hover text color */
}

.nav-menu-mobile ul li:hover .dropdown-content {
    display: block;
}
.nav-menu-mobile.open {
    display: flex;
    max-height: 500px;
}

.hero-mobile {
    display: none;
    flex-wrap: wrap;
    padding-top: 50px;
    align-items: center;
}
.hero-mobile img{
    width: 100%;
}

.hero-mobile-text {
    position: absolute;
    left: 30%;
    flex-wrap: nowrap;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: #fff;
    align-items: left;
    margin-top: 20%;
}
.hero-mobile-text h1 {
    font-size: 1.8em;
    font-weight: bold;
}

.content{
    align-items: center;
    width: 100%;
    padding: 60px 30px;
    flex-direction: column;
    background-size: cover;
}

.content-text{
    text-align: center;
    padding: 0;
}
.content-text h2{
    font-size: 1.8em;
    color: #2e63af;
}
.content-text p{
    font-size: 1em;
    color: #666;
    text-align: center;
}

.content-image{
    position: relative;
    width: 97%;
    height: auto;
    overflow: hidden;
    padding-top: 30px;
    margin:auto;
    flex: 1;
    text-align: center;
    z-index: 1; 
}

.image-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    display: block;
}

.services {
    display: none;
}

.services-mobile {
    padding: 50px 100px; /* Increased padding to increase height */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 70px; /* Reduced vertical gap and kept horizontal gap */
    background: linear-gradient(to bottom right, white, #74d0f3); /* Gradient background */
}
.service-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(46, 99, 175, 0.4); /* Semi-transparent overlay */
    z-index: 2; /* Ensure the overlay is above the image but below the text */
    border-radius: 10px;
  }
.service-mobile {
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;    
    border-radius: 50px; 
}
.service-mobile img{
    width: 150px;
    height: 80px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to the service box */
    border-radius: 10px;
}
.service-mobile h2{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.0em;
    font-weight: bold;
    margin-bottom: 5px;
    z-index: 10;
}
.service-mobile:hover{
    filter: brightness(1.2); /* Adjust brightness on hover */
    transform: translateY(-3px); /* Move icon up slightly on hover */
}

.whatsapp-icon {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 1005; 
    justify-content: right;
    align-items: center;
}
.whatsapp-icon a img {
    width: 50px;
    margin-left: auto;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

footer {
    background-color: #015397;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 60px; /* Adjust the gap between items as needed */
    margin-bottom: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-nav > div {
    text-align: left;
}

.footer-nav h3 {
    color: #fff;
    font-size: 1.0em;
    margin-bottom: 5px;
    font-weight: 550; /* Reduce font weight */
}
.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 5px;
}

.footer-nav a {
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #74d0f3;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 10px 0;
}

.addresses {
    display: flex;
    flex-wrap: wrap;
    flex: 1; /* Takes up the available space */
    margin-left: 20px; /* Increase left margin for indent */
    gap: 100px;
    margin-bottom: 50px;
}
.addresses h4 {
    font-weight: 550;
}

.social-media {
    flex: 1; /* Takes up the available space */
    text-align: center;
}

.social-media a {
    cursor: pointer;
    margin-left: 10px; /* Adjusted margin between icons */
    display: inline-block; /* Ensure each icon is inline */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition */
}

.social-media a:hover {
    filter: brightness(1.5); /* Adjust brightness on hover */
    transform: translateY(-3px); /* Move icon up slightly on hover */
}
.social-media img {
    height: 30px; /* Adjust size as needed */
}
.footer-info p {
    margin: 0; /* Remove default margin */

}

.footer-info:last-of-type {
    text-align: center; /* Center align the copyright notice */
    margin-top: 20px; /* Provide some space above the copyright notice */
}
.footer-info:last-of-type p {
    margin-left: 120px; /* Ensure same left margin as address */
}

.footer-info-copyright {
    padding-top: 0;
    align-self: flex-start;
}
.horizontal-line {
    border-top: 1px solid #fff; /* Adjust the color as needed */
    margin: 30px auto; /* Adjust the margin to center and provide vertical space */
    width: 83%; /* Adjust the width as needed */
}
}


/**For Mobile Phones Only**/
@media (max-width: 591px) {

    .container {
        width: 100%;
    }
    header .logo {
        margin-left: 50px;
    }

    .burger-menu {
        margin-right: 50px;
        cursor: pointer;
    }
    .burger-menu span {
        width: 20px;
    }
   
    .nav-menu-mobile {
        width: 35%;
        margin-right: 60px;
        padding: 20px;
    }
    .nav-menu-mobile{
        padding: 0px 20px;
    }
    .nav-menu-mobile ul li {
        list-style: none;
        margin: 0.9rem 0;
     }
     .nav-menu-mobile ul li a span {
        font-size: 0.7em; /* Adjusted font size for the subtext */
        display: block; /* Ensure subtext is on a new line */
        font-weight: normal; /* Keep subtext normal weight */
    }
    .nav-menu-mobile ul li a {
        font-size: 0.9em;
    }
    .nav-menu-mobile.open{
        display: block;
        background-color: #f0f0f1;
        width: 50%;
        z-index: 1000;
    }
    .hero {
        display: none;
    }
    .hero-mobile {
        display: flex;
    }
    .hero-mobile-text{
        left: 35%;
    }

    .content{
        padding: 50px 00px;
    }
    
    .content-text h2{
        font-size: 1.4em;
        color: #2e63af;
    }
    .content-text p{
        font-size: 1.0em;
    }

    .services {
        display: none;
    }

    .services-mobile {
        padding: 0px 70px; /* Adjust padding as desired */
        padding-top: 35%;
        padding-bottom: 35%;
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping to make horizontal scrolling work */
        justify-content: flex-start;
        gap: 70px; /* Horizontal gap between items */
        background: linear-gradient(to bottom right, white, #74d0f3);
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Optional: Snap to each item when scrolling */
        scroll-margin-top: 10px; /* Adjust this value to offset the scroll position */
    }

    .service-mobile::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(46, 99, 175, 0.3); /* Semi-transparent overlay */
        z-index: 2; /* Ensure the overlay is above the image but below the text */
        border-radius: 10px;
      }
    
    .service-mobile {
        flex: 0 0 auto; /* Prevent flex-grow for individual items */
        position: relative;
        display: inline-block;
        text-align: center;
        cursor: pointer;
        width: 300px;
        height: 400px;
        border-radius: 50px;
        scroll-snap-align: center; /* Optional: Align each item in the center on scroll */
    }
    
    .service-mobile img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }
    
    .service-mobile h2 {
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5em;
        font-weight: bold;
        z-index: 10;
    }
    
    .service-mobile:hover {
        filter: brightness(1.2);
        transform: translateY(-3px);
    }
    
    /* Hide scroll bar on desktop for aesthetic, but allow touch scroll */
    .services-mobile::-webkit-scrollbar {
        display: none;
    }
    .services-mobile {
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    .whatsapp-icon a img {
        width: 35px;
    }  

    .footer {
        padding-left: 20px;
        padding: 0;
    }
    .footer-info{
        font-size: 0.8em;
    }
    .footer-nav h3{
        font-size: 0.8em;
    }
    
    .footer-nav ul li {
        font-size: 0.8em;
    }
    .footer-info-copyright{
        font-size: 0.6em;
    }
    .social-media img {
        height: 20px;
    }
    .addresses {
        gap: 50px;
        align-self: center;
        padding-right: 20px;
    }
}


@media (max-width: 449px) {
    .container {
        width: 100%;
    }
    header .logo{
        margin-left: 50px;
    }
    header .logo img{
        height: 50px;
    }

    .hero-mobile-text{
        left: 40%;
        font-size: 0.8em;
    }
}


@media (max-width: 450px){
    .container{
        width: 100%;
    }
    header .logo{
        margin-left: 20px;
    }
    header .logo img {
        height: 40px;
    }

    .burger-menu{
        margin-right: 20px;
    }

    .nav-menu-mobile{
        top: 65px;
    }

    .services-mobile{
        padding: 00px 70px;
        gap: 20px 30px;
        padding-top: 25%;
        padding-bottom: 25%;
    }
    .service {
        display: none;
    }
    .service-mobile::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
    .service-mobile{
        position: relative;
        display: inline-block;
        text-align: center;
        cursor: pointer;    
        border-radius: 50px; 
        width: 230px;
        height: 300px;
    }
    .service-mobile img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Add shadow to the service box */
        border-radius: 10px;
    }
    .service-mobile h2{
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.1em;
        font-weight: bold;
        margin-bottom: 5px;
    }
}



