@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
}


ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

.p-60 {
    padding: 60px 0;
}

h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
}
#overlay.active {
    display: block;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header {
    background-color: #fff2eb;
}

.header {
    color: #242424;

    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 70px;
    z-index: 1000;
}


.logo img {
    mix-blend-mode: darken;
    height: 60px;
}

/* nav .nav-listigation style */
nav .nav-list,
nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

nav .nav-list a {
    color: #222222;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 10px;
    border-radius: 4px;
}

nav .nav-list a:hover,
nav .nav-list a:focus {
    background-color: #c1c1c133;
    outline: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 24px;
    height: 18px;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0;
    position: relative;
    z-index: 1100;
    transition: transform 0.3s ease;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #1f1f1f;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger open state - cross icon */
.hamburger.open span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.h-left {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
    height: 100%;
}

.hero {
    background-color: #fffcfa;
}

.heroButton {
    padding: 10px 40px;
    border: 2px solid #1f1f1f;
    border-radius: 40px;
    width: fit-content;
    color: #1f1f1f;
    font-weight: 700;
    transition: all 0.3s ease;
}

.heroButton:hover {
    border-color: #ff6f47;
    color: #ff6f47;
}

.usp-box {
    display: flex;
    gap: 15px;
}

.cities-grid {
    margin-top: 50px;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
}

/* City card */
.city-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Image style */
.city-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.city-card:hover img {
    transform: scale(1.05);
}

/* Text info */
.city-info {
    padding: 16px;
}

.city-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f15a24;
    margin-bottom: 6px;
}

.city-info p {
    font-size: 0.9rem;
    color: #666;
}

.guides-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.see-all-btn,
.contactButton,
#toggleButton {
    text-decoration: none;
    color: #1d1d1d;
    border: 2px solid #1d1d1d;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.see-all-btn:hover,
.contactButton:hover,
#toggleButton:hover {
    background-color: #1d1d1d;
    color: #fff;
}

/* Guides grid */
.guides-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

/* Card Layout */
.guide-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

/* Image */
.guide-img {
    flex: 1 1 40%;
}

.guide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.guide-content {
    flex: 1 1 60%;
    padding: 20px;
}

.guide-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 10px;
}

.guide-content p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.5;
}

.read-link {
    color: #f15a24;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.read-link:hover {
    color: #c94512;
}


.why-choose-us .choose-card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.why-choose-us .choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #f15a24;
}

.why-choose-us .icon {
    color: #f15a24;
    transition: color 0.3s ease;
}

.why-choose-us .choose-card:hover .icon {
    color: #f15a24;
}

.seo-inner {
    background: #fdf5f2;
    border-radius: 30px;
    padding: 60px;
}

.seo-content-wrap {
    position: relative;
    overflow: hidden;
    opacity: 1;
    transition: opacity .3s
}

.seo-content-wrap.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #fdf5f2 0, #e8e8e800 100%);
    pointer-events: none
}

.hidden {
    display: none;
}

.seo-content-wrap.collapsed {
    opacity: .9;
}

.seo-subtitle {
    color: #f15a24;
    font-size: 1.5rem;
    margin: 1.8rem 0 1rem;
    border-bottom: 2px solid #f15a24;
    padding-bottom: .5rem
}

.seo-text {
    color: var(--faq-text);
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 1rem
}

.table {
    font-size: 15px;
    --bs-table-striped-bg: #ffbca3;
}

.seo-content .cta-container {
    background-color: #f8f9fa;
    border-left: 4px solid #f15a24;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0
}

.seo-content .cta-title {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: .8rem
}

.exam-help-list li {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    margin-bottom: 15px;
    position: relative;
    border-left: 4px solid #f15a24;
}

.exam-help-list li ul {
    list-style-type: disc;
    padding-left: 1rem;
}

.exam-help-list li li {
    background: #fff;
    padding: 0;
    border-radius: unset;
    box-shadow: none;
    margin-bottom: 5px;
    position: relative;
    border-left: unset;
}

.reasons-list {
    counter-reset: list-counter;
    margin-left: 0;
    padding-left: 0
}

.reasons-list li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.6;
    color: #444
}

.reasons-list li::before {
    content: counter(list-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #f15a24
}

.assignment-process {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.assignment-process li {
    background-color: #f9f9f9;
    border-left: 4px solid #f15a24;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
    line-height: 1.6;
    font-size: 16px
}

.trust-header {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-header img {
    height: 24px;
}

.trust-section .review-info {
    color: #5f6c75;
    margin-top: 10px;
    font-size: 15px;
}

.trust-carousel .item {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 220px;
}

.trust-carousel h5 {
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.trust-carousel p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.trust-carousel .item img {
    height: 20px;
    width: auto;
}

.trust-carousel .user {
    font-weight: 600;
    color: #333;
    margin-top: 15px;
}

.trust-carousel .time {
    color: #777;
    font-size: 14px;
}

.owl-nav {
    position: absolute;
    top: -60px;
    right: 10px;
}

.owl-nav button {
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    transition: 0.3s;
}

.owl-nav button:hover {
    background: #00b67a !important;
    color: #fff !important;
    border-color: #00b67a !important;
}

.trust-footer {
    margin-top: 30px;
}

.trust-footer a {
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.trust-footer a:hover {
    color: #f15a24;
}
.study_faq_wrap .faq_item {
    box-shadow: 0 4px 24px rgba(0, 0, 0, .04);
    border-radius: 12px;
    border: 1px solid rgba(43, 42, 41, .1);
    background-color: #fff;

    margin-top: 15px;
}

.study_faq_wrap .faq_item .faq_header {
    font-size: 18px;
    line-height: 28px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    cursor: pointer;
    padding: 20px 24px;
    transition: all .3s ease-in-out;
}

.faq_item .faq_header h3 {
    font-size: 18px;
    font-weight: 500;
    color: #002147;
    margin: 0;
}

.study_faq_wrap .faq_item .faq_content {
    font-size: 14px;
    margin-top: 5px;
    display: none;
    padding: 20px 24px;
    padding-top: 0;
    transition: all .3s ease-in-out;
}

.study_faq_wrap .faq_item .faq_content.active {
    display: block;
}

.faq_item .faq_header.active i {
    transform: rotate(-180deg);
    transition: all .3s ease-in-out;
}

footer {
    padding: 25px 0 20px 0;
    border-top: 1px solid #ececec;
    background: -moz-linear-gradient(top, #f6f6f6 0%, #ffffff 75%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #f6f6f6 0%, #ffffff 75%, #ffffff 100%);
    background: linear-gradient(to bottom, #f6f6f6 0%, #ffffff 75%, #ffffff 100%);
}

footer .social_icons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 0 20px;
}

footer .social_icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: #2b2a29;
    border-radius: 50%;
    border: 2px solid #2b2a291a;
}

.footer_title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1919;
}

.footer_list a,
.fotter_bottom a {
    color: #4f4d4c;
}

.fotter_bottom {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
