html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:'Poppins', sans-serif;;
    background-color:#FFF
    
    
}

header {
    background-color: #f8f8f8;
}

 /* Top bar starts */
 .top-bar-container {
    display: flex;
    justify-content: flex-end; /* Align items to the right */
    padding: 10px 230px; /* Adjust padding */
    background-color: #000;
    color: #fff;
    font-size: 14px;
    align-items: center; /* Vertically center items */
}

.top-bar-container .social-icon {
    margin-left: 10px; /* Space between icons */
}

.top-bar-container .social-icon img {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-bar-container {
        padding: 10px 15px; /* Adjust padding on smaller screens */
    }
    
    .top-bar-container .social-icon img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 768px) {
    .top-bar-container {
        padding: 10px 15px; /* Adjust padding on smaller screens */
    }
    
    .top-bar-container .social-icon img {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .top-bar-container {
        padding: 10px 10px; /* Further adjust padding on very small screens */
    }
    
    .top-bar-container .social-icon img {
        width: 16px;
        height: 16px;
    }
}


/* Top bar ends */

/* Middle bar starts */
.middle-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 0px 230px; /* Adjust padding as needed */
    border-top: 2px solid #ccc;
}

.logo {
    width: 180px;
    height:auto;
}

.info {
    display: flex;
    align-items: center;
}

.opening-hours, .contact-info {
    display: flex;
    align-items: center;
    margin-left: 20px;
    text-align: left;
}

.info img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}

/* Large screens: Logo on the left, info on the right */
@media (min-width: 768px) {
    .middle-bar {
        flex-direction: row;
        justify-content: space-between;
    }


    .info {
        flex-direction: row;
        margin-left: auto; /* Align info to the right */
    }

    .info div {
        margin-left: 20px;
    }
}

/* Medium screens: Info centered and stacked vertically */
@media (min-width: 480px) and (max-width: 768px) {
    .middle-bar {
        flex-direction: column;
        align-items: center;
    }

    .info {
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
    }

    .info div{
        padding-right: 22.5px;
    }

    .info div {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Small screens: Info stacked vertically and centered */
@media (max-width: 480px) {
    .middle-bar {
        padding: 5px;
    }

    .info {
        flex-direction: column;
        align-items: center;
    }

    .info div {
        margin-left: 0;
        margin-top: 5px;
    }

    .info-text span {
        font-size: 12px;
    }
}


/* Middle bar ends */

 /* Navbar starts */
nav {
    background-color: #0c047d;
    color: #fff;
    padding: 8px 10px;
    position: relative; /* Ensure the navbar is the reference point for absolute positioning */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 20px; /* Adjusted width for visibility */
    height: 3px; /* Adjusted height for visibility */
    background-color: rgb(255, 0, 0);
    padding: 1px;
    margin-top: 1.35px;
    margin-left: 0.25px;
    margin-right: 0.25px;
    margin-bottom: 1.25px;
    /* margin: 4px 0; */
    transition: 0.4s;
    border-radius: 10px;
}

.navbar {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    justify-content: center;
}

.navbar li {
    margin: 0 10px;
}

.navbar li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 0px;
    font-size: 15px;
}

.navbar li a:hover {
    text-decoration-line: underline;
    text-decoration-color: red;
    color: #fff;
    border-radius: 10px;
    
}

.track-id {
    display: flex;
    align-items: center;
    padding: 0 230px;
}

.track-id input {
    padding: 5px 0px;
    font-size: 14px;
    border: 1px solid #ccc;
    margin-right: 5px;
}

.track-id button {
    padding: 5px 10px;
    font-size: 14px;
    border: none;
    background-color: #ff0000;
    color: white;
    cursor: pointer;
}

.track-id button:hover {
    background-color: #0056b3;
}



@media (max-width: 1024px) {
    .navbar {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 42vh; /* Full screen height */
        position: absolute;
        top: 0;
        left: -100%; /* Initially hide off-screen */
        background-color: #0c047d;
        transition: left 0.3s ease; /* Smooth slide-in effect */
        z-index: 999; /* Ensure it appears above other content */
    }

    .navbar.active {
        left: 0; /* Slide in from the left */
    }

    .navbar li {
        margin: 20px 0; /* Space out the menu items */
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1000; /* Ensure it stays above the menu */
    }

    .track-id {
        display: none;
    }
}



@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 44vh; /* Full screen height */
        position: absolute;
        top: 0;
        left: -100%; /* Initially hide off-screen */
        background-color: #0c047d;
        transition: left 0.3s ease; /* Smooth slide-in effect */
        z-index: 999; /* Ensure it appears above other content */
    }

    .navbar.active {
        left: 0; /* Slide in from the left */
    }

    .navbar li {
        margin: 20px 0; /* Space out the menu items */
        text-align: center;
    }

    .hamburger {
        display: flex;
        z-index: 1000; /* Ensure it stays above the menu */
    }

    .track-id {
        display: none;
    }
}

 /* Navbar ends */

 /* Banner section starts */
.hero-section {
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden; /* Ensures no overflow on smaller screens */
}

.hero-section img {
    width: 100%;
    height: 600px;
    object-fit: cover; /* Ensures the image covers the container */
    display: block;
    transition: transform 0.5s ease; /* Smooth transition for zoom effect */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    width: 20%;
    height: 65%;
    max-width: 700px;
    box-sizing: border-box;
}

.hero-content h3 {
    font-size: 1.2em;
    margin: 0 0 10px;
}

.hero-content p {
    font-size: 1em;
    margin: 0 0 20px;
}

.quote-button a {
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit the color of the button */
    display: block; /* Make the link cover the entire button area */
    /* width: 100%;
    height: 100%; */
}


.quote-button {

    background-color: white;
    color: rgb(11, 10, 10);
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    font-weight: bold;
    
}


.quote-button:hover {
    background-color: #0056b3;
    color: #f8f8f8;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 5px;
        width: 58%;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-section img {
        height: auto;
    }

    .hero-content h3 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .quote-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 5px;
        width: 80%; /* More width on smaller screens */
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-section img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transform: scale(1.1); /* Zoom effect */
    }

    .hero-content h3 {
        font-size: 1.0em;
    }

    .hero-content p {
        font-size: 0.6em;
    }

    .quote-button {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

 /* Banner section ends */

 /* service section starts */
#services {
    padding: 10px 20px;
    background-color: #f4f4f4;
}

.services-container {
    text-align: center;
}

.services-container h2 {
    font-size: 2em;
    margin-bottom: 1px;
    font-weight: bolder;
    
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.service-item img {
    width:100%;
    height:200px;
    
}

.service-item h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.service-item p {
    font-size: 1em;
    color: #302f2f;
    text-align:center;
}


.service-item {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin:10px;
    /* padding:20px; */
    width: 250px;
    text-align: center;
    background-color: #007bff;
}

.services-container .subtitle {
    font-size: 18px;
    color: #515050;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    
}

.services-container .subtitle::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 60%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
    border-radius: 10px;
}


#item1{
    background-color: rgb(28, 28, 139);
}

#item1 p{
    color: #f8f8f8;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

#item1 h4 {
    display: inline-block;
    position: relative;
    color: #f8f8f8;
   
}

#item1 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
    border-radius: 10px;

}

#item2{
    background-color:white;
}

#item2 p{
    color: #0e0c0c;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

#item2 h4 {
    display: inline-block;
    position: relative;
    color: #0e0c0c;
   
}

#item2 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
       border-radius: 10px;

}

#item3{
    background-color: rgb(28, 28, 139);
}

#item3 p{
    color: #f8f8f8;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}


#item3 h4 {
    display: inline-block;
    position: relative;
    color: #f8f8f8;
   
}

#item3 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
       border-radius: 10px;

}

#item4{
     background-color:white;
}

#item4 p{
    color: #0e0c0c;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

#item4 h4 {
    display: inline-block;
    position: relative;
    color: #0e0c0c;
   
}

#item4 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
       border-radius: 10px;

}


#item5{
    background-color:white;
}

#item5 p{
    color: #0e0c0c;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

#item5 h4 {
    display: inline-block;
    position: relative;
    color: #0d0c0c;
   
}

#item5 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
       border-radius: 10px;

}

#item6{
    background-color: rgb(28, 28, 139);
}

#item6 p{
    color: #f8f8f8;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

#item6 h4 {
    display: inline-block;
    position: relative;
    color: #f8f8f8;
   
}

#item6 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
       border-radius: 10px;

}

#item7{
    background-color:white;
}

#item7 p{
    color: #0e0c0c;
    text-align: center;
    font-size: 15px;
    padding: 10px;
}

#item7 h4 {
    display: inline-block;
    position: relative;
    color: #0e0c0c;
    padding: 3px;
   
}

#item7 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
    border-radius: 10px;

}

#item8{
    background-color: rgb(28, 28, 139);
}

#item8 p{
    color: #f8f8f8;
    text-align:center;
    font-size: 15px;
    padding: 10px;
}

#item8 h4 {
    display: inline-block;
    position: relative;
    color: #f8f8f8;
   
}

#item8 h4::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 50%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
       border-radius: 10px;

}

 /* service section ends*/

 /* Aboutus section starts */

.aboutus-section {
    position: relative;
    text-align: center;
    color: white;
    
}

.aboutus-section img {
    width:100%;
    height:400px;
    display: block;
    
}

.aboutus-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(10, 6, 52, 0.5); 
    padding: 20px;
    text-align: center;
    width: 100%;
    height:100%;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    
}

.aboutus-content h2 {
    font-size: 1.5em;
    margin: 0 0 10px;
    display: inline-block;
    position: relative;
    color: #f8f8f8;
    top: 30%;
}

.aboutus-content h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: rgb(255, 0, 0);
    border-radius: 10px;
}

.aboutus-content p {
    font-size: 1em;
    margin: 0 0 20px;
    position: absolute;
    top:45%;
    text-align: center; 
    padding:20px 300px;
}

@media (max-width: 1024px) {
    .aboutus-content {
        padding: 15px;
        width: 100%;
    }

    .aboutus-content h2 {
        font-size: 1.2em;
    }

    .aboutus-content p {
        font-size: 0.9em;
        padding: 5px 10px;
    }
}

@media (max-width: 640px) {
    .aboutus-content {
        padding: 10px;
        width: 100%;
        
    }

    .aboutus-section img {
        width:100%;
        height:330px;
        display: block;
        
    }

    .aboutus-content h2 {
        font-size: 0.8em;
    }

    .aboutus-content p {
        font-size: 0.6em;
    }
}


.why-choose-us {
    text-align: center;
    padding: 50px 20px;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.why-choose-us .subtitle {
    font-size: 18px;
    color: #302f2f;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    
}

.why-choose-us .subtitle::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 60%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color: rgb(255, 0, 0);
    border-radius: 10px;
}

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:20px;
}

.grid-item {
    width: 300px;
    padding: 20px;
    border: 1px solid #f4f4f4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: white;
    
}

.grid-item img {
    width: 100px;
    height: 100px;
    
}

.grid-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.grid-item h3 {
    position: relative;
    color: #333;
    padding-bottom: 10px; /* Add padding to create space for the underline */
}

.grid-item h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0; /* Position it at the bottom of the h3 element */
    transform: translateX(-50%);
    width: 30%; /* Adjust this value to change the width of the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color: rgb(255, 0, 0);
    border-radius: 10px;
}

@media (max-width: 1024px) { 
    .grid-item h3::after {
        width: 40%; /* Adjust width for smaller screens */
    }
}

@media (max-width: 768px) { 
    .grid-item h3::after {
        width: 35%; /* Adjust width for smaller screens */
    }
}

@media (max-width: 480px) { 
    .grid-item h3::after {
        width: 30%; /* Adjust width for smaller screens */
    }
}

 /* Aboutus section ends */


 /* Affiliations section starts */
.AFFILIATIONS {
    text-align: center;
    padding: 50px 20px;
}

.AFFILIATIONS h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.AFFILIATIONS .subtitle {
    font-size: 18px;
    color: #302f2f;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
    
}

.AFFILIATIONS .subtitle::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px; /* Adjust as needed for spacing */
    transform: translateX(-50%);
    width: 60%; /* Adjust this value to shorten the underline */
    height: 3px; /* Adjust for underline thickness */
    background-color:rgb(255, 0, 0);
       border-radius: 10px;
}


.airline-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    
    
}

.airline-item {
    width: 185px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color:ghostwhite
}

.airline-item img {
    width: 100px;
    height: 50px;
   
}

 /* Affiliations section ends */


  /* contactus section starts */
.Contactus-section {
    position: relative;
    text-align: left;
    color: white;
    width: 100%;
    height: auto;
    overflow: hidden; /* Ensure content does not overflow */
}

.Contactus-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 6, 52, 0.5);
    z-index: 1;
}

.Contactus-section img {
    width: 100%;
    height:600px ;
    display: block; /* Remove any extra space below the image */
      
}

.Contactus-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:white; /* Semi-transparent background */
    padding: 20px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    color:black;
    z-index: 1; /* Ensure the form is above the image */
}



.Contactus-content h2 {
    font-size: 1.5em;
    margin: 0 0 10px;
    display: inline-block;
    position: relative;
    color: #0b0b0b;
    border-bottom: 3px solid red;
    display: inline-block;
}

.Contactus-content label {
    display: block;
    margin-bottom: 5px;
    color:black;
}

.Contactus-content input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.Contactus-content .row {
    display: flex;
    justify-content: space-between;
}

.Contactus-content .row div {
    flex: 1;
    margin-right: 10px;
}

.Contactus-content .row div:last-child {
    margin-right: 0;
}

.Contactus-content input[type="submit"] {
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 15px;
}

@media (max-width:1024px) {
    .Contactus-content {
        padding: 15px;
        width: 90%;
    }

    .Contactus-content h2 {
        font-size: 1.2em;
    }

    .Contactus-content input {
        padding: 8px;
        margin-bottom: 15px;
    }

    .Contactus-content input[type="submit"] {
        padding: 10px;
    }

    .Contactus-content .row {
        flex-direction: column;
    }

    .Contactus-content .row div {
        margin-right: 0;
    }
}

@media (max-width: 640px) {
    .Contactus-content {
        padding: 10px;
        width: 95%;
    }

    .Contactus-content h2 {
        font-size: 1em;
    }

    .Contactus-content input {
        padding: 8px;
        margin-bottom: 15px;
    }

    .Contactus-content input[type="submit"] {
        padding: 10px;
    }

    .Contactus-content .row {
        flex-direction: column;
    }

    .Contactus-content .row div {
        margin-right: 0;
    }
}

/* Centered content styling */
.details {
   
    margin: 0 auto; /* Center the content */
    padding: 20px; /* Internal padding for the content */
    text-align: center; /* Center text */
    background-color: #0c047d; /* Background color for the content */
}

/* Styling for headings */
.details h1 {
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: #f8f8f8; /* Light color for better readability */
}

.details h1::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 50%;
    height: 3px;
    background-color: rgb(255, 0, 0); /* Underline color */
    border-radius: 5px;
    transform: translateX(-50%); /* Center the underline */
}

/* Styling for subheadings and paragraphs */
.details h4 {
    font-size: 1.2em;
    margin: 15px 0 5px;
    color: #f8f8f8; /* Slightly lighter color for subheadings */
}

.details p {
    font-size: 1em;
    margin: 0 0 15px;
    color: #f8f8f8;
}

/* Styling for email link */
.details a {
    color: #f8f8f8; /* White color for email link */
    text-decoration: none;
}

.details a:hover {
    text-decoration: underline; /* Underline on hover */
}

/* Responsive Design */
@media (width: 97.39%) {
    .details {
        padding: 15px;
    }

    .details h1 {
        font-size: 1.5em;
    }

    .details h4 {
        font-size: 1em;
    }

    .details p {
        font-size: 0.9em;
    }
}

@media (width:97.39%) {
    .details {
        padding: 10px;
    }

    .details h1 {
        font-size: 1.2em;
    }

    .details h4 {
        font-size: 0.9em;
    }

    .details p {
        font-size: 0.8em;
    }
}
 /* contactus section ends */

 /* map section starts */
#map {
    padding: 0;
    margin: 0 auto; /* Center horizontally */
    width: 100%; /* Full width */
    max-width: 1200px; /* Optional: Limit maximum width for larger screens */
}

.map-container {
    position: relative;
    width: 100%; /* Full width of the parent container */
    height: 0;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Optional: styling for the section */
#map h2 {
    text-align: center;
    margin: 20px 0;
    font-size: 1.5em; /* Adjust as needed */
}

/* Responsive Design */
@media (max-width: 1024px) {
    #map {
        max-width: 90%; /* Ensure full width on smaller screens */
        padding: 0 10px; /* Optional: Add some padding on smaller screens */
    }

    #map h2 {
        font-size: 1.2em; /* Adjust heading size for smaller screens */
    }
}

@media (max-width: 640px) {
    #map {
        padding: 0 5px; /* Reduce padding on very small screens */
    }

    #map h2 {
        font-size: 1em; /* Further adjust heading size for very small screens */
    }
}

 /* map sectionends */