.navbar-area.navbar-two .navbar .navbar-nav .nav-item a {
    color: #974098;
}

.menu-btn {
    background: #24A39F;
    color: var(--white);
    box-shadow: var(--shadow-2);
}

.menu-btn:hover {
    background-color: #974098; /* Darker shade for hover */
    transform: translateY(-1px);  /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Subtle shadow on hover */
    transition: all 0.3s ease;  /* Smooth transition */
}

.primary-btn {
    background: #24A39F;
    color: var(--white);
    box-shadow: var(--shadow-4);
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.primary-btn:hover {
    background-color: #974098; /* Darker shade for hover */
    transform: translateY(-1px);  /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Subtle shadow on hover */
    transition: all 0.3s ease;  /* Smooth transition */
}

hr {
    border-top: 4px solid #6d6e71;
    margin: 2rem 0;
  }

h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-left: 60px; /* Adjust to provide space for the icon */
}

p {
    font-size: clamp(1rem, 2vw, 1.35rem);
  }

h4 {
        font-size: clamp(1rem, 2vw, 2rem);
        font-weight: bolder;
}  

.h4card-title {
    font-size: clamp(1.4rem, 2vw, 2rem);
    font-weight: bolder;
}  

p, ul {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: #333;
    margin-top: 10px;
}

.row {
    margin-right: 0;
}

/* faq */

.study_name_txt {
    font-weight: bold;
    color: #f68029;
}

/* image overlay */
.responsive-container {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Adjust based on your layout */
    overflow: hidden;
}

.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the container */
    object-position: right; /* Focus on the right side of the image */
    border-radius: 10px; /* Optional: adds rounded corners to the image */
}

.overlay-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 10px 20px;
    border-radius: 10px;
    text-align: center;
}

.overlay-box_2 {
    position: absolute;
    top: 20px; /* Places the box at the top */
    left: 20px; /* Places the box on the left */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 15px 25px; /* Adjusted padding */
    border-radius: 10px;
    text-align: left; /* Aligns text to the left */
    max-width: 300px; /* Max width for the text box */
}

.box-text {
    font-size: 34px;
    font-weight: bold;
    color: black;
}

.box-text_2 {
    font-size: 34px;
    font-weight: bold;
    color: black;
    line-height: 1.4; /* Adjusted line height */
}

/* Media query for responsive behavior */


/* info boxes */
.container {
    margin: 0 auto;
}

.column-container {
    display: flex;
    justify-content: space-between; /* Aligns the boxes side by side */
    gap: 20px; /* Adds space between the boxes */
   /*  flex-wrap: wrap; Ensures boxes wrap on smaller screens */
}

.info-box {
    /* Two boxes side-by-side  
    width: 100%;
     */
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    position: relative;
}

.header-box {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
}

.icon-wrapper {
    position: absolute;
    top: -45px;
    left: -45px;
    /*background-color: #f68029;*/
    border-radius: 50%;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-icon {
    width: 60px; /* Adjust size */
    height: 60px;
}



/* Media query for mobile devices */
@media (max-width: 768px) {
    .column-container {
        flex-direction: column; /* Stacks boxes on smaller screens */
    }

    /*
    .info-box {
        width: 100%; 
    }
    */
    
    .icon-wrapper {
        top: -45px;
        left: -45px;
    }

    h3 {
        margin-left: 80px; /* Increase margin to prevent text overlap with the icon */
    }

    .responsive-img {
        object-position: 60% right; /* Focus more on the right side when screen is smaller */
    }
    .overlay-box {
        left: 10px;
        right: 10px;
        padding: 8px 15px;
    }
    .box-text {
        font-size: 18px; /* Smaller font size on smaller screens */
    }
    .overlay-box_2 {
        top: 10px;
        left: 10px;
        padding: 12px 18px; /* Adjusted padding for smaller screens */
        max-width: 250px; /* Adjusted width for mobile view */
    }
    .box-text_2 {
        font-size: 18px; /* Smaller font size on smaller screens */
    }
}

 

/* end faq */









/* Small devices (landscape phones, 576px and up) */

@media (max-width: 430px) { 

    .menu-btn {
            font-size: 0.5rem; /* Adjust font size */
            padding: 0.25rem 0.25rem; /* Adjust padding */
            line-height: 1rem;
            max-width: 67px;
    }


 }

 /*@media (max-width: 576px) { */

@media (min-width: 431px) { 

    .menu-btn {
            font-size: 0.6rem; /* Adjust font size */
            padding: 0.25rem 0.25rem; /* Adjust padding */
            line-height: 1rem;
            max-width: 111px;
    }


 }


@media (min-width: 576px) { 


 }

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 

 }

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 

 }

/*  Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { 

 }