@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'poppins', sans-serif;
}

:root {
    --bg-color: #e3ecf7;
    --second-bg-color: #f4f7fb;
    --text-color: #1f2937;
    --main-color: #3b82f6;
    --second-main-color: #ffb347;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--second-bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.header.sticky {
    border-bottom: .1rem solid rgba(0, 0, 0, 0.2);
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

/* Smaller Logo Image */
.logo img {
    width: 50px;
    /* reduced size */
    height: 50px;
    object-fit: cover;

    background: linear-gradient(135deg, #3b82f6, #22c55e);
    ;
}

/* Text */
.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/* Responsive */
@media (max-width: 600px) {
    .logo img {
        width: 26px;
        height: 26px;
    }

    .logo-text {
        font-size: 15px;
    }
}

/* Logo Icon */

.logo-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    color: white;
    font-size: 18px;

    background: linear-gradient(135deg, #3b82f6, #22c55e);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    transition: 0.3s;
}

/* Gradient Text */

.logo-text {
    font-size: 28px;
    font-weight: 700;

    background: linear-gradient(90deg, #3b82f6, #06b6d4, #22c55e);
    background-size: 200% auto;

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 4s linear infinite;
}

/* Gradient animation */

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Hover Effect */

.logo:hover img {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    border-radius: 5rem;
}

.logo:hover .logo-text {
    filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.6));
}

.navbar {
    display: flex;
    align-items: center;
    gap: 28px;
    font-family: 'Poppins', sans-serif;
}

/* Normal links */

.navbar a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

/* Hover color */

.navbar a:hover {
    color: #3b82f6;
}

/* Underline animation for normal links */

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #3b82f6;
    transition: 0.3s;
}

.navbar a:hover::after {
    width: 100%;
}

/* Active link */

.navbar a.active {
    color: #3b82f6;
    font-weight: 600;
}

.navbar a.active::after {
    width: 100%;
}


/* ================= */
/* FEATURES BUTTON   */
/* ================= */

.features-btn {
    padding: 9px 20px;
    border-radius: 30px;

    background: linear-gradient(135deg, #3b82f6, #22c55e);

    color: white !important;
    font-weight: 600;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

/* remove underline */
.features-btn::after {
    display: none;
}

/* hover effect */

.features-btn:hover {
    transform: translateY(-2px) scale(1.05);

    background: linear-gradient(135deg, #2563eb, #16a34a);

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#menu-icon {
    font-size: 3.6rem;
    color: var(--text-color);
    display: none;
}

.home {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -38px;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature i {
    color: #2ecc71;
    font-size: 22px;
}

.feature h4 {
    font-size: 16px;
    margin: 0;
}

.feature span {
    font-size: 13px;
    color: #666;
}

.tech-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center badge */

.center-badge {
    width: 180px;
    height: 180px;
    border-radius: 25px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.center-badge i {
    font-size: 40px;
}

/* Floating tech cards */
.tech-circle {
    position: relative;
    width: 340px;
    height: 340px;
    margin-top: 20px auto;
}

/* center logo */

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    color: white;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* cards */

.tech-card {
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    animation: spinCard 6s linear infinite;
}

/* spin animation */

@keyframes spinCard {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* positions */

.web {
    top: 0;
    left: 42%;
    transform: translateX(-50%);
    background: #4facfe;
}

.repair {
    top: 25%;
    right: 0;
    background: #ff7e5f;
}

.windows {
    bottom: 25%;
    right: 0;
    background: #0078d7;
}

.software {
    bottom: 0;
    left: 42%;
    transform: translateX(-50%);
    background: #43e97b;
}

.network {
    bottom: 25%;
    left: 0;
    background: #f093fb;
}

.security {
    top: 25%;
    left: 0;
    background: #fa709a;
}

/* stats */

.stats-box {
    position: absolute;
    background: white;
    padding: 16px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats1 {
    bottom: 40px;
    left: 50px;
}

.stats2 {
    top: 40px;
    right: 60px;
}

.stats-box span {
    font-size: 22px;
    font-weight: 600;
}

.home-content h3 {
    font-size: 3.2rem;
    font-weight: 700;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 2rem;
}

span {
    color: var(--main-color);
}

.home-content h1 {
    font-size: 5.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-content p {
    font-size: 1.6rem;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: .5s ease;
}

.social-media a:hover {
    background: var(--main-color);
    color: var(--second-bg-color);
    box-shadow: 0 0 1rem var(--main-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--main-color);
    font-size: 1.6rem;
    color: var(--second-bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.btn1 {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    border-radius: 4rem;
    box-shadow: 0 0 1rem var(--second-main-color);
    font-size: 1.6rem;
    color: var(--second-bg-color);
    letter-spacing: .1rem;
    font-weight: 600;
    transition: .5s ease;
}

.btn:hover {
    box-shadow: none;
}

.btn1:hover {
    box-shadow: none;
}

/* ===============================
   STATS SECTION
================================*/

.stats {
    width: 100%;
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
}


/* ===============================
   GLASS CARD
================================*/

.stat-box {
    padding: 40px 25px;
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all .35s ease;
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0.01em;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    border-radius: 2px;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* ===============================
   ICON BASE
================================*/

.icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 18px;
}


/* ===============================
   UNIQUE ICON COLORS
================================*/

.stat-box:nth-child(1) .icon {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.stat-box:nth-child(2) .icon {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.stat-box:nth-child(3) .icon {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.stat-box:nth-child(4) .icon {
    background: linear-gradient(135deg, #fa709a, #fee140);
}


/* ===============================
   NUMBER
================================*/

.stat-box h2 {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}


/* ===============================
   TITLE
================================*/

.stat-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}


/* ===============================
   DESCRIPTION
================================*/

.stat-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}


/* ===============================
   TABLET
================================*/

@media (max-width:1000px) {

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===============================
   MOBILE
================================*/

@media (max-width:600px) {

    .stats {
        grid-template-columns: 1fr;
        padding: 60px 6%;
    }

    .stat-box {
        padding: 30px 20px;
    }

    .icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .stat-box h2 {
        font-size: 30px;
    }

}

/* SECTION */
.trust-section {
    padding: 20px 5px;
    background: #f6f8fc;
}

/* CONTAINER */
.trust-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
}

.trust-header p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
}

/* GRID */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.trust-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* ICON */
.trust-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #5a6bff, #7b5cff);
    color: white;
    font-size: 22px;
}

/* TEXT */
.trust-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.trust-card p {
    font-size: 14px;
    color: #666;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width:992px) {

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-header h2 {
        font-size: 28px;
    }

}

/* Mobile */
@media (max-width:600px) {

    .trust-section {
        padding: 60px 15px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-header h2 {
        font-size: 24px;
    }

    .trust-header p {
        font-size: 14px;
    }

    .trust-card {
        padding: 28px 20px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

}

.industry-section {
    padding: 90px 20px;
    background: linear-gradient(120deg, #f7f9fc, #eef2f8);
}

.industry-container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.industry-header {
    text-align: center;
    max-width: 750px;
    margin: auto;
    margin-bottom: 60px;
}

.industry-tag {
    display: inline-block;
    background: #e6f7f3;
    color: #14a38b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.industry-tag.t1 {
    color: #4f46e5;
    background: #eef2ff;
}

.industry-header {
    text-align: center;
}

.industry-header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
}

.industry-header h2 span {
    background: linear-gradient(90deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.industry-header p {
    margin-top: 15px;
    color: #666;
    font-size: 16px;
}

/* GRID */

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* CARD */

.industry-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 18px;
    text-align: center;
    transition: 0.35s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* ICON */

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 15px;
    font-size: 24px;
}

/* DIFFERENT COLORS */

.education {
    background: #f3ecff;
    color: #7c3aed;
}

.travel {
    background: #ecfdf5;
    color: #059669;
}

.news {
    background: #fff7ed;
    color: #ea580c;
}

.healthcare {
    background: #e6fff7;
    color: #10b981;
}

.realestate {
    background: #eef6ff;
    color: #3b82f6;
}

.ecommerce {
    background: #fff4e6;
    color: #f97316;
}

.fintech {
    background: #eef2ff;
    color: #4f46e5;
}

.fitness {
    background: #fff1f2;
    color: #e11d48;
}

.ai {
    background: #ecfeff;
    color: #06b6d4;
}

.marketing {
    background: #fef9c3;
    color: #ca8a04;
}

/* RESPONSIVE */

@media (max-width:1100px) {

    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width:700px) {

    .industry-header h2 {
        font-size: 28px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:480px) {

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        padding: 30px 15px;
    }

}

.advantage-section {
    padding: 120px 10%;
    background: #f6f8ff;
}

/* heading */

.advantage-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
}

.advantage-title span {
    background: linear-gradient(45deg, #4f46e5, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.advantage-sub {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 80px;
    color: #555;
    font-size: 18px;
}

/* timeline */

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(#4f46e5, #06b6d4);
    transform: translateX(-50%);
}

/* items */

.timeline-item {
    width: 50%;
    padding: 30px 50px;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
}

/* icons */

.icon {
    position: absolute;
    top: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: 0.4s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* icon 1 */

.timeline-item:nth-child(1) .icon {
    background: #eef2ff;
    color: #6366f1;
}

/* icon 2 */

.timeline-item:nth-child(2) .icon {
    background: #e0f7ff;
    color: #06b6d4;
}

/* icon 3 */

.timeline-item:nth-child(3) .icon {
    background: #e8fff3;
    color: #10b981;
}

/* icon 4 */

.timeline-item:nth-child(4) .icon {
    background: #fff4e5;
    color: #f59e0b;
}

.icon:hover {
    transform: translateY(-8px) scale(1.1) rotate(8deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.timeline-item:nth-child(1):hover .icon {
    box-shadow: 0 0 20px #6366f1;
    transform: scale(1.06) rotate(10deg);
}

.timeline-item:nth-child(2):hover .icon {
    box-shadow: 0 0 20px #06b6d4;
    transform: scale(1.06) rotate(10deg);
}

.timeline-item:nth-child(3):hover .icon {
    box-shadow: 0 0 20px #10b981;
    transform: scale(1.06) rotate(10deg);
}

.timeline-item:nth-child(4):hover .icon {
    box-shadow: 0 0 20px #f59e0b;
    transform: scale(1.06) rotate(10deg);
}

.timeline-item.left .icon {
    right: -28px;
}

.timeline-item.right .icon {
    left: -28px;
}

/* card */

.content {
    padding: 30px;
    border-radius: 14px;
    color: white;
    transition: 0.4s;
}

.content h2 {
    font-size: 18px;
}

.content p {
    font-size: 14px;
}

/* gradient backgrounds */

.c1 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.c2 {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.c3 {
    background: linear-gradient(135deg, #10b981, #22c55e);
}

.c4 {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

/* hover effect */

.content:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* animation visible */

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:hover .content {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.content {
    transition: 0.4s ease;
}

.icon {
    transition: 0.4s ease;
}

.content {
    border-radius: 16px;
    padding: 35px;
}

/* responsive */

@media(max-width:768px) {

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left {
        text-align: left;
    }

    .timeline-item.left .icon,
    .timeline-item.right .icon {
        left: 0;
    }

}

/* SECTION */

.work-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 100px 8%;
    overflow: hidden;
    color: white;
}


/* SEMI BALL BACKGROUND */

.bg-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, #1d4ed8, #0f172a);
    top: -200px;
    right: -200px;
    opacity: .35;
    animation: floatBall 10s ease-in-out infinite;
}

@keyframes floatBall {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(40px) rotate(20deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}


/* HEADER */

.work-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.work-header h2 {
    font-size: 40px;
    font-weight: 700;
}

.work-header span {
    color: #38bdf8;
}

.work-header p {
    margin-top: 15px;
    color: #cbd5f5;
    line-height: 1.6;
}

.work-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
    max-width: 800px;
    margin: 20px auto 0;
}

/* GRID */

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}


/* CARD */

.work-card {
    background: #1e293b;
    padding: 30px;
    border-radius: 16px;
    transition: .4s;
    position: relative;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}

h2 span {
    background: linear-gradient(45deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}


/* TOP BORDERS */

.border-blue {
    border-top: 4px solid #6366f1;
}

.border-green {
    border-top: 4px solid #14b8a6;
}

.border-orange {
    border-top: 4px solid #f97316;
}

.border-teal {
    border-top: 4px solid #22c55e;
}


/* ICON */

.icon-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.icon-box i {
    font-size: 20px;
    background: #312e81;
    padding: 14px;
    border-radius: 10px;
}

.icon-box span {
    font-size: 22px;
    font-weight: 700;
    color: #6366f1;
}


/* TEXT */

.work-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.work-card p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 15px;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* second circle */

.bg-circle-small {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, #06b6d4, #0f172a);
    bottom: -150px;
    left: -150px;
    opacity: .30;
    animation: floatBall2 12s ease-in-out infinite;
}

@keyframes floatBall2 {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(-30deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.feature-btn-box {
    text-align: center;
    margin-top: 60px;
}

.feature-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    background: linear-gradient(45deg, #2563eb, #06b6d4);
    transition: 0.4s;
}

.feature-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.experts-section {
    padding: 100px 8%;
    background: linear-gradient(135deg, #0f172a, #020617);
    color: white;
}


/* HEADER */

.experts-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

.experts-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.experts-header span {
    background: linear-gradient(45deg, #6366f1, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.experts-header p {
    font-size: 20px;
    color: #cbd5f5;
}

/* GRID */

.experts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* CARD */

.expert-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all .4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* HOVER EFFECT */

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border-color: #6366f1;
}

/* ICON */

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
    font-size: 28px;
    background: linear-gradient(45deg, #6366f1, #06b6d4);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* TITLE */

.expert-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* TEXT */

.expert-card p {
    font-size: 16px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width:900px) {

    .experts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width:600px) {

    .experts-grid {
        grid-template-columns: 1fr;
    }

}

.impact-section {
    padding: 110px 8%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    font-family: sans-serif;
}

.impact-header {
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

.impact-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.impact-header span {
    font-size: 52px;
    /* bigger text */
    font-weight: 800;
    letter-spacing: 1px;

    background: linear-gradient(90deg, #6366f1, #06b6d4, #22c55e, #6366f1);
    background-size: 300% 300%;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    animation: gradientMove 6s ease infinite;
}

/* smooth gradient animation */

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.impact-header p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

/* chart */

.chart-container {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* bar */

.bar-box {
    width: 100%;
}

.bar-label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #1e293b;
}

.bar {
    background: #e2e8f0;
    border-radius: 30px;
    height: 40px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
    font-weight: 600;
    border-radius: 30px;
    animation: growBar 2s ease forwards;
}

.projects {
    width: 85%;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
}

.countries {
    width: 60%;
    background: linear-gradient(45deg, #06b6d4, #22c55e);
}

.experience {
    width: 40%;
    background: linear-gradient(45deg, #f59e0b, #f97316);
}

/* animation */

@keyframes growBar {
    from {
        width: 0;
    }
}

/* FAQ SECTION */

.faq-section {
    padding: 80px 10%;
    background: #f1f5f9;
    /* soft light background */
    color: #1e293b;
}

/* HEADER */

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 38px;
    font-weight: 700;
}

/* gradient text fix */

.faq-header span {
    background: linear-gradient(120deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.faq-header p {
    margin-top: 10px;
    color: #64748b;
    font-size: 16px;
}

/* FAQ CONTAINER */

.faq-container {
    max-width: 900px;
    margin: auto;
}

/* FAQ CARD */

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all .3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* QUESTION */

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

/* ICON */

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e0f2fe;
    color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all .3s ease;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding: 0 25px;
}

.faq-answer p {
    padding-bottom: 18px;
    color: #475569;
    line-height: 1.6;
    font-size: 16px;
}

.faq-header p {
    margin-top: 12px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
}

.industry-tag2 {
    display: inline-block;
    background: #e8dfce;
    color: #a35914;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: #dbeafe;
    color: #2563eb;
}

/* CONTACT AREA */

.faq-contact {
    text-align: center;
    margin-top: 60px;
}

/* TEXT */

.faq-contact p {
    font-size: 20px;
    /* increased */
    color: #475569;
    margin-bottom: 22px;
    font-weight: 500;
}

/* BUTTON */

.faq-btn {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: 18px;
    /* increased */
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all .35s ease;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

/* HOVER EFFECT */

.faq-btn:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
}

/* BUTTON ANIMATION */

@keyframes glow {
    0% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0.4);
    }

    50% {
        box-shadow: 0 0 18px rgba(37, 99, 235, 0.5);
    }

    100% {
        box-shadow: 0 0 0 rgba(37, 99, 235, 0.4);
    }
}

.faq-btn {
    animation: glow 3s infinite;
}

/* RESPONSIVE */

@media (max-width:768px) {

    .faq-section {
        padding: 70px 6%;
    }

    .faq-header h2 {
        font-size: 30px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

}

/* TESTIMONIAL SECTION */

.testimonial-section {
    padding: 100px 10%;
    background: #f8fafc;
}

/* HEADER */

.testimonial-header {
    text-align: center;
    margin-bottom: 70px;
}

.testimonial-tag {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
}

.testimonial-header h2 {
    font-size: 42px;
    margin-top: 15px;
}

/* GRADIENT TEXT */

.testimonial-header span {
    background: linear-gradient(120deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.testimonial-header p {
    font-size: 20px;
    color: #64748b;
    margin-top: 12px;
}

/* SLIDER */

.testimonial-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slider {
    display: flex;
    gap: 35px;
    overflow: hidden;
    scroll-behavior: smooth;
}

/* CARD */

.testimonial-card {
    min-width: 380px;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: .35s;
}

/* QUOTE */

.testimonial-card::before {
    content: "❝";
    font-size: 55px;
    color: #3b82f6;
    opacity: .25;
}

/* TEXT */

.testimonial-card p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin: 15px 0 25px;
}

/* CLIENT INFO */

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* CLIENT IMAGE */

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

/* CLIENT NAME */

.client-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

/* CLIENT ROLE */

.client-info span {
    font-size: 14px;
    color: #64748b;
}

/* CARD HOVER */

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* NAV BUTTON */

.test-btn {
    border: none;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 15px;
    transition: .3s;
}

.test-btn:hover {
    transform: scale(1.1);
}

/* WRAPPER */

.testimonial-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* BUTTON BASE */

.test-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;
    border-radius: 50%;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #fff;

    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    transition: all .3s ease;
}

/* LEFT BUTTON */

.test-btn.prev {
    left: -50px;
}

/* RIGHT BUTTON */

.test-btn.next {
    right: -50px;
}

/* HOVER EFFECT */

.test-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */

@media (max-width:992px) {

    .testimonial-card {
        min-width: 320px;
    }

}

@media (max-width:768px) {

    .testimonial-section {
        padding: 80px 6%;
    }

    .testimonial-header h2 {
        font-size: 34px;
    }

    .testimonial-card {
        min-width: 260px;
    }

    .testimonial-card p {
        font-size: 16px;
    }

}

@media (max-width:480px) {

    .testimonial-card {
        min-width: 220px;
    }

}

/* CTA SECTION */

.cta-section {
    padding: 80px 8%;
    /* reduced space */
    background: #f8fafc;
}

/* CONTAINER */

.cta-container {
    background: #ffffff;
    border-radius: 18px;
    padding: 40px 40px;
    /* reduced padding */

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;

    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* TOP BORDER */

.cta-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #6366f1, #06b6d4, #10b981);
}

/* TEXT */

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

/* BUTTON AREA */

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    /* important for responsiveness */
}

/* BUTTON */

.cta-btn {
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: .3s;
}

/* PRIMARY */

.cta-btn.primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #fff;
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
}

/* SECONDARY */

.cta-btn.secondary {
    border: 2px solid #6366f1;
    color: #6366f1;
}

.cta-btn.secondary:hover {
    background: #6366f1;
    color: #fff;
}

/* TABLET */

@media (max-width:900px) {

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

}

/* MOBILE */

@media (max-width:480px) {

    .cta-section {
        padding: 40px 5%;
    }

    .cta-container {
        padding: 30px 20px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

}

/* contact button */

.contact-btn {
    padding: 12px 28px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: .3s;
}

.contact-btn:hover {
    background: #3730a3;
}

/* modal background */

.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* container */

.contact-container {
    background: #fff;
    padding: 35px;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    position: relative;
    animation: popup .4s ease;
}

@keyframes popup {
    from {
        transform: scale(.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-container span {
    color: #4f46e5;
}

/* close button */

.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    cursor: pointer;
}

/* input boxes */

.input-box {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.input-box input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* textarea */

textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* button */

.btn3 {
    width: 100%;
    padding: 12px;
    background: #4f46e5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.btn3:hover {
    background: #3730a3;
}

/* success message */

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    z-index: 1000;
    animation: fadeout 5s forwards;
}

@keyframes fadeout {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* SOCIAL ICONS */
/* ================= FOOTER ================= */

.main-footer {
    background: #0f172a;
    color: #cbd5f1;
    padding: 60px 8% 20px;
    position: relative;
}

/* SOCIAL ICONS */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    transition: .3s;
    background: #1e293b;
}

/* brand colors */

.footer-social a:nth-child(1) {
    color: #1877f2;
}

/* facebook */
.footer-social a:nth-child(2) {
    color: #e1306c;
}

/* instagram */
.footer-social a:nth-child(3) {
    color: #1da1f2;
}

/* twitter */
.footer-social a:nth-child(4) {
    color: #25d366;
}

/* whatsapp */
.footer-social a:nth-child(5) {
    color: #ff0000;
}

/* youtube */
.footer-social a:nth-child(6) {
    color: #0077b5;
}

/* linkedin */

.footer-social a:hover {
    transform: translateY(-6px) scale(1.1);
    background: #fff;
}

/* FOOTER GRID */

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
}

/* BOX */

.footer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-box h3 i {
    color: #6366f1;
}

.footer-box p {
    line-height: 1.7;
}

/* LINKS */

.footer-box a {
    display: block;
    margin: 8px 0;
    color: #cbd5f1;
    transition: .3s;
    text-decoration: none;
}

.footer-box a:hover {
    color: #38bdf8;
    transform: translateX(6px);
}

/* LOGO */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    text-decoration: none;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #6366f1, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    border-radius: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* CONTACT ICONS */

.footer-box p i {
    color: #06b6d4;
    margin-right: 6px;
}

/* BOTTOM BAR */

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
}

/* Footer link text */
.footer-box a {
    display: block;
    margin: 10px 0;
    font-size: 13px;
    /* increased from small size */
    color: #cbd5f1;
    transition: .3s;
    text-decoration: none;
}

.footer-box a img {
    margin-left: 40px;
}

/* Footer contact text */
.footer-box p {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 15px;
    margin: 8px 0;
}

/* Icons beside text */
.footer-box i {
    font-size: 16px;
    margin-right: 6px;
}

/* Heading size */
.footer-box h3 {
    font-size: 20px;
}

/* SCROLL BUTTON */

.scroll-top {
    width: 40px;
    height: 40px;
    background: #6366f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: .3s;
}

.scroll-top:hover {
    background: #06b6d4;
    transform: translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:768px) {

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}

/* Responsiveness */

@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 991px) {
    .header {
        padding: 2rem 3%;
    }

    section {
        padding: 10rem 3% 2rem;
    }

    .services {
        padding-bottom: 7rem;
    }

    .portfolio {
        padding-bottom: 7rem;
    }

    .contact {
        min-height: auto;
    }

    footer {
        padding: 2rem 3%;
    }

    .socalmedia {
        display: flex;
        flex-direction: row;
        height: 2rem;
        margin: 0px 0 0 20px;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        color: var(--white);
    }

    .socalmedialogo1 a,
    .socalmedialogo2 a,
    .socalmedialogo3 a,
    .socalmedialogo4 a,
    .socalmedialogo5 a,
    .socalmedialogo6 a,
    .socalmedialogo7 a {
        text-decoration: none;
        color: var(--white);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socalmedialogo1 a:hover {
        color: #1cbfff;
        font-size: 1.5rem;
    }

    .socalmedialogo2 a:hover {
        color: red;
        font-size: 1.5rem;
    }

    .socalmedialogo3 a:hover {
        color: #1cbfff;
        font-size: 1.5rem;

    }

    .socalmedialogo4 a:hover {
        color: green;
        font-size: 1.5rem;
    }

    .socalmedialogo5 a:hover {
        color: red;
        font-size: 1.5rem;
    }

    .socalmedialogo6 a:hover {
        color: #1cbfff;
        font-size: 1.5rem;
    }

    .socalmedialogo7 a:hover {
        color: red;
        font-size: 1.5rem;
    }

}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 3%;
        background: var(--bg-color);
        border-top: .1rem solid rgba(0, 0, 0, .2);
        box-shadow: 0.5rem 1rem rgba(0, 0, 0, .2);
        display: none;
    }

    .navbar.active {
        display: block;
    }

    .navbar a {
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
    }

    .home {
        flex-direction: column;
    }

    .home-content h3 {
        font-size: 2.6rem;
    }

    .home-content h1 {
        font-size: 5rem;
    }

    .home-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .about {
        flex-direction: column-reverse;
    }

    .about-img img {
        width: 70vw;
        margin-top: 4rem;
    }

    .about-img video {
        width: 70vw;
        margin-top: 2rem;
    }

    .services h2 {
        margin-bottom: 3rem;
    }

    .portfolio h2 {
        margin-bottom: 3rem;
    }

    .portfolio-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .message {
        display: flex;
        align-items: center;
        width: 98%;
        height: 250px;
        margin-left: 2%;
        top: 20px;
        border-style: solid;
        border-radius: 2rem;
        border-color: #0ef;
        font-size: medium;
        flex-wrap: wrap;

    }

    .ctr {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-left: 32%;
    }

    .kate {
        display: flex;
        margin-top: 30%;
        font-size: 2rem;
    }

    .aiimg {
        position: absolute;
        display: flex;
        margin-top: 2%;
        height: 50px;
        width: 50px;
    }

}

@media (max-width: 617px) {
    .portfolio-container {
        grid-template-columns: 1fr;
    }

    .message {
        display: flex;
        align-items: center;
        width: 98%;
        height: 250px;
        margin-left: 2%;
        top: 20px;
        border-style: solid;
        border-radius: 2rem;
        border-color: #0ef;
        font-size: medium;
        flex-wrap: wrap;

    }

    .ctr {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-left: 27%;
    }

    .kate {
        display: flex;
        margin-top: 30%;
        font-size: 2rem;
    }

    .aiimg {
        position: absolute;
        display: flex;
        margin-top: 2%;
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .contact form .input-box input {
        width: 100%;
    }

    .message {
        display: flex;
        align-items: center;
        width: 98%;
        height: 250px;
        margin-left: 2%;
        top: 20px;
        border-style: solid;
        border-radius: 2rem;
        border-color: #0ef;
        font-size: medium;
        flex-wrap: wrap;

    }

    .ctr {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-left: 24%;
    }

    .kate {
        display: flex;
        margin-top: 30%;
        font-size: 2rem;
    }

    .aiimg {
        position: absolute;
        display: flex;
        margin-top: 2%;
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 365px) {
    .home-img img {
        width: 90vw;
    }

    .message {
        display: flex;
        align-items: center;
        width: 98%;
        height: 250px;
        margin-left: 2%;
        top: 20px;
        border-style: solid;
        border-radius: 2rem;
        border-color: #0ef;
        font-size: medium;
        flex-wrap: wrap;

    }

    .ctr {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        margin-left: 11%;
    }

    .kate {
        display: flex;
        margin-top: 30%;
        font-size: 2rem;
    }

    .aiimg {
        position: absolute;
        display: flex;
        margin-top: 2%;
        height: 50px;
        width: 50px;
    }

    .about-img img {
        width: 90vw;
    }

    .about-img1 img {
        width: 80vw;
    }

    .about-img video {
        width: 90vw;
    }

    .footer {
        flex-direction: column-reverse;
    }

    .footer p {
        text-align: center;
        margin-top: 2rem;
    }

    .socalmedia {
        display: flex;
        flex-direction: row;
        height: 2rem;
        margin: 0px 0 0 20px;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        color: var(--white);
    }

    .socalmedialogo1 a,
    .socalmedialogo2 a,
    .socalmedialogo3 a,
    .socalmedialogo4 a,
    .socalmedialogo5 a,
    .socalmedialogo6 a,
    .socalmedialogo7 a {
        text-decoration: none;
        color: var(--white);
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .socalmedialogo1 a:hover {
        color: #1cbfff;
        font-size: 1.5rem;
    }

    .socalmedialogo2 a:hover {
        color: red;
        font-size: 1.5rem;
    }

    .socalmedialogo3 a:hover {
        color: #1cbfff;
        font-size: 1.5rem;

    }

    .socalmedialogo4 a:hover {
        color: green;
        font-size: 1.5rem;
    }

    .socalmedialogo5 a:hover {
        color: red;
        font-size: 1.5rem;
    }

    .socalmedialogo6 a:hover {
        color: #1cbfff;
        font-size: 1.5rem;
    }

    .socalmedialogo7 a:hover {
        color: red;
        font-size: 1.5rem;
    }
}

/* refund and policy */
/* GLOBAL */

/* HEADER */
.legal-header {
    text-align: center;
    padding: 80px 10%;
    background: #0f172a;
    color: white;
}

.legal-header h1 {
    font-size: 38px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-header p {
    color: #94a3b8;
    font-size: 14px;
}

/* WRAPPER */
.legal-wrapper {
    display: flex;
    gap: 40px;
    padding: 60px 10%;
}

/* SIDEBAR */
.legal-nav {
    position: sticky;
    top: 100px;
    width: 250px;
    background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    color: white;
    height: max-content;
}

.legal-nav h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.nav-link {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    color: #cbd5f1;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: .3s;
}

.nav-link:hover {
    color: #38bdf8;
    padding-left: 14px;
}

.nav-link.active {
    color: #38bdf8;
    border-left: 3px solid #38bdf8;
}

/* PROGRESS BAR */
.reading-progress {
    margin-top: 20px;
    height: 6px;
    background: #334155;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
}

/* CONTENT AREA */
.legal-content-area {
    flex: 1;
}

/* SECTIONS */
.legal-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 80px 7%;
}

.section-dark {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
}

.section-light {
    background: #f8fafc;
    color: #1e293b;
}

.legal-section.odd {
    flex-direction: row;
}

.legal-section.even {
    flex-direction: row-reverse;
}

/* ICON */
.legal-icon {
    min-width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: linear-gradient(45deg, #6366f1, #06b6d4);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

/* TEXT */
.legal-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 25px;
}

.legal-content li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.7;
}

/* RESPONSIVE */
/* TABLET */
@media (max-width:992px) {
    .page-wrapper {
        gap: 25px;
        padding: 40px 6%;
    }

    .page-nav {
        width: 220px;
    }

    .page-text h2 {
        font-size: 28px;
    }

    .page-text p {
        font-size: 17px;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .page-wrapper {
        flex-direction: column;
    }

    .page-nav {
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .page-nav h3 {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        border-left: none;
        background: #1e293b;
        border-radius: 6px;
        padding: 8px 12px;
    }

    .nav-link.active {
        background: #6366f1;
        color: white;
    }

    .page-section {
        flex-direction: column !important;
        text-align: center;
        padding: 60px 5%;
    }

    .page-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin: auto;
    }

    .page-text h2 {
        font-size: 26px;
    }

    .page-text p {
        font-size: 16px;
    }
}

/* SMALL MOBILE */
@media (max-width:480px) {
    .page-header {
        padding: 60px 6%;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-text p {
        font-size: 14px;
    }

    .page-icon {
        width: 20px;
        height: 20px;
        font-size: 26px;
    }
    .legal-nav{
        display: none;
    }
    .legal-icon {
    min-width: 20px;
    height: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: linear-gradient(45deg, #6366f1, #06b6d4);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    }
        
     /* TEXT */
    .legal-content h2 {
        font-size: 14px;
        margin-bottom: 15px;
    }
        
    .legal-content p {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.7;
    }
        
    .legal-content ul {
       padding-left: 5px;
    }
        
    .legal-content li {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.7;
    }
    .legal-wrapper{
        display: flex;
        flex-direction: column;
    }
        
        
}

/* refund and policy ends here*/
/* Aboutus starts here*/
/* HEADER */
.page-header {
    text-align: center;
    padding: 80px 10%;
    background: #020617;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.page-header p {
    color: #94a3b8;
    font-size: 17px;
}

/* WRAPPER */
.page-wrapper {
    display: flex;
    gap: 40px;
    padding: 60px 10%;
}

/* SIDEBAR */
.page-nav {
    position: sticky;
    top: 100px;
    width: 250px;
    background: #0f172a;
    padding: 25px;
    border-radius: 12px;
    color: white;
    height: max-content;
}

.page-nav h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.nav-link {
    display: block;
    padding: 10px;
    margin-bottom: 8px;
    color: #cbd5f1;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: .3s;
}

.nav-link:hover {
    color: #38bdf8;
    padding-left: 14px;
}

.nav-link.active {
    color: #38bdf8;
    border-left: 3px solid #38bdf8;
}

/* PROGRESS BAR */
.reading-progress {
    margin-top: 20px;
    height: 6px;
    background: #334155;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #06b6d4);
}

/* CONTENT */
.page-content {
    flex: 1;
}

/* SECTIONS */
.page-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 80px 7%;
}

.section-dark {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
}

.section-light {
    background: #f8fafc;
    color: #1e293b;
}

.page-section.odd {
    flex-direction: row;
}

.page-section.even {
    flex-direction: row-reverse;
}

/* ICON */
.page-icon {
    min-width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    background: linear-gradient(45deg, #6366f1, #06b6d4);
    color: white;
}

/* TEXT */
.page-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.page-text p {
    font-size: 18px;
    line-height: 1.7;
}

/* TEAM SECTION */
.team-heading {
    text-align: center;
    font-size: 34px;
    margin: 60px 0 40px;
}

.team-heading span {
    color: #6366f1;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.team-card {
    background: #0f172a;
    color: white;
    padding: 22px;
    border-radius: 10px;
    text-align: center;
    transition: .3s;
}

.team-card i {
    font-size: 32px;
    color: #06b6d4;
    margin-bottom: 10px;
}

.team-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 14px;
    color: #cbd5f1;
    line-height: 1.5;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
}

.contact-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: .3s;
}

/* Email */

.email {
    background: #6366f1;
}

/* WhatsApp */

.whatsapp {
    background: #25D366;
}

/* Call */

.call {
    background: #0ea5e9;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Address */

.contact-address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    color: #334155;
}

.contact-address i {
    font-size: 22px;
    color: #ef4444;
}

/* Mobile */

@media(max-width:600px) {

    .contact-buttons {
        flex-direction: column;
    }

    .contact-btn {
        justify-content: center;
    }

    .contact-address {
        justify-content: center;
        text-align: center;
    }


}

/* Tablet */

@media(max-width:900px) {

    .team-cards {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media(max-width:600px) {

    .team-cards {
        grid-template-columns: 1fr;
    }

    .team-heading {
        font-size: 26px;
    }

}

/* RESPONSIVE */
/* TABLET */
@media (max-width:992px) {
    .page-wrapper {
        gap: 25px;
        padding: 40px 6%;
    }

    .page-nav {
        width: 220px;
    }

    .page-text h2 {
        font-size: 28px;
    }

    .page-text p {
        font-size: 17px;
    }
}

/* MOBILE */
@media (max-width:768px) {
    .page-wrapper {
        flex-direction: column;
    }

    .page-nav {
        width: 100%;
        position: relative;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .page-nav h3 {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        border-left: none;
        background: #1e293b;
        border-radius: 6px;
        padding: 8px 12px;
    }

    .nav-link.active {
        background: #6366f1;
        color: white;
    }

    .page-section {
        flex-direction: column !important;
        text-align: center;
        padding: 60px 5%;
    }

    .page-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin: auto;
    }

    .page-text h2 {
        font-size: 26px;
    }

    .page-text p {
        font-size: 16px;
    }
}

/* SMALL MOBILE */
@media (max-width:480px) {
    .page-header {
        padding: 60px 6%;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-text p {
        font-size: 15px;
    }

    .page-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    .legal-nav{
        display: none;
    }
}

/*aboutus ends here*/
/* login style*/
.bodylogin {
    font-family: Arial;
    background: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.containerlogin {

    width: 420px;
    background: white;
    padding: 30px;

    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);

}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
}

.tab {

    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: medium;

}

.tab.active {
    border-bottom: 3px solid #4f46e5;
    color: #4f46e5;
}

.form-box {
    display: none;
}

.form-box.active {
    display: block;
}

input {

    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: medium;

}

button {

    width: 100%;
    padding: 12px;

    background: #4f46e5;
    color: white;

    border: none;
    border-radius: 5px;

    cursor: pointer;
    font-size: 16px;

}

button:hover {
    background: #4338ca;
}

.message {

    background: #d1fae5;
    padding: 10px;

    border-radius: 5px;
    margin-bottom: 10px;

    text-align: center;

}

.register-link {

    text-align: center;
    margin-top: 10px;
    font-size: 16px;

}

.register-link a {

    color: #4f46e5;
    text-decoration: none;

}

@media(max-width:500px) {

    .containerlogin {
        width: 90%;
    }

}

/*login style end here*/
/*shop now style */

.prductcontner {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    margin-top: 6%;
}


/* Slug */
.slug {
    margin: 15px 0;
    color: #777;
    font-size: 14px;
}

/* Product Section */
.product-section {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    align-items: center;
}

/* LEFT IMAGE */
.product-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* RIGHT SIDE */
.product-details {
    flex: 1;
}

.product-details h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.product-id {
    color: red;
    margin-bottom: 10px;
    font-size: 18px;
}

.meta {
    margin-bottom: 10px;
    font-size: 16px;
}

.tags {
    margin-bottom: 10px;
    color: #818488;
    font-size: 13px;
}

.desc {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

.related {
    margin-top: 40px;
}

.related h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* SLIDER */
.slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.slider::-webkit-scrollbar {
    display: none;
}

/* CARD */
.product-card {
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.img-box {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* BADGE */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: orange;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 5px;
}

/* BODY */
.procard-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
    padding: 10px;
}

.card-body h4 {
    font-size: 14px;
    height: 35px;
    overflow: hidden;
}

/* RATING */
.rating {
    font-size: 13px;
    margin: 5px 0;
    color: green;
}

/* PRICE */
.price {
    font-size: 14px;
}
/* ================= RESPONSIVE BREAKPOINTS ================= */

/* TABLET */
@media (max-width: 992px) {
    .product-section {
        flex-direction: column;
        text-align: center;
    }

    .product-img img {
        max-width: 400px;
    }
}

/* ===================== */
@media (max-width: 768px) {

    .product-section {
        flex-direction: column;   /* STACK */
        padding: 15px;
        gap: 15px;
    }

    .product-img img {
        max-width: 100%;
    }

    .product-details h2 {
        font-size: 20px;
    }

    .product-id {
        font-size: 14px;
    }

    .meta {
        font-size: 14px;
    }

    .desc {
        font-size: 13px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* CARD */
    .product-card {
        min-width: 220px;
    }

    .img-box {
        height: 180px;
    }
}

/* ===================== */
/* 📱 SMALL MOBILE */
/* ===================== */
@media (max-width: 480px) {

    .prductcontner {
        width: 100%;
        padding: 10px;
    }

    .product-details h2 {
        font-size: 18px;
    }

    .slug {
        font-size: 12px;
    }

    .related h3 {
        font-size: 18px;
    }

    .product-card {
        min-width: 200px;
    }

    .img-box {
        height: 160px;
    }
}


/*shop now style end here */
/*afterhosting*/

