* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #2563eb;
    --secondary: #7c3aed;
    --accent: #ec4899;
    --dark: #1e293b;
    --darker: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --text: #334155;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #fae8ff 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="8" fill="%232563eb" opacity="0.3"/><circle cx="10" cy="10" r="3" fill="%232563eb"/></svg>'), auto;
}

a {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="10" fill="%237c3aed" opacity="0.4"/><circle cx="12" cy="12" r="4" fill="%237c3aed"/><line x1="12" y1="6" x2="12" y2="2" stroke="%237c3aed" stroke-width="2"/><line x1="12" y1="18" x2="12" y2="22" stroke="%237c3aed" stroke-width="2"/></svg>'), pointer !important;
    text-decoration: none;
}

button,
.service-card,
.portfolio-item,
.review-card {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24"><circle cx="12" cy="12" r="10" fill="%237c3aed" opacity="0.4"/><circle cx="12" cy="12" r="4" fill="%237c3aed"/><line x1="12" y1="6" x2="12" y2="2" stroke="%237c3aed" stroke-width="2"/><line x1="12" y1="18" x2="12" y2="22" stroke="%237c3aed" stroke-width="2"/></svg>'), pointer !important;
}

input,
textarea {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="20"><rect width="3" height="20" fill="%232563eb"/></svg>'), text !important;
}

.main-container {
    max-width: 100%;
    padding: 0;
}

.section-wrapper {
    width: 85%;
    max-width: 1400px;
    margin: 30px auto;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.section-inner {
    padding: 60px 50px;
    position: relative;
    z-index: 1;
}

.hero-section {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 50%, #fae8ff 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.hero-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    filter: drop-shadow(0 0 30px rgba(124, 58, 237, 0.4));
}

.floating-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    border: 2px dashed var(--secondary);
    animation: rotate 20s linear infinite;
    opacity: 0.3;
}

.floating-image::after {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
    color: var(--gray);
    margin-bottom: 35px;
}

.animated-text-container {
    margin: 40px 0;
}

.question-text {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.typewriter-container {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.typewriter-text {
    color: var(--dark);
}

.cursor-blink {
    color: var(--secondary);
    animation: blink 0.7s infinite;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.cta-button {
    font-family: 'Poppins', sans-serif;
    padding: 14px 35px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--primary);
    color: white;
}

.cta-button.primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.services-section {
    background: linear-gradient(135deg, #fdf4ff 0%, #fef3c7 50%, #dbeafe 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.1);
    color: var(--secondary);
}

.card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 18px;
}

.card-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.card-tech span {
    font-size: 0.8rem;
    padding: 5px 12px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 15px;
    color: var(--primary);
    font-weight: 500;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover .card-glow {
    opacity: 1;
}

.portfolio-section {
    background: linear-gradient(135deg, #e0f2fe 0%, #f3e8ff 50%, #ffe4e6 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 0.1s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    background: white;
    border: 1px solid #e2e8f0;
    transform-style: preserve-3d;
}

.portfolio-item:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.portfolio-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #dbeafe, #e9d5ff);
    position: relative;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-image.tournament-app {
    background: url(assets/earning.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-image.store {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)),
        url(assets/store.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-image.upi-gateway {
    background: url(assets/payment.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-image.portfolio-website {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1)),
        url(assets/portfolio.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-image.creator-dashboard {
    background: url(assets/creator.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-image.dues-management {
    background: url(assets/dues.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-info {
    padding: 22px;
    background: white;
}

.portfolio-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.portfolio-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.portfolio-tag {
    display: inline-block;
    padding: 5px 14px;
    background: #eff6ff;
    border: 1px solid var(--primary);
    border-radius: 15px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
}

.reviews-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #ddd6fe 100%);
}

.reviews-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar {
    height: 8px;
    display: none;
}

.reviews-slider::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
    display: none;
}

.reviews-slider::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
    display: none;
}

.review-card {
    min-width: 380px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.review-content {
    flex: 1;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 15px;
}

.review-author h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

.contact-section {
    background: linear-gradient(135deg, #dbeafe 0%, #e9d5ff 50%, #fce7f3 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
    color: var(--gray);
}

.full-width {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #dbeafe;
    border-radius: 50%;
    color: var(--primary);
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.info-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

.page-indicator {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.indicator-box {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 12px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    min-width: 140px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.indicator-image {
    width: 70px;
    height: 70px;
    border-radius: 15%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

@media (max-width: 1200px) {
    .section-wrapper {
        width: 90%;
    }

    .section-inner {
        padding: 50px 40px;
    }

    .hero-layout {
        gap: 30px;
    }

    .floating-image img {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-width: 320px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .floating-image img {
        width: 250px;
        height: 250px;
    }
    .floating-image,
    .hero-image {
        width: 220px;
        height: 220px;
        display: none;
    }
}

@media (max-width: 768px) {
    .section-wrapper {
        width: 95%;
        margin: 20px auto;
        border-radius: 20px;
    }

    .section-inner {
        padding: 35px 25px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .page-indicator {
        bottom: 18px;
        right: 18px;
    }

    .indicator-box {
        padding: 8px 14px;
        font-size: 0.75rem;
        min-width: 110px;
    }

    .indicator-image {
        width: 55px;
        height: 55px;
    }

    .floating-image,
    .hero-image {
        width: 220px;
        height: 220px;
        display: none;
    }
}