@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&display=swap');


:root {
    --primary-color: #0077B6;
    --primary-hover: #0e7490;
    --yellow-accent: #FFDF20;
    --green-accent: #22c55e;
    --white-color: #ffffff;
    --primary-cyan: #00b4d8;
    --card-bg: rgba(255, 255, 255, 0.15);
    --card-shadow-hover: 0 8px 30px rgba(0, 180, 216, 0.2);
    --card-shadow: 0 4px 20px rgba(0, 180, 216, 0.1);
    --red-dark: #8B0000;
    --red-primary: #C41E3A;
    --red-light: #DC143C;
    --red-icon-bg: #C41E3A;
    --white: #ffffff;
    --text-black: #000000;
    --text-gray: #666666;
}

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

body {
    font-family: "Assistant", sans-serif;
}

/*----------- Navbar Css Start---------*/
.navbar {
    padding: 0.75rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 119, 182, 0.15);
    padding: 0.5rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--primary-hover) !important;
}

.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    color: #374151;
    font-weight: 600;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.2s ease;
    font-size: 1.125rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-download {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-download:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.btn-download i {
    font-size: 1rem;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230891b2' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*----------- Navbar Css End---------*/

/*----------- Hero Section Start -----------*/

.hero-section {
    background: linear-gradient(112.07deg, #007EBE 13.04%, #17CFF2 62.85%, #0284C7 96.74%);
    min-height: auto;
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}


/* Top Badge */
.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 0.8px solid #FFFFFF4D;
}

.top-badge i {
    color: var(--white-color);
    font-weight: 400;
}

/* Main Heading */
.hero-title {
    font-size: 4.6875rem;
    font-weight: 700;
    line-height: 78.75px;
    margin-bottom: 1.5rem;
}

.hero-title .white-text {
    color: var(--white-color);
}

.hero-title .yellow-text {
    background: linear-gradient(90deg, #FFDF20 0%, #FFB86A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.375rem;
    color: #FFFFFFE5;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 34.13px;
}

.hero-subtitle span {
    color: var(--yellow-accent);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 0.89px solid #FFFFFF33;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-card h5 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.feature-card p {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    margin: 0;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-google {
    background: transparent;
    text-decoration: none;
    color: #0284C7;
    background: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0px 8.78px 10.98px -6.59px #0000001A;
}

/* .btn-google:hover {
    color: var(--gradient-end);
} */

.btn-apple {
    background: #000000;
    box-shadow: 0px 21.95px 27.44px -5.49px #0000001A;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-apple:hover {
    background: #333;
    border-color: #333;
}

/* Bottom Info */
.bottom-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #fff;
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.bottom-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 400;
    color: #FFFFFFCC;

}

.bottom-info span i {
    font-size: 24px;
}

.bottom-info strong {
    font-weight: 700;
}

.divider {
    width: 1px;
    height: 20px;
    background: #FFFFFF4D;

}


/*----------- Hero Section End  ------------*/
/* Section Styles */
.million-dollar-career {
    background: #ffffff;
}

.million-dollar-career .row {
    align-items: center;
}

/* Image Styles */
.million-dollar-career .img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    top: 45px;
}

/* Title Styles */
.million-dollar-career .title {
    font-size: 3.125rem;
    font-weight: 700;
    color: #002031;
    /* line-height: 1.3; */
    /* margin-bottom: 1.25rem; */
}

.million-dollar-career .title .yellow {
    background: linear-gradient(90deg, #FFB006 0%, #A36400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

/* Description Styles */
.million-dollar-career .description {
    font-size: 22px;
    color: #002031;
    line-height: 1.8;
    margin-bottom: 0;
}

.million-dollar-career .description strong,
.million-dollar-career .description b {
    color: #002031;
    font-weight: 700;
}

/*----------- Career Banner Css Start  ------------*/
/* .career-banner {
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.career-title {
    font-size: 3.125rem;
    font-weight: 700;
    color: #002031;
    line-height: 3.8125rem;
    margin-bottom: 1.5rem;
}

.career-text {
    font-size: 1.375rem;
    color: #002031;
    line-height: 2.125rem;
    font-weight: 400;
}

.career-text strong {
    font-weight: 700;
} */

/*----------- Career Banner Css End  ------------*/

/*----- Trap Section ------*/
/* .trap-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(10, 160, 212, 0.2) 0%, rgba(21, 199, 238, 0) 100%);
    border-radius: 50px;
    width: 80%;
    margin: auto;
}


.trap-title {
    font-size: 50px;
    font-weight: 700;
    color: #002031;
    line-height: 61px;
    margin-bottom: 1.5rem;
}

.trap-description {
    font-size: 20px;
    color: #000000;
    line-height: 29px;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.trap-subtitle {
    font-size: 20px;
    color: #000000;
    line-height: 29px;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.frustration-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.frustration-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(90.58deg, #0077B6 0.5%, #00FFFB 123.56%);
    border-radius: 11px;
    margin-right: 15px;
}

.frustration-text {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 25px;
} */
/* Section Styles */
.real-trap-stop-wasting-time {
    padding: 80px 0;
    background: linear-gradient(180deg, #B91C1C 0%, #DC2626 50%, #B91C1C 100%);
    position: relative;
}

/* Header Content */
.real-trap-stop-wasting-time .title {
    color: var(--white);
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.real-trap-stop-wasting-time .description {
    color: var(--white);
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    margin: 0 auto 50px;
    opacity: 0.95;
}

/* Features Cards Container */
.real-trap-stop-wasting-time .features-row {
    margin-top: 20px;
}

/* Features Card */
.real-trap-stop-wasting-time .features-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.real-trap-stop-wasting-time .features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Icon Styles */
.real-trap-stop-wasting-time .features-card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}


/* Card Title */
.real-trap-stop-wasting-time .features-card h4 {
    color: var(--text-black);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Card Description */
.real-trap-stop-wasting-time .features-card p {
    color: var(--text-black);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

/*------- Certification Section ------------*/

/* Section Styles */
.lifematch-guaranteed-path-certification {
    padding: 80px 0;
    background: linear-gradient(135deg, #1DB954 0%, #1E90B0 30%, #2196C9 60%, #25A5D8 100%);
    position: relative;
    overflow: hidden;
    height: 700px;
}

.lifematch-guaranteed-path-certification::before {
    content: '';
    background: url(../images/lifematch-guaranteed-path-certification-banner.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    bottom: -10px;
    width: 100%;
    height: 106%;
}

.lifematch-guaranteed-path-certification .container,
.lifematch-guaranteed-path-certification .row {
    height: 100%;
}

.lifematch-guaranteed-path-certification .content-wrapper {
    position: relative;
    z-index: 1;
}

/* Title Styles */
.lifematch-guaranteed-path-certification .title {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-right: 35px;
}

.lifematch-guaranteed-path-certification .title .yellow {
    background: linear-gradient(90deg, #FFCD06 19.71%, #D98500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description Styles */
.lifematch-guaranteed-path-certification .description {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.8;
    margin-bottom: 0;
    opacity: 0.95;
    font-weight: 600;
}


/*----- Features Section ------*/
.features-smart-app-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #E0F2FE 0%, #CEFAFE 100%);
    color: #0077B6;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: 0.8px solid #BAE6FD;
}

.badge-pill i {
    font-size: 1.3rem;
}

.features-smart-app-title {
    font-size: 50px;
    font-weight: 700;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.features-smart-app-subtitle {
    font-size: 50px;
    font-weight: 700;
    color: #0077B6;
    margin-bottom: 1rem;
}

.features-smart-app-description {
    font-size: 18px;
    color: #32373E;
    font-weight: 400;
    margin: 0 auto 3rem;
    line-height: 28px;
    max-width: 700px;
}

/* Feature Cards */
.feature-smart-app-card {
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.feature-smart-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-smart-app-card.yellow {
    background: linear-gradient(180deg, #FFEB5B 0%, rgba(255, 240, 133, 0) 100%);
    border-color: #FFF085;
}

.feature-smart-app-card.pink {
    background: linear-gradient(180deg, #E54BBC 0%, rgba(229, 75, 188, 0) 100%);
    border-color: #CD6BEA73;
}

.feature-smart-app-card.green {
    background: linear-gradient(180deg, #02CC78 0%, rgba(2, 204, 120, 0) 100%);
    border-color: #7EEBBC;
}

.feature-smart-app-card.blue {
    background: linear-gradient(180deg, #28BCF0 0%, rgba(40, 188, 240, 0) 100%);
    border-color: #2DCEFF85;
}


.feature-smart-app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-smart-app-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.feature-smart-app-text {
    font-size: 0.95rem;
    color: #363B42;
    margin-bottom: 0;
    font-weight: 400;
}

.feature-smart-app-download-buttons {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-smart-app-download-buttons .btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.feature-smart-app-download-buttons .btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.feature-smart-app-download-buttons .btn-google {
    background: linear-gradient(89.74deg, #03AAFD 2.43%, #18E7FB 99.77%);
    color: #fff;
}

.feature-smart-app-download-buttons .btn-google:hover {
    color: #fff;
}

.feature-smart-app-download-buttons .btn-apple {
    background: #1a1a1a;
    color: #fff;
}

.feature-smart-app-download-buttons .btn-apple:hover {
    color: #fff;
}

/*-------------------Advanced Learnin Experience --------------------*/
.advanced-learnin-experience {
    padding: 60px 0 40px;
    text-align: center;
}

.advanced-learnin-experience .title {
    font-size: 50px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.advanced-learnin-experience .title span {
    color: #0077B6;
}

.advanced-learnin-experience .descripption {
    color: #32373E;
    font-size: 1.1rem;
    margin: 0 auto;
    font-weight: 400;
}

/* Section Styles */
.smart-cards-section {
    padding: 60px 0;
    position: relative;
}

.smart-cards-content-wrapper {
    padding: 20px 0;
}

.smart-cards-content-wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
}

.smart-cards-content-wrapper .description {
    color: #444545;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
    font-weight: 600;
}

.smart-card-tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* .smart-card-tag-badge img{
    
} */
.smart-card-tag-badge span {
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.smart-card-tag-badge span.green {
    background: #DCFFF3;
    color: #01BF7C;
}

.smart-card-tag-badge span.pink {
    background: #FFE8F7;
    color: #F338A2;
}

.smart-card-tag-badge span.blue {
    background: #DCF8FF;
    color: #009DBF;
}

.smart-card-tag-badge span.orange {
    background: #FFFACA;
    color: #FF7001;
}

.smart-card-tag-badge span.perpel {
    background: #F3E8FF;
    color: #A94CFF;
}

.smart-cards-feature-boxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.smart-cards-feature-box {
    position: relative;
    background: #E6F9FE;
    border-radius: 15px;
    padding: 20px 25px;
    flex: 1;
    transition: all 0.3s ease;
}

.smart-cards-feature-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 15px;
    background: linear-gradient(180deg, #18E6FB, #04ACFD);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}


.smart-cards-feature-box:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.smart-cards-feature-box .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.smart-cards-feature-box h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.smart-cards-feature-box p {
    font-size: 0.8rem;
    color: #4B5563;
    margin: 0;
}


/* Full Circle Section */
.full-circle-section {
    padding: 80px 0;
    background: #E4F5FF;
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.decorative-circle.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.15), rgba(0, 188, 212, 0.05));
    top: -100px;
    left: -100px;
}

.decorative-circle.circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.2), rgba(0, 188, 212, 0.08));
    top: 50px;
    left: 80px;
}

.decorative-circle.circle-3 {
    width: 80px;
    height: 80px;
    background: rgba(0, 188, 212, 0.1);
    bottom: 100px;
    left: 20%;
}

.decorative-circle.circle-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), transparent);
    bottom: -80px;
    right: 10%;
}


/* Content Wrapper */
.bonus-content-wrapper {
    position: relative;
    z-index: 1;
    padding: 20px 0 20px 30px;
}

/* Special Bonus Badge */
.bonus-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.bonus-badge img {
    position: relative;
    top: 15px;
}

.bonus-badge-text {
    background: #04ACFD;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Heading */
.bonus-content-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #231F20;
    margin-bottom: 20px;
    line-height: 1.3;
}

.bonus-content-wrapper h2 .rocket {
    font-style: normal;
}

/* Description */
.bonus-content-wrapper .description {
    color: #444545;
    font-size: 1rem;
    line-height: 1.8;
}

/* Feature List */
.bonus-feature-list {
    padding: 0;
    margin: 0 0 10px 0;
}

.bonus-feature-list li {
    position: relative;
    margin-left: 18px;
    margin-bottom: 5px;
    font-size: 1rem;
    color: #444545;
    font-weight: 700;
}

/* Bottom Text */
.bonus-bottom-text {
    color: #444545;
    font-size: 1rem;
    line-height: 1.8;
}

.successful-students-wrapper {
    background: linear-gradient(117.75deg, #0077B6 6.84%, #18E6FB 101.47%);
    padding: 60px 0 0;
}

.successful-students-wrapper .hero-heading {
    font-size: 50px;
    font-weight: 700;
    line-height: 53px;
    color: #fff;
}

.successful-students-wrapper .hero-heading .highlight {
    color: #FFD700;
}

.successful-students-wrapper .hero-subtext {
    color: #FFFFFFE5;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 22px;
    margin-bottom: 0px;
}

.successful-students-wrapper .hero-subtext.yellow {
    color: #FFD700;
    font-weight: 700;
    font-size: 18px;
}

.successful-students-wrapper .characters-wrapper {
    margin-top: 30px;
}

.successful-students-wrapper-download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.successful-students-wrapper-btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #0284C7;
    background: #fff;
}

.successful-students-wrapper-btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #FFFFFF;
    background: #000000;
}


/* Features Text */
.successful-students-features-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #FFFFFF;
    font-size: 25px;
    font-weight: 600;
}

.successful-students-features-text span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.successful-students-features-text .dot {
    color: #FFFFFF;
}



.successful-students-feature-card {
    background: #FFFFFF1A;
    border-radius: 20px;
    padding: 40px 75px;
    text-align: center;
    border: 1px solid #FFFFFF80;
    transition: all 0.3s ease;
    height: 100%;
}

.successful-students-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.successful-students-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: #FFFFFF33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.successful-students-feature-card h5 {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.successful-students-feature-card p {
    font-size: 20px;
    color: #FFFFFFCC;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Header Section */
.contact-us-head {
    text-align: center;
    padding: 40px 20px 30px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #E0F2FE 0%, #CEFAFE 100%);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #BAE6FD;
    font-size: 1rem;
    color: #0077B6;
    margin-bottom: 20px;
    font-weight: 600;
}


.contact-us-head h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0284C7;

}

.contact-us-head h1 span {
    color: #000000;
}

.contact-us-head p {
    color: #4B5563;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 400;
}

.contact-us-head .highlight {
    color: #0284C7;
    font-weight: 700;
    font-size: 18px;
}

/* Section Titles */
.contact-us-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

/* Contact Cards */
.contact-us-contact-card {
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-us-contact-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.contact-us-contact-card.whatsapp {
    background: #F0FDF4;
    border: 1px solid #B9F8CF;
}

.contact-us-contact-card.phone {
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
}

.contact-us-contact-card.email {
    background: #FAF5FF;
    border: 1px solid #E9D4FF
}

.contact-us-contact-card .contact-info h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111827;
}

.contact-us-contact-card .contact-info p {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 10px;
}

.contact-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 80px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--text-black);
}

.btn-whatsapp {
    background: #00C95033;
    border: 1px solid #00C95066;
}

.btn-whatsapp:hover {
    background: #00C95033;
}

.btn-phone {
    background: #0EA5E933;
    border: 1px solid #0EA5E966;
}

.btn-phone:hover {
    background: #0EA5E933;
}

.btn-email {
    background: #AD46FF33;
    border: 1px solid #AD46FF;
}

.btn-email:hover {
    background: #AD46FF33;
}

/* Hours Card */
.contact-us-hours-card {
    background: #E0F9FF;
    border-radius: 25px;
    padding: 38px 28px;
}

.contact-us-hours-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-us-hours-header .clock-icon {
    width: 55px;
    height: 55px;
    background: #0097E433;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #008CD7;
}

.contact-us-hours-header h4 {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    color: #0078B8;

}

.contact-us-hours-item {
    border: 1px solid #0077B6;
    border-radius: 15px;
    padding: 15px 18px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-us-hours-item .day {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-black);
}

.contact-us-hours-item .period {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 400;
    color: var(--text-black);
}

.contact-us-hours-item .time {
    text-align: right;
}

.contact-us-hours-item .time-value {
    font-weight: 700;
    font-size: 25px;
    color: var(--text-black);
}

.contact-us-hours-item .time-desc {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 400;
    color: var(--text-black);
}

.contact-us-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0097E4;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 15px;
    margin-top: 8px;
    border: 1px solid #05DF724D;
    color: #fff;
    font-weight: 600;
}

/* Stats Card */
.contact-us-stats-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 24px 30px;
    margin-top: 20px;
    box-shadow: var(--card-shadow);
    display: flex;
    justify-content: center;
    gap: 60px;
    z-index: 1;
}

.contact-us-stats-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    /* border thickness */
    border-radius: 16px;
    background: linear-gradient(90.58deg,
            #0077B6 0.5%,
            #00FFFB 123.56%);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.contact-us-stats-card .stat-item {
    text-align: center;
    width: 50%;
}

.contact-us-stats-card .stat-icon {
    font-size: 1.5rem;
    border-radius: 14px;
    width: 55px;
    height: 55px;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 auto 8px;
}

.contact-us-stats-card .stat-icon.student {
    background: #E0F2FE;
    color: #0284C7;
}

.contact-us-stats-card .stat-icon.chat {
    background: #DCFCE7;
    color: #00A63E;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 25px;
}

.stat-label {
    font-size: 0.8rem;
    color: #4B5563;
    font-weight: 400;
}


/* ============================================
   ANIMATION STYLES
   ============================================ */

/* Base Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

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

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

@keyframes floatSlow {

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

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 180, 216, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 180, 216, 0.6);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating Elements */
.floating-circle {
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-circle.circle-1 {
    animation-delay: 0s;
}

.floating-circle.circle-2 {
    animation-delay: 1s;
}

.floating-circle.circle-3 {
    animation-delay: 2s;
}

.floating-circle.circle-4 {
    animation-delay: 3s;
}

/* Hero Phone Image Animation */
.hero-phone-img {
    animation: float 4s ease-in-out infinite;
}

/* Navbar Scroll Effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Button Hover Animations */
.btn-google,
.btn-apple,
.btn-download,
.footer-download-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-google::before,
.btn-apple::before,
.footer-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s;
}

.btn-google:hover::before,
.btn-apple:hover::before,
.footer-download-btn:hover::before {
    left: 100%;
}

.btn-google:hover,
.btn-apple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Card Hover Effects */
.feature-card,
.feature-smart-app-card,
.smart-cards-feature-box,
.successful-students-feature-card,
.contact-us-contact-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.feature-smart-app-card:hover {
    transform: translateY(-8px);
}


/* Badge Pulse Effect */
.top-badge,
.badge-pill,
.bonus-badge {
    animation: pulse 3s ease-in-out infinite;
}

/* Link Hover Effects */
.nav-link,
.quick-links a,
.footer-legal-links a {
    position: relative;
}

.nav-link::after,
.quick-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.quick-links a:hover::after {
    width: 80%;
}

/* Social Link Hover */
.footer-social-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-link:hover {
    transform: translateY(-5px) rotate(5deg);
}

/* Image Hover Zoom */
.career-image-wrapper img,
.trap-image-wrapper img {
    transition: transform 0.5s ease;
}

.career-image-wrapper:hover img,
.trap-image-wrapper:hover img {
    transform: scale(1.02);
}

/* Frustration Icon Animation */
.frustration-icon {
    transition: transform 0.3s ease;
}

.frustration-item:hover .frustration-icon {
    transform: scale(1.1);
}

/* Contact Button Hover */
.contact-btn {
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Stats Counter Animation */
.stat-value {
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-value {
    transform: scale(1.1);
}

/* Feature Icon Bounce */
.successful-students-feature-card .feature-icon,
.smart-cards-feature-box .icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.successful-students-feature-card:hover .feature-icon,
.smart-cards-feature-box:hover .icon {
    transform: scale(1.15);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Legacy Animation Classes */
.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}


/* Footer Styles */
.footer {
    background: #111827;
    padding: 60px 0 0;
}

/* Brand Section */
.footer-brand {
    margin-bottom: 24px;
}

.footer-brand .footer-logo {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
    color: #00B4D8;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #D1D5DB;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 400;
}

/* Contact Info */
.contact-item,
.contact-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #D1D5DB;
    font-size: 0.9rem;
    font-weight: 400;
}

.contact-item i {
    color: #00B4D8;
    font-size: 1.1rem;
}

/* App Features Card */
.app-features-card {
    background: #1F2937;
    border-radius: 16px;
    padding: 24px;
    margin-top: 24px;
    margin-right: 24px;
}

.app-features-card h4 {
    color: #00B4D8;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.app-features-card .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D1D5DB;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.app-features-card .feature-item:last-child {
    margin-bottom: 0;
}

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

.quick-links li {
    margin-bottom: 14px;
}

.quick-links a {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: var(--primary-cyan);
}

.footer-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 12px;
    width: 100%;
}

.footer-download-btn.btn-google-play {
    background: linear-gradient(90.58deg, #0077B6 0.5%, #00FFFB 123.56%);
    color: #fff;
}

.footer-download-btn.btn-app-store {
    background: #FFFFFF;
    color: #0284C7;
}

/* Social Links */
.social-section {
    margin-top: 30px;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--primary-cyan);
    color: #fff;
    transform: translateY(-3px);
}


/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #9CA3AF;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-cyan);
}

.phone-wrapper {
    position: relative;
    width: 303px;
}

.phone-wrapper.rgt {
    float: left;
}

.phone-wrapper::after {
    content: '';
    position: absolute;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.27;
}

.phone-wrapper.rgt::after {
    right: -40px;
    top: -10px;
}

.phone-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.42;
}

.phone-wrapper.rgt::before {
    left: -55px;
    bottom: -40px;
}

.phone-wrapper.green::after,
.phone-wrapper.green::before {
    background: linear-gradient(90deg, #05DF72 0%, #00BC7D 100%);
}

.phone-frame {
    background-image: url(../images/iPhone-14-frame.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 610px;
    position: relative;
    padding: 14px 18px;
}

.phone-frame::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 41%;
    background-image: url(../images/iPhone-14-camera.png);
    background-repeat: no-repeat;
    background-position: center;
    width: 67px;
    height: 20px;
    z-index: 10;
}

.phone-frame .app-header {
    position: absolute;
    width: 127px;
    height: 46px;
    border-radius: 25px;
    box-shadow: 0px 10px 15px -3px #0000001A;
    z-index: 33;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-wrapper.rgt .phone-frame .app-header {
    top: -3px;
    left: -37px;
}

.phone-frame .app-header h6 {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.phone-wrapper.green .phone-frame .app-header {
    background: linear-gradient(90deg, #05DF72 0%, #00BC7D 100%);
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    background: #fff;
}

/* Scrollable Content */
.phone-screen .app-content {
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
        linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
    overflow-y: auto;
}
.phone-screen .app-content img{
    width: 100%;
    height: auto;
}

/* Phone Slider (Owl Carousel) */
.phone-slider.owl-carousel {
    height: 100%;
    position: relative;
}

.phone-slider .owl-stage-outer,
.phone-slider .owl-stage,
.phone-slider .owl-item,
.phone-slider .item {
    height: 100%;
}

.phone-slider .owl-stage-outer {
    overflow: hidden;
    border-radius: 38px;
}

.phone-slider .owl-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 100;
}

.phone-slider .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 4px;
}

.phone-slider .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.phone-slider .owl-dots .owl-dot.active span,
.phone-slider .owl-dots .owl-dot:hover span {
    background: var(--text-black);
    transform: scale(1.2);
}

.phone-wrapper.lft::after {
    left: -40px;
    top: -10px;
}

.phone-wrapper.lft::before {
    right: -55px;
    bottom: -40px;
}
.phone-wrapper.pink::after,
.phone-wrapper.pink::before {
    background: linear-gradient(90deg, #C27AFF 0%, #F6339A 100%);
}
.phone-wrapper.lft .phone-frame .app-header {
    top: -3px;
    right: -37px;
}

.phone-wrapper.pink .phone-frame .app-header {
    background: linear-gradient(90deg, #C27AFF 0%, #F6339A 100%);
}


.phone-wrapper.cyan::after,
.phone-wrapper.cyan::before {
    background: #65B2FF;
}

.phone-wrapper.cyan .phone-frame .app-header {
    background: #00D4FF;
}

.phone-wrapper.orange::after,
.phone-wrapper.orange::before {
    background: linear-gradient(90deg, #FDC700 0%, #FF6900 100%);
}

.phone-wrapper.orange .phone-frame .app-header {
   background: linear-gradient(90deg, #FDC700 0%, #FF6900 100%);
}