* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background: linear-gradient(120deg, #eef2ff, #fdf4ff);
    color: #1f2937;
}

section {
    padding: 90px 20px;
}

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


/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    margin-top: 45px;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient border */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}

/* Hover */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15);
}

a {
    color: #675df0
}

.categories-section {

    background: #f9fafb;
}


/* HERO SECTION */

.hero {
    position: relative;
    padding: 160px 20px 120px;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    overflow: hidden;
}

/* GLOW EFFECT BACKGROUND */
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
}

/* LEFT GLOW */
.hero::before {
    background: #22c55e;
    top: -100px;
    left: -100px;
}

/* RIGHT GLOW */
.hero::after {
    background: #3b82f6;
    bottom: -120px;
    right: -120px;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 864px;
    margin: auto;
}

/* TITLE */
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

/* TEXT */
.hero p {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 40px;
}

/* BUTTON BASE */
.hero-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    margin: 8px;
    transition: 0.3s;
}

/* PRIMARY BUTTON (GLASS STYLE) */
.hero-btn.primary {
    background: white;
    color: #4f46e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* HOVER */
.hero-btn.primary:hover {
    transform: translateY(-3px);
}

/* SECONDARY BUTTON */
.hero-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

/* HOVER */
.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* FLOATING ANIMATION */
.hero-content {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* features section css*/

/* SECTION */
.features-section {
    padding: 100px 20px;
    text-align: center;
}

/* TITLE */
.section-title {
    font-size: 34px;
    font-weight: 800;
}

.section-subtitle {
    margin-top: 10px;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* CARD */

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    padding: 35px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hover glow */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.4);
}

/* ICON */
.feature-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

/* TEXT */
.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
}

.features-section {
    padding: 120px 20px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    overflow: hidden;
    color: white;
}

/* Glow lights */
.features-section::before,
.features-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

/* Purple glow */
.features-section::before {
    background: #7c3aed;
    top: -120px;
    left: -120px;
}

/* Blue glow */
.features-section::after {
    background: #3b82f6;
    bottom: -120px;
    right: -120px;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: #cbd5f5;
}

.section-subtitle {
    color: #a5b4fc;
}

/* works  section css */

/* SECTION */
.works-section {
    padding: 100px 20px;
    background: #f8fafc;
    text-align: center;
}

/* TITLE */
.works-title {
    font-size: 34px;
    font-weight: 800;
}

/* GRID */
.works-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* CARD */
.work-card {
    background: white;
    padding: 40px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

/* HOVER EFFECT */
.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* GRADIENT TOP LINE */
.work-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
}

/* STEP NUMBER */
.step-number {
    font-size: 28px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 15px;
}

/* TITLE */
.work-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.work-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 14px;
}

/* ABOUT SECTION CSS */

/* SECTION */
.about-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: white;
}

/* GLOW EFFECT */
.about-section::before,
.about-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

/* Purple glow */
.about-section::before {
    background: #7c3aed;
    top: -120px;
    left: -120px;
}

/* Blue glow */
.about-section::after {
    background: #3b82f6;
    bottom: -120px;
    right: -120px;
}

/* KEEP CONTENT ABOVE */
.about-section .container {
    position: relative;
    z-index: 1;
}

/* TITLE */
.about-title {
    font-size: 36px;
    font-weight: 800;
}

/* CARD */
.about-card {
    margin-top: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

/* HOVER EFFECT */
.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.3);
}

/* TEXT */
.about-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5f5;
    margin-bottom: 15px;
}

/*  BLOG SECTION CSS  */

/* SECTION */
.blog-section,
.works-section {
    padding: 100px 20px;
    background: #f9fafb;
    text-align: center;
}

/* TITLE */
.blog-title {
    font-size: 34px;
    font-weight: 800;
}

.blog-subtitle {
    margin-top: 10px;
    color: #6b7280;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* CARD */
.blog-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    text-align: left;
    transition: all 0.35s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* HOVER EFFECT */
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

/* TAG */
.blog-tag {
    display: inline-block;
    font-size: 12px;
    background: #eef2ff;
    color: #6366f1;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* TITLE */
.blog-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-card h3 a {
    text-decoration: none;
    color: #111827;
}

/* TEXT */
.blog-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

/* READ MORE */
.read-more {
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
}

/* CTA */
.blog-cta {
    margin-top: 40px;
}

.blog-cta a {
    display: inline-block;
    padding: 12px 25px;
    background: #6366f1;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}

.blog-cta a:hover {
    background: #4f46e5;
}

/* fAQ SECTION CSS  */

/* SECTION */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #020617, #0f172a);
    position: relative;
    overflow: hidden;
    color: white;
}

/* GLOW BACKGROUND */
.faq-section::before,
.faq-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
}

.faq-section::before {
    background: #7c3aed;
    top: -100px;
    left: -100px;
}

.faq-section::after {
    background: #3b82f6;
    bottom: -100px;
    right: -100px;
}

/* KEEP CONTENT ABOVE */
.faq-section .container {
    position: relative;
    z-index: 1;
}

/* TITLE */
.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
}

/* BOX */
.faq-box {
    max-width: 800px;
    margin: 40px auto 0;
}

/* ITEM */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.faq-question span {
    font-size: 20px;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #cbd5f5;
    line-height: 1.7;
    transition: all 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 15px 20px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


.faq-answer{
    display:none;
}

.faq-item.active .faq-answer{
    display:block;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    padding:15px;
    font-size:18px;
}

.faq-item{
    border-bottom:1px solid #ddd;
}



/*  CTA SECTION */

/* SECTION */
.cta-section {
    padding: 100px 20px;
    background: #f9fafb;
    text-align: center;
}

/* BOX */
.cta-box {
    max-width: 750px;
    margin: auto;
    padding: 60px 40px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

/* SOFT GLOW */
.cta-box::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: #6366f1;
    filter: blur(100px);
    opacity: 0.15;
    top: -50px;
    left: -50px;
}

/* TITLE */
.cta-box h2 {
    font-size: 30px;
    font-weight: 800;
}

/* TEXT */
.cta-box p {
    margin-top: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* BUTTON HOVER */
.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* INTERNAL LINKS */

.internal-links {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.12), transparent 30%),
        linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Floating glow effects */
.internal-links::before,
.internal-links::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    z-index: 0;
    animation: glowMove 8s ease-in-out infinite alternate;
}

.internal-links::before {
    background: #6366f1;
    top: -120px;
    right: -100px;
}

.internal-links::after {
    background: #7c3aed;
    bottom: -120px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes glowMove {
    0% {
        transform: translateY(0px) scale(1);
    }

    100% {
        transform: translateY(25px) scale(1.08);
    }
}

/* Content */
.internal-links .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

/* Heading */
.internal-links h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 18px;
    position: relative;
}

/* Decorative underline */
.internal-links h2::after {
    content: "";
    width: 110px;
    height: 5px;
    border-radius: 20px;

    background: linear-gradient(90deg, #6366f1, #7c3aed);

    display: block;
    margin: 18px auto 0;
}

/* Grid */
.seo-links {
    list-style: none;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 28px;

    margin-top: 70px;
    padding: 0;
}

/* Link card */
.seo-links li {
    position: relative;
    overflow: hidden;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.4);

    transition: 0.45s ease;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.05),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Gradient border animation */
.seo-links li::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;

    background: linear-gradient(135deg, #6366f1, #7c3aed, #3b82f6);

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

    -webkit-mask-composite: xor;

    opacity: 0;
    transition: 0.45s ease;
}

/* Hover effect */
.seo-links li:hover {
    transform: translateY(-12px) scale(1.02);

    box-shadow:
        0 25px 70px rgba(99, 102, 241, 0.18),
        0 10px 30px rgba(124, 58, 237, 0.12);
}

.seo-links li:hover::before {
    opacity: 1;
}

/* Link */
.seo-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 120px;

    padding: 25px;

    text-decoration: none;

    font-size: 19px;
    font-weight: 700;

    color: #111827;

    position: relative;
    z-index: 2;

    transition: 0.35s ease;
}

/* Arrow */
.seo-links a::after {
    content: "↗";
    margin-left: 10px;
    font-size: 18px;

    transition: 0.35s ease;
}

.seo-links li:hover a {
    color: #4f46e5;
}

.seo-links li:hover a::after {
    transform: translate(5px, -5px);
}

/* Mobile */
@media(max-width:768px) {

    .internal-links {
        padding: 90px 20px;
    }

    .internal-links h2 {
        font-size: 30px;
    }

    .seo-links {
        gap: 20px;
        margin-top: 50px;
    }

    .seo-links a {
        min-height: 95px;
        font-size: 17px;
    }
}


