
.row.full-height {
    flex: 1; /* Make row take up available height */
}

/* .col-md-6.full-height {
    height: 100%; Full height of its parent
    padding: 0;  Remove padding 
} */

.box {
    background-color: #f0f0f0; /* Light grey background for the boxes */
    height: 50vh; /* 50% of viewport height for each box */
    overflow: hidden; /* Hide overflow to ensure image fits within the box */
    position: relative;
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
    border: 1px solid white;
    box-sizing: border-box; 
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the box area */
    display: block; /* Remove space below the image */
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

.box:hover img {
    transform: scale(1.1); /* Zoom effect */
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity here */
    z-index: 1;
}
.box-content {
    padding: 15px;
}

.mainbox{
    background-color:#212529;
    color: #fff;
}

.inbox {
    text-align: center; /* Center text within the container */
}

.mainheading{
    font-size: 62px;

    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
    border-radius: 8px; */
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6); /* Adjust the values as needed */
    font-family: 'Ballega',Georgia, serif;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Change this based on your image for better visibility */
    font-size: 1.5rem; /* Adjust font size as needed */
    text-align: center;
    padding: 10px; /* Optional padding */
    z-index: 2; /* Ensure text is on top of the overlay */
    border-radius: 5px; /* Optional rounded corners */
    font-size: 20px;
    font-weight: 700;
}

.image-box {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the box without distortion */
}


.icon-lg {
    font-size: 18px; /* Adjust size as needed */
    padding: 6px 4px; /* Adjust padding if needed */
}

.boxes {
    position: relative;
    width: 67px;
    height: 100%;
    background-color: #000000;
    border: 2px solid #4f0100;
    border-left: none; /* Remove left border */
    border-right: none; /* Remove right border */
    border-top: none; /* Remove top border */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, border-color 0.3s;  
}

.boxes.active {
    background-color: #c80000; /* Highlight color for active state */
    border-color: #6b0101; /* Change border color to indicate active state */
    color: #fff; /* Ensure text color contrasts with the background */
}

.boxes.active .popup {
    background-color: #fff; /* Popup background color for active box */
    color: #000; /* Popup text color for active box */
}
  /* Additional CSS for boxes */
  .box-container {
    position: fixed;
    left: 0;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}


.popup {
    display: none; /* Hide the popup by default */
    position: absolute;
    top: 50%;
    left: 100%; /* Position to the right of the box */
    transform: translate(10px, -50%); /* Adjust to align the popup properly */
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: opacity 0.3s, transform 0.3s; /* Transition for smooth appearance */
}

.boxes:hover .popup {
    display: block; /* Show the popup on hover */
    color: #000000;
    transform: translateX(0) translateY(-50%); /* Move the popup into view */   
}

.icon-container {
    position: absolute;
    top: 10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px; /* Adjust spacing between icons */
    z-index: 10; /* Ensure icons are above other content */
}

@media (max-width: 1204px){
    .inbox{
        margin-left: 9%;
     }
}

/* Responsive styles for mobile screens */
@media (max-width: 768px) {
    .col-4 {
        flex: 0 0 50%; /* 2 boxes per row on mobile */
        max-width: 50%;
    }  
    .box {
        height: 30vh; /* Adjust height for mobile screens */
    }
}

@media (max-width: 488px) {
    .mainheading{
        font-size: 40px;
        font-weight: 600;  
        padding: 0px 10px;     
    }
    .logoimage{
        max-width: 20%;
    }
}

@media (min-width: 1100px) {
    .inbox{
        margin-left: 7%;
     }
}

@media (max-width: 768px) {
    .mainbox{
        margin-top: 100px;
        padding: 100px 100px;
        /* margin-bottom: 100px; */
     }
     .inbox{
        margin-top: 20px;
     }
}

@media (max-width: 576px) {
    .inbox{
        margin-left: 70px; /* Adjust aspect ratio for smaller screens */
    }
}

/* Hide icon container for larger screens */
@media (min-width: 575px) {
    .icon-container {
        display: none;
    }
}
  /* Hide social media buttons below 575px */
  @media (max-width: 575px) {
    .new-box {
        display: none;
    }
}


/* Color Picker container style */
#color-picker-container {
    position: absolute;
    top: 50%;
    right: 10px; /* Adjust this value to change the distance from the right edge */
    transform: translateY(-50%);
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    z-index: 1000; /* Ensure it's above the map */
}

#color-picker-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

#color-picker {
    width: 100%;
    height: 30px; /* Adjust size if needed */
    border: none;
    padding: 0;
    margin: 0;
}

/* Container for the color boxes */
.color-boxes {
    display: grid;
    grid-template-columns: repeat(2, 39px); /* 2 boxes per row */
    grid-template-rows: repeat(5, 39px); /* 5 rows */
    gap: 18px; /* Space between boxes */
    margin-top: 10px;
}

/* Style for each color box */
.color-box {
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */   
    cursor: pointer;   
    
}

/* Highlighted box */
.color-box.selected {
    border-color: #fff;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    border: 2px solid #000;
}
.color-box.active {
    border: 2px solid #000; /* Highlight the active color box */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); /* Optional: add a shadow */
}

  /* adjust size of color box below 975px */
  @media (max-width: 975px) {
 
    .color-boxes {
        grid-template-columns: repeat(2, 30px); /* 2 boxes per row */
        grid-template-rows: repeat(5, 30px); /* 5 rows */
        gap: 10px; 
    }
    .color-box {
        width: 30px; /* Adjust size as needed */
        height: 30px; /* Adjust size as needed */   
    }
    #color-picker-container {
        padding: 10px;
    }
}
@font-face {
    font-family: 'Ballega';
    src: url('path/to/ballega.woff2') format('woff2'),
         url('path/to/ballega.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* Add specific styles for the logo box */
.logo-box {
    height: 18vh; /* Set the desired height for the logo box */
}
/* .logo-box2 {
    background-color: #840604;
} */
/* Ensure the popup is properly positioned for the logo box */
.logo-box .popup {
    display: none; /* Adjust if needed */
}

/* Ensure the popup is properly positioned for the logo box */
.logo-box .popup {
    display: none; /* Adjust if needed */
}
.fixed-box {
    position: fixed;
    top: 17%; /* Adjust top position */
    right: 15px; /* Adjust right position */
    width: 130px; /* Adjust width */
    height: 70px; /* Adjust height */
    background-color: #f8f9fa; /* Background color (adjust as needed) */
    border: 1px solid #ccc; /* Border color (adjust as needed) */
    padding: 10px; /* Padding */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow */
    z-index: 9999; /* Ensure it is on top of other content */
}


/* Keyframes for slide-in animation */
@keyframes slideInFromBottom {
    from {
        transform: translateY(100%); /* Start from below the viewport */
        opacity: 0; /* Start as invisible */
    }
    to {
        transform: translateY(0); /* End at original position */
        opacity: 1; /* End as fully visible */
    }
}



.box-content i {
    font-size: 1.3rem; /* Adjust the size as needed */
}

/* style for change-color page */
.boxes2 {
    position: relative;
    width: 74px;
    height: 100%;
    background-color: #000000;
    border: 2px solid #4f0100;
    border-left: none; /* Remove left border */
    border-right: none; /* Remove right border */
    border-top: none; /* Remove top border */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, border-color 0.3s;  
}
.boxes2:hover {
    background-color: #000000; /* Highlight the box */
    color: #fff;
    border-color: #f7fbff; /* Optional: Change border color on hover */
}

.boxes2:hover .popup {
    display: block; /* Show the popup on hover */
    color: #000000;
    transform: translateX(0) translateY(-50%); /* Move the popup into view */   
}

/* Active state styling for boxes */
.boxes2.active {
    background-color: #4f0100; /* Highlight color for active state */
    border-color: #6b0101; /* Change border color to indicate active state */
    color: #fff; /* Ensure text color contrasts with the background */
}

/* Add specific styles for the logo box */
.logo-box3 {
    height: 18vh; /* Set the desired height for the logo box */
}

/* Ensure the popup is properly positioned for the logo box */
.logo-box3 .popup {
    display: none; /* Adjust if needed */
}

/* Add specific styles for the logo box */

.box-conten2 {
    padding: 15px;
}

.box-content2 i {
    font-size: 1.5rem; /* Adjust the size as needed */
}

a {
    text-decoration: none; /* Remove default underline */
    display: block; /* Ensure the anchor tag behaves like a block-level element */
    height: 100%; /* Ensure anchor takes the full height of its parent */
}
.image-box {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden; /* Hide overflow */
}

.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */

}

.content-box {
    background-color: #4f0100; /* Set your desired background color */
    min-height: 100vh; /* Full screen height, allows growing based on content */
    width: 100%; /* Full width */
    position: relative;
    display: flex; /* Flexbox for vertical and horizontal centering */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    padding: 20px; /* Add padding to avoid content sticking to the viewport edges */
    box-sizing: border-box;
}


.center-box {
    position: relative;
    color: #ffffff; /* Adjust text color */
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    width: 80%; /* Adjust width as needed */
    max-width: 800px; /* Set a max width to prevent the box from becoming too wide */
    box-sizing: border-box; /* Include padding in width calculation */
}

.center-box p {
    margin-bottom: 10px; /* Adjust this value as needed */
}



.center-box p {
    margin-bottom: 4px; /* Adjust this value as needed */
}
@media (max-width: 850px) {
    .center-box p{
        margin-bottom: 2px;
    }
    
    .center-box {
        width: 75%; /* Increase width for mobile to better fit content */
        max-width: none; /* Remove max-width restriction */
        padding: 25px; /* Reduce padding for smaller screens */
        margin-left: 15px;
    }
    .center-box h4 {
        font-size: 15px; /* Adjust font size for headers */
    }

    .center-box h5 {
        font-size: 15px; /* Adjust font size for headers */
    }

    .center-box h6 {
        font-size: 12px; /* Adjust font size for headers */
    }

    .center-box ul {
        padding-left: 20px; /* Ensure list items are properly indented */
    }
    .center-box p, .center-box ul {
        font-size: 13px; /* Adjust font size for paragraphs and list items */
    }
    .center-box br {
        display: none; /* Hide <br> elements on small screens */
    }
}

@media (max-width: 550px) {
    .center-box p{
        margin-bottom: 7px;
    }

    .boxes2 {
        width: 64px;
    }

    .center-box {
        width: 75%; /* Increase width for mobile to better fit content */
        max-width: none; /* Remove max-width restriction */
        padding: 15px; /* Reduce padding for smaller screens */
        margin-left: 25px;
    }
    .center-box h4 {
        font-size: 13px; /* Adjust font size for headers */
    }

    .center-box h5 {
        font-size: 12px; /* Adjust font size for headers */
    }

    .center-box h6 {
        font-size: 10px; /* Adjust font size for headers */
    }

    .center-box ul {
        padding-left: 20px; /* Ensure list items are properly indented */
    }
    .center-box p, .center-box ul {
        font-size: 11px; /* Adjust font size for paragraphs and list items */
    }
    .center-box br {
        display: none; /* Hide <br> elements on small screens */
    }
}

/* WhatsApp Icon Styling */
.whatsapp-icon {
    position: fixed;
    bottom: 130px;
    right: 33px;
    width: 40px; /* Set width */
    height: 40px; /* Set height */
    background-color: #4f0100; /* WhatsApp green color */
    color: white;
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.9); /* Adjusted shadow for better visibility */
    z-index: 9999;
    text-decoration: none;
    animation: pulse 1.5s infinite; /* Apply scaling animation */
}

.whatsapp-icon:hover {
    background-color: #ffffff; /* Darker WhatsApp green color */
    color: #4f0100;
}

/* Define the scaling animation */
@keyframes pulse {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.1); /* Scale up */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}
.facebook-icon {
    position: fixed;
    bottom: 30px;
    right: 33px;
    width: 40px; /* Set width */
    height: 40px; /* Set height */
    background-color: #4f0100; /* WhatsApp green color */
    color: white;
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.9); /* Adjusted shadow for better visibility */
    z-index: 9999;
    text-decoration: none;
}

.facebook-icon:hover {
    background-color: #ffffff; /* Darker WhatsApp green color */
    color: #4f0100;
}
.instagram-icon {
    position: fixed;
    bottom: 80px;
    right: 33px;
    width: 40px; /* Set width */
    height: 40px; /* Set height */
    background-color: #4f0100; /* WhatsApp green color */
    color: white;
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.9); /* Adjusted shadow for better visibility */
    z-index: 9999;
    text-decoration: none;
}

.instagram-icon:hover {
    background-color: #ffffff; /* Darker WhatsApp green color */
    color: #4f0100;
}
.call-icon {
    position: fixed;
    bottom: 180px;
    right: 33px;
    width: 40px; /* Set width */
    height: 40px; /* Set height */
    background-color: #4f0100; /* WhatsApp green color */
    color: rgb(255, 255, 255);
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.9); /* Adjusted shadow for better visibility */
    z-index: 9999;
    text-decoration: none;
}

.call-icon:hover {
    background-color: #ffffff; /* Darker WhatsApp green color */
    color: #4f0100;
}


@media (max-width: 550px) {
    .whatsapp-icon ,.facebook-icon,.instagram-icon,.call-icon {
        width: 32px; /* Decrease width */
        height: 32px; /* Decrease height */
        font-size: 15px; /* Decrease font size */
        right: 8%;
    }
    .facebook-icon {
        bottom: 15px; /* Adjust position */
    }

    .instagram-icon {
        bottom: 53px; /* Adjust position */
    }

    .call-icon {
        bottom: 130px; /* Adjust position */
    }
    .whatsapp-icon {
        bottom: 92px; /* Adjust position */
    }

}

.krheading {
    background-color: #f7fbff;
    padding: 15px;
    border-radius: 0px 50px 0px 0px;
    display: inline-block; /* This makes the background extend only as far as the text */
    color: #000;
}

.increasesize{
    font-size: 17px;
}

.subhead{
    color: yellow;
}

.yellow-dots {
    list-style: none; /* Remove the default bullets */
    padding-left: 0; /* Remove default padding */
}

.yellow-dots li {
    position: relative; /* Create a positioning context for the dots */
    padding-left: 20px; /* Adjust space to the left of the text */
    margin-bottom: 5px; /* Add some space between list items (optional) */
}

.yellow-dots li::before {
    content: '\2022'; /* Unicode character for bullet */
    color: yellow; /* Change the bullet color */
    position: absolute;
    left: 0; /* Position the bullet to the left of the text */
    top: 50%; /* Center the bullet vertically with respect to the text */
    transform: translateY(-50%); /* Adjust the bullet to be perfectly centered */
    font-size: 1.5em; /* Adjust the size of the bullet if needed */
}

@media (max-width: 768px) {
    .yellow-dots .increasesize{
        font-size: 13px;
    }
}
@media (max-width: 550px) {
    .yellow-dots .increasesize{
        font-size: 11px;
    }
}

.image-box2 {
    text-align: center; /* Centers the image horizontally */
}

.image-box2 img {
    max-width: 100%; /* Make the image responsive */
    height: auto; /* Maintain the aspect ratio */
    background-size: cover;
}

/* Media query for mobile screens */
@media only screen and (max-width: 550px) {
    /* Adjust the image size on smaller screens */
    .image-box2 img {
        max-width: 87%; /* Reduce image width to ensure visibility */
    }
    .image-box2 {
        margin-left: 75px; /* Centers the image horizontally */
    }
}

/* General styles for the carousel images */
.carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 2px solid #4f0100;
}

/* Specific styles for smaller screens (max-width: 768px) */
@media (max-width: 500px) {
    .carousel-inner img {
        width: 70% !important; /* Force smaller width on mobile */
        height: auto !important;
        margin-left: 89px !important;
    }
    .carousel-control-prev {
        margin-left: 77px; /* Adjust margin-left for the prev button */
    }
    .carousel-control-next {
        margin-right: 4%; /* Adjust margin-left for the prev button */
    }

    /* Optional: Reduce the height of the carousel container */
    .carousel {
        max-width: 100%;
        height: auto;
    }

    /* Adjust carousel controls size */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px !important; /* Smaller control icon size */
        height: 20px !important;
    }
}

.inbox2 {
    background-color: #4f0100;
    color: white;
    height: 90px;
    display: flex; /* Enable flexbox */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    margin: 0; /* Reset default margin */
}
.inbox2 p{
    font-size: 2.7rem; /* Adjust text size */ 
    font-weight: 700;
}

/* Basic Button Styles */
.sendbutton {
    background-color: #4f0100; /* Button background color */
    color: white; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside the button */
    font-size: 16px; /* Font size */
    cursor: not-allowed; /* Cursor when disabled */
    transition: background-color 0.3s ease; /* Smooth transition */
    border: 2px solid #ef4d45;
}

/* Disabled Button Styles */
.sendbutton:disabled {
    background-color: #6c757d; /* Background color for disabled state */
    cursor: not-allowed; /* Cursor for disabled state */
    opacity: 0.65; /* Slightly transparent */
}

/* Hover Effect */
.sendbutton:not(:disabled):hover {
    background-color: white; /* Darker background color on hover */
    color: #4f0100;
}

/* Focus Effect */
.sendbutton:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(38, 143, 255, 0.5); /* Custom focus outline */
}

/* Boxed Button Style */
.sendbutton.boxed {
    border: 2px solid transparent; /* Default border */
}

.sendbutton.boxed:not(:disabled):hover {
    border: 2px solid #0056b3; /* Border color on hover */
}

@media (max-width: 1024px) {
    .contact-form{
        margin-left: 90px;
    }
}

@media (max-width: 968px) {
    .contact-form{
        margin-left: 80px;
    }
    .inbox2 p{
        font-size: 2.0rem; /* Adjust text size */ 
        font-weight: 700;
    }
    .secondbox{
        margin-top: 30px !important;
    }
}

@media (min-width: 1200px) {
    .contact-form {
        margin-left: 4%; /* Adjust the margin as needed */
    }
}

@media (max-width: 500px) {
    .inbox2 p{
        margin: 0; /* Remove default margin */
        font-size: 1.4rem; /* Adjust text size */ 
        font-weight: 700;
        margin-left: 70px;
    }
}

/* Container to ensure images fit properly */
.destination-img1 {
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensure the container takes full width of its parent */
    padding-top: 75%; /* Set aspect ratio for the container (adjust as needed) */
    cursor: pointer; /* Changes cursor to pointer on hover */
    border: 2px solid black;
}

/* Image styles to ensure it covers the container */
.destination-img1 img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the container */
    transition: transform 0.5s ease; /* Smooth transition for hover effect */
    transform: translate(-50%, -50%);
}

/* Hover effect for scaling the image */
.destination-img1:hover img {
    transform: translate(-50%, -50%) scale(1.1); /* Adjust scale factor as needed */
}

@media (min-width: 1100px) {
    .destination-img1 {
        margin-left: 11%;
    }
}

@media (max-width: 1024px) {   
    .destination-img1 {
        width: 80%; /* Reduce the width to 90% */
        padding-top: 65%; /* Adjust aspect ratio if needed */
        margin: 0 auto; /* Center the box horizontally */
        margin-left: 21%;
    }
}

/* Media query for mobile screens */
@media (max-width: 500px) {
    .destination-img1 {
        width: 70%; /* Reduce the width to 90% */
        padding-top: 65%; /* Adjust aspect ratio if needed */
        margin: 0 auto; /* Center the box horizontally */
        margin-left: 90px;
    }
}

.contact-info {
    display: flex;
    align-items: center; /* Centers items vertically */
    margin-bottom: 25px;
}

.contact-info__icon {
    margin-right: 20px;
    display: flex; /* Ensures the icon is centered within its container */
    align-items: center; /* Centers the icon vertically */
}

.contact-info__icon i,
.contact-info__icon span {
    color: #8f9195;
    font-size: 27px;
}

.contact-info .media-body h3 {
    font-size: 18px;
    margin-bottom: 0;;
    color: #2a2a2a
}

.contact-info .media-body h3 a:hover {
    color: #1f2b7b
}

.contact-info .media-body p {
    color: #8a8a8a
}

.modal4 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

.modal-content4 {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
}

.close4 {
    position: absolute;
    top: 5px;
    right: 15px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Media query for mobile screens */
@media (max-width: 500px) {
    .modal-content4 {
        margin: auto;
        display: block;
        width: 70%;
        margin-left: 95px;
    }
}

.highlight{
    font-size: larger;
    font-weight: 700;
}

.call-icon3 {
    position: fixed;
    bottom: 180px;
    right: 33px;
    width: 40px;
    /* Set width */
    height: 40px;
    /* Set height */
    background-color: #4f0100;
    /* WhatsApp green color */
    color: rgb(255, 255, 255);
    border-radius: 30%;
    /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.9);
    /* Adjusted shadow for better visibility */
    z-index: 9999;
    text-decoration: none;
}

.call-icon3:hover {
    background-color: #ffffff;
    /* Darker WhatsApp green color */
    color: rgb(0, 0, 0);
}
@media (max-width: 550px) {
    .call-icon3 {
        width: 32px;
        /* Decrease width */
        height: 32px;
        /* Decrease height */
        font-size: 15px;
        /* Decrease font size */
        right: 8px;
        bottom: 132px;
    }
}

.contactbold{
    font-weight: 700;
}
.contactbold1{
    font-size: large;
    font-weight: 700;
}

.light-grey {
    color: lightgrey; /* Change the text color to light grey */
}
.light-grey2 {
    color: lightgrey; /* Change the text color to light grey */
}
.footer {
    background-color: #4f0100;   
}

.footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    font-size: 20px; /* Set the desired font size */
    margin-bottom: 10px;
    display: flex; /* Ensures icon and text stay on the same line */
    align-items: center; /* Vertically center-aligns the icon and text */
}

.footer-item a i {
    margin-right: 10px; /* Space between icon and text */
    font-size: 20px; /* Set icon size to match text */
}

.footer-item h4 {
    margin-left: 30px;
    font-size: 30px; /* Adjust the heading size */
}

@media (max-width: 1286px) and (min-width: 1200px) {
    .footer-item1 {
        padding-left: 100px; /* For screens between 1200px and 1284px */
        margin-top: 50px;
    }
}

@media (max-width: 1204px){
    .footerbox{
        padding-left: 9% !important;
}
}

@media (max-width: 1199px) {
    .footer-item1 {
        padding-left: 50px; /* Adjust this as needed for smaller screens */
        margin-top: 50px; /* Adjust margin for smaller screens */
    }
}

@media (min-width: 1100px) {
    .footer-item1 {
        padding-left: 150px; /* For screens larger than or equal to 1285px */
        margin-top: 50px;
    }
}
@media (max-width: 576px) {
    .footer-item1 {
        padding-left: 0px; /* Adjust this as needed for smaller screens */
        margin-top: 0px;
        padding: 0px;
    }
    .footer-custom{
        padding-left: 40px;
    }
    .contactbold1{
        font-size: 17px;
        font-weight: 700;
    }
    .light-grey {
        font-size: medium;
    }
    .light-grey2 {
        font-size: medium;
    }
}
.footer-custom {
    display: inline-flex;
    flex-wrap: wrap; /* Allow elements to wrap to the next line */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%; /* Ensure it doesn't overflow */
    box-sizing: border-box; /* Include padding and border in the element's total width */
    text-align: center; /* Ensure text is centered on each line */
    font-size: 19px; 
}

.footer-custom i {
    color: lightgrey;
    margin-right: 5px; /* Add space between the icon and the text */
    margin-top: 3px; /* Adjust top margin if needed */
}

.footer-custom a {
    margin: 0 5px;
}

@media (min-width: 1100px) {
    .footerbox{
        margin-left: 9% !important;
    }
    
}

@media (max-width: 576px) {
    .footer-custom {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: center; /* Center items */
        text-align: center; /* Center text */
    }

    .light-grey {
        margin-bottom: 5px; /* Add space below this span */
    }

    .light-grey2 {
        display: block; /* Ensure this element is on the next line */
    }
    .footer-item a {
        line-height: 30px;
        font-size: 15px; /* Set the desired font size */
        margin-bottom: 10px;

    }
    .footer-item a i {
        margin-right: 10px; /* Space between icon and text */
        font-size: 17px; /* Set icon size to match text */
    }
    .footer-item h4 {
        font-size: 20px; /* Set icon size to match text */
    }
    .footerbox{
        margin-left: 65px !important;
    }
    .footerbox1{
        padding-left: 45px !important;
    }
}

