:root {
    --primary-color: #6346D1;
    --secondary-color: #94D82D;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #666;
    --light-gray: #f0f0f0;
    --accent-red: #FF4D4D;


    --bg-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    --bg-gradient-primary: linear-gradient(135deg, #6346D1 0%, #4228a3 100%);
    --bg-gradient-secondary: linear-gradient(135deg, #94D82D 0%, #76b020 100%);


    --font-family: 'Plus Jakarta Sans', sans-serif;
    --border-radius: 30px;
    --transition: all 0.3s ease;
}


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

body {
    font-family: var(--font-family);
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
}


.container {
    max-width: 1250px;
    margin: 0 auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
}

nav a {
    text-decoration: none;
    color: var(--gray-color);
    margin: 0 10px;
    font-size: 15px;
    font-weight: 500;
}

nav a.active {
    color: var(--primary-color);
}

.header-contact {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.header-contact:hover {
    opacity: 0.9;
}

main.hero-section {
    background-image: url(../imge/grid-01.svg);
    background-size: cover;
}

.hero-section {
    position: relative;
    text-align: center;
    padding-top: 40px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.greeting {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

h1 {
    font-size: 80px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

h1 span {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 10px;
}

.main-visual {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.purple-bg-shape {
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 320px;
    height: 400px;
    background: var(--primary-color);
    border-radius: 40px;
    z-index: 1;
}

.profile-img {
    position: relative;
    width: 65vh;
    z-index: 2;
    filter: grayscale(1);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    will-change: filter;
}

.floating-cta {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--light-color);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: max-content;
}

.btn-portfolio {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 14px 25px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-portfolio:hover {
    background: #5238c0;
}

.arrow-circle {
    background: var(--secondary-color);
    color: var(--dark-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-hire-main {
    background: transparent;
    border: 1px solid #ddd;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-hire-main:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.stats-box {
    position: absolute;
    left: 50px;
    bottom: 80px;
    text-align: left;
}

.stats-box h2 {
    font-size: 32px;
}

.avatar-group {
    display: flex;
    margin-top: 10px;
}

.avatar-group img,
.avatar-group .plus {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--light-color);
    margin-right: -10px;
}

.avatar-group .plus {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.hire-me-badge {
    position: absolute;
    right: 50px;
    top: 0;
    width: 120px;
    height: 120px;
    background: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 10s linear infinite;
    color: var(--light-color);
    font-size: 10px;
    text-transform: uppercase;
}

@keyframes rotateText {
    to {
        transform: rotate(360deg);
    }
}

.badge-arrow {
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 20px;
}

.bottom-marquee {
    background: var(--secondary-color);
    padding: 25px 0;
    margin-top: -10px;
    position: relative;
    z-index: 4;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    gap: 50px;
    animation: marquee 20s linear infinite;
}

.marquee-track span {
    font-size: 28px;
    font-weight: 800;
    text-transform: capitalize;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.header-area {
    margin: 10vh 0;
}

.status-badge {
    background: #FFF0F0;
    color: var(--accent-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.header-area h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.1;
}

.header-area h2 span {
    color: var(--primary-color);
}

.header-area p {
    margin-top: 20px;
    color: var(--gray-color);
    font-size: 18px;
}

.challenges-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.challenge-item {
    display: flex;
    gap: 30px;
    padding: 40px;
    background: #F8F9FA;
    border-radius: 32px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
}

.item-number {
    font-size: 48px;
    font-weight: 800;
    color: #E0E0E0;
    line-height: 1;
    transition: 0.3s;
}

.indicator {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-red);
    border-radius: 50%;
}

.item-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.item-body p {
    color: var(--gray-color);
    font-size: 15px;
    line-height: 1.7;
}

.challenge-item:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(99, 70, 209, 0.1);
}

.challenge-item:hover .item-number {
    color: var(--primary-color);
    transform: scale(1.1);
}

.challenge-item:hover .indicator {
    color: var(--secondary-color);
}

.challenge-item:hover .indicator::before {
    background: var(--secondary-color);
}

.service-tag {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-top: 10px;
}

.services-header h2 span {
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 30px;
    transition: var(--transition);
    background: var(--light-color);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #f8f8f8;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-link span {
    color: var(--secondary-color);
    font-size: 20px;
}

.active-card,
.service-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(99, 70, 209, 0.15);
}

.active-card h3,
.active-card p,
.active-card .service-link,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link {
    color: var(--light-color);
}

.active-card .service-icon,
.service-card:hover .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
}

.service-card:hover .service-link {
    gap: 15px;
}

.sub-title {
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.method-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 15px 0;
}

.method-header h2 span {
    color: var(--primary-color);
}

.steps-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.step-card {
    flex: 1;
    position: relative;
    padding: 30px;
    background: #fcfcfc;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    transition: 0.3s;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.6;
}

.step-line {
    position: absolute;
    top: 60px;
    left: 90px;
    width: 100%;
    height: 2px;
    background: dashed #eee;
    z-index: -1;
    border-top: 2px dashed #ddd;
}

.step-card:hover,
.step-card.active {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(99, 70, 209, 0.1);
}

.step-card:hover .step-number,
.step-card.active .step-number {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: scale(1.1);
}

.step-card:hover h3 {
    color: var(--primary-color);
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.pill {
    background: rgba(99, 70, 209, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.features-header h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark-color);
}

.features-header h2 span {
    color: var(--primary-color);
}

.zigzag-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.zigzag-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), var(--secondary-color), transparent);
    transform: translateX(-50%);
    z-index: 0;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 120px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-card {
    width: 45%;
    background: var(--light-color);
    padding: 45px;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-row:nth-child(odd) .feature-card {
    transform: translateX(-20px);
}

.feature-row:nth-child(even) .feature-card {
    transform: translateX(20px);
}

.feature-card:hover {
    transform: translate(0, -15px) !important;
    border-color: var(--primary-color);
    box-shadow: 0 30px 60px rgba(99, 70, 209, 0.1);
}

.connector-dot {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--light-color);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 15px rgba(99, 70, 209, 0.4);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    background: #f8f7ff;
    color: var(--primary-color);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s;
}

.feature-card:hover .icon-wrap {
    background: var(--primary-color);
    color: var(--light-color);
    transform: rotate(-10deg);
}

.icon-wrap svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-color);
}

.highlighted {
    background: var(--bg-gradient-primary);
    border: none;
}

.highlighted h3 {
    color: var(--light-color) !important;
}

.feature-card.highlighted p {
    color: white;
}

.highlighted .icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
}

.blog-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.badge-line {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.intro-left h2 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
}

.intro-left h2 span {
    color: var(--secondary-color);
}

.intro-right {
    max-width: 400px;
    text-align: right;
}

.intro-right p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.view-all {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.blog-vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-item {
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-image-wrapper {
    position: relative;
    height: 45vh;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: 0.5s;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.8s;
}

.overlay-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    transform: translateY(-20px);
    opacity: 0;
    transition: 0.4s;
}

.blog-info h3 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    transition: 0.3s;
}

.meta-row {
    display: flex;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: #999;
    margin-bottom: 15px;
}

.blog-info p {
    color: #777;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
}

.blog-item:hover .blog-image-wrapper {
    transform: scale(0.95);
}

.blog-item:hover .blog-image-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.blog-item:hover .overlay-tag {
    transform: translateY(0);
    opacity: 1;
}

.blog-item:hover h3 {
    color: var(--primary-color);
}

.blog-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.blog-item.active .blog-image-wrapper img {
    filter: grayscale(0%);
}

.bento-header {
    margin-bottom: 60px;
    text-align: left;
}

.badge {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.bento-header h2 {
    font-size: 54px;
    font-weight: 900;
    color: var(--dark-color);
    line-height: 1.1;
}

.bento-header h2 span {
    background: linear-gradient(90deg, var(--primary-color), #8e74f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 25px;
}

.bento-card {
    border-radius: 45px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.software {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    background: var(--bg-gradient-dark);
    color: var(--light-color);
}

.consulting {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background: var(--bg-gradient-primary);
    color: var(--light-color);
}

.education {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    background: var(--bg-gradient-secondary);
    color: var(--dark-color);
}

.results {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: var(--light-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-tag {
    font-size: 12px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.education .card-tag {
    background: rgba(0, 0, 0, 0.08);
}

.bento-card h3 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.bento-card p {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.6;
}

.feature-tags {
    display: flex;
    gap: 12px;
    list-style: none;
    margin-top: 25px;
}

.feature-tags li {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
}

.kpi-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.edu-icon {
    font-size: 40px;
    background: rgba(0, 0, 0, 0.05);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 20px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), #8e74f1);
    border-radius: 8px;
    transition: height 1s ease-in-out;
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 60px rgba(99, 70, 209, 0.15);
}

.software:hover {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
}

.test-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.pill-tag {
    background: #f0edff;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.test-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
}

.test-header h2 span {
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.test-card {
    background: var(--light-color);
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.test-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(99, 70, 209, 0.08);
    border-color: var(--primary-color);
}

.quote-icon {
    font-size: 80px;
    font-family: serif;
    color: var(--secondary-color);
    position: absolute;
    top: 20px;
    right: 40px;
    opacity: 0.3;
    line-height: 1;
}

.quote-text {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.client-meta h4 {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 800;
}

.client-meta span {
    font-size: 13px;
    color: #888;
}

.test-card.highlighted {
    border-bottom: 6px solid var(--secondary-color);
}

.test-card.highlighted .client-avatar {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.futuristic-contact {
    min-height: 100vh;
    display: flex;
    background-color: var(--light-color);
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    width: 100%;
}


.contact-visual-side {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(148, 216, 45, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 30px;
}

.status-indicator .dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary-color);
    animation: blink 1.5s infinite;
}

.contact-visual-side h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 60px;
}

.contact-visual-side h2 span {
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.method-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.m-icon {
    font-size: 24px;
}

.m-info label {
    display: block;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-info strong {
    font-size: 18px;
    font-weight: 700;
}

.contact-form-side {
    padding: 100px 10%;
    display: flex;
    align-items: center;
}

.form-wrapper {
    width: 100%;
}

.form-wrapper h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 50px;
}

.form-wrapper h3 span {
    color: var(--primary-color);
}

.creative-form .field {
    position: relative;
    margin-bottom: 50px;
}

.creative-form input,
.creative-form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    color: var(--dark-color);
}

.creative-form label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #999;
    pointer-events: none;
    transition: 0.3s;
}

.creative-form .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
    transition: 0.3s;
}

.creative-form input:focus~label,
.creative-form input:not(:placeholder-shown)~label,
.creative-form textarea:focus~label,
.creative-form textarea:not(:placeholder-shown)~label {
    top: -20px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.creative-form input:focus~.line,
.creative-form textarea:focus~.line {
    background: var(--primary-color);
    height: 3px;
}

.mega-send-btn {
    width: 100%;
    height: 80px;
    background: var(--dark-color);
    color: var(--light-color);
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s;
}

.mega-send-btn:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(99, 70, 209, 0.3);
}

.btn-arrow {
    font-size: 28px;
    transition: 0.3s;
}

.mega-send-btn:hover .btn-arrow {
    transform: translateX(10px);
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.premium-footer {
    background-color: #08080A;
    padding: 100px 8% 40px;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-overlay-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    width: 800px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 70, 209, 0.15) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.f-logo {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.f-logo span {
    color: var(--secondary-color);
}

.f-motto {
    color: #888;
    font-size: 18px;
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.f-socials {
    display: flex;
    gap: 25px;
}

.s-link {
    color: var(--light-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.s-link:hover {
    color: var(--primary-color);
}

.footer-newsletter h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-newsletter p {
    color: #666;
    margin-bottom: 25px;
}

.f-input-box {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.f-input-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 20px;
    color: var(--light-color);
    outline: none;
}

.f-input-box button {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.f-input-box button:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.f-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    margin-bottom: 60px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.link-col h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.link-col ul {
    list-style: none;
}

.link-col ul li {
    margin-bottom: 15px;
}

.link-col ul li a,
.ammar {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.link-col ul li a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.contact-col p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.f-email {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #444;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--secondary-color);
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-visual-side h2 {
        font-size: 48px;
    }

    .contact-visual-side {
        padding: 80px 8%;
    }

    .contact-form-side {
        padding: 60px 8%;
    }
}

@media (max-width: 992px) {
    .challenges-layout {
        grid-template-columns: 1fr;
    }

    .header-area h2 {
        font-size: 38px;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .step-line {
        display: none;
    }

    .step-card {
        text-align: center;
    }

    .step-number {
        margin: 0 auto 20px;
    }

    .zigzag-container::before {
        left: 20px;
    }

    .feature-row,
    .feature-row:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }

    .feature-card {
        width: 100%;
        transform: none !important;
    }

    .connector-dot {
        left: 20px;
    }

    .blog-vertical-grid {
        grid-template-columns: 1fr;
    }

    .blog-intro {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .intro-right {
        text-align: left;
        margin-top: 30px;
    }

    .blog-image-wrapper {
        height: 400px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .software,
    .consulting,
    .education,
    .results {
        grid-column: auto;
        grid-row: auto;
        height: 350px;
    }

    .bento-header h2 {
        font-size: 40px;
    }

    .test-header h2 {
        font-size: 34px;
    }

    .test-card {
        padding: 40px 30px;
    }

    .footer-top-grid,
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .f-logo,
    .f-motto {
        text-align: center;
        margin: 0 auto 20px;
    }

    .f-socials {
        justify-content: center;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 48px;
    }

    .header-area h2 {
        font-size: 32px;
    }

    .services-header h2,
    .method-header h2 {
        font-size: 36px;
    }

    .features-header h2 {
        font-size: 38px;
    }

    .intro-left h2 {
        font-size: 40px;
    }

    header {
        flex-direction: column;

    }

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        margin: 5px 10px;
    }

    .profile-img {
        width: 300px;
    }

    .purple-bg-shape {
        width: 250px;
        height: 320px;
        left: -20px;
    }

    .floating-cta {
        flex-direction: column;
        width: 90%;
    }

    .stats-box,
    .hire-me-badge {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        margin: 20px auto;
        text-align: center;
    }
}

.logo.aos-init.aos-animate img {
    width: 120px;
}


html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}


.bento-card.education.aos-init.aos-animate {
    color: white;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav {
    display: flex;
    gap: 0px;
}

.menu-open,
.close-menu {
    display: none;
    font-size: 25px;
    cursor: pointer;
    color: #333;
}

@media (max-width: 992px) {
    .menu-open {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        transition: 0.4s right ease-in-out;
    }

    nav.active {
        right: 0;
    }

    .close-menu {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
    }

    nav a {
        font-size: 20px;
        margin: 10px 0;
    }

    .header-contact {
        display: none;
    }




    .logo.aos-init.aos-animate {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }



    .hire-me-badge.aos-init.aos-animate {
        display: none;
    }

    .floating-cta {
        display: none;
    }

    .avatar-group {
        justify-content: center;
    }

    img.profile-img {
        width: 45vh;
    }

}



@media screen and (max-width:992px) {
    main.container {
        padding: 25px;
    }

    .feature-card {
        padding: 40px;
    }

    .challenge-item.aos-init.aos-animate {
        flex-direction: column;
    }

    .blog-image-wrapper {
        height: 45vh;
    }

    .contact-visual-side.aos-init.aos-animate {
        padding: 0;
    }

    .contact-visual-side h2 {
        font-size: xx-large;
    }

    .contact-form-side.aos-init.aos-animate {
        padding: 0;
        margin-top: 5vh;
    }

    .footer-top-grid.aos-init.aos-animate {
        align-items: flex-end !important;
        justify-content: space-around !important;
    }

}


.whatsapp-icon-only {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp-icon-only::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: -1;
    animation: radar-pulse 2s infinite;
}

@keyframes radar-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

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

.whatsapp-icon-only:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}




.dot-spinner {
    --uib-size: 2.8rem;
    --uib-speed: .9s;
    --uib-color: #6346D1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
}

.dot-spinner__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    width: 100%;
}

.dot-spinner__dot::before {
    content: '';
    height: 20%;
    width: 20%;
    border-radius: 50%;
    background-color: var(--uib-color);
    transform: scale(0);
    opacity: 0.5;
    animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
    box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
    transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
    animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
    transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
    animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
    transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
    animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
    transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
    animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
    transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
    animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
    transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
    animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
    transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
    animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

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

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

div#loading-spinner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999999;
    position: fixed;
    background: white;
    height: 100vh;
}


body {
    overflow: hidden;
}


/* edit 4-2-2026*/




:root {
    --primary: #6346D1;
    --secondary: #94D82D;
    --dark: #0A0A0B;
    --gray: #64748b;
    --border: rgba(99, 70, 209, 0.1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fff;
    margin: 0;
    color: var(--dark);
    overflow-x: hidden;
}

.hosting-wrapper {
    padding: 0px 5% 80px;
    background: radial-gradient(circle at top right, rgba(99, 70, 209, 0.05), transparent), url('https://edu-consulting.online/assets/imge/grid-01.svg');
    background-size: cover;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.badge-tag {
    background: #F0EDFF;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.header-area h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.header-area h2 span {
    color: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    width: 100%;
    max-width: 1100px;
    justify-content: center;
}

.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 45px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    height: 100%;
    box-sizing: border-box;
}

.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(99, 70, 209, 0.08);
    border-color: var(--primary);
}

.popular-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-header {
    margin-bottom: 35px;
}

.plan-header .icon {
    width: 60px;
    height: 60px;
    background: #F8F7FF;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 25px;
}

.plan-header h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price span {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #444;
}

.features li i {
    color: var(--secondary);
    font-size: 14px;
}

.cta-btn {
    margin-top: auto;
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 18px;
    border-radius: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: block;
}

.cta-btn:hover {
    background: var(--primary);
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(99, 70, 209, 0.2);
}

.featured {
    background: var(--primary);
    color: white;
    border: none;
}

.featured .plan-header .icon {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.featured h3 {
    color: #fff;
}

.featured .plan-price span,
.featured .features li {
    color: rgba(255, 255, 255, 0.8);
}

.featured .cta-btn {
    background: white;
    color: var(--primary);
}

.featured .cta-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

@media (min-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .header-area h2 {
        font-size: 38px;
    }

    .pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}



:root {
    --primary: #6346D1;
    --primary-dark: #4f35af;
    --secondary: #94D82D;
    --dark: #0A0A0B;
    --light-purple: rgba(99, 70, 209, 0.05);
    --white: #ffffff;
    --border: #eef0f2;
    --danger: #ff4d4d;
    --success: #67c23a;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--white);
    margin: 0;
    color: var(--dark);
}

.domain-page-wrapper {
    padding: 100px 0 80px;
    background: radial-gradient(circle at 90% 10%, var(--light-purple), transparent),
        url('https://edu-consulting.online/assets/imge/grid-01.svg');
    background-size: cover;
    min-height: 80vh;
}

.header-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.header-box h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.header-box h1 span {
    color: var(--primary);
}

.search-area-wrapper {
    max-width: 850px;
    margin: 0 auto;
    width: 90%;
}

.search-container {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 100px;
    display: flex;
    box-shadow: 0 20px 40px rgba(99, 70, 209, 0.12);
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

.search-container input {
    flex: 1;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    background: transparent;
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 40px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.extensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.ext-item {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.ext-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.ext-item.active {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.ext-item strong {
    display: block;
    font-size: 18px;
}

.results-area {
    display: none;
    margin-top: 20px;
}

.domain-card {
    background: var(--white);
    padding: 35px;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
}

.domain-card.available {
    border-left: 8px solid var(--secondary);
}

.domain-card.taken {
    border-left: 8px solid var(--danger);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.status-badge {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.available .status-badge {
    background: #f0f9eb;
    color: var(--success);
}

.taken .status-badge {
    background: #fff0f0;
    color: var(--danger);
}

.duration-selector {
    display: flex;
    background: #f8fafc;
    padding: 4px;
    border-radius: 12px;
}

.duration-btn {
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
}

.duration-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

.price-display {
    font-size: 32px;
    font-weight: 800;
}

.price-display span {
    font-size: 14px;
    opacity: 0.6;
}

.buy-btn {
    background: var(--primary);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .search-container {
        border-radius: 20px;
        flex-direction: column;
        padding: 10px;
    }

    .search-btn {
        padding: 15px;
        border-radius: 15px;
        justify-content: center;
    }

    .card-header,
    .card-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

:root {
    --primary: #6346D1;
    --primary-light: #F0EDFF;
    --secondary: #94D82D;
    --dark: #0A0A0B;
    --gray: #64748b;
    --border: #f1f5f9;
    --white: #ffffff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fcfcfd;
    color: var(--dark);
    margin: 0;
}

.cart-hero {

    background: radial-gradient(circle at 100% 0%, rgba(99, 70, 209, 0.03), transparent),
        url('https://edu-consulting.online/assets/imge/grid-01.svg');
    background-size: cover;

}

.cart-grid {


    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin: 10vh 0;
}

.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.cart-head h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

.cart-head h2 span {
    color: var(--primary);
}

.item-count-badge {
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #f8f9fc;
    transition: 0.3s;
}


.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin: 0;
}

.service-info {
    flex: 1;
}

.service-info h4 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
}

.detail-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: #f1f3f9;
    color: var(--gray);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
}

.tag.duration {
    background: #eefdf3;
    color: #10b981;
}

.price-box {
    font-size: 22px;
    font-weight: 800;
    margin: 0 20px;
}

.btn-delete {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background: #fff1f1;
    color: #ff4d4d;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.btn-delete:hover {
    background: #ff4d4d;
    color: var(--white);
    transform: scale(1.05);
}

.order-sidebar {
    background: var(--dark);
    border-radius: 40px;
    padding: 45px;
    color: var(--white);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.order-sidebar h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 30px;
}

.billing-details {
    margin-bottom: 30px;
}

.billing-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 15px;
    opacity: 0.8;
}

.total-highlight {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    font-size: 28px;
    font-weight: 800;
    color: var(--secondary);
}

.checkout-btn {
    background: var(--primary);
    color: var(--white);
    width: 100%;
    padding: 20px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 35px;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 15px 35px rgba(148, 216, 45, 0.3);
}

.empty-state {
    text-align: center;
    padding: 60px 0;
}

.empty-state i {
    font-size: 80px;
    color: var(--primary-light);
    margin-bottom: 25px;
}

@media (max-width: 1100px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .order-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-item-row {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .price-box {
        margin: 15px 0;
    }
}



.checkout-page {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top right, rgba(99, 70, 209, 0.05), transparent), url('https://edu-consulting.online/assets/imge/grid-01.svg');
    background-size: cover;
    min-height: 100vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 35px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
}

.summary-card {
    background: var(--dark);
    color: white;
    border-radius: 40px;
    padding: 45px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 20px;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.method-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.method-info img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
    background: #f9f9f9;
    border: 1px solid #eee;
}

.copy-btn {
    background: #f0f3ff;
    color: var(--primary);
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: 0.3s;
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
}

.field-group {
    margin-bottom: 25px;
}

.field-group label {
    display: block;
    font-weight: 800;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
}

.field-group input {
    width: 100%;
    padding: 18px 25px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fcfcfd;
    font-family: inherit;
    font-weight: 600;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
    font-size: 16px;
}

.file-upload {
    border: 2px dashed #cbd5e1;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    background: #f8fafc;
}

.file-upload i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 22px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.4s;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

.verification-text {
    text-align: center;
    color: #10b981;
    font-size: 13px;
    margin-top: 20px;
    font-weight: 700;
}

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal {
    background: white;
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #dcfce7;
    color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin: 0 auto 30px;
}

@media (max-width: 1100px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .summary-card {
        order: -1;
        position: static;
    }
}


.invoice-wrapper {
    max-width: 800px;
    margin: 40px auto;
}

.invoice-card {
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--border);
}

.header-section {
    padding: 60px 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.brand h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    color: var(--dark);
    letter-spacing: -1px;
}

.brand p {
    color: var(--slate);
    margin: 5px 0;
    font-size: 14px;
}

.invoice-title {
    text-align: right;
}

.invoice-title h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
    color: #b71c1c;
    text-transform: uppercase;
}

.invoice-title span {
    font-size: 14px;
    color: var(--slate);
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 40px 50px;
    background: #fafafa;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.info-item h4 {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

.table-section {
    padding: 40px 50px 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 15px 0;
    color: var(--slate);
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--light);
}

td {
    padding: 25px 0;
    border-bottom: 1px solid var(--light);
}

.service-info b {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.service-info span {
    font-size: 13px;
    color: var(--slate);
}

.price-col {
    text-align: right;
    font-size: 18px;
    font-weight: 800;
}

.warning-note {
    margin: 0 50px 30px;
    padding: 20px;
    background-color: var(--warning-bg);
    border-radius: 20px;
    border: 1px dashed #ffcdd2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.warning-note i {
    color: var(--primary-red);
    font-size: 20px;
}

.warning-text {
    font-size: 13px;
    color: #b71c1c;
    font-weight: 600;
    line-height: 1.5;
}

.warning-text a {
    color: var(--primary-red);
    text-decoration: underline;
    font-weight: 800;
}

.footer-section {
    padding: 0 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-badge {
    padding: 10px 20px;
    border-radius: 100px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.total-amount {
    text-align: right;
}

.total-amount span {
    font-size: 14px;
    color: var(--slate);
    font-weight: 600;
}

.total-amount h2 {
    font-size: 42px;
    margin: 0;
    color: var(--dark);
    font-weight: 800;
}

.actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-print {
    background: var(--dark);
    color: white;
}

.btn-home {
    background: white;
    color: var(--dark);
    border: 1px solid var(--border);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        padding: 40px 30px;
    }

    .invoice-title {
        text-align: left;
        margin-top: 20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .footer-section {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: flex-start;
        padding: 0 30px 40px;
    }

    .table-section,
    .warning-note {
        padding: 20px 30px;
        margin-left: 0;
        margin-right: 0;
        border-radius: 0;
    }
}

@media print {
    body {
        padding: 0;
        background: white;
    }

    .invoice-wrapper {
        margin: 0;
        max-width: 100%;
    }

    .invoice-card {
        border: none;
        box-shadow: none;
        border-radius: 0;
    }

    .actions {
        display: none;
    }

    .warning-note {
        border: 1px solid #eee;
        background: none;
    }
}



.orders-page {
    padding: 55px 0 60px;
    background: radial-gradient(circle at top right, rgb(255 255 255 / 5%), transparent), url('https://edu-consulting.online/assets/imge/grid-01.svg');
    background-size: cover;
    min-height: 100vh;
}

.orders-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.header-box {
    text-align: center;
    margin-bottom: 40px;
}

.header-box h1 {
    font-size: clamp(28px, 8vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0;
    color: var(--dark);
    line-height: 1.2;
}

.header-box h1 span {
    color: var(--primary);
}

.header-box p {
    color: var(--gray);
    font-size: clamp(14px, 4vw, 18px);
    margin-top: 10px;
    font-weight: 500;
    padding: 0 10px;
}

.search-bar {
    background: var(--white);
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

.search-bar form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.search-bar input {
    flex: 1;
    min-width: 200px;
    border: 1px solid var(--border);
    padding: 15px 20px;
    border-radius: 15px;
    outline: none;
    font-family: inherit;
    font-weight: 600;
    font-size: 16px;
    background: var(--light);
    transition: 0.3s;
}

.search-bar input:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.05);
}

.search-btn {
    background: var(--dark);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
}

@media (max-width: 580px) {
    .search-btn {
        width: 100%;
    }

    .search-bar {
        padding: 15px;
        border-radius: 20px;
    }
}

.order-row {
    background: var(--white);
    border-radius: 25px;
    padding: 25px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.order-main {
    flex: 1;
}

.order-main h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.order-main .date {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 6px 0;
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
}

.order-main .services {
    color: var(--gray);
    font-size: 14px;
    font-weight: 500;
    background: var(--light);
    padding: 4px 10px;
    border-radius: 8px;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-side {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 15px;
}

.amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}

.status-tag {
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.tag-success {
    background: #f0fdf4;
    color: var(--success);
}

.tag-pending {
    background: #fff5f5;
    color: var(--primary);
}

.action-link {
    background: var(--light);
    color: var(--dark);
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.action-link:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
    border-color: var(--primary);
}

.no-data {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.no-data i {
    font-size: 60px;
    color: #eee;
    margin-bottom: 20px;
}


i.fas.fa-clock {
    color: #b71c1c;
}

@media (max-width: 768px) {
    .order-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .order-side {
        width: 100%;
        justify-content: space-between;
        margin-left: 0;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed var(--border);
    }

    .amount {
        font-size: 18px;
    }
    
    
    header.cart-head {
    display: flex;
    align-items: center;
    flex-direction: row;
}


header.cart-head {
    display: flex;
    align-items: center;
    flex-direction: row;
}

article.cart-item-row {
    flex-direction: row;
}

.service-info {
    display: none;
}

.service-icon {
    margin: 0;
}

article.cart-item-row {
    justify-content: space-between;
}

.cart-grid {
    margin: 0;
}
    
}

header.header-box.aos-init.aos-animate {
    display: block;
}



article.cart-item-row{
        border-radius: 30px;
    border: 1px solid #6346d1;
    padding: 20px;
    margin-bottom: 10px;
}



/*edit*/


.h-banner {
background: #6346d1;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-family: sans-serif;

    border-bottom: 2px solid var(--secondary-color);
}
.h-banner__info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.h-banner__title {
    font-weight: bold;
    font-size: 14px;
}
.h-countdown {
    display: flex;
    gap: 5px;
    align-items: baseline;
    font-weight: bold;
    color: #94d82d;
}
.h-countdown span {
    font-size: 16px;
}
.h-countdown small {
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
}
.h-banner__link {
    color: #fff;
    text-decoration: underline;
    font-size: 13px;
    font-weight: bold;
}


/**/



        :root {
            --primary-dark: #0d0829;
            --accent-purple: #2d1b69;
            --text-gray: #6b7280;
        }

       section.hero-section.plans {
            background-color: var(--primary-dark);
            padding: 100px 20px;
            text-align: center;
            position: relative;
                background-image: url(../imge/grid-01.svg);
    background-size: cover;
        }

        .hero-title {
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .category-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pill-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: white;
            padding: 12px 24px;
            border-radius: 100px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }

        .pill-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        .pill-btn.active {
            background: white;
            color: var(--primary-dark);
        }

        .filter-section {
            background: white;
            padding: 60px 20px;
            text-align: center;
        }

        .active-category-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 30px;
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 40px;
        }

        .trust-badges span i {
            margin-right: 5px;
            color: #10b981;
        }

        .filter-controls {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }

        .control-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: #9ca3af;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .control-group select {
            width: 100%;
            padding: 15px;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            color: #1f2937;
            background-color: white;
            outline: none;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .control-group select:focus {
            border-color: var(--primary-dark);
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 2.5rem; }
            .filter-controls { grid-template-columns: 1fr; }
        }
        
        h1.hero-title.aos-init.aos-animate {
    font-weight: normal;
}

.phone_link{
    display: none;
}


       @media (max-width: 768px) {
           .phone_link{
    display: block;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

           
       }

.link-col ul li a,  i {
    margin-right: 10px;
}

i.fab.fa-whatsapp {
    margin: 0;
}