/* specifics.css */
:root{
    --primary_font: Montserrat;
    --text_color: rgb(7, 7, 7);
    --green_color: #669c15;
    --blue_color: #0b419b;
}
.navbar{
    height: 12vh;
}
.loading_screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s ease;
}

.loading_logo {
    width: 15vw;
    height: auto;
    margin-bottom: 2vh;
    transform: translateY(2vh);
    opacity: 0;
    animation: logoReveal 1s ease forwards;
}

.loading_bar_container {
    width: 100%;
    height: 0.4vh;
    background: rgba(11, 65, 155, 0.1);
    border-radius: 1vh;
    margin-top: 2vh;
    overflow: hidden;
}

.loading_bar {
    width: 0%;
    height: 100%;
    background: var(--blue_color);
    border-radius: 1vh;
    transition: width 0.3s ease-in-out;
}

.loading_text {
    color: var(--blue_color);
    margin-top: 1vh;
    opacity: 0.8;
}

/* Enhanced Rise Up Animations */
.logo_holder,
.nav_links a,
.hero_section h1,
.hero_section h3,
.button_holder {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

/* Element-specific styles */
.logo_holder {
    transform: translateY(5vh);
    opacity: 0;
    filter: blur(10px);
}

.nav_links a {
    display: inline-block;
    transform: translateY(5vh);
    opacity: 0;
    filter: blur(10px);
    position: relative;
}

.hero_section h1,
.hero_section h3,
.button_holder {
    transform: translateY(5vh);
    opacity: 0;
    filter: blur(10px);
}

/* Hover Effects */
.nav_links a::before {
    content: '';
    position: absolute;
    bottom: -0.5vh;
    left: 0;
    width: 100%;
    height: 0.2vh;
    background: var(--blue_color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.nav_links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav_links a:hover {
    color: var(--blue_color);
}

/* Button hover effects */
.button_holder {
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.button_holder a {
    transition: all 0.3s ease;
}

.button_holder a:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 0.5vh 1.5vh rgba(11, 65, 155, 0.2);
}

.button_holder a.secondary_button:hover {
    background-color: var(--green_color);
    color: white;
}

.hero_main_text{
    width: 45vw;
}
.hero_subtitle{
    width: 50vw;
}
@keyframes logoReveal {
    0% {
        opacity: 0;
        transform: translateY(2vh);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.govt_lic {
    background-color: var(--blue_color);
}
.open_menu{
    display: none;
    border: 0.4vw solid var(--green_color);
    outline: none;
    background: none;
    padding: 0.5vh 1.5vw;
    border-radius: 50%;
}
.close_menu{
    border: 0.4vw solid var(--alt_text);
    outline: none;
    background: none;
    padding: 0.5vh 1.5vw;
    border-radius: 50%;
}

/* destinations hero */
.destinations-container {
    position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden;
    cursor: grab;
  }
  
  .destinations-container:active {
    cursor: grabbing;
  }
  
  .destinations-track {
    display: flex;
    height: 100%;
    position: absolute;
    transition: transform 0.3s ease-out;
  }
  
  .destination-card {
    position: relative;
    min-width: 23vw;
    height: 100%;
    margin: 0 1vw;
    border-radius: 1vw;
    overflow: hidden;
    box-shadow: 0 0.5vh 2vh rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
  }
  
  .destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .destination-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5vh;
    transition: height 0.4s ease;
  }
  
  .destination-card .country-name {
    color: white;
    font-weight: 500;
    margin: 0;
    font-family: var(--secondary_font);
    transform: translateY(0);
    transition: transform 0.4s ease;
  }
  
  /* Hover Effects */
  .destination-card:hover {
    transform: translateY(-0.5vh);
    box-shadow: 0 1vh 3vh rgba(0, 0, 0, 0.2);
  }
  
  .destination-card:hover img {
    transform: scale(1.1);
  }
  
  .destination-card:hover .overlay {
    height: 70%;
  }
  
  .destination-card:hover .country-name {
    transform: translateY(-1vh);
  }

/* stats home */
  .stats_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.stats_box {
    border: 0.2vw solid var(--green_color);
    border-radius: 1vw;
    padding: 3vh 2vw;
    min-height: 20vh;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stats_box.full {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.stat_item {
    gap: 0.5vw;
    padding: 2vh 2vw;
}

.counter {
    font-weight: 700;
    color: var(--blue_color);
}

/* Make sure the stats boxes also have the reveal animation */
.stats_box {
    opacity: 0;
    transform: translateY(5vh);
    filter: blur(0.7vw);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

/* Service Card Hover Effects */
.service_card {
    background-position: center;
    background-size: cover;
    border-radius: 0.3vw;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.overlay {
    background-color: black;
    opacity: 40%;
    z-index: 50;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.service_content {
    z-index: 55;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover effects for service cards */
.service_card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.service_card:hover .overlay {
    background: linear-gradient(135deg, rgba(11, 65, 155, 0.8) 0%, rgba(102, 156, 21, 0.8) 100%);
    opacity: 85%;
}

.service_card:hover .service_content {
    transform: translateY(-5px);
}

.service_card .ri-arrow-right-up-line {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
    position: relative;
}

.service_card .ri-arrow-right-line {
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service_card:hover .ri-arrow-right-up-line {
    opacity: 0;
    transform: rotate(90deg) translateX(15px);
}

.service_card:hover .ri-arrow-right-line {
    opacity: 1;
    transform: translateX(0);
}

/* Add a subtle background scale effect */
.service_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 40;
}

.service_card:hover::before {
    transform: scale(1.1);
}

/* New utility classes */
.scale_hover {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.scale_hover:hover {
    transform: scale(1.05);
}

.gradient_overlay {
    background: linear-gradient(135deg, rgba(11, 65, 155, 0.8) 0%, rgba(102, 156, 21, 0.8) 100%);
}

.cubic_bezier {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
/* process */
.process_container {
    padding: 5vh 0;
}

.process_circle {
    width: 30vw;
    height: 30vw;
    max-width: 30vw;
    max-height: 30vw;
    min-width: 30vw;
    min-height: 30vw;
    opacity: 0;
    transition: opacity 1s ease;
}

.process_center {
    z-index: 10;
    max-width: 25vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process_title {
    font-weight: 700;
    white-space: nowrap;
}

.process_item {
    position: absolute;
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background: white;
    border: 0.3vw solid var(--green_color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transform: translate(-50%, -50%);
}

.process_item i {
    font-size: 1.5vw;
    margin-bottom: 0.5vh;
}

.process_item span {
    font-size: 0.7vw;
    font-weight: 600;
}

.process_item:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.process_item.active {
    background-color: var(--green_color);
    color: white;
    transform: translate(-50%, -50%) scale(1.2);
}

.process_item.highlight {
    background-color: var(--gray_color);
    color: white;
    transform: translate(-50%, -50%) scale(1.15);
    transition: all 0.3s ease;
}

.process_path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.process_path circle {
    fill: none;
    stroke: var(--gray_color);
    stroke-width: 2;
    stroke-dasharray: 5, 5;
    opacity: 0.6;
}

/* contacts */
.input{
    padding: 2vh 1vw;
    border: none;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    outline: none;
}
.input-group {
    margin-bottom: 2vh;
}

textarea.input {
    resize: vertical;
    min-height: 15vh;
}

.form_holder button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form_holder button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 65, 155, 0.4);
}

/* footers */
.footer {
    background-color: var(--blue_color);
    position: relative;
    padding-top: 10vh;
}

.footer_logo_img {
    height: 15vh;
}

.footer_title {
    position: relative;
    padding-bottom: 1vh;
    margin-bottom: 1vh;
}

.footer_title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3vw;
    height: 0.3vh;
    background-color: var(--green_color);
}

.footer_links {
    list-style: none;
}

.footer_link {
    color: var(--alt_text);
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.footer_link:hover {
    opacity: 1;
    transform: translateX(0.5vw);
    color: var(--green_color);
}

.footer_contact {
    list-style: none;
}

.contact_icon {
    color: var(--green_color);
    font-size: 1.2vw;
}

.contact_item {
    transition: all 0.3s ease;
}

.contact_item:hover {
    transform: translateX(0.5vw);
}

.social_icon {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--alt_text);
    font-size: 1vw;
    transition: all 0.3s ease;
}

.social_icon:hover {
    background-color: var(--green_color);
    transform: translateY(-0.5vh);
}

.footer_divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 2vh 0;
}

.tilasmi_link {
    color: var(--green_color);
    transition: all 0.3s ease;
}

.tilasmi_link:hover {
    opacity: 0.8;
}

.back_to_top {
    position: absolute;
    right: 5vw;
    bottom: 5vh;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background-color: var(--green_color);
    color: var(--alt_text);
    font-size: 1.2vw;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back_to_top.visible {
    opacity: 1;
    visibility: visible;
}

.back_to_top:hover {
    transform: translateY(-0.5vh);
    background-color: #7abb1e;
}

/* About images */
.about_img, 
.mission_img,
.founder_img {
    border-radius: 0.7vw;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.about_img:hover, 
.mission_img:hover,
.founder_img:hover {
    transform: scale(1.02);
}

/* Values */
.value_card {
    width: 23%;
    padding: 3vh 1.5vw;
    border-radius: 0.7vw;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.value_icon {
    width: 4vw;
    height: 4vw;
    border-radius: 50%;
    background-color: var(--blue_color);
    color: var(--alt_text);
    margin: 0 auto 2vh;
    font-size: 2vw;
    transition: all 0.3s ease;
}

.value_card:hover .value_icon {
    background-color: var(--green_color);
    transform: rotateY(180deg);
}

/* Quote styling */
.quote {
    position: relative;
}

.quote_text {
    font-style: italic;
    line-height: 1.6;
}

.quote_icon_left, 
.quote_icon_right {
    color: var(--green_color);
    font-size: 2vw;
    opacity: 0.3;
}

.quote_icon_left {
    margin-right: 0.5vw;
    vertical-align: top;
}

.quote_icon_right {
    margin-left: 0.5vw;
    vertical-align: bottom;
}

/* Team members */
/* Team members */
.team_card {
    width: 31%;
    border-radius: 0.7vw;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 50vh; /* Set fixed height for team cards */
}

.team_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.team_img_holder {
    position: relative;
    overflow: hidden;
    height: 100%; /* Make image holder full height of card */
}

.team_img {
    height: 100%; /* Make image full height of holder */
    width: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team_card:hover .team_img {
    transform: scale(1.1);
    filter: blur(3px); /* Add blur effect on hover */
}

.team_overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(11, 65, 155, 0.8));
    transition: all 0.5s ease;
    flex-direction: column; /* Stack elements vertically */
}

.team_card:hover .team_overlay {
    bottom: 0;
}

.team_name {
    color: var(--alt_text);
    margin-bottom: 1vh;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.founder_info{
    align-items: center;
}

/* countries page */
.countries_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.5vw;
}

.country_card {
    transition: all 0.3s ease;
    border-radius: 0.7vw;
    overflow: hidden;
}

.country_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.overlay_country{
    background: black;
    opacity: 50%;
    transition: all 0.3s ease;
}

.country_card:hover .overlay_country{
    background: rgba(102, 156, 21, 0.7); /* Green color on hover */
}
.title_border{
    text-align: center;
}

/* service_page */
.service_detail_card {
    background-color: #f9f9f9;
    border-radius: 0.7vw;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service_detail_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service_number {
    top: 2vh;
    left: 2vw;
}

.service_features {
    list-style-type: none;
    padding-left: 1vw;
}

.service_features li {
    position: relative;
    padding-left: 1.5vw;
    margin-bottom: 1vh;
}

.service_features li:before {
    content: "•";
    color: var(--green_color);
    font-size: 1.5vw;
    position: absolute;
    left: 0;
}

.process_timeline {
    padding: 2vh 0;
}

.timeline_line {
    height: 100%;
    width: 0.3vw;
    background-color: var(--blue_color);
    left: 1.5vw;
    top: 0;
}

.process_step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5vh;
    padding-left: 3vw;
    position: relative;
}

.step_number {
    position: absolute;
    left: 0;
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background-color: var(--blue_color);
    margin-right: 2vw;
}
.contact>h3{
    text-align: center;
}
.step_content {
    padding-left: 2vw;
}

.service_form_container {
    gap: 2.5vw;
}

.service_highlight i {
    margin-right: 0.5vw;
}

.grid_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

/* Contact card styling */
.contact_card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.contact_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--green_color);
}

/* Icon styling */
.icon_circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(102, 156, 21, 0.1);
    margin-bottom: 1rem;
    font-size: 2rem;
    color: var(--green_color);
}

/* Paragraph text instead of h4 */
.contact_card p {
    font-size: 1vw;
    margin-bottom: 0.5rem;
}


.icon_container {
    margin-bottom: 0.5rem;
}

.input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.input:focus {
    outline: none;
    border: 1px solid var(--green_color);
}
body{
    scroll-behavior: smooth;
}
.mobile_nav {
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh; /* Using dvh for better mobile viewport handling */
    background-color: var(--blue_color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
}

.mobile_nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile_nav_container {
    padding-top: 5vh;
    padding-bottom: 5vh;
    height: 100%;
}

.mobile_nav_top {
    margin-bottom: 5vh;
}

.close_menu {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile_nav_links {
    flex-grow: 1;
}

.mobile_nav_link {
    position: relative;
    transition: transform 0.3s ease;
    padding: 1vh 0;
}

.mobile_nav_link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--green_color);
    transition: width 0.3s ease;
}

.mobile_nav_link:hover::after,
.mobile_nav_link:focus::after {
    width: 80%;
}

.mobile_nav_link:hover,
.mobile_nav_link:focus {
    transform: translateY(-5px);
}

.mobile_nav_socials {
    margin-top: auto;
}

.mobile_social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--alt_text);
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile_social:hover,
.mobile_social:focus {
    background-color: var(--green_color);
    transform: translateY(-5px);
}

.open_menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
/* Animation for menu items */
.mobile_nav.active .mobile_nav_link,
.mobile_nav.active .mobile_social {
    animation: fadeInUp 0.5s forwards;
    opacity: 0;
}

.mobile_nav.active .mobile_nav_link:nth-child(1) { animation-delay: 0.1s; }
.mobile_nav.active .mobile_nav_link:nth-child(2) { animation-delay: 0.2s; }
.mobile_nav.active .mobile_nav_link:nth-child(3) { animation-delay: 0.3s; }
.mobile_nav.active .mobile_nav_link:nth-child(4) { animation-delay: 0.4s; }
.mobile_nav.active .mobile_nav_link:nth-child(5) { animation-delay: 0.5s; }

.mobile_nav.active .mobile_social:nth-child(1) { animation-delay: 0.6s; }
.mobile_nav.active .mobile_social:nth-child(2) { animation-delay: 0.7s; }
.mobile_nav.active .mobile_social:nth-child(3) { animation-delay: 0.8s; }
.mobile_nav.active .mobile_social:nth-child(4) { animation-delay: 0.9s; }
.mobile_nav.active .mobile_social:nth-child(5) { animation-delay: 1.0s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 999px){
    .nav_links a {
        display: none;
    }
    
    .open_menu {
        display: block;
    }
    .service_form_container {
        flex-direction: column;
    }
    
    .service_features li:before {
        font-size: 3vw;
    }
    
    .step_number {
        width: 6vw;
        height: 6vw;
    }
    
    .timeline_line {
        width: 0.6vw;
        left: 3vw;
    }
    
    .process_step {
        padding-left: 8vw;
    }
    
    .step_content {
        padding-left: 3vw;
    }
    .countries_container{
        grid-template-columns: repeat(2, 1fr);
    }
    .footer_top {
        flex-wrap: wrap;
    }
    .footer_logo_img{
        height: 7vh;
    }
    .social_icon i {
        font-size: 2.5vw;
    }
    .footer_col {
        width: 48%;
        margin-bottom: 3vh;
    }
    
    .social_icon {
        width: 4vw;
        height: 4vw;
    }

    .back_to_top {
        width: 5vw;
        height: 5vw;
        font-size: 2.5vw;
    }
    .navbar{
        height: 10vh;
    }
    .hero_text{
        width: 90%;
    }
    .button_holder, .values_container, .team_container{
        flex-direction: column;
    }
    .navbar a, .about_image, .mission_image{
        display: none;
    }
    .open_menu {
        display: block;
    }
    .destination-card{
        width: 45vw;
    }
    .destination-container{
        height: 20vh;
    }
    .process_circle {
        width: 80vw;
        height: 80vw;
        max-width: 80vw;
        max-height: 80vw;
        min-width: 80vw;
        min-height: 80vw;
    }
    .process_item {
        width: 14vw;
        height: 10vh;
    }
    .process_item i {
        font-size: 4vw;
    }
    .process_item span {
        font-size: 3vw;
    }
    .contacts_holder, .message_container{
        flex-direction: column-reverse;
    }
    .form_holder .primary_button, .value_card{
        width: 100%;
    }
    .about_hero {
        height: 20vh;
        margin-top: 10vh;
    }
    .about_content, .mission_content, .message_content, .founder_image, .team_card{
        min-width: 100%;
        text-align: justify;
    }
    .value_icon{
        font-size: 4vw;
        padding: 3vh;
    }
    .grid_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact_card {
        padding: 1.5rem;
    }
    
    .contact_card p {
        font-size: 2.5vw;
    }
    
    .icon_circle {
        width: 60px;
        height: 60px;
    }
    .map_holder{
        height: 30vh;
    }
}
@media (max-width: 699px){
    .contact_card p {
        font-size: 3.7vw;
    }
    
    .icon_circle {
        width: 50px;
        height: 50px;
    }
    .title_border{
        text-align: left;
    }
    .process_item {
        width: 17vw;
        height: 8vh;
    }
    .founder_info{
        flex-direction: column;
        align-items: flex-start;
    }
    .quote_icon_left, .quote_icon_right{
        font-size: 6vw;
    }
    .footer_top {
        flex-direction: column;
    }
    
    .footer_col {
        width: 100%;
    }
    
    .footer_bottom {
        flex-direction: column;
        gap: 1vh;
        text-align: center;
    }
    .contact>h3{
        text-align: left;
    }
    .contact_icon, 
    .social_icon i {
        font-size: 4vw;
    }
    
    .social_icon {
        width: 8vw;
        height: 8vw;
    }
    
    .newsletter_input {
        font-size: 3vw;
        padding: 2vh 3vw;
    }
    
    .newsletter_btn {
        width: 8vw;
        height: 8vw;
        right: 0.5vw;
    }
    
    .back_to_top {
        width: 10vw;
        height: 10vw;
        font-size: 5vw;
        right: 5vw;
        bottom: 5vh;
    }
    .contact_country h3 {
        text-align: left;
    }
    .service_features li {
        padding-left: 3vw;
    }
    
    .service_features li:before {
        font-size: 4vw;
    }
    
    .step_number {
        width: 8vw;
        height: 8vw;
    }
    
    .timeline_line {
        width: 1vw;
        left: 4vw;
    }
    
    .process_step {
        padding-left: 10vw;
    }
}