/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BODY ================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
}

/* ================= CONTAINER ================= */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px; /* 🔥 reduced */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= HEADER ================= */
.header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
}

body {
    margin: 0;
}

.header + .hero {
    margin-top: 0 !important;
    padding-top: 30px !important; /* 🔥 key fix */
}
/* ================= LOGO ================= */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 45px;
}

/* ================= LOGO TEXT ================= */
.logo-text h2 {
    font-size: 20px;
    font-weight: 700;

    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 12px;
    color: #777;
}

/* ================= NAV ================= */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

/* IMPORTANT FIX */
.nav ul li {
    position: relative;
}

.nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* ACTIVE LINK */
.nav ul li a.active {
    color: #7b61ff;
}

/* HOVER UNDERLINE */
.nav ul li a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav ul li a:hover::after {
    width: 100%;
}

.nav ul li a:hover {
    color: #7b61ff;
}

/* ================= BUTTON ================= */
.btn {
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;

    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.85;
}

/* ================= DROPDOWN ================= */

/* WRAPPER */
.dropdown {
    position: relative;
}

/* DROPDOWN BOX */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 220px;
    background: #ffffff;

    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #eee;

    padding: 10px 0;

    display: none; /* 🔥 KEY FIX */
    flex-direction: column;

    z-index: 999;
}

/* SHOW ON HOVER */
.dropdown:hover .dropdown-menu {
    display: flex;
}

/* DROPDOWN LINKS */
.dropdown-menu a {
    padding: 12px 18px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 0.25s;
}

/* HOVER EFFECT */
.dropdown-menu a:hover {
    background: #f5f5f5;
    padding-left: 25px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .logo-text p {
        display: none;
    }
}
/* ================= HAMBURGER ================= */
.hamburger {
    font-size: 26px;
    cursor: pointer;
    display: none;
}

/* MOBILE CTA HIDE */
.mobile-cta {
    display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    .cta {
        display: none;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;

        display: none;
        flex-direction: column;

        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
    }

    .nav ul li {
        border-bottom: 1px solid #eee;
    }

    .nav ul li a {
        display: block;
        padding: 15px 20px;
    }

    /* DROPDOWN MOBILE FIX */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* MOBILE CTA SHOW */
    .mobile-cta {
        display: block;
        padding: 15px;
    }
}

/* ================= HERO FIXED ================= */

.hero {
    width: 100%;
    padding: 30px 20px 60px; /* 🔥 BIG FIX */
    background: linear-gradient(180deg, #ffffff, #f8f7ff);
    min-height: auto;
}

/* CONTAINER */
.hero-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* better balance */
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.hero-left {
    max-width: 550px; /* prevents over stretching */
}

.hero-left h1 {
    font-size: 38px; /* reduced */
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

h1, h2, h3, p {
    margin-top: 0;
}

.hero-left h1 span {
    /* Essential: Gives the span 'box' properties so the gradient renders fully */
    display: inline-block;
    
    /* The Gradient */
    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    
    /* Clipping (Standard + Webkit for maximum compatibility) */
    background-clip: text;
    -webkit-background-clip: text;
    
    /* Makes the internal text color clear so the background shows through */
    -webkit-text-fill-color: transparent;

    /* Fallback: If the gradient fails, the text won't be invisible */
    color: #7b61ff; 
    
    /* Prevents potential issues with descenders (like the tail of a 'g' or 'y') */
    padding-bottom: 0.1em; 
}

.hero-left p {
    font-size: 16px;
    color: #555;
    margin: 15px 0; /* reduced */
    line-height: 1.6;
}

/* BADGE */
.hero-badge {
    display: inline-block;
    background: #f1efff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 10px; /* reduced */
}

/* POINTS */
.hero-points {
    list-style: none;
    margin-bottom: 20px;
}

.hero-points li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #444;
}

/* BUTTONS FIX */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

/* PRIMARY BUTTON */
.btn {
    display: inline-block;
}

/* FIX OUTLINE BUTTON */
.btn-outline {
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;

    border: 2px solid #7b61ff;
    color: #7b61ff;

    transition: 0.3s;
}

.btn-outline:hover {
    background: #7b61ff;
    color: #fff;
}

/* TRUST TEXT */
.hero-trust {
    font-size: 13px;
    color: #777;
    margin-top: 15px;
}

/* RIGHT IMAGE FIX */
.hero-right {
    display: flex;
    justify-content: flex-end; /* 🔥 pushes image to right */
}

.hero-right img {
    width: 100%;
    max-width: 500px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-right {
        justify-content: center; /* center image on mobile */
    }

    .hero-right img {
        margin-top: 20px;
        max-width: 300px;
    }

    .hero-left h1 {
        font-size: 28px;
    }
}

/* ================= TRUST BAR ================= */
.trust-bar {
    width: 100%;
    padding: 80px 20px;
    background: #f4f3ff; /* light contrast background */
}

/* CONTAINER */
.trust-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD STYLE */
.trust-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 16px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* NUMBER */
.trust-card h3 {
    font-size: 32px;
    font-weight: 800;

    /* Essential for the clip to work on some elements */
    display: inline-block; 
    
    /* The Gradient */
    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    
    /* The Magic */
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Fallback for older browsers */
    color: #7b61ff; 
}
/* TEXT */
.trust-card p {
    margin-top: 8px;
    font-size: 15px;
    color: #555;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .trust-container {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 30px 20px;
    }

    .trust-card h3 {
        font-size: 26px;
    }
}

/* ================= SERVICES PREMIUM ================= */

.services {
    padding: 80px 20px;
    background: #ffffff;
}

/* HEADER */
.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* GRID → FLEX */
.services-grid {
    max-width: 1100px;
    margin: auto;

    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARD */
.service-card {
    display: flex;
    align-items: center;
    gap: 30px;

    background: #fff;
    padding: 30px;
    border-radius: 24px;

    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);

    transition: all 0.3s ease;
}

/* ZIG-ZAG LAYOUT */
.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.service-image img {
    width: 220px;
    transition: 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* CONTENT */
.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #111;
}

.service-content p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* POINTS */
.service-points {
    list-style: none;
    margin-bottom: 15px;
}

.service-points li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

/* BUTTON */
.btn-service {
    display: inline-block;
    margin: 15px auto 0;

    padding: 10px 20px;
    border-radius: 25px;

    font-weight: 600;
    font-size: 14px;

    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    color: #fff;

    text-decoration: none;

    transition: all 0.3s ease;
}

.service-content {
    display: flex;
    flex-direction: column;
}

.btn-service:hover {
    color: #5a45d6;
}

/* BACKGROUND VARIATION */
.service-card:nth-child(1) {
    background: #f8f7ff;
}

.service-card:nth-child(2) {
    background: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .services {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        flex-direction: column !important;
        text-align: center;
        padding: 25px;
    }

    .service-image img {
        width: 180px;
    }
}

/* ================= WHY CHOOSE US ================= */
.why-us {
    padding: 100px 20px;
    background: #f8f7ff;
}

/* HEADER */
.why-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 34px;
    color: #111;
}

.why-header p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* CONTAINER */
.why-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* TABS */
.why-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-tab {
    padding: 18px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid #eee;
}

.why-tab.active {
    border-left: 4px solid #7b61ff;
    background: #f1efff;
}

/* CONTENT */
.why-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* FLEX BOX */
.content-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.content-text p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* IMAGE */
.content-image img {
    width: 250px;
}

/* TAB SWITCH */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .why-container {
        grid-template-columns: 1fr;
    }

    .content-box {
        flex-direction: column;
        text-align: center;
    }

    .content-image img {
        width: 100%;
        max-width: 250px;
    }
}

/* ================= PROCESS SECTION ================= */
.process {
    padding: 100px 20px;
    background: #ffffff;
}

/* HEADER */
.process-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 34px;
    color: #111;
}

.process-header p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* CONTAINER */
.process-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    position: relative;
}

/* CONNECTING LINE */
.process-container::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #e5e5e5;
    z-index: 0;
}

/* STEP */
.process-step {
    background: #f9f9ff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;

    position: relative;
    z-index: 1;

    border: 1px solid #eee;
    transition: 0.3s;
}

/* HOVER */
.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ICON */
.step-icon {
    font-size: 28px;
    margin-bottom: 15px;
}

/* TITLE */
.process-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111;
}

/* TEXT */
.process-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .process-container {
        grid-template-columns: 1fr;
    }

    .process-container::before {
        display: none;
    }
}

.case-study {
    padding: 100px 20px;
    background: #ffffff;
}

.case-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.case-header h2 {
    font-size: 34px;
    color: #111;
}

.case-header p {
    color: #666;
    margin-top: 10px;
}

/* WRAPPER */
.case-wrapper {
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* CARD */
.case-box {
    background: #f9f9ff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.case-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* TOP */
.case-top h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.case-top p {
    color: #666;
    font-size: 14px;
}

/* MIDDLE */
.case-middle {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* COLUMN */
.case-column {
    flex: 1;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}

.case-column h4 {
    margin-bottom: 10px;
    color: #333;
}

/* HIGHLIGHT */
.case-column.highlight {
    border: 2px solid #7b61ff;
}

/* LIST */
.case-column ul {
    padding-left: 18px;
}

.case-column li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

/* RESULT */
.case-result {
    margin-top: 20px;
    font-weight: 600;
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .case-middle {
        flex-direction: column;
    }
}
/* ================= TESTIMONIALS ================= */
.testimonials {
    padding: 100px 20px;
    background: #f8f7ff;
}

/* HEADER */
.testi-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.testi-header h2 {
    font-size: 34px;
    color: #111;
}

.testi-header p {
    color: #666;
    margin-top: 10px;
}

/* CONTAINER */
.testi-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.testi-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;

    border: 1px solid #eee;
    text-align: center;

    transition: 0.3s;
}

/* HOVER */
.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ACTIVE CARD (CENTER) */
.testi-card.active {
    transform: scale(1.05);
    border: 2px solid #7b61ff;
}

/* STARS */
.stars {
    color: #f5a623;
    margin-bottom: 15px;
}

/* TEXT */
.testi-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* NAME */
.testi-card h4 {
    font-size: 16px;
    color: #111;
}

/* COMPANY */
.testi-card span {
    font-size: 13px;
    color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testi-container {
        grid-template-columns: 1fr;
    }

    .testi-card.active {
        transform: none;
    }
}
/* ================= CTA SECTION ================= */
.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #7b61ff, #ff6a95);
    color: #fff;
}

/* CONTAINER */
.cta-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT SIDE */
.cta-left h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.cta-left p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* POINTS */
.cta-points {
    list-style: none;
}

.cta-points li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* FORM BOX */
.cta-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    color: #111;

    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* FORM TITLE */
.cta-form-box h3 {
    margin-bottom: 20px;
    text-align: center;
}

/* INPUTS */
.cta-form-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 14px;
}

/* BUTTON */
.cta-form-box button {
    width: 100%;
    padding: 12px;

    border: none;
    border-radius: 25px;

    background: #7b61ff;
    color: #fff;

    font-weight: 600;
    cursor: pointer;

    transition: 0.3s;
}

.cta-form-box button:hover {
    background: #5a45d6;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .cta-container {
        grid-template-columns: 1fr;
    }

    .cta-left {
        text-align: center;
    }
}
/* SELECT FIELD */
.cta-form-box select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;

    border: 1px solid #ddd;
    border-radius: 8px;

    font-size: 14px;
}
/* ================= FAQ ================= */
.faq {
    padding: 100px 20px;
    background: #ffffff;
}

/* HEADER */
.faq-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 34px;
    color: #111;
}

.faq-header p {
    color: #666;
    margin-top: 10px;
}

/* CONTAINER */
.faq-container {
    max-width: 1000px;
    margin: auto;
    align-items: start; /* 🔥 IMPORTANT FIX */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ITEM */
.faq-item {
    background: #f9f9ff;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    align-self: start; /* 🔥 prevents stretching */
    border: 1px solid #eee;
}

/* ACTIVE */
.faq-item.active {
    background: #f1efff;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 16px;
    color: #111;
}

/* TOGGLE */
.faq-toggle {
    font-size: 20px;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* or large enough */
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* ================= ABOUT HOME ================= */

.about-home {
    padding: 80px 20px;
    background: #f8f7ff;
}

/* CONTAINER */
.about-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE */
.about-image img {
    width: 100%;
    max-width: 450px;
}

/* CONTENT */
.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111;
}

.about-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* POINTS */
.about-points {
    list-style: none;
    margin-bottom: 20px;
}

.about-points li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

/* BUTTON */
.btn-about {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;

    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.btn-about:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(123, 97, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        max-width: 300px;
        margin: auto;
    }
}

/* ================= FOOTER ================= */

.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 20px 30px;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    text-decoration: none;
}

.footer-logo img {
    width: 40px;
    height: auto;
}

/* TEXT */
.footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #bbb;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* SOCIAL */
.footer-social {
    margin-top: 10px;
}

.footer-social a {
    margin-right: 10px;
    font-size: 18px;
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 480px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

}

/* ================= BLOG SECTION ================= */

.blog-section {
    padding: 80px 20px;
    background: #f8f7ff;
}

/* CONTAINER */
.blog-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */
.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.blog-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* LINK */
.blog-link {
    color: #7b61ff;
    font-weight: 600;
    text-decoration: none;
}

.blog-link:hover {
    color: #5a45d6;
}

/* CTA BUTTON */
.blog-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-blog {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;

    background: linear-gradient(90deg, #7b61ff, #ff6a95, #ff914d);
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.btn-blog:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(123, 97, 255, 0.3);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .blog-grid {
        grid-template-columns: 1fr;
    }

}