

:root{

 --footer-bottom-text-color: #1f3a52;
   /* AD section specific colors */
    --ad-width: 170px;
    --ad-height: 205px;
    --ad-bg-overlay: rgba(0, 0, 0, 0.7);
    --ad-heading-color: white;
    --ad-paragraph-color: white;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #1f3a52;
    color: #333;
    height: 100%;
    /* Ensure full page height */
    overflow-y: auto;
    /* Ensure vertical scrolling is enabled */
    scroll-behavior: smooth;
    /* Smooth scrolling for better UX */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
    width: 100%;
    /* Ensure the body does not exceed the viewport width */
}
body::before {
    content: '';
    position: fixed;
    /* Use fixed positioning to make the background cover the entire page */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1f3a52, #38618d, #acc8df);

    background-size: 300% 300%;
    opacity: 1;
    /* Make the background image faint */
    z-index: -1;
    /* Position the background behind the content */
    pointer-events: none;
    /* Prevent the background from interfering with interactions */
}
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-5px);
    }

    40% {
        transform: translateX(5px);
    }

    60% {
        transform: translateX(-5px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/* Scrollbar Styling */
body::-webkit-scrollbar {
    width: 5px;
    /* Width of the scrollbar */
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Background color of the track */
    border-radius: 10px;
    /* Rounded corners for the track */
}

body::-webkit-scrollbar-thumb {
    background: #1f3a52;
    ;
    /* Color of the scrollbar */
    border-radius: 10px;
    /* Rounded corners for the thumb */
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Darker color when hovered */
}

/* Header Styling */
header {
    color: white;
    padding: 10px 21px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-color);
    transition: transform 0.3s ease-in-out;
    margin-top: -20px;
    /* Add this line */

}

.social-media-icons {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.social-media-icons a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
}

.social-media-icons a:hover h2 {
    animation: shake 0.5s forwards;
}
.logo-container {

    display: flex;
    align-items: center;
    margin-right: 50px;
    margin-left: 50px;
    /* Add some margin to separate the logo from the nav */
    flex-shrink: 0;
    /* Prevent it from shrinking on small screens */
}

.logo-video {
    width: 150px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

nav {
    flex: 1;
    /* Take up the remaining space */
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    /* Prevent wrapping */
    transition: transform 0.3s ease-in-out;

}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;

    /* Adjust as needed */
    transition: opacity 0.5s ease-in-out;
}

.nav-links.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

.nav-links li {
    margin: 0.5rem;
}

.nav-links li a {
    color: var(--text-muted);
    font-family: 'Nunito', sans-serif;
    font-size: 14.2px;
    font-weight: 200;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    transform: scale(1.1);
    color: #acc8df;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 15px;
    border-color: var(--link-underline);
}


.logo-container:hover {
    animation: shake 0.5s ease-in-out;
}




/*FORM SECTION*/
.form-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
  }
  
  .form-slide-left.form-animate {
    opacity: 1;
    transform: translateX(0);
  }
.form-section {

    display: flex;
    align-items: flex-start;
    /* Align items to the top */
    justify-content: center;
    min-height: 100vh;
    /* Start with viewport height, expand as needed */
    border-radius: 8px;
    box-sizing: border-box;
    margin: 0 auto;
    /* Centers the section horizontally */
    max-width: 1270px;
    /* Sets a fixed width for the section */
    padding: 20px;
    /* Keeps internal spacing */
    
    background: #1f3a52;

}
.text-side {
    opacity: 0;
    transform: translateY(-50px);
    /* Slide from top */
    transition: all 0.8s ease-out;
}

.text-side.slide-in {
    opacity: 1;
    transform: translateY(0);
}

.serif {
    font-weight: 500;
    font-style: italic;
    font-family: Newsreader, "Times New Roman", serif;
    font-size: 70px;
    color: #ffffff;
    margin-top: -15px;
    /* Optional: for tighter visual spacing */
    margin-left: 40px;
}

.text-side {
    font-size: 38px;
    color: #ffffff;
    font-weight: 200;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    margin-left: 45px !important;
    margin-top: 250px;
    white-space: nowrap;
    line-height: 1.1em;
}


.form-section h2 {
    text-align: center;
}

.form-section .form-container {
    margin: 0 auto;
    margin-top: 50px;
}

.form-container {

    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 600px;
    min-height: 430px;
    /* Initial height for shorter content */
    max-height: none;
    margin-top: 40px;
    ;
    background: linear-gradient(135deg, #1f3a52, #38618d);
    background-size: 300% 300%;
    overflow: auto;
    /* Allows scrolling if content exceeds viewport height */

}

/* Keyframes for animating the gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/*****************************************PROGRESS BAR*/
.progress-bar-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.progress-bar {
    height: 5px;
    background-color: #ccc;
    width: 18%;
}

.progress-bar.active {
    background-color: #4CAF50;
}

.help-text {
    font-size: 1.125rem;
    text-align: center;
    color: whitesmoke;
}

.intro-text {
    font-size: 1rem;
    margin-bottom: 60px;
    color: white;
}


/*QUESTION*/
.question {
    margin-bottom: 20px;
    color: whitesmoke;
}

.question p {
    font-weight: bold;


}

.question label {
    font-weight: bold;
}

.question select,
.question input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.nav-btn {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #1f3a52;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
     border: black solid; /* button edge style */ 
    border-style: outset;/* button edge style */
  
}

.nav-btn:hover {
    background-color: #45a049;
}

.info-container {
    background-color: #e7f3fe;
    /* Light blue background */
    padding: 15px;
    margin-top: 50px;
    /* Space above the container */
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* Space between icon and text */
    font-family: Arial, sans-serif;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    /* Optional: To match form width */
}

.info-icon {
    color: #007bff;
    /* Blue info icon */
    font-size:  1.125rem;
    margin-top: 3px;
    /* Adjust icon vertical alignment */
}

.info-text {
    color: #333;
    /* Dark text */
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

/*#region**********************************************REVIEW Section Styling************************/
#t-review {
    position: relative;
    /* Needed for absolute positioning inside */
    padding: 40px 1.25rem;
    background-color: #f4f4f4;
    color:#1f3a52;
    text-align: center;
    border-radius: 70px;
    background: transparent;
    background-size: 300% 300%;
    margin-top: 10px;


}


/* Container for all the review cards */
.review-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}


/* Apply the animation every time it enters the viewport */
.review-container.show {
    opacity: 1;
    transform: translateX(0);
}
.review-card.left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.review-card.left.animate {
  opacity: 1;
  transform: translateX(0);
}

.review-card.top {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s ease-out;
}

.review-card.top.animate {
  opacity: 1;
  transform: translateY(0);
}

.review-card.right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.review-card.right.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Review Card Styling */
.review-card {
    position: relative;
    /* Enable absolute positioning inside */
    background:  #fefefb;
    background-size: 300% 300%;
    padding: 1.25rem;
    width: calc(33.33% - 1.25rem);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: gradientMove 12s ease infinite;
    overflow: hidden;
    /* So overlay doesn’t spill out */
}

/* Overlay layer */
.t-review-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    /* Semi-transparent white */
    z-index: 0;
    border-radius: 8px;
}

.review-author {
    display: flex;
    align-items: center;
    /* Vertically center image and text */
    justify-content: flex-start;
    /* Align everything to the left */
    gap: 10px;
    /* Space between image and name */
    width: 100%;
    /* Ensure it spans full card width */
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
   
}

.review-author img {
    width: 40px;
    /* Or desired avatar size */
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.review-author p {
    margin: 0;
     font-size: 0.875rem;
    font-weight: 500;
     color:#1f3a52;
}

.rating-stars {
    color: var(--advert-highlight);
    font-size: 1.5rem;
  margin-left:-230px !important;
    
}
/* Keyframes for animating the gradient */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Blockquote Styling */
.review-text {
    font-style: italic;
    font-size: 1rem;
    color:#1f3a52 !important;
    margin-bottom: 0.9375rem;

}
.serif2 {
    font-weight: 500;
    font-style: italic;
    font-family: Newsreader, "Times New Roman", serif;
    font-size: 4em;
    color: #ffffff;
    margin-top: -20px;
    /* Optional: for tighter visual spacing */
    margin-left: 45px;
} 


/*#endregion*/



/* Styles for the question label */
.question-label {
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
    font-size: 1.2em;
}

/* Styles for the checkbox list */
.checkbox-list {
    list-style: none;
    /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.checkbox-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* Adds spacing between items */
    gap: 20px;
    /* Adjusts space between checkbox and text */
}

.checkbox-list li {
    display: grid;
    grid-template-columns: 20px auto;
    /* Fixed width for checkbox and flexible width for text */
    align-items: center;
    column-gap: 170px;
    /* Adds consistent space between checkbox and text */
}

/* Optional: Adjust font size and line height for better readability */
.checkbox-list label {
    font-size: 1em;
    line-height: 1.5;
    white-space: nowrap;
    /* Ensures label text does not wrap */
}

.sub-btn {
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/*#region Advert Screen****************************/
.ad-container {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    width: var(--ad-width);
    height: var(--ad-height);
    z-index: 1000;
    overflow: hidden;
    background-color: transparent;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Main Ad Box */
.ad {
    position: absolute;
    right: -300px;
    /* Off-screen initially */
    opacity: 0;
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    display: none;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Slight background for contrast */
    padding: 2px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Image Container */
.ad {
    position: absolute;
    right: -300px;
    /* Off-screen initially */
    opacity: 0;
    transition: right 0.5s ease-in-out, opacity 0.5s ease-in-out;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: var(--ad-bg-overlay);
    /* Slight background for contrast */
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/* Image Container */
.ad-image-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Adjust ratio as needed */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.ad img {
    max-width: 100%;
    /* Ensure image fits within the container */
    max-height: 80%;
    /* Prevents stretching */
    object-fit: cover;
    /* Keeps image proportional */
    border-radius: 5px;
    margin-top: -12px;
}

/* Text Container */
.ad-content {
    width: 100%;
    height: 35%;
    /* Remaining space for text */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ad-content h3 {
    font-size: 0.875rem;
    margin-bottom: 2px;
    color: var(--ad-heading-color);
    white-space: normal;
    word-wrap: break-word;
    margin-top: 13px;
}

.ad-content p {
    font-size: 0.875rem;
    color: var(--ad-paragraph-color);
    white-space: normal;
    word-wrap: break-word;
}

/* Show ad */
.ad.show {
    right: 0 !important;
    opacity: 1 !important;
    display: flex !important;
}

/* Hide ad */
.ad.hide {
    right: -300px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

.ad-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.ad-link:hover {
    cursor: pointer;
    opacity: 0.95;
}



/*#endregion Advert Screen****************************/

/* Custom Modal styles */
.custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    justify-content: center;
    align-items: center;
    z-index: 1050; /* Ensure it is on top of other elements */
  }
  
  .custom-modal-content {
    background-color: #fff;
    border-radius: 8px;
    width: 70%;
    max-width: 300px;
    padding: 15px;
    text-align: center;
  }
  
  .custom-modal-header {
    background-color: #dc3545;
    color: white;
    padding: 10px;
    border-radius: 8px 8px 0 0;
  }
  
  .custom-modal-footer {
    padding: 10px;
    text-align: center;
  }
  
  .custom-modal-footer .btn {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
  }
  
  .custom-modal .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.25rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width:50px !important;
  }
  .custom-modal .close-btn:hover {
    color: black;
  }
  
  .custom-modal-header.bg-danger {
    background-color: #dc3545;
  }
  
  .custom-modal-header.bg-success {
    background-color: #28a745;
  }
  
  .custom-modal-body {
    padding: 10px;
    font-size: 1rem;
  }
  .custom-modal-header h5 {
    font-size: 1.5rem; /* Increased font size */
    margin-left: 10px; /* Move the title a bit to the left */
    text-align: left; /* Align the title to the left */
    font-weight: bold; /* Make the font bold */
  }
  
  .custom-modal-header.bg-success h5 {
    font-size: 1.5rem; /* Same font size for success modal */
    margin-left: 10px; /* Align to the left */
    text-align: left;
    font-weight: bold;
  }
  .custom-modal-footer .btn {
    width: auto; /* Adjust button width to fit content */
    padding: 6px 12px; /* Reduce padding to make the button smaller */
    margin-top: 10px;
    font-size: 0.875rem; /* Reduce font size for the button */
  }

  /*#region RANGER SECTION*********************************************RANGER*************************/
/* General Styles */

.result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.result-header p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.0rem;
    font-family: sans-serif;
    line-height: 1.4em;
}

.result-header h2 {
    font-size: 2.375rem;
    font-weight: 300;
    line-height: 1.1em;
    color: white;
}

.serif1 {
    font-weight: 200;
    font-style: italic;
    font-family: serif;
    margin-left: 0.2rem;
    /* reduce or remove margin */
}

#ranger-section {
    margin-top: 2px !important;
    border-radius: 90px;
    background: linear-gradient(135deg, #1f3a52, #38618d, #acc8df);
    background-size: 300% 300%;
    height: 50%;
    /*animation: gradientMove 8s ease infinite alternate;*/
}

.rating-stars {
    font-size: 1.5rem;
    color: #afaf1d;
    margin-top: 10px;
}


.ranger-flex-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px !important;
    /* spacing between text and box */
    padding: 40px 0;
    flex-wrap: wrap;
    /* mobile responsiveness */
    margin-left: 40px;
    /* push the box farther right */
}

.text-side {
    color: white;
    width: 380px;
    font-family: 'Nunito', sans-serif;
    text-align: left;
    margin-left: 5px;
}

.text-side h2 {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1.3;
}

.text-side .underline {
    width: 330px;
    height: 3px;
    background-color: white;
    margin: 10px 0 15px;
}

.text-side p {
    font-size: 0.877rem;
    line-height: 1.6;
}

.ranger-centered-box {
    width: 400px;
    height: 400px;
    background-color: rgb(196, 190, 190);
    border-radius: 12px;
    position: relative;
    overflow: visible;
}






.ranger-content {
    width: 100%;
    padding: 50px 0;
    background: url("../assets/map2.jpg") no-repeat center center;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    border-radius: 20px;
    position: relative;
    /* Necessary for positioning the overlay */
    overflow: hidden;
    /* Prevents the overlay from going outside the container */
}

/* Dark overlay */
.ranger-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Dark overlay with transparency */
    border-radius: 20px;
    /* Match the border radius of the content */
    z-index: 1;
    /* Ensures overlay is on top of the image */
}

/* Make sure the text stays on top of the overlay */
.ranger-content>* {
    position: relative;
    z-index: 2;
    /* Text is above the overlay */
}
.profile-cards {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top:75px;
height:40%;
}

.profile-card {
  width: calc(33.33% - 20px);
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;

}

.profile-image {
  height: 210px;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit:cover;
}

.profile-content {
  padding: 20px;
}

.profile-content h2 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
  margin-top:2em;
  font-weight: 800;
}

.divider1 {
  height: 2px;
  background-color: #1f3a52;
  margin-bottom: 20px;
}

.profile-content p {
  font-size: 16px;
  color: #666;
}
.read-more-btn {
  background-color: black; 
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  margin-left:240px;
  margin-top:-40px;
  position:absolute;
   border: black solid; /* button edge style */ 
  border-style: outset;/* button edge style */
  

}

.read-more-btn:hover {
  background-color: #3e8e41;
}

.icon-container {
  position: absolute;
  top: 177px;
  left: 10%;
  transform: translateX(-50%);
  background-color: #0d6efd;
  border-radius: 50%;
  border: black solid; /* button edge style */ 
  border-style: outset;/* button edge style */
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  font-size: 20px;

}

.icon-container i {
  color: white;
}




/***********************************************TEAM MEMBERS***********************************************/
#ourtherapist {
    background-color: #1f3a52;
    color: white;
    padding: 50px 20px;
    margin-top: -30px;
}


.team-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Forces 4 columns */
    gap: 30px;
    margin: 40px 0;
    text-align: center;
}


.member-card {
    background-color: #2c4a63;
    padding: 20px;
    border-radius: 10px;
     border: black solid; /* button edge style */ 
    border-style: outset;/* button edge style */
}

.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: black solid; /* button edge style */ 
    border-style: outset;/* button edge style */
}

.member-card h4 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
}

.member-card p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.stars {
    color: gold;
    font-size: 1.0rem;
}


.toggle-button {
   
  text-align: center;
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


#toggle-btn {
    background-color: #1f3a52;
    color: #fff;
    padding: 10px 20px;
     border: black solid; /* button edge style */ 
    border-style: outset;/* button edge style */
    border-radius: 25px;
    cursor: pointer;
}

#toggle-btn i {
    margin-left: 10px;
}

.header {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.serif1 {
    font-weight: 200;
    font-style: italic;
    font-family: serif;
    margin-left: 0.1rem;
    font-size: 1.6em;
    /* reduce or remove margin */
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    font-weight: 200;
}

.underline {
    width: 100px;
    height: 4px;
    background-color: #fff;
    margin: 10px auto 20px;
    border-radius: 2px;
}

/* Styling the paragraph */
.intro p {
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}
.prof-slide-fade {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.prof-slide-fade.prof-animate {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}
/*#endregion Team Members/

/*#region GLOBAL REACH SECTION*********************************************GLOBAL REACH*************************/
/* General Styles */

.global-reach {
    font-size: 1.5rem;
    /* Reduced font size */
    margin-bottom: 20px;
    color: white
}

.sections {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.section-left,
.section-middle,
.section-right {
    width: 30% !important;
    /* Each section takes up 30% of the width */
    padding: 20px;
}

.value {
    font-size: 2.5rem;
    /* Large font for the value */
    font-weight: bold;
    color: white
}

.word {
    font-size: 1rem;
    margin-top: 10px;
    color: white
}

.rolling-container {
    display: inline-flex;
    overflow: hidden;
    height: 1em;
    line-height: 1em;
    vertical-align: middle;
    font-size: 5rem;
    /* Increased font size */
    font-weight: bold;
    color: white
}

.fixed-number {
    display: inline-block;
}

.rolling-number {
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 1ch;
    text-align: center;

}

.rolling-number span {
    display: block;
    position: absolute;
    width: 100%;
    transition: transform 0.8s ease-in-out;
}

/* Styling for second row */
.sections-second-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    /* Adds space between first and second row */
}

.section-left-second,
.section-middle-second,
.section-right-second {
    width: 30%;
    padding: 20px;
}

.value-second-row {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f3a52
}

.word-second-row {
    font-size: 1rem;
    margin-top: 10px;
    color: #1f3a52
}
/*#region FAQS*************************************************FAQS SECTION****************/

#faq {
    background: linear-gradient(135deg, #1f3a52, #38618d, #acc8df);
    background-size: 300% 300%;
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: -25px;
    border-radius: 55px;
}

.faq-title {
    font-size: 1.875rem;
    /* Increase size for better visibility */
    color: #ece7e7;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    /* Ensures it takes the full width */
    width: 100%;
    /* Makes sure it's centered inside the parent */
}
.faq-sub {
    color: white;
    text-align: center;
    margin: 0 auto 30px auto;
    max-width: 800px; /* Optional: controls wrapping width */
    line-height: 1.6;
    font-size: 1rem;
    display: block;
    width: 60%;
  }
#faq .underline {
    width: 150px;
    height: 4px;
    background-color: #1f2937;
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* FAQ item styles */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    background: linear-gradient(135deg, #1f3a52, #38618d);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #1f3a52;
}

/* FAQ answer styles */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 15px;
    background-color: #f7f7f7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    /* Adjust based on content height */
    padding: 10px 15px;
    /* Add some padding when opened */
}


.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #333;
    font-size: 0.9375rem;
    ;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*#endregion*/


/*#region *****************************************************OUR APP*/
.our-app-section {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
    word-wrap: break-word;
    margin-top: 35px;
    border: none;
    box-sizing: border-box;
}

.our-app-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.our-app-section .underline {
    width: 100px;
    height: 4px;
    background-color: #1f2937;
    margin: 0 auto 20px;
    border-radius: 2px;
}

.our-app-section p {
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.store-button img {
    width: 40px;
    height: 40px;
}

.google-play {
    background-color: #111827;
}

.google-play:hover {
    background-color: #1f2937;
}

.ios-store {
    background-color: #111827;
}

.ios-store:hover {
    background-color: #1f2937;
}

.app-slide-left{
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.app-slide-left.our-app-section-animate{
    opacity: 1;
    transform: translateX(0);
}
/*#endregion*****/




/*#region*************CONTACT AND FOOTER STYLING***************************************/
#contact {
    background: rgba(2, 2, 113, 0.772);
    color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}


/* Form Styling */
#contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 400px;
}

/* Input and Textarea Styling */
#contact form input,
#contact form textarea {
    width: 100%;
    padding: 0.3rem;
    border: 1px solid #555;
    border-radius: 4px;
    background-color: whitesmoke;
    color: Black;
    box-sizing: border-box;
}

/* Textarea Specific Styling */
#contact form textarea {
    height: 70px;
    resize: vertical;
}

/* Button Styling */
#contactForm button {
    background-color: #1f3a52;
    padding: 0.5rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    width: 11.25rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

#contactForm button:hover {
    background-color: #315372;
}

/* Label Styling */
#contact form label {
    color: #555;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Social Media Icons Styling */
.social-icon {
    color: #fff !important;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.social-icon:hover {
    color: #ddd;
}

.whatsapp-qr-code {
    text-align: center;
    margin-top: 1.25rem;
}

.whatsapp-qr-code img {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
}


@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}
.subfooter {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width:1200px;
  margin-bottom: -130px !important;
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto; /* Center it if needed */
  color: white !important;
  background-color: #1f3a52;
  border-radius: 10px;
  overflow: hidden;
}




.subfooter-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subfooter-right {
  display: flex;
  justify-content: flex-start; /* Change to flex-start */
  width: 60%;
  align-items: center;
  margin-top: -65px;
  transform: translateX(-120px); /* Use transform instead of margin-left */
}



.subscribe-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.subscribe-form {
  display: flex;
}

.email-input {
  padding: 10px;
  border-radius: 10px;
  border: none;
  width:250px !important;
}
 .subf1-button {
  height: 44px;
  width: 150px !important;
  border-radius: 35px !important;
  background-color: #1f2937 !important;
  color: #fff ;
  border: 2px solid black;
  border-style: outset;
  margin-top: 0px;
  margin-left:7px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}


.privacy-statement {
  font-size: 14px;
}

.about-subtext-f {
  line-height: 1.1;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 15px;
  color: white !important;
  font-size: 38px !important;
  line-height: 1.1em;
  font-weight: 100;
}

.subf {
  color: white !important;
}

.serif-f {
  line-height: 1.1;
  text-align: left;
  margin-bottom: 30px;
  font-style: italic;
  font-family: Newsreader, "Times New Roman", serif;
  font-size: 38px !important;
  line-height: 1.1em;
  font-weight: 100;
  color: #fff !important;
}

.copy {
  color: white !important;
}
.copy1 {
  color: white !important;
  margin-top: -20px;
}
.copy2 {
  color: white !important;
  margin-top: -20px;
}
.logo-video-1 {
  width: 100px;
  height: auto;
}



.image-placeholder1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  width: 250px;
  height: 250px;
  border-radius: 10%;
  margin-top:50px;
  margin-left: 60px;
}


/*#endregion***/


/*#region BODY SECTION STYLING**/
section {
    padding: 2rem;
    margin: 2rem 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    margin-bottom: 1rem;
}

ul {
    list-style-type: square;
    padding-left: 1.25rem;
}
/*#endregion

/*#region****FOOTER******************/
footer {
    /* Matches footer or slightly darker */
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 1.25rem;
    flex-wrap: wrap;

}

/* Custom Footer Area */
.custom_footer_area {
    background-color: #fff;
    border-radius: 70px;

}

/* Footer Top */
.custom_footer_top {
    padding: 100px;
    position: relative;
    overflow-x: hidden;
    width: 1550px;



}

/* Adjust input fields and text area to same width */
.custom_footer_top .contact_widget input,
.custom_footer_top .contact_widget textarea {
    width: 100%;
    /* Set the width to 100% */
    max-width: 100%;
    /* Ensure they are full-width */
    padding: 12px;
    /* Optional: Adjust padding for better appearance */
    margin-bottom: 0.9375rem;
    /* Space below each input */
}

/* Footer Bottom */
.custom_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 50px;
}

.custom_footer_top .contact_widget p,
.custom_footer_top .quick_links_widget p,
.custom_footer_top .support_widget p,
.custom_footer_top .social_widget p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 1.25rem;
}

/* Button Hover */
a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
    text-decoration: none;
    outline: none;
}

.custom_footer_top .f_widget .f_list li a:hover {
    color: #1f3a52;
}

/* Social Icons */
.custom_footer_top .f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 0.875rem;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    transition: all 0.2s linear;
}

.custom_footer_top .f_social_icon a:hover {
    background: #1f3a52;
    border-color: #1f3a52;
    color: white;
}

.custom_footer_top .f_social_icon a+a {
    margin-left: 4px;
}



/* Footer Widget Styling */
.f_widget {
    margin-bottom: 40px;

}

.f_widget h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: #263b5e;
}

.f_widget .f_list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: white;
}

.f_widget .f_list li {
    margin-bottom: 0.9375rem;

}

.f_widget .f_list li a {
    color: #6a7695;
    font-size: 0.875rem;
    text-decoration: none;
}

.f_widget .f_list li a:hover {
    color: #5e2ced;
}

.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.f_social_icon a {
    width: 46px;
    height: 46px;
    line-height: 46px;
    background: #ebeef5;
    border-radius: 50%;
    color: #858da8;
    text-align: center;
    font-size: 1.25rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.f_social_icon a:hover {
    background: #5e2ced;
    border-color: #5e2ced;
    color: white;
}

/* Social Icons Font */
.f_social_icon a i {
    font-size: 1.25rem;
}

.footer-text {
     color: var( --footer-bottom-text-color);
      font-family: 'Nunito', sans-serif;
      font-size: 14.5px;
    margin-top: 10px;
    position: absolute;
    /* Ensures it's always visible at the bottom */
    bottom: 0;
    /* Positions at the bottom of the viewport */
    left: 50%;
    /* Starts at 50% of the viewport width */
    transform: translateX(-50%);
    /* Centers the element horizontally */
    text-align: center;
    /* Centers the text within the element */
    width: 100%;
    /* Optional: Makes it span the entire width */
}


.top-f {
    position: fixed;
    bottom: 10px;
    right: 15px;
    z-index: 999;
    font-size: 16px;
    background-color: #1f3a52;
    color: white;
    border: none;
    outline: none;
    padding: 5px 5px;
    border-radius: 60px;
    cursor: pointer;
    opacity: 1;
    /* <<< make it always visible */
    transition: opacity 0.3s ease-in-out;
    font-weight: 700;
}


.top-f:hover {
    background-color: #0056b3;
}

.top-f.show {
    opacity: 1;
}
/*#endregion********************/
#countdown-timer {
    font-weight: bold;
    color: #e74c3c;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}
  /*MEDIA QUERY FOR NAV*/
  /* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .nav-links li {
    margin: 0 0.5rem;
  }

  .logo-video {
    width: 120px;
    height: 78px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .social-media-icons a {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 5px;
  }

  .logo-video {
    width: 100px;
    height: 70px;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .nav-links li {
    margin: 0.5rem 0;
  }

  .social-media-icons {
    margin: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .social-media-icons a {
    margin: 5px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.9rem;
  }

  header {
    padding: 5px;
  }

  .logo-video {
    width: 80px;
    height: 55px;
  }

  .nav-links a,
  .social-media-icons a {
    font-size: 0.85rem;
  }

  .nav-links li {
    margin: 0.25rem 0;
  }
}




/*FORM MEDIA QUERY*/
/* Responsive Media Queries for Form Section */
@media (max-width: 1024px) {
  .form-container {
    width: 90%;
    padding: 18px;
  }

  .form-section {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .form-section {
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .form-container {
    width: 95%;
    padding: 16px;
    margin-top: 30px;
  }

  .form-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .form-container {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    box-shadow: none;
  }

  .form-section {
    padding: 10px;
  }

  .form-section h2 {
    font-size: 1.3rem;
  }

  .form-slide-left {
    transform: none !important;
    opacity: 1 !important;
  }
}

/*PROGRESS BAR AND INFO TWXT QUERY*/
/* Responsive Media Queries for Progress Bar */
@media (max-width: 1024px) {
  .progress-bar {
    width: 17%;
  }

  .help-text {
    font-size: 1rem;
  }

  .intro-text {
    font-size: 0.95rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .progress-bar-container {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .progress-bar {
    width: 30%;
    height: 6px;
  }

  .help-text {
    font-size: 0.95rem;
  }

  .intro-text {
    font-size: 0.9rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .progress-bar-container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .progress-bar {
    width: 80%;
    height: 6px;
  }

  .help-text {
    font-size: 0.85rem;
    text-align: center;
  }

  .intro-text {
    font-size: 0.85rem;
    margin-bottom: 30px;
    text-align: center;
  }
}

/*QUESTION MEDIA QUERY*/
/* Responsive Media Queries for QUESTION Section */
@media (max-width: 1024px) {
  .question p,
  .question label {
    font-size: 1rem;
  }

  .nav-btn {
    font-size: 1rem;
  }

  .info-container {
    padding: 12px;
    gap: 8px;
  }

  .info-text {
    font-size: 0.85rem;
  }

  .info-icon {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .question select,
  .question input {
    font-size: 0.95rem;
    padding: 7px;
  }

  .nav-btn {
    font-size: 0.95rem;
    padding: 8px 16px;
  }

  .info-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 6px;
    max-width: 100%;
  }

  .info-icon {
    font-size: 1rem;
  }

  .info-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .question {
    margin-bottom: 16px;
  }

  .question p,
  .question label {
    font-size: 0.95rem;
  }

  .question select,
  .question input {
    font-size: 0.9rem;
    padding: 6px;
  }

  .nav-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px;
  }

  .info-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 5px;
    max-width: 100%;
  }

  .info-icon {
    font-size: 0.9rem;
    margin-top: 0;
  }

  .info-text {
    font-size: 0.75rem;
  }
}

/* ===================== */
/* Responsive for Review Section and Checkbox Styles */
/* ===================== */

@media (max-width: 1024px) {
  .review-container {
    flex-direction: column;
    height: auto;
    margin-top: 50px;
  }

  .review-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .divider {
    display: none;
  }

  .review-content p {
    font-size: 0.95rem;
  }

  .carousel-controls button {
    font-size: 1.5rem;
  }

  .checkbox-list li {
    column-gap: 100px;
  }

  .checkbox-list label {
    font-size: 0.95em;
  }

  .sub-btn {
    font-size: 0.95rem;
    padding: 9px 18px;
  }
}

@media (max-width: 768px) {
  .reviews {
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    padding: 15px;
    height: auto;
  }

  .review-container {
    max-width: 95%;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-image {
    margin-bottom: 10px;
  }

  .review-info h4 {
    font-size: 0.8rem;
  }

  .review-content p {
    font-size: 0.9rem;
  }

  .checkbox-list li {
    grid-template-columns: 20px auto;
    column-gap: 60px;
  }

  .checkbox-list label {
    font-size: 0.9em;
    white-space: normal;
  }

  .sub-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .reviews {
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    padding: 10px;
  }

  .review-container {
    margin-top: 30px;
    flex-direction: column;
  }

  .review-item {
    padding: 15px;
    width: 100%;
  }

  .review-info h4 {
    font-size: 0.75rem;
  }

  .review-content p {
    font-size: 0.85rem;
  }

  .carousel-controls button {
    font-size: 1.25rem;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 3px;
  }

  .checkbox-list li {
    display: block;
    margin-bottom: 15px;
  }

  .checkbox-list label {
    font-size: 0.85em;
    line-height: 1.4;
  }

  .sub-btn {
    font-size: 0.85rem;
    padding: 10px;
    width: 100%;
  }
}

/*#region ADVERT Responsive Media Queries***********************/

/* Small phones (max-width: 480px) */
@media screen and (max-width: 480px) {
    .ad-container {
        width: 90%;
        height: 180px;
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
    }

    .ad-content h3 {
        font-size: 0.75rem;
    }

    .ad-content p {
        font-size: 0.65rem;
    }

    .ad img {
        max-width: 60%;
    }
}

/* Tablets (481px to 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .ad-container {
        width: 200px;
        height: 190px;
        right: 10px;
    }

    .ad-content h3 {
        font-size: 0.8rem;
    }

    .ad-content p {
        font-size: 0.7rem;
    }

    .ad img {
        max-width: 65%;
    }
}

/* Small Desktops (769px to 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .ad-container {
        width: 220px;
        height: 200px;
    }
}

/* Extra small devices (phones, max-width: 480px) */
@media screen and (max-width: 480px) {
  .custom-modal-content {
    width: 90%;
    max-width: none;
    padding: 12px;
  }

  .custom-modal-body {
    font-size: 0.875rem;
  }

  .custom-modal-header h5 {
    font-size: 1.2rem;
  }

  .custom-modal-footer .btn {
    width: 100%;
    font-size: 0.8rem;
  }
}

/* Small devices (tablets, 481px–768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .custom-modal-content {
    width: 80%;
    max-width: 350px;
  }

  .custom-modal-body {
    font-size: 0.95rem;
  }

  .custom-modal-header h5 {
    font-size: 1.4rem;
  }

  .custom-modal-footer .btn {
    font-size: 0.85rem;
  }
}

/* Medium devices (small laptops, 769px–1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .custom-modal-content {
    width: 60%;
    max-width: 400px;
  }

  .custom-modal-header h5 {
    font-size: 1.5rem;
  }
}

/*#endregion*/


/*#region RANGER Media Queries for Responsiveness************************/

/* Extra small devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    #ranger-section {
        height: 1000px; /* Reduce height on small screens */
    }

    .ranger-flex-wrapper {
        gap: 50px; /* Reduce gap between items */
        margin-left: 10px; /* Adjust left margin */
    }

    .text-side {
        width: 90%; /* Make text box width responsive */
        font-size: 0.9rem; /* Smaller text on mobile */
    }

    .ranger-centered-box {
        width: 300px;
        height: 300px;
    }

    .imager-container {
        width: 180px;
        height: 150px;
    }

    .ranger-img {
        height: 100%;
    }

    .ranger-overlay {
        font-size: 1rem;
    }

    .ranger-content {
        padding: 30px 0;
    }
}

/* Small devices (tablets, 481px–768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    #ranger-section {
        height: 1000px;
    }

    .ranger-flex-wrapper {
        gap: 100px;
    }

    .text-side {
        width: 75%;
        font-size: 1rem;
    }

    .ranger-centered-box {
        width: 350px;
        height: 350px;
    }

    .imager-container {
        width: 200px;
        height: 160px;
    }

    .ranger-img {
        height: 100%;
    }

    .ranger-overlay {
        font-size: 1.1rem;
    }

    .ranger-content {
        padding: 40px 0;
    }
}

/* Medium devices (small laptops, 769px–1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .ranger-flex-wrapper {
        gap: 150px;
    }

    .text-side {
        width: 60%;
    }

    .ranger-centered-box {
        width: 380px;
        height: 380px;
    }

    .ranger-img {
        height: 100%;
    }

    .ranger-overlay {
        font-size: 1.125rem;
    }

    .ranger-content {
        padding: 50px 0;
    }
}

/*#endregion*/


/* Media Queries for GLOBAL REACH Responsiveness */
/* For devices smaller than 1200px (tablets and large screens) */
@media screen and (max-width: 1200px) {
    .sections {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-left,
    .section-middle,
    .section-right {
        width: 100% !important;
        padding: 10px;
        margin-bottom: 20px;
    }

    .sections-second-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-left-second,
    .section-middle-second,
    .section-right-second {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
    }

    .value,
    .value-second-row {
        font-size: 2rem;
    }

    .rolling-container {
        font-size: 3rem;
    }

    .word,
    .word-second-row {
        font-size: 0.9rem;
    }
}

/* For devices smaller than 768px (tablets and phones) */
@media screen and (max-width: 768px) {
    .global-reach {
        font-size: 1.2rem;
    }

    .sections {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 20px;
    }

    .section-left,
    .section-middle,
    .section-right {
        width: 100% !important;
        padding: 10px;
        margin-bottom: 20px;
    }

    .value {
        font-size: 1.8rem;
    }

    .rolling-container {
        font-size: 2.5rem;
    }

    .word,
    .word-second-row {
        font-size: 0.9rem;
    }

    .sections-second-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-left-second,
    .section-middle-second,
    .section-right-second {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
    }

    .value-second-row {
        font-size: 1.8rem;
    }
}

/* For devices smaller than 480px (mobile devices) */
@media screen and (max-width: 480px) {
    .global-reach {
        font-size: 1rem;
    }

    .sections {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

    .section-left,
    .section-middle,
    .section-right {
        width: 100% !important;
        padding: 8px;
        margin-bottom: 15px;
    }

    .value {
        font-size: 1.5rem;
    }

    .rolling-container {
        font-size: 2rem;
    }

    .word,
    .word-second-row {
        font-size: 0.8rem;
    }

    .sections-second-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-left-second,
    .section-middle-second,
    .section-right-second {
        width: 100%;
        padding: 8px;
        margin-bottom: 15px;
    }

    .value-second-row {
        font-size: 1.5rem;
    }
}


/*FAQ MEDIA QUERY*/
/* Media Queries for Responsiveness */

/* For devices smaller than 1200px (tablets and large screens) */
@media screen and (max-width: 1200px) {
    #faq {
        width: 90%; /* Adjust width for smaller screens */
        padding: 15px;
    }

    .faq-title {
        font-size: 1.5rem; /* Smaller font size */
    }

    .faq-sub {
        width: 80%;
        font-size: 0.9rem; /* Adjust font size */
    }

    .faq-container {
        gap: 10px;
    }

    .faq-question {
        font-size: 0.9rem;
        padding: 12px;
    }

    .faq-answer p {
        font-size: 0.875rem; /* Slightly smaller font size */
    }

    #faq .underline {
        width: 120px; /* Adjust underline size */
    }
}

/* For devices smaller than 768px (tablets and phones) */
@media screen and (max-width: 768px) {
    #faq {
        width: 95%;
        padding: 10px;
    }

    .faq-title {
        font-size: 1.3rem; /* Smaller font size */
    }

    .faq-sub {
        width: 90%;
        font-size: 0.85rem;
    }

    .faq-container {
        gap: 8px;
    }

    .faq-question {
        font-size: 0.85rem;
        padding: 10px;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    #faq .underline {
        width: 100px;
    }
}

/* For devices smaller than 480px (mobile devices) */
@media screen and (max-width: 480px) {
    #faq {
        width: 100%;
        padding: 8px;
    }

    .faq-title {
        font-size: 1.1rem; /* Even smaller font size */
    }

    .faq-sub {
        width: 100%;
        font-size: 0.8rem;
    }

    .faq-container {
        gap: 5px;
    }

    .faq-question {
        font-size: 0.8rem;
        padding: 8px;
    }

    .faq-answer p {
        font-size: 0.8rem;
    }

    #faq .underline {
        width: 80px;
    }
}


/* Media Queries for OUR APP Responsiveness */

/* For devices smaller than 1200px (tablets and large screens) */
@media screen and (max-width: 1200px) {
    .our-app-section {
        padding: 50px 20px; /* Slightly reduced padding */
    }

    .our-app-section h2 {
        font-size: 1.875rem; /* Smaller font size for title */
    }

    .our-app-section p {
        font-size: 0.95rem; /* Slightly smaller font size for the paragraph */
        max-width: 600px; /* Adjust paragraph width */
    }

    .store-buttons {
        gap: 15px; /* Reduced gap between buttons */
    }

    .store-button {
        padding: 10px 15px; /* Reduced button padding */
        font-size: 0.8rem; /* Smaller font size */
    }

    .store-button img {
        width: 35px;
        height: 35px; /* Smaller icons */
    }
}

/* For devices smaller than 768px (tablets and phones) */
@media screen and (max-width: 768px) {
    .our-app-section {
        padding: 40px 15px; /* Further reduced padding */
    }

    .our-app-section h2 {
        font-size: 1.5rem; /* Further reduced font size for title */
    }

    .our-app-section p {
        font-size: 0.9rem; /* Reduced font size for the paragraph */
        max-width: 500px; /* Adjust paragraph width */
    }

    .store-buttons {
        gap: 10px; /* Reduced gap between buttons */
    }

    .store-button {
        padding: 8px 12px; /* Reduced padding for smaller buttons */
        font-size: 0.75rem; /* Smaller font size for buttons */
    }

    .store-button img {
        width: 30px;
        height: 30px; /* Smaller icons */
    }
}

/* For devices smaller than 480px (mobile devices) */
@media screen and (max-width: 480px) {
    .our-app-section {
        padding: 30px 10px; /* Small padding for mobile */
    }

    .our-app-section h2 {
        font-size: 1.25rem; /* Much smaller font size for the title */
    }

    .our-app-section p {
        font-size: 0.85rem; /* Even smaller font size for the paragraph */
        max-width: 100%; /* Full width for text */
    }

    .store-buttons {
        flex-direction: column; /* Stack the buttons vertically */
        gap: 15px; /* Adjust gap */
    }

    .store-button {
        padding: 10px 15px; /* Slightly bigger padding for mobile */
        font-size: 0.8rem; /* Slightly bigger font size for mobile */
        width: 100%; /* Full-width buttons */
    }

    .store-button img {
        width: 25px;
        height: 25px; /* Even smaller icons */
    }
}

/* For extremely small devices (e.g., very small phones) */
@media screen and (max-width: 320px) {
    .our-app-section {
        padding: 20px 10px; /* Very small padding */
    }

    .our-app-section h2 {
        font-size: 1.1rem; /* Very small font size for the title */
    }

    .our-app-section p {
        font-size: 0.8rem; /* Very small font size for the paragraph */
    }

    .store-buttons {
        gap: 10px; /* Small gap between buttons */
    }

    .store-button {
        padding: 8px 12px; /* Very small button padding */
        font-size: 0.7rem; /* Smaller button font size */
        width: 100%; /* Full-width buttons */
    }

    .store-button img {
        width: 20px;
        height: 20px; /* Very small icons */
    }
}



/*CONTACT MEDIA QUERY*/
/* Media Queries for Responsiveness */

/* For devices smaller than 1200px (tablets and large screens) */
@media screen and (max-width: 1200px) {
    #contact {
        padding: 1.5rem; /* Reduced padding for large tablets */
        max-width: 650px; /* Slightly adjusted width */
    }

    #contact form {
        gap: 0.75rem; /* Reduced gap between form fields */
    }

    #contact form input,
    #contact form textarea {
        padding: 0.25rem; /* Reduced padding inside input fields */
    }

    #contactForm button {
        font-size: 0.85rem; /* Slightly smaller button text */
        width: 100%; /* Button takes full width */
    }
}

/* For devices smaller than 768px (tablets and smaller phones) */
@media screen and (max-width: 768px) {
    #contact {
        padding: 1rem; /* Even smaller padding */
        max-width: 90%; /* Full width for mobile devices */
    }

    #contact form {
        gap: 0.5rem; /* Even smaller gap between form fields */
    }

    #contact form input,
    #contact form textarea {
        padding: 0.5rem; /* Increase padding for touch devices */
    }

    #contactForm button {
        font-size: 0.8rem; /* Smaller button text for mobile */
        width: 100%; /* Button takes full width */
    }

    .social-icon {
        font-size: 1.25rem; /* Smaller social icon size */
        margin: 0 0.25rem; /* Reduced margin */
    }

    .whatsapp-qr-code img {
        width: 80px; /* Smaller QR code image */
        height: 80px; /* Maintain aspect ratio */
    }
}

/* For devices smaller than 480px (small phones) */
@media screen and (max-width: 480px) {
    #contact {
        padding: 0.75rem; /* Reduced padding for small phones */
        max-width: 100%; /* Full width */
    }

    #contact form {
        gap: 0.3rem; /* Minimal gap between form fields */
    }

    #contact form input,
    #contact form textarea {
        padding: 0.6rem; /* Larger padding for easy touch input */
    }

    #contactForm button {
        font-size: 0.75rem; /* Very small button text */
        width: 100%; /* Full width button */
    }

    .social-icon {
        font-size: 1.1rem; /* Further reduced icon size */
        margin: 0 0.25rem; /* Reduced icon margin */
    }

    .whatsapp-qr-code img {
        width: 70px; /* Even smaller QR code image */
        height: 70px; /* Maintain aspect ratio */
    }
}

/* For extremely small devices (e.g., very small phones) */
@media screen and (max-width: 320px) {
    #contact {
        padding: 0.5rem; /* Minimal padding */
        max-width: 100%; /* Full width */
    }

    #contact form {
        gap: 0.25rem; /* Minimal gap */
    }

    #contact form input,
    #contact form textarea {
        padding: 0.5rem; /* Appropriate padding for small devices */
    }

    #contactForm button {
        font-size: 0.7rem; /* Very small button text */
        width: 100%; /* Full width button */
    }

    .social-icon {
        font-size: 1rem; /* Very small social icon size */
        margin: 0 0.2rem; /* Very small margin */
    }

    .whatsapp-qr-code img {
        width: 60px; /* Smaller QR code */
        height: 60px; /* Maintain aspect ratio */
    }
}


/*FOTER MEDIA QUERY*/
/* Default styles for footer (already defined) */

/* Media Queries for Mobile Devices */
@media (max-width: 767px) {
    footer {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    /* Custom Footer Area */
    .custom_footer_area {
        height: auto;
        border-radius: 10px;
    }

    .custom_footer_top {
        padding: 40px;
        width: 100%;
    }

    .custom_footer_top .contact_widget input,
    .custom_footer_top .contact_widget textarea {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        margin-bottom: 15px;
    }

    .custom_footer_top .contact_widget p,
    .custom_footer_top .quick_links_widget p,
    .custom_footer_top .support_widget p,
    .custom_footer_top .social_widget p {
        font-size: 0.875rem;
        font-weight: 300;
        line-height: 22px;
        color: #6a7695;
        margin-bottom: 15px;
    }

    .custom_footer_top .footer_bg {
        width: 100%;
        height: 300px;
    }

    .custom_footer_top .footer_bg .footer_bg_one,
    .custom_footer_top .footer_bg .footer_bg_two,
    .custom_footer_top .footer_bg .footer_bg_three,
    .custom_footer_top .footer_bg .footer_bg_four {
        position: absolute;
        width: 100px;
        height: 50px;
        bottom: 50px;
    }

    .f_widget h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .f_widget .f_list li {
        margin-bottom: 10px;
    }

    .f_social_icon a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    /* Footer text adjustments */
    .footer-text {
        font-size: 0.875rem;
    }
}

/* Media Queries for Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    footer {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px;
    }

    .custom_footer_area {
        height: auto;
        border-radius: 20px;
    }

    .custom_footer_top {
        padding: 60px;
        width: 100%;
    }

    .custom_footer_top .contact_widget input,
    .custom_footer_top .contact_widget textarea {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        margin-bottom: 15px;
    }

    .custom_footer_top .contact_widget p,
    .custom_footer_top .quick_links_widget p,
    .custom_footer_top .support_widget p,
    .custom_footer_top .social_widget p {
        font-size: 1rem;
        font-weight: 300;
        line-height: 24px;
        color: #6a7695;
        margin-bottom: 20px;
    }

    .custom_footer_top .footer_bg {
        width: 100%;
        height: 350px;
    }

    .custom_footer_top .footer_bg .footer_bg_one,
    .custom_footer_top .footer_bg .footer_bg_two,
    .custom_footer_top .footer_bg .footer_bg_three,
    .custom_footer_top .footer_bg .footer_bg_four {
        width: 150px;
        height: 75px;
    }

    .f_widget h3 {
        font-size: 1.125rem;
        margin-bottom: 20px;
    }

    .f_widget .f_list li {
        margin-bottom: 12px;
    }

    .f_social_icon a {
        width: 42px;
        height: 42px;
        font-size: 1.125rem;
    }

    /* Footer text adjustments */
    .footer-text {
        font-size: 1rem;
    }
}


/*MEDIA QUERY FOR SECTION*/
/* Media Queries for Mobile Devices (max-width: 767px) */
@media (max-width: 767px) {
    section {
        padding: 1rem;
        margin: 1rem 0;
        box-shadow: none;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    ul {
        padding-left: 15px;
        font-size: 0.9rem;
    }
}

/* Media Queries for Tablets (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    ul {
        padding-left: 18px;
        font-size: 1rem;
    }
}

/* Media Queries for Desktop Devices (min-width: 1025px) */
@media (min-width: 1025px) {
    section {
        padding: 2rem;
        margin: 2rem 0;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    ul {
        padding-left: 20px;
        font-size: 1.125rem;
    }
}




