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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #F8FAFC;
    color: #0F172A;
}

/* HEADER */
.main-header {
    width: 92%;
    margin: 20px auto;
    background: rgba(255,255,255,0.95);
    border-radius: 60px;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 10px;
    z-index: 999;
    backdrop-filter: blur(12px);
}

.logo a {
    text-decoration: none;
    font-size: 32px;
    font-weight: bold;
    color: #0F172A;
}

.logo span {
    color: #2563EB;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #0F172A;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #2563EB;
}

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #ffffff;
    width: 290px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 10px 0;
    border: 1px solid #E2E8F0;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 13px 18px;
    color: #0F172A;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    background: #EFF6FF;
    color: #2563EB;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.cta-btn {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: white;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.secondary-btn {
    border: 2px solid #2563EB;
    color: #2563EB;
    text-decoration: none;
    padding: 14px 25px;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.secondary-btn:hover {
    background: #2563EB;
    color: white;
}

.white-btn {
    background: white;
    color: #2563EB;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 40px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.white-btn:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0F172A;
}

/* HERO */
.hero {
    width: 92%;
    margin: 30px auto;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #DBEAFE, #F1F5F9);
    border-radius: 32px;
    padding: 70px 55px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(96, 165, 250, 0.18);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    filter: blur(20px);
}

.hero-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-text span {
    color: #2563EB;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 20px 0;
    color: #0F172A;
    max-width: 650px;
}

.hero-text h1 strong {
    color: #2563EB;
}

.hero-text p {
    font-size: 20px;
    color: #475569;
    margin-bottom: 30px;
    max-width: 620px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-stats {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 20px;
    min-width: 170px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(255,255,255,0.7);
}

.stat-box h3 {
    font-size: 28px;
    color: #2563EB;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image-box {
    position: relative;
    max-width: 520px;
    margin: auto;
}

.hero-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.14);
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 16px 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.12);
    border: 1px solid #E2E8F0;
    max-width: 250px;
}

.floating-card i {
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.floating-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #0F172A;
}

.floating-card p {
    font-size: 13px;
    color: #64748B;
}

.card-one {
    top: 30px;
    left: -40px;
}

.card-two {
    bottom: 30px;
    right: -35px;
}

/* GENERIC */
.section {
    width: 92%;
    margin: 90px auto;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.mini-title {
    display: inline-block;
    color: #2563EB;
    background: #EFF6FF;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.mini-title.light {
    background: rgba(255,255,255,0.15);
    color: #DBEAFE;
}

.section-title h2 {
    font-size: 44px;
    color: #0F172A;
    margin-bottom: 14px;
}

.section-title p {
    color: #64748B;
    max-width: 760px;
    margin: auto;
    line-height: 1.8;
}

/* BRANDS */
.brands-section {
    margin-top: 45px;
}

.brands-wrap {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 28px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.brands-wrap p {
    color: #64748B;
    margin-bottom: 18px;
    font-weight: 600;
}

.brand-items {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.brand-items span {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: 0.3s;
    border: 1px solid #E2E8F0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.icon-circle i {
    font-size: 28px;
    color: #2563EB;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0F172A;
}

.service-card p {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 18px;
}

.card-link {
    color: #2563EB;
    text-decoration: none;
    font-weight: 700;
}

/* WHY US */
.why-us-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
}

.why-us-left h2 {
    font-size: 46px;
    margin-bottom: 18px;
    color: #0F172A;
}

.why-us-left p {
    color: #64748B;
    line-height: 1.9;
    margin-bottom: 28px;
    max-width: 650px;
}

.why-points {
    margin-bottom: 30px;
}

.why-point {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #0F172A;
    font-weight: 600;
}

.why-point i {
    color: #2563EB;
    font-size: 18px;
}

.why-us-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.why-card h3 {
    color: #0F172A;
    margin-bottom: 10px;
}

.why-card p {
    color: #64748B;
    line-height: 1.8;
}

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-item {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid #E2E8F0;
    transition: 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-6px);
}

.portfolio-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.portfolio-item .content {
    padding: 22px;
}

.portfolio-item .content h3 {
    color: #0F172A;
    margin-bottom: 10px;
}

.portfolio-item .content p {
    color: #64748B;
    line-height: 1.7;
}

/* TESTIMONIAL */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.testimonial-card p {
    color: #475569;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 18px;
}

.testimonial-card h4 {
    color: #2563EB;
}

/* CTA SECTION */
.cta-section {
    margin-bottom: 100px;
}

.cta-box {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 30px;
    padding: 55px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    color: white;
    flex-wrap: wrap;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.25);
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 12px;
}

.cta-box p {
    color: #DBEAFE;
    max-width: 650px;
    line-height: 1.8;
}

/* PAGE BANNER */
.page-banner {
    width: 92%;
    margin: 30px auto;
    background: linear-gradient(135deg, #DBEAFE, #F1F5F9);
    padding: 70px;
    border-radius: 30px;
    text-align: center;
}

.page-banner h1 {
    font-size: 52px;
    color: #0F172A;
}

.page-banner p {
    margin-top: 10px;
    color: #475569;
    font-size: 18px;
}

/* CONTACT */
.contact-form {
    max-width: 750px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid #E2E8F0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid #CBD5E1;
    border-radius: 12px;
    outline: none;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563EB;
}

.contact-form button {
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

/* FOOTER */
.footer {
    background: #0F172A;
    color: white;
    padding: 70px 8% 20px;
    margin-top: 80px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left h2 {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-left p {
    max-width: 500px;
    font-size: 20px;
    margin-bottom: 25px;
    color: #CBD5E1;
}

/* SOCIAL ICONS ORIGINAL COLORS */
.social-icons a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-4px) scale(1.05);
}

.social-icons a:nth-child(1) { background: #1877F2; } /* Facebook */
.social-icons a:nth-child(2) { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF, #515BD4); } /* Instagram */
.social-icons a:nth-child(3) { background: #FF0000; } /* YouTube */
.social-icons a:nth-child(4) { background: #0A66C2; } /* LinkedIn */
.social-icons a:nth-child(5) { background: #000000; } /* TikTok */

.footer-right {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
}

.footer-right h3 {
    margin-bottom: 15px;
    color: white;
}

.footer-right ul {
    list-style: none;
}

.footer-right ul li {
    margin-bottom: 10px;
}

.footer-right ul li a {
    text-decoration: none;
    color: #CBD5E1;
    transition: 0.3s;
}

.footer-right ul li a:hover {
    color: #60A5FA;
}

.footer-bottom {
    margin-top: 35px;
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 20px;
    text-align: center;
    color: #CBD5E1;
}

/* SCROLL TOP */
.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2563EB, #60A5FA);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

/* MOBILE */
@media (max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 55px 30px;
    }

    .hero-text h1 {
        font-size: 48px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .card-one {
        top: 20px;
        left: 10px;
    }

    .card-two {
        bottom: 20px;
        right: 10px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 95px;
        right: 20px;
        background: white;
        width: 290px;
        flex-direction: column;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        display: none;
        border: 1px solid #E2E8F0;
    }

    .nav-links.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .cta-btn {
        display: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 10px;
        border: none;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .section-title h2,
    .why-us-left h2,
    .cta-box h2 {
        font-size: 34px;
    }

    .page-banner h1 {
        font-size: 42px;
    }

    .footer-left h2 {
        font-size: 42px;
    }

    .floating-card {
        position: static;
        margin-top: 18px;
        max-width: 100%;
    }

    .hero-image-box {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0F172A;
    z-index: 1001;
}

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

    .nav-links {
        position: absolute;
        top: 95px;
        right: 20px;
        background: white;
        width: 290px;
        flex-direction: column;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        display: none;
        border: 1px solid #E2E8F0;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .cta-btn {
        display: none;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 10px;
        border: none;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}
/* ===== MOBILE MENU FIX ===== */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0F172A;
    z-index: 1001;
}

.desktop-btn {
    display: inline-block;
}

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

    .desktop-btn {
        display: none;
    }

    .main-header {
        position: relative;
    }

    .nav-links {
        position: absolute;
        top: 95px;
        right: 20px;
        background: #ffffff;
        width: 290px;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
        display: none;
        border: 1px solid #E2E8F0;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 10px;
        border: none;
        display: none;
        padding-left: 10px;
        background: transparent;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 15px;
    }
}
/* =========================================
   BLOG PAGE PREMIUM 3D COLORFUL CARDS
========================================= */

.blog-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
    position: relative;
    overflow: hidden;
}

.blog-section::before,
.blog-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    z-index: 0;
    animation: blobMove 8s ease-in-out infinite alternate;
}

.blog-section::before {
    top: -80px;
    left: -80px;
    background: #ff4ecd;
}

.blog-section::after {
    bottom: -80px;
    right: -80px;
    background: #00e5ff;
}

.blog-section .services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* MAIN BLOG CARD */
.blog-card {
    position: relative;
    width: 320px;
    min-height: 370px;
    padding: 30px 25px;
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
    color: #fff;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 1px rgba(255,255,255,0.08);
    transition: all 0.45s ease;
    transform-style: preserve-3d;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 1;
}

/* Different floating timing */
.blog-card:nth-child(2) {
    animation-delay: 0.5s;
}
.blog-card:nth-child(3) {
    animation-delay: 1s;
}

/* Different default colors */
.blog-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.18)) !important;
}

.blog-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.18)) !important;
}

.blog-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.18)) !important;
}

/* 3D hover */
.blog-card:hover {
    transform: translateY(-18px) scale(1.03) rotateX(5deg) rotateY(-5deg);
}

/* Glow circle */
.blog-card .card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.18);
    border-radius: 50%;
    filter: blur(55px);
    top: -60px;
    right: -60px;
    transition: all 0.5s ease;
    z-index: 0;
}

.blog-card:hover .card-glow {
    transform: scale(1.3);
    opacity: 0.9;
}

/* Shine effect */
.blog-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 250%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: rotate(25deg);
    transition: all 0.8s ease;
    z-index: 2;
}

.blog-card:hover::before {
    left: 130%;
}

/* Tag */
.blog-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

/* Text */
.blog-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    color: #fff;
}

.blog-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

/* Button */
.read-more {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.read-more:hover {
    background: #fff;
    color: #111827;
    transform: translateY(-3px);
}

/* Animations */
@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes blobMove {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.15); }
}

/* Responsive */
@media (max-width: 768px) {
    .blog-card {
        width: 100%;
        max-width: 360px;
    }

    .blog-section {
        padding: 60px 15px;
    }
}
/* =========================================
   BLOG PAGE EXTRA SEO CONTENT SECTIONS
========================================= */

.blog-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.blog-intro h2 {
    font-size: 2.3rem;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.3;
}

.blog-intro p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    line-height: 1.9;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    margin-bottom: 18px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-benefits,
.blog-topics {
    padding: 80px 20px;
    background: #0b1120;
    color: #fff;
}

.blog-topics {
    background: linear-gradient(135deg, #111827, #0f172a);
}

.blog-benefits-content,
.blog-topics .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.blog-benefits h2,
.blog-topics h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: #fff;
}

.blog-benefits p {
    max-width: 900px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
    font-size: 1.05rem;
}

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

.benefit-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 22px;
    padding: 30px 25px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.benefit-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.10);
}

.benefit-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #fff;
}

.benefit-box p {
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    font-size: 0.98rem;
}

.topics-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
}

.topics-list span {
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(248, 247, 247, 0.08);
    border: 1px solid rgba(44, 42, 42, 0.1);
    color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.topics-list span:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

@media (max-width: 768px) {
    .blog-intro h2,
    .blog-benefits h2,
    .blog-topics h2 {
        font-size: 1.8rem;
    }

    .blog-intro p,
    .blog-benefits p {
        font-size: 1rem;
    }
}
.banner-title {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid rgba(255,255,255,0.7);
    width: fit-content;
    margin: 0 auto 20px;
    animation: typing 2.5s steps(20, end), blink 0.7s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}
/* =========================================
   BLOG HERO / OUR BLOG BANNER
========================================= */

.blog-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 90px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
    color: #fff;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 0, 128, 0.18), transparent 35%),
                radial-gradient(circle at top right, rgba(0, 198, 255, 0.18), transparent 35%),
                radial-gradient(circle at bottom center, rgba(168, 85, 247, 0.18), transparent 35%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: fadeUp 1.1s ease forwards;
}

.banner-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 22px;
    backdrop-filter: blur(12px);
    animation: fadeDown 1s ease forwards;
}

.banner-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: fadeUp 1.2s ease forwards;
}

.banner-title span {
    background: linear-gradient(135deg, #00c6ff, #ff4ecd, #8e2de2);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    background-clip: text; /* Standard property */
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

.banner-subtitle {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    max-width: 780px;
    margin: 0 auto 35px;
    animation: fadeUp 1.4s ease forwards;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeUp 1.6s ease forwards;
}

.banner-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    box-shadow: 0 12px 30px rgba(0, 114, 255, 0.35);
}

.primary-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 35px rgba(0, 114, 255, 0.45);
}

.secondary-btn {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
}

.secondary-btn:hover {
    transform: translateY(-4px) scale(1.03);
    background: rgba(255,255,255,0.14);
}

/* Floating shapes */
.banner-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.35;
    z-index: 2;
    animation: floatBlob 8s ease-in-out infinite alternate;
}

.shape1 {
    width: 240px;
    height: 240px;
    background: #ff4ecd;
    top: 60px;
    left: 8%;
}

.shape2 {
    width: 280px;
    height: 280px;
    background: #00c6ff;
    bottom: 60px;
    right: 8%;
    animation-delay: 1.5s;
}

.shape3 {
    width: 220px;
    height: 220px;
    background: #8e2de2;
    bottom: 15%;
    left: 40%;
    animation-delay: 2.5s;
}

/* Text Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatBlob {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    100% {
        transform: translateY(-30px) translateX(20px) scale(1.12);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .banner-title {
        font-size: 3rem;
    }

    .banner-subtitle {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .blog-banner {
        min-height: 75vh;
        padding: 100px 18px 70px;
    }

    .banner-title {
        font-size: 2.4rem;
    }

    .banner-subtitle {
        font-size: 1rem;
        line-height: 1.8;
    }

    .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .banner-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
/* =========================================
   CONTACT PAGE - SPLIT ONE SCREEN DESIGN
========================================= */

.contact-split-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 110px 20px 60px;
    overflow: hidden;
    background: linear-gradient(135deg, #07111f, #0b1d35, #112b4a);
}

.contact-split-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 3;
}

/* LEFT SIDE */
.contact-left {
    color: #fff;
    animation: fadeUp 1s ease forwards;
}

.contact-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 153, 255, 0.10);
    border: 1px solid rgba(0, 153, 255, 0.22);
    color: #b8deff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.contact-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #66b2ff, #0d6efd, #ff4d5a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 5s ease infinite;
}

.contact-subtitle {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #d6eaff;
    max-width: 540px;
    margin-bottom: 28px;
}

.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.point-card {
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(102, 178, 255, 0.14);
    color: #e8f3ff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.point-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.10);
}

/* RIGHT SIDE FORM */
.contact-right {
    animation: fadeUp 1.1s ease forwards;
}

.contact-form-wrapper {
    padding: 34px 30px;
    border-radius: 26px;
    background: rgba(18, 38, 63, 0.92);
    border: 1px solid rgba(102, 178, 255, 0.18);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(102, 178, 255, 0.10);
    border-radius: 50%;
    filter: blur(75px);
    top: -50px;
    right: -50px;
    z-index: 0;
}

.contact-form-wrapper::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255, 77, 90, 0.08);
    border-radius: 50%;
    filter: blur(75px);
    bottom: -50px;
    left: -50px;
    z-index: 0;
}

.form-header {
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.form-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(102, 178, 255, 0.12);
    border: 1px solid rgba(102, 178, 255, 0.20);
    color: #bfe3ff;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-header h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 0;
}

/* FORM */
.modern-contact-form {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.input-group label {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #e8f3ff;
    font-weight: 600;
}

.modern-contact-form input,
.modern-contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid rgba(102, 178, 255, 0.18);
    background: rgba(9, 20, 35, 0.95);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.35s ease;
}

.modern-contact-form input::placeholder,
.modern-contact-form textarea::placeholder {
    color: #8fb5d8;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    border-color: #66b2ff;
    box-shadow: 0 0 0 4px rgba(102, 178, 255, 0.14);
    transform: translateY(-2px);
    background: rgba(12, 28, 48, 0.98);
}

.modern-contact-form textarea {
    resize: none;
    min-height: 120px;
}

.send-btn {
    border: none;
    padding: 14px 26px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(135deg, #66b2ff, #0d6efd);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.28);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.send-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 30px rgba(13, 110, 253, 0.38);
}

.send-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.20), transparent);
    transition: all 0.8s ease;
}

.send-btn:hover::before {
    left: 130%;
}

.send-btn span {
    position: relative;
    z-index: 2;
}

/* FLOATING SHAPES */
.contact-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.28;
    z-index: 1;
    animation: floatBlob 8s ease-in-out infinite alternate;
}

.shape1 {
    width: 230px;
    height: 230px;
    background: #ff3b5c;
    top: 70px;
    left: 6%;
}

.shape2 {
    width: 260px;
    height: 260px;
    background: #0d6efd;
    bottom: 60px;
    right: 6%;
    animation-delay: 1.5s;
}

.shape3 {
    width: 190px;
    height: 190px;
    background: #1e88e5;
    bottom: 20%;
    left: 42%;
    animation-delay: 2.5s;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatBlob {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    100% {
        transform: translateY(-24px) translateX(16px) scale(1.10);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-split-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-split-section {
        min-height: auto;
        padding: 100px 20px 60px;
    }

    .contact-left {
        text-align: center;
    }

    .contact-subtitle {
        margin: 0 auto 24px;
    }

    .contact-points {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.6rem;
    }

    .contact-form-wrapper {
        padding: 26px 20px;
    }

    .form-header h2 {
        font-size: 1.7rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modern-contact-form textarea {
        min-height: 110px;
    }
}
/* ===== COMPACT CONTACT FORM ===== */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* pehle 16px tha, kam kar diya */
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px; /* pehle 16px tha, kam kar diya */
}

.input-group label {
    margin-bottom: 4px; /* pehle 8px tha, kam kar diya */
    font-size: 0.9rem;
    color: #e8f3ff;
    font-weight: 600;
}

.modern-contact-form input,
.modern-contact-form textarea {
    padding: 10px 14px; /* pehle 13px 16px tha, thoda chhota kiya */
    border-radius: 12px; /* thoda chhota rounded */
}

.send-btn {
    padding: 12px 22px; /* button ke gap ko thoda reduce kiya */
}
/* =========================================
   ABOUT US PAGE - COLORFUL VERSION
   Sections: Banner, Who We Are, Mission, Values
   Vibrant gradients, hover effects, colorful cards
========================================= */

/* ----- GENERAL STYLES ----- */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background: #f9f9f9;
}
.section {
    padding: 60px 20px;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 36px;
    position: relative;
    color: #07111f;
}
.section-title h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff4d4f, #40a9ff, #73d13d);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ----- PAGE BANNER ----- */
.page-banner {
    position: relative;
    height: 50vh;
    background: linear-gradient(135deg, #07111f, #0b1d35, #112b4a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}
.page-banner .banner-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease forwards;
    background: linear-gradient(90deg, #ff4d4f, #40a9ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-banner .banner-content p {
    font-size: 20px;
    animation: fadeInUp 1s ease forwards;
    color: #ffd666;
}

/* ----- WHO WE ARE ----- */
.who-we-are {
    background: linear-gradient(120deg, #fff1f0, #e6f7ff);
}
.who-we-are-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}
.who-we-are-content img {
    flex: 1;
    max-width: 500px;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.who-we-are-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.who-we-are-content p {
    flex: 2;
    font-size: 18px;
    color: #333;
}

/* ----- MISSION ----- */
.mission {
    background: linear-gradient(135deg, #fff7e6, #e6fffb);
}
.mission-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    text-align: center;
    color: #07111f;
    line-height: 1.8;
}

/* ----- VALUES / CARDS ----- */
.values {
    background: linear-gradient(120deg, #f9f0ff, #e6fffb);
}
.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.value-card {
    background: linear-gradient(145deg, #ffd6e7, #bae7ff);
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 25px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}
.value-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}
.value-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #07111f;
    background: linear-gradient(90deg, #ff4d4f, #40a9ff, #73d13d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.value-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

/* ----- ANIMATIONS ----- */
@keyframes fadeInDown {
    0% {opacity: 0; transform: translateY(-20px);}
    100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
    0% {opacity: 0; transform: translateY(20px);}
    100% {opacity: 1; transform: translateY(0);}
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .who-we-are-content {
        flex-direction: column;
        text-align: center;
    }
    .who-we-are-content img {
        max-width: 80%;
    }
    .values-grid {
        gap: 20px;
    }
    .value-card {
        max-width: 200px;
    }
}
@media (max-width: 768px) {
    .page-banner .banner-content h1 {
        font-size: 36px;
    }
    .page-banner .banner-content p {
        font-size: 18px;
    }
    .section-title h2 {
        font-size: 28px;
    }
}
@media (max-width: 480px) {
    .who-we-are-content p,
    .mission-text,
    .value-card p {
        font-size: 16px;
    }
    .value-card h3 {
        font-size: 18px;
    }
}
/* ================= GENERAL STYLES ================= */
body {
    font-family: 'Poppins', sans-serif;
    margin:0; padding:0;
    background:#fefefe;
    color:#111;
    scroll-behavior: smooth;
}
a { text-decoration:none; transition:0.3s; }
img { max-width:100%; display:block; border-radius:15px; }
section { padding:80px 20px; position:relative; }

/* ================= HERO ================= */
.hero {
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:100px 50px;
    position:relative;
}
.hero-text { max-width:600px; animation: fadeInUp 1s ease forwards; opacity:0; }
.hero-text h1 { font-size:3rem; margin:20px 0; line-height:1.2; font-weight:700; color:#111; }
.hero-text p { font-size:1.1rem; margin-bottom:25px; color:#333; }
.hero-buttons a { display:inline-block; padding:14px 32px; margin-right:15px; border-radius:50px; font-weight:600; box-shadow:0 10px 20px rgba(0,0,0,0.1); }
.cta-btn { background:#2563eb; color:#fff; }
.cta-btn:hover { background:#1e40af; transform:translateY(-3px); box-shadow:0 15px 25px rgba(0,0,0,0.2); }
.secondary-btn { border:2px solid #2563eb; color:#2563eb; }
.secondary-btn:hover { background:#2563eb; color:#fff; transform:translateY(-3px); }

/* HERO STATS */
.hero-stats { display:flex; gap:30px; margin-top:30px; }
.stat-box {
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 15px 30px rgba(0,0,0,0.05);
    flex:1;
    text-align:center;
    transition:all 0.4s ease;
}
.stat-box:hover { transform:translateY(-8px) scale(1.03); }

/* HERO IMAGE + FLOATING CARDS */
.hero-image { position:relative; width:500px; }
.hero-image img { border-radius:15px; transition:transform 0.3s ease, box-shadow 0.3s ease; }
.floating-card {
    position:absolute;
    background:linear-gradient(135deg,#2563eb,#f59e0b);
    color:#fff;
    padding:18px 25px;
    border-radius:15px;
    box-shadow:0 15px 30px rgba(0,0,0,0.15);
    display:flex; align-items:center; gap:12px;
    transform:rotate(0deg);
    transition:transform 0.4s ease, box-shadow 0.4s ease;
}
.floating-card:hover { transform:rotate(-5deg) scale(1.08); box-shadow:0 20px 40px rgba(0,0,0,0.3); }

/* ================= BRANDS ================= */
.brands-wrap { text-align:center; margin:50px 0; }
.brand-items { display:flex; justify-content:center; flex-wrap:wrap; gap:15px; margin-top:15px; }
.brand-items span {
    background:#2563eb; color:#fff; padding:10px 18px; border-radius:50px;
    font-weight:600;
    transition:0.3s;
}
.brand-items span:hover { background:#1e40af; transform:scale(1.05); }

/* ================= SERVICES ================= */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; margin-top:50px; }
.service-card {
    background:#111827;
    color:#fff;
    padding:35px; border-radius:25px;
    box-shadow:0 20px 40px rgba(0,0,0,0.2);
    text-align:center; position:relative;
    transition:all 0.5s ease;
    cursor:pointer;
    border:2px solid transparent;
}
.service-card:hover { 
    transform:translateY(-12px) scale(1.05);
    border-image-slice:1;
    border-width:2px;
    border-image-source: linear-gradient(45deg,#2563eb,#f59e0b);
    box-shadow:0 25px 50px rgba(0,0,0,0.35);
}

/* ICON CIRCLE WITH ORIGINAL BRAND COLORS */
.icon-circle {
    width:70px; height:70px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    font-size:2.2rem; margin:0 auto 20px;
    transition:transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover .icon-circle { transform:scale(1.25); box-shadow:0 0 20px rgba(255,255,255,0.4); }

/* CARD NUMBERS STYLE */
.card-number { 
    position:absolute; top:-12px; left:-12px; 
    background:#fff; color:#111; 
    font-weight:700; width:28px; height:28px; border-radius:50%; 
    display:flex; align-items:center; justify-content:center; 
    font-size:0.85rem;
}

/* UNIQUE ICON COLORS (ORIGINAL BRAND COLORS) */
.service-card:nth-child(1) .icon-circle i { color:#2563eb; } /* SEO - Blue */
.service-card:nth-child(2) .icon-circle i { color:#1DA1F2; } /* Social Media - Twitter Blue */
.service-card:nth-child(3) .icon-circle i { color:#10B981; } /* Content - Emerald */
.service-card:nth-child(4) .icon-circle i { color:#95BF47; } /* Shopify - Green */
.service-card:nth-child(5) .icon-circle i { color:#F59E0B; } /* Web Development - Orange */
.service-card:nth-child(6) .icon-circle i { color:#F97316; } /* Graphic Designing - Deep Orange */
.service-card:nth-child(7) .icon-circle i { color:#8B5CF6; } /* Creative Strategy - Purple */

/* CARD LINK */
.card-link { display:inline-block; margin-top:15px; font-weight:600; color:#fff; transition:0.3s; }
.service-card:hover .card-link { color:#fff; text-decoration:underline; }

/* ================= WHY US ================= */
.why-us-grid { display:flex; gap:50px; flex-wrap:wrap; margin-top:50px; }
.why-us-left { flex:1; }
.why-us-right { flex:1; display:flex; flex-direction:column; gap:20px; }
.why-card { background:#1f2937; padding:25px; border-radius:20px; color:#fff; box-shadow:0 15px 30px rgba(0,0,0,0.15); transition:transform 0.3s, box-shadow 0.3s; }
.why-card:hover { transform:translateY(-12px) scale(1.03); box-shadow:0 20px 40px rgba(0,0,0,0.3); }

/* ================= PORTFOLIO ================= */
.portfolio-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; margin-top:50px; }
.portfolio-item { position:relative; overflow:hidden; border-radius:25px; transition:all 0.3s; }
.portfolio-item img { transition:transform 0.4s ease; }
.portfolio-item:hover img { transform:scale(1.08); }
.portfolio-item .content { 
    position:absolute; bottom:0; left:0; right:0; 
    background:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,0.8)); 
    color:#fff; padding:20px; transform:translateY(100%); transition:transform 0.4s; 
}
.portfolio-item:hover .content { transform:translateY(0); }

/* ================= TESTIMONIALS ================= */
.testimonial-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:30px; margin-top:50px; }
.testimonial-card { background:#111827; color:#fff; padding:35px; border-radius:25px; box-shadow:0 15px 30px rgba(0,0,0,0.15); transition:transform 0.4s, box-shadow 0.4s; }
.testimonial-card:hover { transform:translateY(-10px) scale(1.03); box-shadow:0 20px 40px rgba(0,0,0,0.25); }

/* ================= CTA ================= */
.cta-box { background:linear-gradient(135deg,#2563eb,#f59e0b); color:#fff; display:flex; justify-content:space-between; align-items:center; padding:55px; border-radius:25px; flex-wrap:wrap; gap:20px; }
.cta-box a.white-btn { background:#fff; color:#2563eb; padding:18px 35px; border-radius:50px; font-weight:600; box-shadow:0 10px 25px rgba(0,0,0,0.15); transition:all 0.4s; }
.cta-box a.white-btn:hover { background:#1e40af; color:#fff; transform:translateY(-4px); box-shadow:0 15px 35px rgba(0,0,0,0.25); }

/* ================= SCROLL TOP ================= */
.scroll-top { position:fixed; bottom:25px; right:25px; background:#2563eb; color:#fff; width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 10px 25px rgba(0,0,0,0.25); transition:0.3s; }
.scroll-top:hover { background:#1e40af; transform:scale(1.1); }

/* ================= RESPONSIVE ================= */
@media(max-width:992px){ .hero { flex-direction:column-reverse; gap:50px; } .hero-image { width:100%; } }
@media(max-width:768px){ .services-grid { grid-template-columns:1fr; } .why-us-grid { flex-direction:column; } }

/* ================= KEYFRAMES ================= */
@keyframes fadeInUp {
    0% { opacity:0; transform:translateY(20px); }
    100% { opacity:1; transform:translateY(0); }
}
/* ================= TESTIMONIAL SECTION ================= */
.testimonial-section {
    background: #f7f9fc;
    padding: 80px 20px;
}

.testimonial-section .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #6c63ff, #ff6584, #00f0ff, #ffeb3b);
    background-size: 400% 400%;
    filter: blur(35px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.testimonial-card:hover::before {
    opacity: 0.3;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.testimonial-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    margin-top: 15px;
    font-weight: 600;
    color: #111;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
    border-radius: 15px;
    border: 3px solid transparent;
}
/* Mobile Navigation Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Default mein chhupa rahega */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a0a0a; /* Dark theme */
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #333;
        z-index: 1000;
    }

    /* Jab JS 'show' class add karega tab menu nazar aayega */
    .nav-links.show {
        display: flex !important;
        animation: fadeInDown 0.3s ease-in-out;
    }

    /* Services Dropdown in Mobile */
    .services-dropdown {
        display: none;
        padding-left: 15px;
    }

    .services-dropdown.active {
        display: block !important;
    }

    /* Hamburger Button Animation */
    #menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    #menu-toggle.active span:nth-child(2) { opacity: 0; }
    #menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #00ffcc; /* Cyan/Green Gradient base */
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0; /* JS handle karega */
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 255, 204, 0.3);
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}
.hero-image-box {
    perspective: 1000px; /* 3D effect ke liye lazmi hai */
}

.floating-card {
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}
@media (max-width: 992px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.show {
    display: flex;
  }
}
/* MOBILE NAVBAR */
@media (max-width: 992px) {

  .menu-toggle {
    font-size: 26px;
    cursor: pointer;
    color: #111;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 25px;
    transition: 0.4s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links li {
    margin-bottom: 20px;
  }

  .nav-links a {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: 0.3s;
  }

  .nav-links a:hover {
    color: #c9a34e; /* golden touch */
    padding-left: 5px;
  }

  /* Dropdown */
  .dropdown-menu {
    display: none;
    padding-left: 15px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  /* Background overlay (dark blur effect) */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}