/* Fonts */
:root {
    /* --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    --default-font: "Poppins", sans-serif;
    /* --heading-font: "Raleway", sans-serif;    */
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37423b;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #5fcf80;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #272828;
    /* The default color of the main navmenu links */
    --nav-hover-color: #5fcf80;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #272828;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #5fcf80;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 75%) 52%
    );
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/* .header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 8px;
}

.header .logo h1 {
    font-weight: 700;
    font-size: 30px;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 15px 50px; */
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

#navbar.bg-change {
    background-color: rgba(240, 240, 240, 0.9);
}

#navbar .navbar-logo {
    /* color: var(--nav-color); */
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s ease;
}

#navbar.bg-change .navbar-logo {
    color: black;
}

#navbar .navbar-links a {
    /* color: var(--nav-color); */
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease;
}

/* #navbar.bg-change .navbar-links a {
    color: var(--nav-color);
} */
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    margin-bottom: 0;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 50px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--surface-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --default-color: var(--contrast-color);
    --background-color: var(--accent-color);
    --heading-color: var(--contrast-color);
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
}

.page-title .heading {
    padding: 80px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
    padding: 20px 0;
}

.page-title nav a {
    color: var(--default-color);
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li + li {
    padding-left: 10px;
}

.page-title nav ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 900px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    font-family: var(--nav-font);
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}
/* .hero {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5 !important;
} */

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 10px 0 0 0;
    font-size: 24px;
}

.hero .btn-get-started {
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 50px;
    transition: 0.4s;
    margin-top: 30px;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}

.hero .btn-get-started:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* Hero Section */
.about {
    /* background: linear-gradient(120deg, #007bff, #00a651); */
    background: white;
    color: black;
    /* text-align: center; */
    padding: 50px 20px;
}

.about img{
    object-fit: contain;
    width: 500px;
    height: 500px;
}

.about h1 {
    font-size: 2.5em;
}

.about p {
    font-size: 1.2em;
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 10px 24px 12px 24px;
    border-radius: 50px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .content .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .content .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    padding-right: 19px;
}

.about .content .read-more:hover i {
    margin-left: 10px;
}

/*--------------------------------------------------------------
# Counts Section
--------------------------------------------------------------*/
.counts {
    padding: 25px 0;
}

.counts .stats-item {
    padding: 30px;
    width: 100%;
}

.counts .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--accent-color);
    font-weight: 700;
}

.counts .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 15px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item {
    padding: 40px;
    box-shadow: 0px 0 30px
        color-mix(in srgb, var(--default-color), transparent 90%);
    background-color: var(--contrast-color);
    height: 100%;
}

.services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}

.services .service-item .icon i {
    color: var(--heading-color);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
}

.services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
}

.services .service-item h3 {
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid
        color-mix(in srgb, var(--heading-color), transparent 90%);
    transition: 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.services .service-item:hover .icon i {
    color: var(--heading-color);
}

.services .service-item:hover .icon:before {
    background: var(--accent-color);
}

.services .service-item:hover h3 {
    border-color: var(--accent-color);
    color: var(--heading-color);
}

.services .service-item:hover .readmore {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .features-image {
    position: relative;
    min-height: 400px;
}

.alt-services .features-image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.alt-services h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.alt-services h3:after {
    content: "";
    background: var(--accent-color);
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    left: 0;
    bottom: 0;
}

.alt-services .icon-box {
    margin-top: 50px;
}

.alt-services .icon-box i {
    color: var(--accent-color);
    background-color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 4px;
    line-height: 0;
    box-shadow: 0px 2px 30px
        color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s;
}

.alt-services .icon-box:hover i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.alt-services .icon-box h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.alt-services .icon-box h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
    color: var(--accent-color);
}

.alt-services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
    color: var(--contrast-color);
    background: var(--accent-color);
    padding: 30px;
}

.why-us .why-box h3 {
    color: var(--contrast-color);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.why-us .why-box p {
    margin-bottom: 30px;
}

.why-us .why-box .more-btn {
    display: inline-block;
    background: color-mix(in srgb, var(--contrast-color), transparent 85%);
    padding: 8px 40px 10px 40px;
    color: var(--contrast-color);
    transition: all ease-in-out 0.4s;
    border-radius: 50px;
}

.why-us .why-box .more-btn i {
    font-size: 14px;
}

.why-us .why-box .more-btn:hover {
    color: var(--accent-color);
    background: var(--surface-color);
}

.why-us .icon-box {
    background-color: var(--surface-color);
    text-align: center;
    padding: 40px 30px;
    width: 100%;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
    color: var(--accent-color);
    font-size: 32px;
    margin-bottom: 30px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    transition: 0.3s;
}

.why-us .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 30px 0;
}

.why-us .icon-box p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
    color: var(--contrast-color);
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
    padding: 10px 0;
}

.features .features-item {
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    position: relative;
}

.features .features-item i {
    font-size: 32px;
    padding-right: 10px;
    line-height: 0;
}

.features .features-item h3 {
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 16px;
}

.features .features-item h3 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.features .features-item:hover {
    border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-shadow: 0px 2px 15px
        color-mix(in srgb, var(--default-color), transparent 90%);
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    position: relative;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid var(--background-color);
    position: absolute;
    left: -45px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/* Associated University */
#au_slider_section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

#au_slider_title {
    color: #0066cc;
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    font-family: Arial, sans-serif;
}

#au_slider_wrapper {
    position: relative;
    padding: 0 50px;
}

#au_slider_container {
    overflow: hidden;
}

#au_slider_track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.au_slide {
    flex: 0 0 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #b3d4fc;
    overflow: hidden;
    background: white;
}

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

.au_slider_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #e6f0ff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.au_slider_btn:hover {
    background: #b3d4fc;
}

#au_prev_btn {
    left: 0;
}

#au_next_btn {
    right: 0;
}

.au_slider_btn svg {
    width: 24px;
    height: 24px;
    fill: #0066cc;
}

.au_slider_btn.au_disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .au_slide {
        flex: 0 0 150px;
        height: 150px;
    }
}

/* Migration Agent */
#agent_slider_section {
    text-align: center;
    padding: 50px 0;
    background-color: #f4f4f4;
}

#agent_slider_title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

#agent_slider_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.agent_slider_btn {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    transition: background 0.3s;
}

.agent_slider_btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.agent_slider_btn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

#agent_container {
    overflow: hidden;
    width: 80%;
    position: relative;
}

#agent_slider_track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.agent_slide {
    flex: 0 0 auto;
    width: 250px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s;
}

.agent_slide:hover {
    transform: scale(1.05);
}

.agent_slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.agent_slide .text-center {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #222;
}

.agent_disabled {
    opacity: 0.5;
    pointer-events: none;
}



/* Accreditation */
.accreditation-logos img {
    max-height: 60px;
    margin: 10px;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
    box-shadow: 0px 2px 20px
        color-mix(in srgb, var(--default-color), transparent 92%);
    transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
    transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
    padding: 30px;
}

.recent-blog-posts .post-item .post-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.recent-blog-posts .post-item .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.recent-blog-posts .post-item hr {
    color: color-mix(in srgb, var(--default-color), transparent 80%);
    margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .post-item .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
    color: var(--accent-color);
}

.recent-blog-posts .post-item:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
    box-shadow: 0px 2px 20px
        color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s;
}

.blog-posts .post-img img {
    transition: 0.5s;
}

.blog-posts .post-date {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    position: absolute;
    right: 0;
    bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    padding: 6px 12px;
    font-weight: 500;
}

.blog-posts .post-content {
    padding: 30px;
}

.blog-posts .post-title {
    font-size: 20px;
    color: var(--heading-color);
    font-weight: 700;
    transition: 0.3s;
    margin-bottom: 15px;
}

.blog-posts .meta i {
    font-size: 16px;
    color: var(--accent-color);
}

.blog-posts .meta span {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts p {
    margin-top: 20px;
}

.blog-posts hr {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-bottom: 15px;
}

.blog-posts .readmore {
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.blog-posts .readmore i {
    line-height: 0;
    margin-left: 6px;
    font-size: 16px;
}

.blog-posts article:hover .post-title,
.blog-posts article:hover .readmore {
    color: var(--accent-color);
}

.blog-posts article:hover .post-img img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
    padding-top: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pagination-2 ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-2 li {
    margin: 0 5px;
    transition: 0.3s;
}

.pagination-2 li a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-2 li.active,
.pagination-2 li:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pagination-2 li.active a,
.pagination-2 li:hover a {
    color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
}

.blog-details .article {
    padding: 30px;
    box-shadow: 0 4px 16px
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
}

.blog-details .title {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
}

.blog-details .content {
    margin-top: 20px;
}

.blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog-details .meta-top ul li + li {
    padding-left: 20px;
}

.blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
}

.blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
    color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog-details .meta-bottom .cats li {
    display: inline-block;
}

.blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog-details .meta-bottom .tags li {
    display: inline-block;
}

.blog-details .meta-bottom .tags li + li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
}

.blog-details .meta-bottom .share {
    font-size: 16px;
}

.blog-details .meta-bottom .share i {
    padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
    padding: 10px 0 40px 0;
}

.blog-author .author-container {
    padding: 20px;
    box-shadow: 0 4px 16px
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-author img {
    max-width: 120px;
    margin-right: 20px;
}

.blog-author h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog-author .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
}

.blog-author p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
    padding-top: 10px;
}

.blog-comments .comments-count {
    font-weight: bold;
}

.blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog-comments .comment .comment-img img {
    width: 60px;
}

.blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog-comments .comment h5 a {
    font-weight: bold;
    color: var(--default-color);
    transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
    color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog-comments .reply-form p {
    font-size: 14px;
}

.blog-comments .reply-form input {
    background-color: var(--background-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    font-size: 14px;
    border-radius: 4px;
    padding: 10px 10px;
}

.blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.blog-comments .reply-form textarea {
    background-color: var(--background-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
    height: 120px;
}

.blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.blog-comments .reply-form .btn-primary:hover {
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 5px;
}

.courses .course-content {
    padding: 15px;
}

.courses .course-content h3 {
    font-weight: 700;
    font-size: 20px;
}

.courses .course-content h3 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.courses .course-content h3 a:hover {
    color: var(--accent-color);
}

.courses .course-content .category {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 14px;
    padding: 6px 14px;
    margin: 0;
    border-radius: 5px;
}

.courses .course-content .price {
    margin: 0;
    font-weight: 700;
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
    padding-top: 15px;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
    max-width: 50px;
    border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
    padding-left: 10px;
    font-weight: 600;
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
    color: var(--accent-color);
}

.courses .trainer .trainer-rank {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
    font-size: 22px;
}

/*--------------------------------------------------------------
# Trainers Index Section
--------------------------------------------------------------*/
.trainers-index .member {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    text-align: center;
    margin-bottom: 20px;
}

.trainers-index .member img {
    margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
    padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.trainers-index .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
    padding-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
    margin-top: 15px;
}

.trainers-index .member .social a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    transition: 0.3s;
}

.trainers-index .member .social a:hover {
    color: var(--accent-color);
}

.trainers-index .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about-us .content ul {
    list-style: none;
    padding: 0;
}

.about-us .content ul li {
    padding-bottom: 10px;
}

.about-us .content ul i {
    font-size: 1.25rem;
    margin-right: 4px;
    color: var(--accent-color);
}

.about-us .content p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-sizing: content-box;
    padding: 30px 30px 30px 60px;
    margin: 30px 15px;
    min-height: 200px;
    position: relative;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 10px;
    border: 6px solid var(--background-color);
    position: absolute;
    left: -45px;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
    margin: 0;
}

.testimonials .testimonial-item .stars {
    margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

@media (max-width: 767px) {
    .testimonials .testimonial-wrap {
        padding-left: 0;
    }

    .testimonials .testimonials-carousel,
    .testimonials .testimonials-slider {
        overflow: hidden;
    }

    .testimonials .testimonial-item {
        padding: 30px;
        margin: 15px;
    }

    .testimonials .testimonial-item .testimonial-img {
        position: static;
        left: auto;
    }
}

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
    padding-bottom: 20px;
}

.courses-course-details h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.courses-course-details h3:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    bottom: 0;
    left: 0;
}

.courses-course-details h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 1px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.courses-course-details .course-info {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 10px 15px;
    margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    font-family: var(--nav-font);
}

.courses-course-details .course-info p {
    margin: 0;
    font-weight: 600;
}

.courses-course-details .course-info a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
    padding-top: 30;
}

.tabs .nav-tabs {
    border: 0;
}

.tabs .nav-link {
    background-color: var(--background-color);
    border: 0;
    padding: 12px 15px;
    transition: 0.3s;
    color: var(--default-color);
    border-radius: 0;
    border-right: 2px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    font-weight: 600;
    font-size: 15px;
}

.tabs .nav-link:hover {
    color: var(--accent-color);
}

.tabs .nav-link.active {
    background-color: var(--surface-color);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.tabs .tab-pane.active {
    animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tabs .details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .tabs .nav-link {
        border: 0;
        padding: 15px;
    }

    .tabs .nav-link.active {
        color: var(--accent-color);
        background: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
    position: relative;
}

.trainers .member .member-img {
    margin: 0 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

@media (max-width: 1024px) {
    .trainers .member .member-img {
        margin: 0 60px;
    }
}

.trainers .member .member-img img {
    position: relative;
    z-index: 1;
}

.trainers .member .member-img .social {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding-bottom: 20px;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
}

.trainers .member .member-img .social a {
    transition: 0.3s;
    color: var(--contrast-color);
    font-size: 20px;
    margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
    color: var(--accent-color);
}

.trainers .member .member-info {
    margin-top: 30px;
}

.trainers .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
}

.trainers .member .member-info span {
    font-style: italic;
    display: block;
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.trainers .member .member-info p {
    margin-bottom: 0;
    font-size: 14px;
}

.trainers .member:hover .member-img .social {
    padding-bottom: 0;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .card {
    background-color: var(--background-color);
    border: 0;
    padding: 0 30px;
    margin-bottom: 60px;
    position: relative;
}

.events .card-img {
    width: calc(100% + 60px);
    margin-left: -30px;
    overflow: hidden;
    z-index: 9;
    border-radius: 0;
}

.events .card-img img {
    max-width: 100%;
    transition: all 0.3s ease-in-out;
}

.events .card-body {
    z-index: 10;
    background: var(--surface-color);
    border-top: 4px solid var(--surface-color);
    padding: 30px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    transition: 0.3s;
}

.events .card-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.events .card-title a {
    color: var(--default-color);
    transition: 0.3s;
}

.events .card-text {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .card:hover img {
    transform: scale(1.1);
}

.events .card:hover .card-body {
    border-color: var(--accent-color);
}

.events .card:hover .card-body .card-title a {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing .pricing-item h3 {
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
    font-size: 36px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .pricing-item h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 16px;
    font-weight: 300;
}

.pricing .pricing-item ul {
    padding: 15px 0;
    list-style: none;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .pricing-item ul li {
    padding-bottom: 16px;
}

.pricing .pricing-item ul i {
    color: var(--accent-color);
    font-size: 18px;
    padding-right: 4px;
}

.pricing .pricing-item ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-decoration: line-through;
}

.pricing .btn-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    margin: 0 -20px -20px -20px;
    padding: 20px 15px;
    text-align: center;
}

.pricing .btn-buy {
    background: var(--accent-color);
    color: var(--contrast-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--heading-font);
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .advanced {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding-top: 8px;
    padding-bottom: 40px;
}

.contact .info-item + .info-item {
    margin-top: 40px;
}

.contact .info-item i {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-item h3 {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px 12px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* home about section */
.home-about-section-h2 {
    font-size: 35px !important;
    font-weight: bolder;
    color: #075dba;
}

.home-about-section-h1 {
    font-weight: bolder;
    color: #075dba;
    font-weight: bolder;
    font-size: 45px !important;
}

.home-about-section-paragraph-leading {
    /* font-size: 18px !important; */
    color: #1fc443;
}

p {
    font-size: 16px;
    font-weight: lighter;
}

/* count section */
.facts-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 80px 0;
}

.fact-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #0056b3;
    font-size: 32px;
    transition: all 0.3s ease;
}

.fact-card:hover .card-icon {
    background: #0056b3;
    color: white;
    transform: scale(1.1);
}

.fact-title {
    color: #0056b3;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.fact-description {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fact-number {
    font-size: 28px;
    font-weight: 700;
    color: #0056b3;
    margin-top: auto;
}

@media (max-width: 768px) {
    .fact-card {
        padding: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .fact-title {
        font-size: 20px;
    }

    .fact-description {
        font-size: 14px;
    }

    .fact-number {
        font-size: 24px;
    }
}

/* where do study session */
.destinations-section {
    background-color: #f8f9fa;
    padding: 80px 0;
  }

  .destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  .destination-card:hover {
    transform: translateY(-10px);
  }

  .card-image {
    position: relative;
    height: 300px;
  }

  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.7)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .destination-card:hover .overlay {
    opacity: 1;
  }

  .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
  }

  .country-name {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hidden-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .destination-card:hover .content {
    transform: translateY(-20px);
  }

  .destination-card:hover .hidden-content {
    opacity: 1;
    transform: translateY(0);
  }

  .btn-success {
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  @media (max-width: 768px) {
    .card-image {
      height: 250px;
    }
  }

/* test preparation section */
.test-prep-section {
    /* background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%); */
    /* background: indigo; */
    padding: 100px 0;
  }

  .test-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .test-card {
    width: 250px;
    height: 300px;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: white;
    text-align: center;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }

  .test-card h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    transition: all 0.3s ease;
  }

  .card-details {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .test-card:hover .card-details {
    opacity: 1;
    transform: translateY(0);
  }

  .test-card:hover .icon-wrapper {
    transform: scale(0.8);
  }

  .test-card:hover h3 {
    transform: translateY(-10px);
  }

  /* Card background colors */
  .ielts {
    background: #e74c3c;
  }
  .pte {
    background: #27ae60;
  }
  .gmat {
    background: #3498db;
  }
  .toefl {
    background: #1abc9c;
  }
  .sat {
    background: #f1c40f;
  }

  .test-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 768px) {
    .test-cards {
      gap: 15px;
    }

    /* .test-card {
      width: 160px;
      height: 160px;
    } */

    .icon-wrapper {
      width: 50px;
      height: 50px;
    }

    .test-card h3 {
      font-size: 20px;
    }
  }

/* home contact us section */

.contact-section {
    background-color: #f8f9fa;
}

.contact-wrapper {
    display: flex;
    align-items: stretch;
    /* Ensures both columns are the same height */
}

.contact-section-form-container {
    background: rgb(246, 244, 244);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 30px 0px;

    height: 100%;
    overflow-y: auto;
}

.contact-section-hero-image {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    /* Allows the image column to stretch equally */
    /* position: relative;
    overflow: hidden;
    min-height: 450px;
    height: 100%; */
}

.contact-section-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the entire div */
}

.contact-section-contact-form-field {
    color: #059652;
    font-weight: bolder;
}

.contact-section-label-text-section {
    font-weight: 500;
    color: #333;
    font-weight: bold;
}

.contact-section-control,
.form-select {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
}

.contact-section-control {
    height: 30px;
    /* Adjust the height as needed */
    padding: 5px;
    /* Adjust padding to ensure proper alignment */
    font-size: 14px;
    /* Adjust font size if necessary */
    line-height: 1.2;
    /* Maintain a comfortable line height */
}

.contact-section-contact-form-field-color-dark {
    color: #000;
    font-weight: 800 !important;
    font-size: 36px;
}

textarea.contact-section-control {
    height: auto;
    /* Allow textareas to expand naturally */
}

.contact-section-label-text-section {
    font-size: 14px;
    /* Optional: Adjust label font size for better proportions */
}

.contact-section-submit-btn {
    background-color: #28a745;
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    width: 100%;
}

.contact-section-submit-btn:hover {
    background-color: #218838;
}

@media (min-width: 992px) {
    .contact-section-hero-image {
        height: 1580px;
    }
}

@media (max-width: 991px) {
    .contact-section-hero-image {
        min-height: 450px;
    }

    .contact-section-form-container {
        background: white;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        padding: 30px;
        flex-grow: 1;
        /* Allows the form column to stretch equally */
        overflow-y: auto;
    }
}

/* home service section */
.service-title {
    color: #007bff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.service-card {
    text-align: center;
    margin-bottom: 30px;
}

.service-card img {
    width: 100%;
    height: auto;
}

.service-card h5 {
    font-weight: bold;
    margin-top: 15px;
}

.service-card p {
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* number of lines to show */
    -webkit-box-orient: vertical;
}

.service-card a {
    color: #28a745;
    font-weight: bolder;
    text-decoration: none;
}

/* news and update section */
.news-update-header {
    font-weight: 550;
    white-space: nowrap;
    /* Prevents the text from wrapping */
}

.news-update-header-line {
    height: 2.3px;
    background-color: rgb(54, 49, 49);
    border: none;
}

.news-update-section-readmore {
    color: #28a745;
    font-size: 18px;
}

.news-update-section-newscard {
    display: flex;
    flex-wrap: wrap;
}

.news-card {
    height: 100%;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    /* Adjust padding as needed */
}

.news-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.news-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Allows content to take up available space */
}

.news-section-card-title {
    font-weight: bold;
    color: rgb(72, 68, 68);
}

.news-card .btn-link {
    margin-top: auto;
    /* Pushes the button to the bottom of the card */
    text-align: left;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    color: #555;

    /* Aligns button consistently */
}

.news-card .btn-link:hover {
    color: #2ecc71;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-update-section-quick-links {
    background-color: #0072bc;
    display: flex;
    flex-direction: column;
}

.news-quick-link-header {
    color: white;
    font-size: xx-large;
    font-weight: bolder;
}

.news-update-section-quick-links a {
    color: white;
    text-decoration: none;
    display: block;
    font-weight: bold;
    padding: 1rem 0;
    border-bottom: 0.5px solid rgba(253, 245, 245, 0.93);
    width: 80%;
    /* Set the desired width */
}

.news-update-section-quick-links a:hover {
    color: #2ecc71;
}

.enquire-now-img img {
    max-width: 150px;
    max-height: 100px;
    margin-bottom: 20px;
    margin-left: 10px;
}

.enquire-now {
    background-color: #2ecc71;
}

.news-section {
    background-color: #f8f9fa;
}

.flex-grow-1 {
    flex-grow: 1;
}

news-update-twitter-logo-section {
    background-color: #f8f9fa !important;
}

/* home event-testimonial section */
.home-event-testimonials-heading {
    font-weight: bold;
}

.date-box {
    text-align: center;
    margin-right: 20px;
}

.date-number {
    font-size: 2.5rem;
    color: #2ecc71;
    font-weight: bold;
    line-height: 1;
}

.date-month {
    color: #2c3e50;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 8px;
}

.event-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.event-meta i {
    color: #2ecc71;
    margin-right: 5px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    font-size: large;
}

.testimonial-author {
    margin-top: 40px;
}

.testimonial-author img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-name {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0;
}

.author-title {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.view-all {
    color: #6c757d;
    text-decoration: none;
}

.view-all:hover {
    text-decoration: underline;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    height: auto;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-controls {
    text-align: center;
    margin-top: 20px;
}

.testimonial-controls .control {
    cursor: pointer;
    font-size: 1.5rem;
    color: #bbb;
    margin: 0 10px;
    font-weight: bolder;
    display: inline-block;
}

.testimonial-controls .control.active {
    color: #2ecc71;
    /* Active color */
    font-weight: bolder;
}

/* FAQ Section */
.faq {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.faq h2 {
    color: #007bff;
    margin-bottom: 20px;
    font-size: 2em;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

details {
    background: white;
    border-radius: 8px;
    margin: 10px 0;
    padding: 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

details summary {
    font-size: 1.1em;
    font-weight: bold;
    color: #007bff;
    outline: none;
}

details[open] summary {
    color: #00a651;
}

details p {
    margin-top: 10px;
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
}


/* footer section */
.home-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
    text-size-adjust: 16px;
}

.footer-logo {
    padding-top: 30px;
    max-width: 220px;
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
}

.app-store-badge {
    height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footer-heading {
    padding-top: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2ecc71;
}

.home-footer-quick-links {
    background-color: #1a1a1a;
    padding: 20px;
}

.home-footer-quick-links h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
}

.home-footer-quick-links h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: #4caf50;
}

.home-footer-quick-links-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-footer-quick-links-nav li {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.home-footer-quick-links-nav li:last-child {
    border-bottom: none;
}

.home-footer-quick-links-nav a {
    color: #8a8a8a;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.home-footer-quick-links-nav li a:hover {
    color: #f4eded;
}

.home-footer-quick-links-nav li a:hover .home-footer-arrow-icon {
    color: #f4eded;
}

.home-footer-arrow-icon {
    margin-right: 10px;
    color: #a8a2a2;
}

.home-footer-arrow-icon svg {
    width: 16px;
    height: 16px;
}

.home-footer-contact-info {
    color: #999;
    margin-bottom: 5px;
}

.home-footer-email-link {
    text-decoration: none;
}

.home-footer-subscribe-btn {
    background-color: #2ecc71;
    border: none;
    padding: 8px 20px;
}

.home-footer-subscribe-btn:hover {
    background-color: #27ae60;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    /* Reduced for a better fit */
    margin-top: 20px;
    /* Adjusted for responsiveness */
    font-size: 16px;
    color: #999;
}

.footer-social-links a {
    color: #2ecc71;
    /* Green color for icons */
    margin-left: 15px;
    text-decoration: none;
    font-size: 18px;
    /* Ensures the icons are prominent */
    transition: color 0.3s;
    /* Smooth hover transition */
}

.footer-social-links a:hover {
    color: #1abc9c;
    /* Slightly different shade on hover */
}

@media (max-width: 768px) {
    .footer-bottom .row {
        flex-direction: column;
        /* Stack the content on smaller screens */
    }

    .footer-social-links {
        justify-content: center;
        /* Center the links */
        margin-top: 10px;
    }

    .footer-bottom p {
        text-align: center;
        /* Center the copyright text */
    }
}

.approved-text {
    font-size: 16px;
    color: #999;
    margin-top: 10px;
}

/* frontend->find-university->australia.blade.php page css */
.find-university-australia-section {
    padding: 0;
    margin: 0;
}

.ind-universities-australia-section-titlediv {
    text-align: center;
}

.find-universities-australia-section-title {
    text-align: center;
    font-size: 2rem !important;
    font-weight: bolder;
    color: #100f0f;
    padding-top: 20px;
    letter-spacing: 1px;
    display: inline-block;
    /* Add spacing between letters */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    /* Subtle shadow effect */
}

.find-universities-australia-section-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: green;
    margin: 10px auto;
}

.find-universities-australia-partner-card {
    margin: 20px auto;
    max-width: 400px;
}

.find-universities-australia-partner-card .image-container {
    position: relative;
    width: 100%;
    height: 100px;
    max-width: 400px;
    margin-top: 40px;
    margin-bottom: 60px;
    overflow: hidden;
    border: 2px solid green;

    /* Outer border */
    background-color: rgba(0, 255, 0, 0.2);
    /* Same green as .image-border */
}

.find-universities-australia-partner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(0, 255, 0, 0.2);
    /* Apply same green as .image-border */
    filter: brightness(0.7);
    /* Optional: Adjust brightness */
    z-index: 1;
    position: relative;
}

.find-universities-australia-partner-card .image-border {
    position: absolute;
    top: 2.5%;
    /* Adjusted to leave 2.5% gap on all sides */
    left: 2.5%;
    width: 95%;
    /* 95% of the parent's width */
    height: 95%;
    /* 95% of the parent's height */
    border: 2px solid green;
    /* Inner border */
    box-sizing: border-box;
    /* Ensures the border fits inside the defined size */
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 255, 0, 0.2);
    /* Green background */
}

.find-universities-australia-partner-card .card-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: white;
    z-index: 3;
    /* Ensures the title is above the borders */
    padding: 5px 10px;
    text-shadow: none;
    /* Remove text shadow */
}

.find-universities-australia-partner-logo {
    border: 2px solid #059652;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0 0 0 5px white, 0 0 0 7px #059652;
}

.find-universities-australia-partner-item {
    text-align: center;
    /* Keep names centered if desired */
    margin-top: 10px;
}

.find-universities-australia-partner-name {
    margin-top: 10px;
    font-weight: bold;
}

.find-universities-australia-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.find-universities-australia-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* Changed from center to flex-start */
    margin-left: -15px;
    /* Compensate for Bootstrap's default padding */
    margin-right: -15px;
    /* Compensate for Bootstrap's default padding */
    overflow-x: hidden;
}

.row .col-6 {
    flex: 0 0 50%;
    /* Two items per row */
    max-width: 50%;
    box-sizing: border-box;
    padding-left: 5px;
    /* Adjust for small screens */
    padding-right: 5px;
}

@media (max-width: 576px) {
    .find-universities-australia-partner-logo {
        width: 100px;
        height: 100px;
        box-sizing: border-box;
        padding-left: 5px;
        /* Adjust for small screens */
        padding-right: 5px;
        /* justify-content: flex-end; */
    }

    .row .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row {
        margin-left: 0;
        /* Remove any extra margins */
        margin-right: 0;
        /* Remove any extra margins */
    }
}

@media (min-width: 577px) and (max-width: 992px) {
    .row .col-md-2 {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .row .col-md-2 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 1100px) {
    .row .col-md-2 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* frontend->information-main-> schoolarships page */
.schoolarship-hero-section {
    position: relative;
    text-align: center;
    color: white;
}

.schoolarship-hero-section img {
    width: 100%;
    height: auto;
}

.schoolarship-hero-text {
    position: absolute;
    bottom: 20px;
    left: 20%;
    transform: translateX(-20%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.schoolarship-hero-text h1 {
    padding: 5px;
    font-size: 2.8rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgb(252, 252, 252);
    position: relative;
    display: inline-block;
}

.schoolarship-hero-text h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: #28a745;
    margin: 10px auto 0;
}

.schoolarship-hero-text p {
    font-size: 1.3rem;
}

.schoolarship-hero-text .btn {
    background-color: #28a745;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
}

.schoolarship-hero-text .btn:hover {
    background-color: #218838;
}

@media (max-width: 768px) {
    .schoolarship-hero-text h1 {
        font-size: 2rem;
        text-align: left;
    }

    .schoolarship-hero-text p {
        font-size: 0.875rem;
    }

    .schoolarship-hero-text .btn {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .schoolarship-hero-text h1 {
        font-size: 2rem;
        margin-top: 20px;
    }
}

.scholarship-icon {
    color: #28a745;
    font-size: 3.5rem;
}

.scholarship-title {
    margin-top: 5px;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

@media (max-width: 768px) {
    .scholarship-icon {
        font-size: 2rem;
    }

    .scholarship-title {
        font-size: 1.5rem;
    }
}

.scholarship-type {
    color: #28a745;
    font-weight: bold;
}

.scholarship-description {
    color: #6c757d;
}

.schoolarship-weprovide-section-title {
    font-weight: bolder;
    font-size: 1.5rem;
}

.schoolarship-weprovide-section-divider {
    border-top: 3px solid #00b300;
    width: 100%;
    margin-top: 0.8rem;
    margin-bottom: 2.5rem;
}

.schoolarship-weprovide-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.3rem;
    font-size: 17px;
}

.schoolarship-weprovide-list-item i {
    color: #00b300;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.schoolarship-weprovide-highlight-text {
    color: #00b300;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.5px;
    padding-bottom: 20px;
}

.schoolarship-weprovide-section-guidance-p {
    font-size: 17px;
    color: #999;
}

/* faq schoolarship */
.faq-contact-section {
    background-color: #f8f9fa;
    padding: 20px;
}

.faq-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

@media (max-width: 576px) {
    .faq-section {
        margin-top: 20px;
        /* Adjust the top margin for small devices */
    }
}

.text-bold {
    font-weight: bold;
    /* font-size: 18px; */
}

.faq-section .faq-section-h2 {
    padding-bottom: 20px !important;
    font-weight: bold !important;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-decoration: none !important;
}

.faq-item:hover {
    background-color: #e9ecef;
}

.faq-item-a {
    text-decoration: none !important;
}

.faq-item a {
    color: #28a745;
    font-weight: bold;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-item i {
    color: #28a745;
}

.faq-item.active {
    background-color: #28a745;
    color: white;
}

.faq-item.active a {
    color: white;
}

.faq-item.active i {
    color: white;
}

.faq-content {
    display: none;
    padding: 10px;
    background-color: white;
    border-radius: 5px;
    margin-top: 10px;
}

/* Study-abroad-benefits page css */
.study-abroad-benefits-hero-section {
    position: relative;
    text-align: left;
    color: white;
    overflow: hidden;
}

.study-abroad-benefits-hero-section img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.study-abroad-benefits-hero-section-container {
    position: absolute;
    bottom: 10%;
    left: 0;
    padding: 0 2rem;
    /* Ensures alignment with the container start */
    max-width: 1200px;
    /* Optional: Max width for consistent alignment */
    margin: 0 auto;
    width: 100%;
}

.study-abroad-benefits-hero-text {
    font-size: 48px;
    /* Fixed font size */
    font-weight: bolder;
    line-height: 1.4;
    width: 100%;
    text-align: left;
}

@media (min-width: 1200px) {
    .study-abroad-benefits-hero-section-container {
        bottom: 20%;
        /* Adjust bottom margin for larger screens */
        left: 5%;
    }
}

.study-abroad-benefits-hero-section-h5 {
    color: #0056b3;
    font-weight: bold;
}

.study-abroad-benefits-hero-section-p {
    font-size: 18px;
}

/* Style for positioning the WhatsApp icon */
.whatsapp-icon {
    position: fixed;
    z-index: 9999;
    bottom: 60px;
    /* Adjust as needed */
    right: 10px;
    /* Adjust as needed */
    font-size: 3rem;
    /* Adjust the size of the icon */
    color: green;
    /* Icon color */
    border-radius: 50%;
    /* Circular background */
    padding: 10px;
    /* Space inside the icon */
    transition: all 0.3s ease-in-out;
}

/* Hover effect (optional) */
.whatsapp-icon:hover {
    transform: scale(1.1);
    /* Slightly larger when hovered */
}

/* Style for positioning the WhatsApp icon */
.whatsapp-icon {
    position: fixed;
    z-index: 9999;
    bottom: 60px;
    /* Adjust as needed */
    right: 10px;
    /* Adjust as needed */
    font-size: 3rem;
    /* Adjust the size of the icon */
    color: green;
    /* Icon color */
    border-radius: 50%;
    /* Circular background */
    padding: 10px;
    /* Space inside the icon */
    transition: all 0.3s ease-in-out;
}

/* Hover effect (optional) */
.whatsapp-icon:hover {
    transform: scale(1.1);
    /* Slightly larger when hovered */
}

/* frontend-> study-abroad->study-in-australia.blade.php */
.study-abroad-australia-hero-section {
    position: relative;
    text-align: center;
    color: white;
    width: 100%;
    height: 100%;
    max-height: 500px; /* Set maximum height */
    overflow: hidden; /* Prevent overflow */
}

.study-abroad-australia-hero-section img {
    width: 100%; /* Make the image span the full width */
    height: 100%; /* Ensure it fits the container */
    max-height: 500px; /* Limit the maximum height */
    object-fit: cover; /* Ensure the image covers the container without distortion */
}

.study-abroad-australia-hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay */
    z-index: 1;
}

.study-abroad-australia-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%; /* Ensure the text doesn't span beyond the viewport */
    padding: 0 15px;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); /* Add shadow for text clarity */
}

.study-abroad-australia-hero-text h1 {
    font-size: clamp(24px, 6vw, 50px); /* Responsive font size for h1 */
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

.study-abroad-australia-hero-text p {
    font-size: clamp(14px, 4vw, 20px); /* Responsive font size for paragraphs */
    margin-bottom: 10px;
    color: white;
    line-height: 1.4;
}

.study-abroad-australia-hero-text .lead {
    font-size: clamp(18px, 5vw, 30px); /* Responsive font size for lead text */
    margin-bottom: 20px;
    color: white;
}

.study-abroad-australia-hero-text .btn {
    background-color: #28a745;
    color: white;
    font-size: 14px;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    text-shadow: none;
}

@media (min-width: 403px) and (max-width: 576px) {
    .study-abroad-australia-hero-text {
        width: 100%; /* Ensure full width on small devices */
    }

    .study-abroad-australia-hero-text h1 {
        font-size: 24px; /* Smaller font size for h1 on very small devices */
    }

    .study-abroad-australia-hero-text p {
        font-size: 14px; /* Reduce paragraph font size */
    }

    .study-abroad-australia-hero-text .lead {
        font-size: 18px; /* Adjust lead text for better fit */
    }
}
@media (max-width: 403px) {
    .study-abroad-australia-hero-text {
        width: 100%; /* Ensure full width on small devices */
    }

    .study-abroad-australia-hero-text h1 {
        font-size: 20px; /* Smaller font size for h1 on very small devices */
    }

    .study-abroad-australia-hero-text p {
        font-size: 10px; /* Reduce paragraph font size */
    }

    .study-abroad-australia-hero-text .lead {
        font-size: 14px; /* Adjust lead text for better fit */
    }
}
.study-abroad-australia-section2-title {
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.study-abroad-australia-section2-section-title {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    margin-top: 20px;
}

.study-abroad-australia-section2-section-content {
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    margin-top: 10px;
}

.study-abroad-australia-section2-image-container {
    text-align: right;
    display: flex; /* Ensure the image stays aligned */
    justify-content: flex-end; /* Align image to the right */
    align-items: center; /* Vertically align with the text */
}

.study-abroad-australia-section2-image-container img {
    max-width: 100%;
    max-height: 450px;
    height: auto;
}

/* Adjust margins and gaps for large devices */
@media (min-width: 992px) {
    .study-abroad-australia-section2-row {
        display: flex; /* Use flexbox for the row */
        gap: 10px; /* Set a smaller gap between columns */
        flex-wrap: nowrap; /* Prevent columns from wrapping */
        align-items: center; /* Vertically align text and image */
    }

    .study-abroad-australia-section2-div1 {
        margin: 0; /* Remove extra margins */
        padding-right: 10px; /* Reduce padding on the right */
    }

    .study-abroad-australia-section2-image-container {
        margin: 0; /* Remove extra margins */
        padding-left: 10px; /* Reduce padding on the left */
    }
}




/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.partner-section {
                
    padding: 40px;
    border-radius: 8px;
  
  
}

.partner-title {
    font-size: 30px;
    font-weight: bold;
    color: #0066A6;
    text-align: center;
    margin-bottom: 20px;
}

.partner-description {
    text-align: center;
    color: #777;
    margin-bottom: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-height: 50px;
    margin-right: 10px;
}

.partner-logo span {
    font-size: 18px;
    font-weight: 600;
    color: #555;
}