@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);
}

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

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

/*----------- Navbar Css Start---------*/
.navbar {
    padding: 0.75rem;
}

.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  ------------*/

/*----------- 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;
}

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

.certification-section {
    background: linear-gradient(90.58deg, #0077B6 0.5%, #00FFFB 123.56%);
    padding: 60px 20px;
}

.certification-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 61px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.certification-description {
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
    line-height: 36px;
}

/*----- 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;
}

.phone-mockup-wrapper img {
    max-width: 100%;
    height: auto;
}

/* 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: #fff;
}

.btn-whatsapp {
    background: #00C950;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-phone {
    background: #0EA5E9;
}

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

.btn-email {
    background: #AD46FF;
}

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

/* Hours Card */
.contact-us-hours-card {
    background: linear-gradient(135deg, #0058A1 0%, #18E6FB 73.58%, #0058A1 100%);
    border-radius: 25px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 119, 182, 0.3);
}

.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: #FFFFFF1A;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    color: #fff;
}

.contact-us-hours-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.contact-us-hours-item {
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF80;
    border-radius: 15px;
    padding: 14px 18px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.contact-us-hours-item .day {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
}

.contact-us-hours-item .period {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 400;
    color: #FFFFFF;
}

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

.contact-us-hours-item .time-value {
    font-weight: 700;
    font-size: 25ppx;
    color: #FFF600;
}

.contact-us-hours-item .time-desc {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 400;
    color: #fff;
}

.contact-us-hours-item.closed {
    background: #FB2C364D;
    border: 1px solid #FF64674D;
}

.contact-us-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 15px;
    margin-top: 8px;
    border: 1px solid #05DF724D;
    color: #2583DA;
    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);
}

/* Phone Mockup Hover */
.phone-mockup-wrapper img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup-wrapper:hover img {
    transform: scale(1.03);
}

/* 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);
}