* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a:hover {
    text-decoration: none;
}

body {

    min-height: 100vh;
    background: white;
    font-family: 'Sora', sans-serif;
    overflow: overlay;

}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.elementor-8854 .elementor-element.elementor-element-490c2ee .elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator {
    margin: -4px -15px 0px 2px !important;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 1;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {}

.new-btn-primary {
    color: white;
    background-color: #5B2775;
}

.new-btn-secondary {
    background: white;
    color: #7502AF;
}

.new-btn-outline {
    border: 2px solid white;
    color: white;
}

.new-btn-outline:hover {

    color: white;
}

.heading {
    font-weight: 600;
    font-size: 54px;
    margin-bottom: 24px;
    color: white;
    margin-top: 100px;
}

.sub-heading {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 1250px;
    color: white;

}

.section-heading {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 15px;
    color: black;
    text-align: center;
}

.section-heading {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 15px;
    color: black;
    text-align: center;
}

.section-subheading {
    font-weight: 400;
    font-size: 18px;
    color: black;
    max-width: 800px;

    margin: 0 auto;
    margin-bottom: 60px;
    text-align: center;
}

@media (max-width: 700px) {
    * {
        text-align: center !important;
    }

    .heading {
        font-size: 40px;
        margin-top: 20px;

    }

    .sub-heading {
        font-size: 16px;

    }

    .btn {
        font-size: 16px;
        padding: 10px;
    }
}

/*Hero section */
/* HERO SECTION */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 40px;
    padding-bottom: 0px;
    width: 100%;
    margin: 0 auto;
    background: linear-gradient(135deg, #7502AF 0%, #5A0B85 100%);
    margin-bottom: 50px;
    height: 1100px;

}

.get_started_btn {
    color: #222;
    background-color: white;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
}

.get_started_btn:hover {
    background: white;
    color: black;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero_email {
    border: 1px solid white !important;
    padding: 10px !important;
    padding-left: 20px !important;
    border-radius: 10px !important;
    width: 400px !important;
    font-size: 14px;
    background-color: #7115ad;
    color: white;
    outline: none;
}

.hero_email::-webkit-input-placeholder {
    /* Chrome, Safari, Opera */
    color: white !important;
    opacity: 1 !important;
    font-weight: bold;
}



.dashboard {
    border-radius: 20px;
    padding: 10px;
    width: fit-content;
    margin: auto;
    color: #333;
    position: relative;
    top: 100px;
}

.dashboard {
    position: relative;
    margin: auto;
    width: fit-content;
}

.dashboard_img_1 {
    position: relative;
    max-width: 900px;
    border-radius: 12px;
}

.circle-wrapper {
    position: absolute;
    width: 400px;
    height: 400px;
    margin: 100px auto;
    left: -190px;
    top: -80px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.circle-wrapper::before {
    background: #EEDAFF99;
    width: 280px;
    height: 280px;
    position: absolute;
    content: '';
    border-radius: 50%;
    top: -105px;
    left: 100px;
    opacity: .3;
}

/* Common image styling */
.circle-wrapper img {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Define arc radius */
:root {
    --r: 130px;
    /* distance from center to arc */
}

/* Place images along an arc */
.circle-wrapper img:nth-child(1) {
    transform: rotate(-260deg) translate(var(--r)) rotate(260deg);
}

.circle-wrapper img:nth-child(2) {
    transform: rotate(-205deg) translate(var(--r)) rotate(205deg);
}

.circle-wrapper img:nth-child(3) {
    transform: rotate(-150deg) translate(var(--r)) rotate(150deg);
}

.circle-wrapper img:nth-child(4) {
    transform: rotate(-90deg) translate(var(--r)) rotate(90deg);
}

.circle-wrapper img:nth-child(5) {
    transform: rotate(-30deg) translate(var(--r)) rotate(30deg);
}


/* dashboard images (your existing animations) */
.dashboard_img_1 {
    position: relative;
    top: 0px;
    max-width: 900px;
    border-radius: 12px;
}

.dashboard_img_2 {
    position: absolute;
    top: -10px;
    right: -10%;
    animation: blinkAnim 8s infinite steps(1, end);
    max-width: 200px;
}

@keyframes blinkAnim {

    0%,
    60% {
        transform: scale(0.99);
    }

    61%,
    100% {
        transform: scale(1.1);
    }
}

.dashboard_img_3 {
    position: absolute;
    bottom: -10px;
    left: -10%;
    animation: bounceScale 6s infinite;
    transform-origin: center;
    max-width: 250px;
}

@keyframes bounceScale {

    0%,
    60% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.05);
    }

    80% {
        transform: scale(0.98);
    }

    90% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1.0);
    }
}



.floating-elements {
    position: absolute;
    top: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    animation: float 6s ease-in-out infinite;
}

.floating-elements:nth-child(1) {
    top: 50%;
    left: 0%;
    animation-delay: -2s;
}

.floating-elements:nth-child(2) {
    top: 20%;
    right: 5%;
    left: auto;
    animation-delay: -2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 10px;
        height: 100%;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .button-group {
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .hero_email {
        font-size: 18px;
    }

    .get_started_btn {
        font-size: 16px;
        padding: 12px 90px;
    }

    .circle-wrapper {
        display: none;
    }

    .circle-wrapper::before {
        display: none;
    }

    .dashboard {
        margin: 0 20px;
        top: 40px;
    }

    .dashboard_img_1 {
        max-width: 390px;
    }

    .dashboard_img_2 {
        max-width: 60px;
        right: 0;
    }

    .dashboard_img_3 {
        max-width: 70px;
        left: 0;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 400px) {


    .dashboard_img_1 {
        max-width: 300px;
    }
}



.logos-container {
    margin-top: 100px;
}

.logos-strip {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 60px auto 80px auto;
    height: 150px;
    /* match logo height */
}

.logos-track {
    display: flex;
    gap: 70px;
    will-change: transform;
    /* removed absolute positioning */
}

.logos-track>div {
    flex: 0 0 auto;
    /* prevent shrinking */
}

.logos-track>div img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}


.logo-item {
    width: 200px;
    height: 150px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.fade-out {
    opacity: 0.4;
}

.fade-in {
    opacity: 1;
}


@media (max-width: 700px) {
    .logos-container {
        margin: 0;
    }

    .logos-strip {
        padding: 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 0px;
        margin-bottom: 20px;

    }
}

/* Tools section */
.tools-section {
    max-width: 1200px;
    margin: 50px auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

.tools-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 360px;

    color: #fff;
    cursor: pointer;
}

.tools-card:nth-child(1) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/Transfer-credit-evaluation.webp") center/cover no-repeat;
}

.tools-card:nth-child(2) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/interview-analyser.webp") center/cover no-repeat;
}

.tools-card:nth-child(3) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/Email-Doc-extractor.webp") center/cover no-repeat;
}

.tools-card:nth-child(4) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/ID-verifications.webp") center/cover no-repeat;
}

.tools-card:nth-child(5) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/GPA-calculator.webp") center/cover no-repeat;
}

.tools-card:nth-child(6) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/Application-evaluator.webp") center/cover no-repeat;
}

.tools-card:nth-child(7) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/ci_suite_img1.jpg") center/cover no-repeat;
}

.tools-card:nth-child(8) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/ci_suite_img2.jpg") center/cover no-repeat;
}

.tools-card:nth-child(9) {
    background: url("https://landing-stage.goedmo.com/wp-content/uploads/2025/09/Proactive-admission-copilot1.webp") center/cover no-repeat;
}


/* Overlay background */
.tools-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    transition: background 0.5s ease;
    z-index: 1;
}

.tools-card:hover::before {
    background: #5B2775;
    /* purple overlay */
}

/* Content wrapper */
.tools-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

/* Default (front) content */
.tools-front {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.tools-front>h3 {
    color: white;
}


/* Hover (back) content */
.tools-back {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.tools-back>h3,
p {
    color: white;
    font-size: 26px;
}

.tools-card:hover .tools-front {
    opacity: 0;
    transform: translateY(-20px);
}

.tools-card:hover .tools-back {
    opacity: 1;
    transform: translateY(0);
}

.tools-card h3 {
    font-size: 26px;
    margin: 0 0 8px;
}

.tools-card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 12px;
}

.tools-card a {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.tools-card a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .tools-section {
        padding: 10px 15px;
        margin: 30px auto;

    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tools-card h3 {
        font-size: 18px;
    }
}

.integration-section {
    background: #fff;
    text-align: center;
    padding: 48px 16px 24px 16px;
    position: relative;
}

.integration-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.integration-subheading {
    font-size: 1.1rem;
    color: #6e658e;
    margin-bottom: 32px;
}

.integration-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 30px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.integration-new-home-card {
    display: flex;
    align-items: center;
    background: #f5eefd;
    border-radius: 14px;
    padding: 18px 18px;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.02);
    min-width: 220px;
    gap: 16px;
    position: relative;
    cursor: pointer;
}

.integration-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
}

.integration-title {
    font-size: 1.13rem;
    font-weight: 600;
    color: #231452;
}

.integration-type {
    font-size: 0.9rem;
    color: #8c7aac;
}

.integration-arrow {
    font-size: 1.3rem;
    color: #c6b1de;
    margin-left: auto;
}

.integration-btn {
    margin: 30px auto;
    background: #8000C7;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(118, 26, 236, 0.2);
    cursor: pointer;
}

.integration-logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.integration-small-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
}

@media (max-width: 700px) {

    .integration-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .integration-new-home-card {
        padding: 10px;
        min-width: 180px;
        gap: 5px;
    }
}



/* Award Section */
.globe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.globe-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.globe-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

/* Stats Section */
.globe-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-top: 50px;
}

.globe-stat-item {
    flex: 1 1 20%;
    min-width: 200px;
    margin: 10px;
}

.globe-stat-value {
    font-size: 45px;
    font-weight: 700;
    color: #8C00D2;
    margin-bottom: 8px;
}

.globe-stat-label {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 5px;
}

.line-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.line-dashed {
    flex: 1;
    border-top: 2px dashed purple;
    height: 0;
}

.line-solid {
    flex: 10;
    /* makes the center part longer */
    border-top: 2px solid purple;
    height: 0;
}

/* Awards Section */
.globe-awards {
    margin-top: 40px;
}

.globe-awards-list {
    display: flex;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 20px;

    /* scrolling setup */
    overflow-x: auto;
    /* allow horizontal scroll */
    scroll-snap-type: x mandatory;
    /* enable snap */
    scroll-behavior: smooth;
    /* smooth scroll */

    /* hide scrollbar (Firefox + Edge/IE) */
    scrollbar-width: none;
    h-ms-overflow-style: none;
}

/* hide scrollbar (Chrome, Safari) */
.globe-awards-list::-webkit-scrollbar {
    display: none;
}

.globe-award {
    width: 180px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    text-align: center;
}

.globe-award img {
    width: 160px;
    border-radius: 6px;
}

.globe-awards-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.globe-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

.globe-dot.active-award {
    background-color: #7e22ce;
}


@media (max-width: 700px) {
    .globe-container {
        margin-top: 0px;
        padding: 60px 15px;
    }

    .globe-stat-item {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;

    }

    .globe-stat-label>span {
        text-align: left !important;
    }

    .globe-stat-value {
        font-size: 36px;
    }

    .globe-award {
        position: relative;
        left: -1%;
    }

    .globe-awards-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0px 10px;
        gap: 40px 10px;
    }

    globe-award img {
        width: 150px;
        border-radius: 6px;
    }

    .globe-awards-dots {
        display: none;
    }
}

@media (max-width:400px) {
    .globe-award {
        left: -6%;
    }
}

@media (max-width:380px) {
    .globe-award img {
        width: 150px;
    }

    .globe-award {
        left: -11%;
    }
}

@media (max-width:365px) {
    .globe-awards-list {
        grid-template-columns: 160px 160px;
    }

    .globe-award img {
        width: 140px;
    }

    .globe-award {
        left: -11%;
    }
}


/* Testimonial Section */

.testimonial-container {
    text-align: center;
    margin-top: 60px;
    padding: 20px;
    margin-bottom: 70px;

}

.slider-container {
    margin: auto;
    overflow: hidden;
    position: relative;
    max-width: 1250px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.story {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    margin-top: 50px;

}

.story img.logo {
    width: 120px;
    margin-bottom: 10px;
    max-height: 120px;
}


.story-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-bottom: 20px;
}

.story-content h3 {
    margin: 5px 0;
    font-size: 26px;
    font-weight: 700;
    color: black;
}

.story-content p.title {
    color: #6a1b9a;
    font-size: 14px;
    margin: 0 0 20px;
}

.story-content p.quote {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 400;
    color: black;
    line-height: 1.8;
    text-align: left;
}

.story-content a {
    color: #6a1b9a;
    font-weight: bold;
    text-decoration: underline;

}

.stats {
    display: flex;
    gap: 40px;
    align-items: start;
    margin-top: 40px;
}

.stat {
    text-align: left;
}

.stat .value {
    font-size: 42px;
    font-weight: 600;
    color: #B027F5;
}

.stat .label {
    margin-top: 15px;
    color: black;
}

.story-image {
    margin-top: 60px;
    position: relative;
    width: 300px;
    margin-left: 50px;
}

.story img.person {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.story:nth-child(3) .story-content img {
    width: 180px;
    height: 90px;
    margin-bottom: 0;
}

.story:nth-child(3) img {
    width: 300px;
    height: 300px;
}


.story-image-bg1 {
    width: 260px;
    height: 260px;
    background: var(--Primary-primary-50, #EFE7F4);
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    top: -60px;
    left: -50px;
    opacity: .4;
}

.story-image-bg2 {
    width: 260px;
    height: 260px;
    background: var(--Primary-primary-50, #EFE7F4);
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    bottom: 30px;
    right: -70px;
    opacity: .4;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    max-width: 700px;

}

.disable-nav-button {
    color: #7F7F7F !important;
}

.nav-buttons button {
    background: none;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    color: #6a1b9a;
}

@media (max-width: 700px) {
    .testimonial-container {
        padding: 20px 15px;
        margin-top: 0;
        margin-bottom: 0px;
    }

    .story {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }

    .story-content>h3 {
        text-align: left !important;
    }

    .story-content>p {
        text-align: left !important;
    }

    .story:nth-child(3) {
        margin-top: 0px;
    }

    .story-image {
        margin-left: 0px;
        margin-top: 0px;
    }

    .story-image-bg2 {
        bottom: -60px;
    }

    .stat {
        text-align: center;
    }

    .stat .value {
        text-align: center;
    }

    .stat .label {
        text-align: center;
        line-height: 1.2;
    }

    .nav-buttons {
        margin: 20px 0px;
    }
}