:root {
    --primary: #0082c5;
    --secondary: #1e1e48;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-pink: #fff5f9;
    --light-blue: #f0f2ff;
    --college-title: clamp(1.1rem, calc(0.95rem + 0.24vw), 1.13rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Inter", sans-serif;
}

body {
    background-color: white;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
li {
}

a {
    text-decoration: none;
    cursor: pointer;
}

p {
    font: 18px;
}

img{
    max-width: 100%;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    /* position: fixed; */
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 35px;
    margin-right: 10px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--secondary);
}

.logo-text span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
    padding: 20px;
    display: inline-block;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff521f;
    bottom: 0px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: #0a3d62;
    color: white;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button-1 {
    background-color: var(--primary);
    color: white;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    max-width: 40%;
}

.cta-button:hover {
    background-color: #ff521f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 53, 123, 0.3);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}



.hero-stats {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.stat-item {
    background-color: rgb(0 0 0 / 16%);
    border-radius: 5px;
    padding: 15px 20px;
    margin-right: 15px;
    margin-bottom: 0px;
    /* min-width: 120px; */
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Lead Form */
.lead-form-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    /* width: 100%; */
    max-width: 400px;
    /* position: absolute; */
    /* top: 120px; */
    /* right: 250px; */
    /* z-index: 3; */
    margin: 0 auto;
}

.form-header {
    text-align: center;
}

.form-header h3 {
    font-size: 20px;
    color: #0a3d62;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 12px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: #0a3d62;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.submit-btn:hover {
    background-color: #c0392b;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid #fff;
}


.country_card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 20px;
    margin-top: -100px;
}

.country_card .card {
    padding: 10px;
    border: unset;
}

.country_card .card .img {
    height: 100%;
}

.country_card .card .img img {
    border-radius: 10px;
}

.country_card .card .right_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 25px;
}

.country_card .card .right_box h4 {
    font-size: 40px;
    font-weight: 700;
    color: #e74c3c;
    margin: 0;
    text-transform: uppercase;
}

.country_card .card .right_box img {
   
    width: 70px;
    object-fit: fill;
    margin-right: 30px;
    border: 2px solid #d2d2d2;
}

.country_card .card .right_box .col {}

.country_card .card .right_box .col .p {}

.country_card .card .right_box .col a {
    background: #0082c5;
    border-radius: 20px;
    font-size: 18px;
    color: #fff;
    padding: 10px 15px;
}


  /* Why Georgia Section */
   .section-title {
           text-align: center;
           margin-bottom: 40px;
       }

       .section-title h2 {
           font-size: 32px;
           color: #0a3d62;
           margin-bottom: 15px;
           font-weight: 700;
       }

       .title-underline {
           display: block;
           width: 80px;
           height: 4px;
           background-color: #ff521f;
           margin: 0 auto;
       }

       .section-title p {
           margin-top: 15px;
           color: #666;
           font-size: 16px;
       }
       .why-georgia {
           padding-top: 60px;
           padding-bottom: 0;
       }

       .features-grid {
           display: grid;
           grid-template-columns: repeat(3, minmax(300px, 1fr));
           gap: 30px;
           margin-bottom: 40px;
       }

       .feature-card {
           background-color: #fff;
           border-radius: 8px;
           padding: 30px;
           text-align: center;
           box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
           transition: all 0.3s ease;
           border: 3px solid #ff521f;
       }

       .feature-card:hover {
           transform: translateY(-5px);
           box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
       }

       .feature-icon {
           width: 70px;
           height: 70px;
           /* background-color: rgba(10, 61, 98, 0.1); */
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           margin: 0 auto 20px;
       }

       .feature-icon i {
           font-size: 30px;
           color: #e74c3c;
       }

       .feature-card h3 {
           margin-bottom: 15px;
           color: #e74c3c;
           font-size: 18px;
           font-weight: 800;
       }

       .feature-card p {
           color: #666;
           font-size: 14px;
       }

       .cta-container {
           text-align: center;
           padding-bottom: 80px;
       }


       .services_section {
    margin-top: 60px;
}

.services_section .row {
    border-radius: 20px;
    padding: 60px 30px;
}

.services_section .row:nth-child(odd) {
    background: #eff6fa;
}

.services_section .head {
    position: relative;
}

.services_section .head .backk {
    position: absolute;
    z-index: 1;
    color: #edf5f9;
    font-size: 6.2rem;
    opacity: 1;
    top: 3px;
    font-weight: bold;
    letter-spacing: 60px;
    left: 50%;
    transform: translateX(-45%);
}

.services_section .head h2 {}

.services_section .services_content {}

.services_section .services_content .title {}

.services_section .services_content .title h4 {
    font-size: 35px;
    font-weight: 700;
    line-height: normal;
}

.services_section .services_content p {
    font-size: 16px;
    margin-bottom: 10px;
}

.services_section .services_content h6 {
    font-size: 20px;
}

.services_section .services_content ul {
    margin: 10px 0;
}

.services_section .services_content ul li {
    list-style: none;
}


.services_section .services_content .carousal-btn {
    text-align: center;
}

.services_section .services_content .carousal-btn a {
    display: inline-block;
    position: unset;
}

.services_section .services_images {
    text-align: center;
}

.services_section .services_images img {
    max-width: 100%;
    border-radius: 20px;
}




/* ===========main_section============= */


.hero_section .main_section .banner_bg_image{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_section .main_section {
    position: relative;
    min-height: 600px;
}

.hero_section .main_section .right_box {
     color: #fff;
     width: 35%;
     /* height: 100%; */
     /* display: flex; */
     /* flex-direction: column; */
     /* justify-content: center; */
     /* align-items: center; */
     /* text-align: start; */
     /* padding: 40px 40px; */
     /* background-color: rgb(5 5 5 / 21%); */
     /* backdrop-filter: blur(8px) saturate(100%); */
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     right: 0;
}
.hero_section .main_section .left_box {
    color: #fff;
    width: 50%;
    /* height: 100%; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: center; */
    /* text-align: start; */
    padding: 40px 40px;
    background-color: rgb(5 5 5 / 21%);
    backdrop-filter: blur(8px) saturate(100%);
    -webkit-backdrop-filter: blur(5px) saturate(100%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.hero_section .main_section .left_box h6 {
    /* width: 100%; */
    /* margin-bottom: 0px; */
    font-size: 30px;
    /* text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.2); */
}

.hero_section .main_section .left_box h2 {
    color: #ff521f;
    /* width: 100%; */
    font-size: 70px;
    /* margin-bottom: 0px; */
    font-weight: 800;
    text-shadow: 0px 7px 4px rgba(0,0,0,.25);
}

.hero_section .main_section .left_box h4 {
    /* width: 100%; */
    margin-bottom: 20px;
    /* font-weight: 400; */
    /* text-shadow: 1px 3px 2px rgba(0, 0, 0, 0.6); */
}

.hero_section .main_section .left_box p {margin-bottom: 0;}


/* ==========form_section================= */

.form_section {
    margin: 80px 0px;
}
.form_section .heading{
    text-align: center;
    margin-bottom: 40px;
}
.form_section .heading h2 span{
    
color: #ff521f;
    
font-weight: 900;
}
.form_section .trigger{
    cursor: pointer;
}
.form_section .heading h2{
    text-align: center;
    margin-bottom: 20px;
}
.form_section .row {}

.form_section .row .col-md-6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form_section .img_box .university_img_box:hover img {
    transform: scale(1.1);
    /* Image zooms a bit more */
}

.form_section .university_img_box:hover {
    transform: scale(1.05);
    /* Zoom in */
}

.form_section .img_box .university_img_box {
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    width: fit-content;
    margin: auto;
}



.form_section .img_box .row {
    gap: 40px 0px;
}

.form_section .img_box .row:nth-child(2) {
    margin: 0px;
}

.form_section .img_box img {
    border-radius: 10px;
    border: 2px solid #53a1c9;
    object-fit: cover;
    transition: transform 0.4s ease;
    /* height: 110px; */
}

.form_section .img_box .five_university {
    text-align: center;
}

.form_section .img_box .five_university img {
    object-fit: fill;
}

.form_section .img_box .five_university p {
    width: 100%;
}

.form_section .img_box p {
    font-size: 14px;
    margin: 0px auto;
    text-align: center;
    padding-top: 10px;
    font-weight: 600;
}

.form_section .form_box {}

.form_section .form_box form {
    width: 80%;
    background: linear-gradient(180deg, #54a3cb, #355d72);
    text-align: center;
    padding: 24px 20px;
    border-radius: 20px;
    color: #fff;
    position: relative;
    margin: 0 auto;
}

/*.form_section .form_box form::before {
    content: "";
    width: 80%;
    height: 64%;
    background-color: #ff521f;
    position: absolute;
    top: 20%;
    border-radius: 10px 0px 50px 0px;
    z-index: -1;
}*/

.form_section .form_box form h6 {
    margin-bottom: 10px;
    font-weight: bold;
}

.form_section .form_box form p {
    font-size: 11px;
}

.form_section .form_box form input {
    margin-bottom: 20px;
    padding: 7px 13px;
    width: 100%;
    border-radius: 10px;
    border: unset;
}


input:focus {
    outline: none;

    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.4);
}



.form_section .form_box form select {
    width: 100%;
    /* margin-bottom: 20px; */
    padding: 7px 13px;
    border-radius: 10px;
    color: gray;
    height: 40px;
}


.form_section .form_box form select option {}

.form_section .form_box form button {
    width: 100%;
    padding: 7px 0px;
    border: unset;
    font-weight: bold;
    border-radius: 10px;
    background-color: #ff521f;
    color: #fff;
}



/* ================georgia============== */


.georgia {
    background-image: url('https://rmgoe.org/landing_pages/images/md_ms_7.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 600px;
    position: relative;
    background-attachment: fixed;
}

.georgia .top_box {
    position: absolute;
    width: 50%;
    background-color: #0000008c;
    top: 50%;
    left: 0px;
    text-align: center;
    color: #fff;
    border-radius: 0px 30px 0px 0px;
    transform: translateY(-50%);
    backdrop-filter: blur(5px) saturate(200%);
    -webkit-backdrop-filter: blur(5px) saturate(100%);
    z-index: 2;
}

.georgia .top_box h2 {
    font-size: 70px;
    margin: 0px;
    padding: 20px 0px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0px 7px 4px rgba(0,0,0,.25);
}

.georgia .bottom_box {
    width: 70%;
    background-color: #022559b8;
    position: absolute;
    top: 50%;
    right: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 18px 0px;
    border-radius: 0px 0px 0px 40px;
    transform: translateY(-50%);
    margin-top: 122px;
    backdrop-filter: blur(5px) saturate(200%);
    -webkit-backdrop-filter: blur(5px) saturate(100%);
    z-index: 1;
}

.georgia .bottom_box .box {
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.georgia .bottom_box .box p {
    font-size: 18px;
    text-align: center;
}

.georgia .bottom_box .box img {
    width: 60px;
    height: 50px;
    object-fit: contain;
}

.georgia .bottom_box .box a {
    background: #fff;
    color: #035F8F;
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-top: 5px;
    font-weight: 500;
}

.georgia .bottom_box .row {
    width: 100%;
    justify-content: space-around;
}


/* Why Georgia Section */
       .why-georgia {
           background-color: #f8f9fa;
           padding-top: 80px;
           padding-bottom: 0;
       }

       .features-grid {
           display: grid;
           grid-template-columns: repeat(4, minmax(auto, 1fr));
           gap: 30px;
           margin-bottom: 40px;
       }

       .feature-card {
           background-color: #fff;
           border-radius: 8px;
           padding: 30px;
           text-align: center;
           box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
           transition: all 0.3s ease;
       }

       .feature-card:hover {
           transform: translateY(-5px);
           box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
       }

       .feature-icon {
           width: 100%;
           height: 70px;
           /* background-color: rgba(10, 61, 98, 0.1); */
           border-radius: 50%;
           display: flex;
           align-items: center;
           justify-content: center;
           margin: 0 auto 0px;
       }
       .feature-icon img{
        width: 75%;
       }

       .feature-icon i {
           font-size: 30px;
           color: #ff521f;
       }

       .feature-card h3 {
           margin-bottom: 15px;
           color: #ff521f;
           font-size: 18px;
           font-weight: 800;
       }

       .feature-card p {
           color: #666;
           font-size: 14px;
       }



       /* ===================overview_georgia==================== */

.overview_georgia {
    padding: 80px 0px;
}

.overview_georgia .row {}

.overview_georgia .box {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.overview_georgia .box h2 {
    margin-bottom: 20px;
    font-weight: 600;
}

.overview_georgia .box p {margin-bottom: 0;}

.overview_georgia .box ul {
    padding: 0px;
    /* margin-top: 20px; */
    padding-left: 20px;
}

.overview_georgia .box ul li {
    margin-top: 20px;
    list-style: disc;
}
.overview_georgia .box ul li span{
    font-weight: 500;
    color: #0a3d62;
}

.overview_georgia .img_box {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overview_georgia .img_box img {
    width: 100%;
    height: 379px;
    object-fit: contain;
}

/* ==============top_medical_university================ */


.top_medical_university {
    margin: 0px 0px 0px 0px;
    padding: 80px 0;
    background: #f7f7f7;
}

.top_medical_university .heading {
    margin: 0 0 40px 0px;
}

.top_medical_university .heading h2 {font-size: 32px;color: #0a3d62;margin-bottom: 0px;font-weight: 700;text-align: center;}

.top_medical_university .row {
    display: flex;
    margin-top: 10px;
    gap: 40px 0px;
    justify-content: center;
}

.top_medical_university .row .head {
    width: 70%;
}

.top_medical_university .row .dotes {
    width: 30%;
}

.top_medical_university .row .head h4 {
    font-size: 17px;
}

.top_medical_university .row img {
    height: 40px;
    min-width: 60px;
    object-fit: cover;
}


.top_medical_university .row p {
    margin: 0px;
}

.top_medical_university .row2 {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    margin-top: 10px;
}

.top_medical_university .row2 h6 {}

.top_medical_university .row2 p {
    margin: 0px;
}

.top_medical_university .row2 .small {
    text-align: center;
}

.top_medical_university .row2 .small h6 {
    font-size: 12px;
}

.top_medical_university .row2 .small p {
    font-size: 11px;
    text-align: left;
}

.top_medical_university .row .box .btn {
    width: 100%;
    margin: 0px 0px 0px 0px;
}

.top_medical_university .row .box .btn a {
    color: #ff0000;
    font-weight: 500;
    background: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    border: 1px solid;
}

.top_medical_university .row .box {
    padding: 15px 15px;
    background: #fff;
    color: #000;
    margin: 0px 5px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
}

.top_medical_university .box .img_box{}
.top_medical_university .box .img_box img{}
.top_medical_university .box .title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}
.top_medical_university .box .title h4{
    margin: 0;
    font-size: 16px;
}
.top_medical_university .box .title .flag{
    display: flex;
    align-items: center;
    gap: 10px;
}
.top_medical_university .box .title .flag img{
    border: 1px solid #d2d2d2;
}
.top_medical_university .box .title .flag p{}

.top_medical_university .row .box .image_georgia {
    width: 100%;
    height: 170px;
    object-fit: fill;
}

.top_medical_university .row .box ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 2%;
    margin: 15px 0;
}
.top_medical_university .row .box ul li{
    width: 32%;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}



/* <!-- -=================students in georgia========================= --> */


.student_georgia {
    padding: 80px;
}

.student_georgia .row {

    gap: 25px 0;
}

.student_georgia .heading {
    text-align: center;
    margin-bottom: 40px;
}

.student_georgia .heading h2 {
    font-size: 32px;
    color: #0a3d62;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.student_georgia .heading p {
    width: 50%;
    margin: auto;
}

.student_georgia .box {
    text-align: center;
    border: 2px solid #0a3d62;
    padding: 10px;
    border-radius: 10px;
    height: 100%;
}

.student_georgia .box img {
    width: 80px;
    background: #f16136;
    height: 80px;
    object-fit: contain;
    border-radius: 100%;
    padding: 10px;
    margin-bottom: 20px;
}

.student_georgia .box h4{
    font-size: 16px;
}

.student_georgia .box p {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 14px;
}

/* <!-- =============georgia eligibility============== --> */

.georgia_eligibility {
    background: linear-gradient(180deg, #f6fbfc, #c6e4ed);
    padding: 80px 0 60px 0;
}

.georgia_eligibility .row {}

.georgia_eligibility .img_box {}

.georgia_eligibility .img_box img {
    width: 70%;
    margin: 0 auto;
    display: block;
}

.georgia_eligibility .right_box {
    /* height: 100%; */
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: center; */
    /* align-items: flex-start; */
    text-align: center;
}

.georgia_eligibility .right_box table td{
    text-align: left;
    vertical-align: middle;
    padding: 20px;
}

.georgia_eligibility .right_box h2 {
    margin: 0;
}

.georgia_eligibility .right_box p {
    margin: 10px 0 40px 0;
}

.georgia_eligibility .right_box ul {
    list-style-type: none;
    padding: 0px;
    color: #fff;
}

.georgia_eligibility .right_box ul li {
    background: #0a3d62;
    margin-bottom: 20px;
    padding: 18px 16px;
    border-radius: 30px;
    font-size: 14px;
}

/* <!-- ================= Documents Required ================== --> */

.document_required {
    margin: 80px 0px 70px 0;
}

.document_required .row {}

.document_required .left_box {}

.document_required .left_box h2 {
    /* font-size: 38px; */
    /* color: #0982bf; */
    font-size: 32px;
    color: #0a3d62;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: normal;
}

.document_required .left_box p {}

.document_required .left_box ul {
    list-style-type: none;
    padding: 0px;
}

.document_required .left_box ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.document_required .left_box ul li i{
    
color: #0a3d62;
    
font-size: 20px;
}

.document_required .left_box ul li img {
    margin-right: 10px;
}

.document_required .img_box {}

.document_required .img_box img {
    width: 100%;
}


.top_medical_university .rowtwo {
    margin-top: 30px;
}


  /* ================= FAQ STYLES ================= */

       .faq {
           padding: 80px 0 60px 0;
           background: #f7f7f7;
       }

       .faq .container {
       }

       .faq .heading {
           text-align: center;
           background-image: url('./5448.jpg');
           background-size: cover;
           background-position: center;
           border-radius: 16px;
       }

       .faq .heading h2 {
           margin-bottom: 20px;
           font-size: 36px;
           background: rgba(255, 255, 255, 0.2);
           border-radius: 16px;
           display: inline-block;
       }

       .faq .heading p {
           /* margin: 20px 0; */
           color: grey;
           font-size: 16px;
           padding: 0;
           margin-bottom: 40px;
       }

       .faq .accordion {
           width: 100%;
           max-width: 800px;
           margin: auto;
       }

       .faq .accordion .accordion-item {
           border: none;
           margin-bottom: 20px;
           box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
           border-radius: 10px;
       }

       .faq .accordion .accordion-button {
           padding: 15px;
           font-size: 18px;
           background: #fff;
           box-shadow: none;
       }

       .faq .accordion .accordion-button i {
           border: 2px solid darkgray;
           padding: 8px;
           font-size: 16px;
           margin-right: 10px;
           color: gray;
           border-radius: 8px;
       }



/* Minimal styling for custom modal */
       .vik_modal {
           position: fixed;
           left: 0;
           top: 0;
           width: 100%;
           height: 100%;
           background-color: rgba(0, 0, 0, 0.5);
           opacity: 0;
           visibility: hidden;
           transform: scale(1.1);
           transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
           z-index: 999;
       }

       .vik_modal .vik_modal-content {
           position: absolute;
           top: 50%;
           left: 50%;
           transform: translate(-50%, -50%);
           background-color: white;
           width: 30%;
           border-radius: 0.5rem;
           padding: 12px;
       }

       .vik_modal .vik_modal-content input {}

       .vik_modal .vik_modal-content .note {
           margin: 20px;
           margin-bottom: 0;
       }

       .vik_modal .vik_modal-content form {
           padding: 20px;
           margin-top: 10px;
           margin-top: 0 !important;
           ;
       }

       .vik_modal form button {
           width: 100%;
           background: #c31313;
           color: #fff;
           border: none;
           padding: 10px;
           border-radius: 4px;
           font-size: 16px;
           cursor: pointer;
           margin-top: 0px;
       }

       .vik_modal_close-button {
           float: right;
           font-size: 30px;
           text-align: center;
           cursor: pointer;
           border-radius: 100%;
           transition: color 0.12s ease-in-out;
           position: absolute;
           right: -20px;
           font-weight: 700;
           background: #fff;
           top: -20px;
           padding: 0px 10px;
           z-index: 2;
           width: 40px;
           height: 40px;
           display: flex;
           justify-content: center;
           align-items: center;
       }

       .vik_modal_close-button:hover {
           color: var(--clr-main);
       }

       .vik_modal.show-modal {
           opacity: 1;
           visibility: visible;
           transform: scale(1);
           transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
       }

        /* Footer */
       .footer {
           color: white;
           padding: 60px 0 0px 0;
       }


       .footer .footer-section {
           /* display: flex; */
           text-align: center;
           margin-bottom: 60px;
       }

       .footer-content {
           display: flex;
           justify-content: center;
           align-items: center;
       }

       .footer-section h3 {
           font-size: 1.5rem;
           font-weight: 700;
           margin-bottom: 16px;
           color: #3b82f6;
       }

       .footer-section h4 {
           font-size: 1.2rem;
           font-weight: 600;
           margin-bottom: 16px;
           color: #e2e8f0;
       }

       .footer-section p {
           color: black;
           line-height: 1.6;
           margin-bottom: 20px;
           padding-top: 20px;
       }

       .contact-info {
           display: flex;
           gap: 12px;
           justify-content: center;
           align-items: center;
       }

       .contact-info a {}

       .contact-info .contacts-item {
           display: flex;
           justify-content: center;
           align-items: center;
           gap: 12px;
           height: 50px;
           background: green;
           border-radius: 20px;
           padding: 10px 30px;
           cursor: pointer;
           color: #fff;
       }

       .contacts-item i {
           font-size: 30px;
       }

       .footer-section ul {
           list-style: none;
       }

       .footer-section ul li {
           margin-bottom: 8px;
       }

       .footer-section ul li a {
           color: #94a3b8;
           text-decoration: none;
           transition: color 0.3s ease;
       }

       .footer-section ul li a:hover {
           color: #3b82f6;
       }

       .footer-bottom {
           border-top: 1px solid #334155;
           padding-top: 20px;
           text-align: center;
           color: #64748b;
       }

       .hero_section{
    position: relative;
}
       .hero_section .right_box{
    position: absolute;
    z-index: 9;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width:620px){
    nav ul,
    .why-georgia{
 
    }

    .hero_section .right_box{
        transform: unset;
        top: unset;
        bottom: -50px;
        right: 0%;
    }

    .md_ms_counselling .table_box{
        padding: 20px 20px!important;
    }
    .why_Choose_mbbs_abord .row .col-md-4{
        padding: 0!important;
    }
    .awards .awards_top_section{
        padding: 0 10px!important;
    }

    .feature-icon img{
        width: 100%;
    }

    .why_Choose_mbbs_abord{
        padding: 0!important;
    }

    .hero_section .main_section{
        padding: 0 0 20px 0;
        min-height: 900px;
    }

    .section-title h2{
        font-size: 20px;
    }
    .hero_section .main_section .left_box,
    .student_georgia .heading p,
    .georgia_eligibility .img_box img{
        width: 100%;
    }
    .faq .accordion .accordion-button{
        font-size: 16px;
    }
    .faq{
        padding: 60px 0 60px 0;
    }
    .document_required .left_box{
        margin-bottom: 40px;
    }
    .footer{
        padding: 40px 0 0 0;
    }
    .form_section .form_box{
        position: relative;
    }
    .form_section .form_box form{
        position: unset;
    }
    .form_section .form_box form::before{
        right: 0;
    }
    .student_georgia .row{
        gap: 30px 0;
    }
    .hero_section .main_section .left_box h2{
        font-size: 55px;
    }
    .form_section .form_box form{
        width: 90%;
    }
    .feature-card{
        margin-bottom: 40px;
        width: 45%;
        display: inline-block;
        margin: 10px 2%;
    }
    
    .georgia_eligibility .img_box{
        margin-bottom: 40px;
    }
    .form_section .img_box{
        margin-bottom: 60px;
    }
    .georgia .bottom_box{
        margin-top: 50px!important;
    }
    .overview_georgia .img_box{
        margin-top: 40px;
    }
    .student_georgia{
            padding: 60px 0;
    }
    .top_medical_university{
        padding: 60px 0;
    }
    .student_georgia .heading h2,
    .top_medical_university .heading h2{
        font-size: 20px;
    }
    .top_medical_university .box .title{
        gap: 0 10px;
    }
    .feature-card h3{
        font-size: 16px;
    }
    nav ul li{
        display: none;
    }

    nav ul li:last-child a{
        font-size: 16px;
    }
    nav ul li:last-child{
        display: block;
    }

    .hero_section .main_section .left_box h6{
        font-size: 20px;
    }
    .hero_section .main_section .left_box{
        padding: 20px 20px;
        position: unset;
        transform: unset;
    }

    .hero_section .main_section .right_box{
        position: unset;
        width: 100%;
        transform: unset;
    }
    .georgia .bottom_box .box{
        width: 50%;
    }
    .georgia .bottom_box .row{
        justify-content: center;
    }
    .georgia .top_box,
    .georgia .bottom_box{
        position: unset;
        transform: unset;
        width: 100%;
        margin: 0;
        border-radius: unset;
    }
    .georgia{
        height: unset;
        padding: 80px 0;
    }
    .document_required .left_box h2{
        font-size: 20px;
    }
    .features-grid{
        display: block;
    }
    .faq .heading h2{
        font-size: 20px;
        font-weight: 600;
    }
    .vik_modal .vik_modal-content{
        width: 85%;
    }
}



.md_ms_counselling {
    background: #edf6ff;
    padding: 80px 0px;
}

.md_ms_counselling .heading{
    text-align: center;
    margin-bottom: 40px;
}
.md_ms_counselling .heading h2{}
.md_ms_counselling .heading p{}

.md_ms_counselling .table_box {
    padding: 30px 60px;
    background: #0082c5;
    border-radius: 20px;
}

.md_ms_counselling .table_box table {
    text-align: center;
    width: 100%;
    border: 1px solid #0082c5;
    background: #fff;
    border-radius: 10px;
}

.md_ms_counselling .table_box table tr {
    border: 2px solid #0082c5;
}

.md_ms_counselling .table_box table tr th {
    border: 2px solid #0082c5;
    padding: 10px 0px;
    font-size: 20px;
}

.md_ms_counselling .table_box table tr td {
    border: 2px solid #0082c5;
    padding: 10px 0px;
}



/* ============neet_cut_off========== */


.neet_cut_off {
    margin: 60px 0px;
    padding: 50px 0px;
    text-align: center;
}

.neet_cut_off .table_box {
    margin-top: 40px;
}

.neet_cut_off .table_box table {
    text-align: center;
    width: 100%;
}

.neet_cut_off .table_box table tr {
    border: 2px solid gray;
}

.neet_cut_off .table_box table tr td {
    border: 2px solid gray;
    padding: 10px 0px;
}

.neet_cut_off .table_box table tr th {
    border: 2px solid gray;
    padding: 10px 0px;
    background: #0082c5;
    color: #fff;
}


/* <!-- -------------------- why choose mbbs abord with RM GROUP OF EDUCATION  --------------------- --> */

.why_Choose_mbbs_abord {
    margin-top: 60px;
    background-color: #edf6ff;
    padding-bottom: 30px;
}

.why_Choose_mbbs_abord .why_choose_apply_now {
    text-align: center;
    padding: 20px 0px 40px 0px;
}

why_Choose_mbbs_abord {}

.why_Choose_mbbs_abord .why_choose_mbbs_abord_heading {
    padding: 40px 0px;
}

.why_Choose_mbbs_abord {
    margin: 30px 0px 0px 0px;
    text-align: center;
    padding: 0px 135px;
}

.why_Choose_mbbs_abord .container .row {
    padding-top: 10px;
}

.why_Choose_mbbs_abord .row .col-md-4 {
    padding: 0px 40px;
}

.why_Choose_mbbs_abord .row .col-md-4 .why_choose_mbbs_abord_box {}

.why_Choose_mbbs_abord .row .col-md-4 .why_choose_mbbs_abord_box img {
    max-width: 56px;
    max-height: 63px;
}

.why_Choose_mbbs_abord .row .col-md-4 .why_choose_mbbs_abord_box h4 {
    font-size: 16px;
    margin: 0px;
    padding: 20px 0 0px 0px;
}

.why_Choose_mbbs_abord .row .col-md-4 .why_choose_mbbs_abord_box p {
    font-size: 12px;
    padding: 10px 20px;
    font-weight: 400;
}

/* <!-- ------ -------strategically --------------------- --> */

.strategically {
    /* margin-bottom: 50px; */
    padding-top: 80px;
}

.strategically .row {
    margin: 0;
    padding: 0px 12px;
}

.strategically .row .col-md-6 {
}

.strategically .row .col-md-6 .strategically_heading_first {}

.strategically .row .col-md-6 .strategically_heading_first h2 {
    font-weight: 800;
}

.strategically .row .col-md-6 .strategically_heading_first h4 {
    font-size: 40px;
    font-weight: 900;
    margin: 15px 0;
}

.strategically .row .col-md-6 .strategically_heading_first p {
    font-size: 20px;
}

.strategically .row .col-md-6 .box {
    width: 100%;
}

.strategically .row .col-md-6 .box img {
    width: 100%;
    height: auto;
}

.strategically .row .strategically_boxes {
    margin-top: 30px;
}

.strategically .row .strategically_boxes .strategically_button {
    text-align: center;
    margin-top: 40px;
}

.strategically .row .strategically_boxes .row {}

.strategically .row .strategically_boxes {}

.strategically .row .strategically_boxes .strategically_boxes_img {
    text-align: center;
}

.strategically .row .strategically_boxes .strategically_boxes_img img {}

.strategically .row .strategically_boxes .strategically_boxes_img img {
    width: 100%;
}

.strategically .row .strategically_boxes .strategically_boxes_img h4 {
    font-size: 13px;
    padding-top: 10px;
    font-weight: 600;
    color: #094486;
}

.strategically .row .strategically_boxes .strategically_boxes_img p {
    font-size: 11px;
    padding: 0px 8px;
}

/* <!-- --------------awards --------------------- --> */

.awards {
    background-image: url("https://rmgoe.org/landing_pages/images/Awards/Background.png");
    padding: 80px 0;
}

.awards .left_img img {
    height: 100%;

    object-fit: cover;
}

.awards .container {}

.awards .row {}

.awards .awards_top_section {
    padding: 0 35px;
}

.awards .container .bottom_box .row {}

.awards .container .bottom_box .row .col {
    display: flex;
    gap: 20px;
}

.awards .left_img {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.awards .left_img img {
    width: 100%;
}

.awards .awards_right_content {}

.awards .awards_right_content h2 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: 700;
}

.awards .awards_right_content p {
    color: white;
    text-align: center;
    margin-bottom: 30px;
}


.awards .container .bottom_box .row .bottom_box_imgs img {
    width: 100%;
}


.hero_section .main_section{
    height: 100%;
}