/* =====================================
GLOBAL RESET
===================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* =====================================
TYPOGRAPHY SYSTEM
===================================== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

a:hover {
    color: inherit;
}


/* ===============================
NAVBAR
================================= */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgb(252, 252, 252);
    backdrop-filter: blur(10px);
    transition: 0.3s ease-in-out;
}

.header.scrolled {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.container {
    width: 90%;
    margin: auto;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 20px;
}

.logo img {
    width: 160px;
    height: auto;
}

/* MENU */
.nav-menu>ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-menu ul li a {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: #2873eb;
}

/* DROPDOWN */
.dropdown {
    position: relative;
}

/* Arrow styling */
.dropdown .arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: 0.3s ease;
    display: inline-block;
}

/* Rotate arrow on hover */
.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown menu box */
.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    background: rgb(252, 252, 252);
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    padding: 10px 0;

    /* Important Fix */
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1d;
    text-decoration: none;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    
    color: #2873eb !important;
}


/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgb(0, 0, 0);
    transition: 0.3s;
}

/* ===============================
MOBILE RESPONSIVE
================================= */
/* DESKTOP DROPDOWN ONLY */
@media (max-width: 1024px) {
    .nav-menu>ul {
        gap: 20px;
    }
}

@media (min-width: 993px) {

    .dropdown-menu {
        position: absolute;
        top: 45px;
        left: 0;
        background: rgb(252, 252, 252);
        min-width: 220px;
        border-radius: 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        padding: 10px 0;

        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s ease;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .logo img {
        width: 120px;
    }

    /* NAV PANEL */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -106%;
        width: 265px;
        height: 100vh;
        background: #F0F0F0;
        padding: 100px 30px 40px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    /* NAV LINKS */
    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
        padding: 0;
    }

    .nav-menu ul li a {
        color: #000000;
        font-size: 16px;
    }

    /* OVERLAY */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 998;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
        z-index: 1100;
    }

    .hamburger span {
        transition: 0.3s ease;
    }

    /* ANIMATE TO X */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* MOBILE DROPDOWN */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu li a {
        color: #333;
        padding: 8px 0;
    }
}

/* Dropdown animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   HERO
================================= */

.hero {
    position: relative;
    min-height: 1000px;
    padding: 160px 4% 200px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    background-image: url('../images/hero.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%,
            rgba(20, 20, 20, 0.3),
            rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
}

/* LEFT CONTENT */

.hero-subtitle {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -2px;
    color: #fff;
    text-transform: uppercase;

}

.hero-title {
    font-family: "Phudu", sans-serif;
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -4px;
    /* remove flex */
    gap: 30px;
    /* subtle compression */
    transform-origin: left;
    /* keep it aligned left */
    margin: 20px 0;
    text-transform: uppercase;
}

.creative {
    color: #2873eb;
}

.studio {
    color: #f2f2f2;
}

.hero-desc {
    max-width: 600px;
    color: #ccc;
    margin-bottom: 30px;
}

.hero-btn {
    position: relative;
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    background: linear-gradient(45deg, #2873eb, #77b4ff);
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Sliding black layer */
.hero-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: hsl(0, 0%, 100%);
    transition: width 0.5s ease;
    z-index: -1;
}

/* Hover effect */
.hero-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0px 0px 14px 0px rgb(255 255 255 / 40%);
}


/* ================= ROTATING CIRCLE ================= */

.hero-circle {
    position: relative;
}

.circle-text {
    width: 110px;
    height: 110px;
    animation: rotateCircle 12s linear infinite;
}

.circle-text svg {
    width: 100%;
    height: 100%;
    fill: white;
    font-size: 16px;
    letter-spacing: 4px;
}

.circle-center {
    position: absolute;
    top: 20%;
    left: 20%;
    background: #1A59BE;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.circle-center svg {
    transition: 0.3s ease;
}

.circle-center:hover {
    transform: scale(1.04);
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ================= HERO RESPONSIVE ================= */

@media (max-width: 1200px) {

    .hero {
        min-height: auto;
        padding: 140px 6% 0px;
    }

    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-circle {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    .hero-subtitle {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero-title {
        font-size: clamp(36px, 12vw, 60px);
        letter-spacing: -1px;
        flex-direction: column;
        gap: 10px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .circle-center {
        width: 50px;
        height: 50px;
    }

    .circle-text {
        width: 86px;
        height: 86px;
    }
}

@media (max-width: 480px) {

    .hero {
        padding: 120px 5% 80px;
    }

    .hero-subtitle {
        font-size: 24px;
    }
}

/* ================= STATS ================= */

.stats-section {
    position: relative;
    margin-top: -260px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    gap: 30px;
    padding: 0 8% 0;
    z-index: 5;
}

.stat-card {
    height: 260px;
    padding: 50px 45px;
    border-radius: 20px 20px 0px 0px;
    color: white;
    transition: 0.3s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    font-size: 58px;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 22px;
    color: #fff;
}

/* Color Variants */

.blue {
    background-image: linear-gradient(240deg, #FFFFFF -10%, #2873eb 65%);
}

.orange {
    background-image: linear-gradient(240deg, #FFFFFF -10%, #E3892F 65%);
}

.purple {
    background-image: linear-gradient(240deg, #FFFFFF -10%, #9355E5 65%);
}

.green {
    background-image: linear-gradient(240deg, #FFFFFF -10%, #57B85A 65%);
}

/* ================= RESPONSIVE ================= */

/* ================= STATS RESPONSIVE ================= */

@media (max-width: 1200px) {

    .stats-section {
        margin-top: 0;
        padding: 60px 6%;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        height: auto;
        border-radius: 20px;
    }
}

@media (max-width: 468px) {

    .stats-section {
        grid-template-columns: 1fr;
    }

    .stat-card {
        height: auto;
        padding: 40px 30px;
    }

    .stat-card h3 {
        font-size: 40px;
    }

    .stat-card p {
        font-size: 18px;
    }
}

/* ================= AGENCY SECTION ================= */

.agency-section {
    background: #f3f3f3;
    padding: 100px 4%;
}

/* TOP ROW */

.agency-top {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.agency-image {
    position: relative;
    flex: 4;
}

.agency-image img {
    width: 100%;
    min-height: 250px;
    border-radius: 20px;
    display: block;
}

/* Floating Cards */

.floating-card {
    position: absolute;
    width: 220px;
    height: auto;
    background: #ffffffc1;
    color: #000;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}
.floating-card:hover{
    transform: translateY(-5px);
}
.floating-card p {
    margin: 5px 0;
    color: #333333;
}

.card-woo {
    bottom: -40px;
    left: 40px;
}

.card-shopify {
    bottom: -40px;
    left: 300px;
}

.card-logo {
    margin-top: 15px;
    font-weight: bold;
}

.card-logo img {
    width: 58px;
    min-height: 58px;
    border-radius: 0;
}

/* Right Stats */

.agency-stats {
    flex: 1;
    background: #000;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.agency-stats h3 {
    font-size: 26px;
    color: #2873eb;
    margin-bottom: 25px;
}

.agency-stats ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agency-stats ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.agency-stats ul li::before {
    content: "➛";
    position: absolute;
    left: 0;
    top: -4px;
    color: #2873eb;
    font-size: 22px;
}

/* MIDDLE ROW */

.agency-middle {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 74px;
    margin-top: 110px;
    align-items: center;
}

.case-study h3 {
    margin-bottom: 10px;
}

.dark-btn {
    position: relative;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    margin-top: 15px;
    background: #000;
    color: #fff;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Blue sliding layer */
.dark-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #2873eb;
    /* Blue color */
    transition: width 0.5s ease;
    z-index: -1;
}

/* Hover effect */
.dark-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.dark-btn:hover {
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 115, 235, 0.4);
}

.dark-btn.small {
    padding: 8px 15px;
    font-size: 14px;
}

/* TEAM CARD */

.team-card {
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: center;
    width: 300px;
}

.team-card img {
    width: 100px;
    border-radius: 15px;
}

/* BRANDING INFO */

.branding-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.branding-info ul {
    list-style: none;
    padding: 0;
}

.branding-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}

.branding-info .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= LOGO SLIDER ================= */

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.logo-slider h2 {
    font-size: 46px;
    text-align: center;
    padding-bottom: 40px;
}

.logo-track {
    display: flex;
    gap: 30px;
    width: calc(250px * 10);
    animation: scrollLogos 20s linear infinite;
}

.logo-item {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 186px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ================= AGENCY RESPONSIVE ================= */

/* @media (max-width: 1200px) {

    .agency-middle {
        gap: 40px;
    }
} */

@media (max-width: 992px) {

    .agency-top {
        flex-direction: column;
    }

    .agency-middle {
        flex-direction: column;
        margin-top: 60px;
        gap: 30px;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .card-woo,
    .card-shopify {
        bottom: auto;
        left: auto;
    }
}

@media (max-width: 576px) {

    .agency-section {
        padding: 60px 5%;
    }

    .agency-stats {
        padding: 20px;
    }
}

/* ================= OFFER SECTION ================= */
.offer-section {
    background: #000;
    padding: 120px 8%;
    margin: 20px;
    border-radius: 30px;
}

.offer-container {
    background-color: #181F22;
    color: #fff;
    border-radius: 30px;
    padding: 80px;
}

.offer-header h2 {
    font-size: 50px;
    font-weight: 800;
}

.offer-header span {
    color: #2873eb;
}

.offer-header p {
    margin-top: 10px;
    color: #bebebe;
}

.offer-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 60px;
    border-radius: 20px;
    overflow: hidden;
}

.offer-item img {
    width: 100%;
    max-width: 386px;
    height: 100%;
    max-height: 300px;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
}

.offer-item img:hover {
    transform: scale(1.04);
}

.offer-content {
    flex: 1;
}

.offer-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.tags span {
    font-size: 14px;
    color: #2873eb;
    margin-right: 15px;
}

.offer-content p {
    color: #ccc;
    margin-top: 10px;
}

.offer-arrow {
    width: 90px;
    height: 90px;
    background: #1d2730;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    transition: 0.3s;
}

.offer-arrow:hover {
    background: #2873eb;
}

/* ================= OFFER RESPONSIVE ================= */

@media (max-width: 1200px) {

    .offer-container {
        padding: 50px;
    }

    .offer-item {
        gap: 30px;
    }

    .offer-item img {
        max-width: 336px;
    }

    .offer-arrow {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 992px) {

    .offer-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-item img {
        max-width: 100%;
        height: auto;
    }

    .offer-arrow {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {

    .offer-section {
        padding: 60px 5%;
        margin: 10px;
    }

    .offer-container {
        padding: 30px;
    }

    .offer-header h2 {
        font-size: 28px;
    }

    .offer-content h3 {
        font-size: 22px;
    }
}

/* ================= PROJECT SECTION ================= */

.project-title {
    color: white;
    font-size: clamp(40px, 60px, 80px);
    font-weight: 700;
    text-align: center;
    padding: 100px 0 40px;
}

.project-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.project-large {
    background-color: transparent;
    background-image: linear-gradient(180deg, #181F22 0%, #050607 100%);
    padding: 20px;
    border-radius: 20px;

}

.project-large h3,
.project-small h3 {
    color: white;
    font-size: 32px;
    text-transform: uppercase;
}

.project-large img {
    width: 100%;
    height: 610px;
    border-radius: 15px;
    margin-top: 15px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
}

.project-large img:hover {
    transform: scale(1.01);
}

.project-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.project-small {
    background-color: transparent;
    background-image: linear-gradient(180deg, #181F22 0%, #050607 100%);
    padding: 20px;
    border-radius: 20px;
}

.project-small img {
    width: 100%;
    border-radius: 15px;
    margin-top: 15px;
    transition: 0.3s ease-in-out;
}

.project-small img:hover {
    transform: scale(1.01);
}

/* ================= PROJECT RESPONSIVE ================= */

@media (max-width: 1200px) {

    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-large img {
        height: auto;
    }

    .project-right {
        flex-direction: row;
    }
}

@media(max-width:768px) {
    .project-right {
        flex-direction: column;
    }
}

@media(max-width:468px) {

    .project-large h3,
    .project-small h3 {
        font-size: 26px;
    }

    .project-title {
        font-size: 38px;
    }
}

/* ================= MARQUEE SECTION ================= */

.marquee-section {
    background: #f2f2f2;
    padding: 10px 0 40px;
    overflow: hidden;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 80px;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-track span {
    white-space: nowrap;
}

.marquee-track span img {
    width: 150px;
    transition: all 0.3s ease-in-out;
}
.marquee-track span img:hover{
    transform: scale(1.04);
}
.marquee-track .icon {
    font-size: 40px;
    font-weight: 700;
    align-content: center;
    color: #000000;
}

/* Animation */

@keyframes scrollMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {

    .marquee-track span img {
        width: 120px;
    }
}

/* ================= TECH SECTION ================= */
.tech-section {
    background: #000;
    padding: 120px 8%;
}

.tech-container {
    max-width: 1400px;
    margin: auto;
}

/* TOP ROW */
.tech-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.tech-left {
    flex: 1;
}

.tech-left h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
}

.tech-left p {
    margin: 20px 0 30px;
    color: #aaa;
    max-width: 550px;
}

.tech-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(45deg, #2873eb, #77b4ff);
    color: #fff;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Sliding black layer */
.tech-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #ffffff;
    transition: width 0.5s ease;
    z-index: -1;
}

/* Hover */
.tech-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.tech-btn:hover {
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@media(max-width:768px){
    .tech-btn{
            padding: 10px 18px;
    }
}
.tech-right img {
    width: 600px;
    border-radius: 20px;
}

/* BOTTOM ROW */

.tech-bottom {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    height: 100%;
}

.tech-image-card img {
    width: 100%;
    border-radius: 20px;
}

/* CARDS */

.tech-card {
    background: #06070A;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(231, 231, 231, 0.08);
    color: #fff;
    position: relative;
}

.large-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2873EB, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.card-icon i {
    color: #fff;
}

.card-content {
    flex: 1;
    margin-right: 30px;
}

.card-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card-content p {
    color: #aaa;
}

.card-number span {
    color: #aaa;
    font-size: 14px;
}

.card-number h3 {
    font-size: 60px;
    margin-top: 10px;
}

/* Small Cloud Card */
.card-area {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.card-area h4 {
    font-size: 24px;
}

.card-area p {
    color: #aaa;
}

/* ================= TECH RESPONSIVE ================= */

@media (max-width: 1200px) {

    .tech-top {
        flex-direction: column;
        text-align: center;
    }

    .tech-right img {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 992px) {

    .tech-bottom {
        grid-template-columns: 1fr;
    }

    .large-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-content {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .tech-section {
        padding: 60px 5%;
    }

    .tech-left h2 {
        font-size: 32px;
    }
}

/* ================= CTA FOOTER ================= */

.cta-footer {
    background: #000000;
    padding: 100px 4%;
    border-radius: 30px;
    margin: 80px 20px 20px;
}

.cta-container {
    max-width: 1200px;
    margin: auto;
}

/* TOP CTA */

.cta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.cta-text p {
    margin-top: 15px;
    color: #bcbcbc;
    max-width: 600px;
}

hr {
    margin: 60px 0;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* FOOTER GRID */
/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.whatsapp-float i {
    pointer-events: none;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

/* LEFT SIDE */

.links-card {
    background-image: linear-gradient(180deg, #181F22 0%, #050607 100%);
    padding: 40px;
    border-radius: 20px;
}

.links-card h3 {
    color: white;
    font-size: 30px;
}

.links-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 30px;
}

.links-columns h4 {
    color: #fff;
    margin-bottom: 12px;
}

.links-columns ul {
    list-style: none;
    padding: 0;
}

.links-columns ul {
    list-style: none;
    padding: 0;
}

.links-columns li {
    margin-bottom: 8px;
}

.links-columns a {
    color: #dadada;
    text-decoration: none;
    transition: 0.3s;
}

.links-columns a:hover {
    color: #2873eb;
    padding-left: 5px;
}

/* RIGHT SIDE */
.footer-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SOCIAL ICONS */

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.social-icons div {
    background-color: transparent;
    background-image: linear-gradient(180deg, #181F22 0%, #050607 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    transition: 0.3s;
    height: 100px;
}

.social-icons div:hover {
    background: linear-gradient(180deg, #2873eb, #77b4ff);
    transform: translateY(-5px);
}

/* COPYRIGHT */

.copyright {
    text-align: center;
    margin-top: 50px;
    color: #aaa;
}

@media (max-width: 992px) {

    .cta-text h2 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-right {
        margin-top: 40px;
    }

    .social-icons {
        grid-template-columns: repeat(5, auto);
    }
}

/* -------- 768px -------- */
@media (max-width: 768px) {

    .cta-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-text h2 {
        font-size: 30px;
    }

    .links-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-icons {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-icons div {
        height: 80px;
        font-size: 28px;
    }
}

/* -------- 480px -------- */
@media (max-width: 480px) {

    .cta-footer {
        padding: 60px 15px 30px;
    }

    .cta-text h2 {
        font-size: 24px;
    }

    .links-card {
        padding: 25px;
    }

    .links-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .social-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-icons div {
        height: 70px;
        font-size: 22px;
    }

    .copyright {
        margin-top: 40px;
        font-size: 13px;
    }
}

/* =====================================
   Banner
===================================== */
.banner-hero {
    position: relative;
    padding: 200px 20px 140px;
    text-align: center;
    color: #fff;
    overflow: hidden;

    /* Dark Gradient */
    background: linear-gradient(135deg, #1b1b1b, #111111);

    /* Rounded bottom corners */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* Subtle Grid Pattern */
.banner-hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

/* Content */
.banner-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: auto;
}

.banner-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-hero p {
    font-size: 20px;
    color: #ddd;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .banner-hero {
        padding: 80px 30px;
        margin-top: 88px;
    }

    .banner-hero h1 {
        font-size: 32px;
    }

    .banner-hero p {
        font-size: 16px;
    }
}

/* =====================================
   About Us
===================================== */
.about_page {
    background-color: #000;
}

.about-section {
    background: #050505;
    padding: 80px 0;
    color: #fff;
}

.about-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* LEFT IMAGE */
.about-image {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.04);
}

/* Floating arrow box */
.image-arrow {
    border: 10px solid black;
    position: absolute;
    top: -15px;
    right: -15px;
    background: #2873EB;
    width: 88px;
    height: 88px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.arrow-icon {
    font-size: 26px;
    font-weight: bold;
    color: #000;
}

/* RIGHT CONTENT */
.about-content {
    flex: 1;
}

.about-tag {
    color: #2873EB;
    font-size: 14px;
    font-weight: 500;
}

.about-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin: 15px 0 20px;
    font-weight: 600;
}

.about-desc {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* CARDS */
.about-card {
    position: relative;
    background: #111;
    padding: 30px 40px;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

/* Remove flex alignment */
.about-card {
    display: block;
}

/* Floating Icon */
.about-card .card-icon {
    border: 10px solid #000;
    position: absolute;
    right: -5px;
    top: 24%;
    transform: translateY(-50%);
    background: #2873EB;
    color: black;
    width: 86px;
    height: 86px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.card-text {
    width: 84%;
}

.card-text h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.card-text p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

@media(max-width:992px) {
    .about-section {
        padding: 80px 24px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-image img {
        height: auto;
    }
}

@media(max-width:586px) {
    .image-arrow {
        width: 78px;
        height: 78px;
        top: -10px;
        right: -10px;
    }

    .about-card .card-icon {
        width: 78px;
        height: 78px;
        top: 16%;
    }
}

.mv-section {
    padding: 100px 0 40px;
}

.mv-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
}

.mv-row {
    display: flex;
    gap: 60px;
    padding: 35px 0;
    border-bottom: 1px solid #dcdcdc;
}

.mv-title {
    flex: 0 0 250px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000;
}

.mv-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

@media(max-width:992px) {
    .mv-title {
        flex: 0 0 180px;
    }
}

@media(max-width:768px) {
    .mv-section {
        padding: 80px 24px 40px;
    }

    .mv-row {
        display: block;
    }
}

.why-section {
    padding: 100px 0;
}

.why-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

/* LEFT IMAGE */
.why-image {
    flex: 1;
    overflow: hidden;
}

.why-image img {
    height: 520px;
    width: 100%;
    border-radius: 25px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.why-image img:hover {
    transform: scale(1.04);
}

/* RIGHT CONTENT */
.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* CHECKLIST */
.why-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.why-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #333;
}

/* Circle Check Icon */
.why-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: #2873EB;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:768px) {
    .why-section {
        padding: 86px 24px;
    }

    .why-container {
        flex-direction: column;
    }

    .why-image img {
        height: auto;
        max-height: 430px;
    }
}

.faq-section {
    padding: 20px 0;
}

.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
}

.faq-box {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
}

.faq-number {
    font-weight: 700;
    font-size: 24px;
    margin-right: 20px;
}

.faq-text {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    display: none;
}

/* Active State */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

@media(max-width:768px) {
    .faq-section {
        padding: 20px;
    }

    .faq-box {
        padding: 40px 24px;
    }

    .faq-title {
        font-size: 34px;
    }

    .faq-text {
        font-size: 22px;
    }
}

@media(max-width:480px) {

    .faq-text {
        font-size: 18px;
    }

    .faq-number {
        font-size: 18px;
        margin-right: 10px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

/* ===============================================
    Contact
================================================== */
.contact-section {
    background: #05070c;
    color: #fff;
    overflow-x: hidden;
}

.contact-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    display: flex;
    margin: 80px auto;
    border: 2px solid rgb(0, 123, 255);
    border-radius: 20px;
}

/* MAP */
.contact-map {
    flex: 1;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* FORM BOX */
.contact-form-box {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, #0b1220, #05070c);
    border-radius: 0px 20px 20px 0;
    box-shadow: 0 0 40px rgba(0, 123, 255, 0.15);
}

.contact-tag {
    color: #2873eb;
    font-weight: 600;
    font-size: 14px;
}

.contact-form-box h2 {
    font-size: 32px;
    margin: 15px 0;
}

.contact-desc {
    color: #aaa;
    margin-bottom: 30px;
}

/* ================= CONTACT RESPONSIVE ================= */

/* Large tablets */
@media (max-width: 992px) {

    .contact-container {
        flex-direction: column-reverse;
        border-radius: 20px;
        width: 900px;
        max-width: 75%;
    }

    .contact-map {
        border-radius: 0 0 20px 20px;
    }

    .contact-form-box {
        border-radius: 20px 20px 0 0;
    }
}

/* Tablets */
@media (max-width: 992px) {

    .contact-container {
        margin: 60px auto;
    }

    .contact-map iframe {
        min-height: 350px;
    }

    .contact-form-box {
        padding: 40px;
    }
}

@media(max-width:568px) {
    .contact-container {
        max-width: 95%;
    }

    .contact-form-box {
        padding: 28px;
    }
}

/* FORM */
.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #ddd;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: #1a1f2b;
    color: #fff;
}

.contact-form textarea {
    width: 100%;
    height: 120px;
    max-height: 300px;
    resize: vertical;
}

/* ================ Responsive ================ */
@media (max-width: 768px) {

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-box h2 {
        font-size: 24px;
    }

    .contact-desc {
        font-size: 14px;
    }
}

/* CONTACT CARDS */
.contact-cards {
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    max-width: 95%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* padding: 60px 0 100px; */
}

.contact-card {
    background: linear-gradient(145deg, #0b1220, #05070c);
    border: 1px solid #9b9b9b71;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease;
}



.contact-card.left {
    transform: translateX(-80px);
}

.contact-card.show {
    opacity: 1;
    transform: translateX(0);
}

.contact-card.show:hover {
    transform: translateY(-8px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background-color: transparent;
    background-image: linear-gradient(180deg, #006AFF 0%, #232323 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.icon-circle i{
    color: #fff;
}
.contact-card h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-card p {
    color: #bbb;
}


/* Large tablets */
@media (max-width: 1100px) {

    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {

    .contact-cards {
        grid-template-columns: 1fr;
        padding: 40px 20px 80px;
    }

    .contact-card {
        padding: 30px;
    }

    .contact-card h4 {
        font-size: 20px;
    }

    .contact-card p {
        font-size: 14px;
    }
}

/* ======================================
   Blogs
========================================= */
.blog-hero {
    position: relative;
    color: #fff;
    text-align: center;
}


.blog-section {
    padding: 100px 20px 40px;
}

.blog-container {
    width: 100%;
    padding: 0 40px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 800;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-card {
    height: 100%;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.blog-card img:hover {
    transform: scale(1.04);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #272727;
}

.read-more:hover {
    color: #2873EB;
}


.page,
.page-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 6px;
    background: #e5e5e5;
    cursor: pointer;
}

.page.active {
    background: #2873EB;
    color: #fff;
}

.page:hover {
    background: #ccc;
}

/* Large tablets */
@media (max-width: 1100px) {

    .blog-grid {
        gap: 25px;
    }

    .blog-header h2 {
        font-size: 28px;
    }
}

/* Tablets */
@media (max-width: 992px) {

    .blog-section {
        padding: 80px 0 40px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card h3 {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .blog-header h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .read-more {
        font-size: 13px;
    }

    .page {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* ========================================
   Blog Detail
=========================================== */
.blog-detail-hero {
    position: relative;
    color: #fff;
    text-align: center;
}


.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.hero-badges span {
    background: #fff;
    color: #000;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    margin: 0 5px;
}

.blog-detail-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 25px 0;
}

.blog-detail-content {
    padding: 80px 20px 40px;
}

.blog-detail-container {
    max-width: 900px;
    margin: auto;
}

.featured-img {
    max-height: 460px;
    object-fit: cover;
    width: 100%;
    border-radius: 20px;
    margin-bottom: 40px;
}

.blog-detail-content h2 {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 700;
}

.blog-detail-content p {
    margin-top: 15px;
    line-height: 1.8;
}

.blog-content img,
.blog-detail-content img,
.blog-content iframe,
.blog-detail-content iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent overflow from any content inside editor */
.blog-content,
.blog-detail-content {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.quote-box {
    background: #eaeaea;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    font-weight: 500;
}

.two-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.two-images img {
    width: 100%;
    border-radius: 15px;
}

.blog-detail-content ul {
    margin-top: 20px;
    padding-left: 20px;
}

.blog-detail-content ul li {
    margin-bottom: 10px;
}

.blog-social-icons {
    margin-top: 40px;
}

.blog-social-icons a {
    width: 35px;
    height: 35px;
    background: #ff5a2c;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    text-decoration: none;
}

.blog-social-icons a:hover {
    transform: scale(1.02);
}

/* Reduce heading on smaller screens */
@media (max-width: 992px) {

    .blog-detail-hero h1 {
        font-size: 32px;
    }

    .featured-img {
        max-height: none;
        height: auto;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .blog-detail-hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .blog-detail-content {
        padding: 60px 20px 30px;
    }

    .blog-detail-content p {
        font-size: 15px;
    }

    .blog-detail-content h2 {
        font-size: 20px;
    }

    .blog-social-icons {
        text-align: center;
    }

    .blog-social-icons a {
        margin: 8px;
    }
}

/* ================================================ 
   Our Products
 ================================================ */
.products-section {
    position: relative;
    padding: 120px 20px 60px;
    background: #f5f7fa;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* =========================
   PARTICLES
========================= */
.particles span {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
    background: rgba(0, 123, 255, 0.2);
    animation: float 15s linear infinite;
}

.particles span:nth-child(1) {
    left: 10%;
    animation-duration: 18s;
}

.particles span:nth-child(2) {
    left: 25%;
    animation-duration: 22s;
    width: 40px;
    height: 40px;
}

.particles span:nth-child(3) {
    left: 45%;
    animation-duration: 16s;
}

.particles span:nth-child(4) {
    left: 65%;
    animation-duration: 20s;
    width: 35px;
    height: 35px;
}

.particles span:nth-child(5) {
    left: 85%;
    animation-duration: 25s;
}

@keyframes float {
    0% {
        top: 100%;
        transform: translateY(0) rotate(0deg);
    }

    100% {
        top: -10%;
        transform: translateY(-1000px) rotate(360deg);
    }
}

/* =========================
   PRODUCTS GRID
========================= */
.products-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

/* =========================
   PRODUCT CARD
========================= */
.product-card {
    background: white;
    width: 100%;
    max-width: 320px;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.product-card:hover {
    background-image: linear-gradient(240deg, #FFFFFF -10%, #2873eb 65%);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.3);
}

.product-card h3 {
    margin-top: 25px;
    font-size: 24px;
    transition: 0.3s;
}

.product-card p {
    margin-top: 10px;
    font-size: 15px;
    color: #2c2c2c;
    transition: 0.3s;
}

/* Change text color on hover */
.product-card:hover h3,
.product-card:hover p {
    color: #fff;
}

/* Icon */
.product-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 20px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.product-card:hover .product-icon {
    background: rgb(255, 255, 255);
}

.product-icon img {
    width: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .products-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================
   Portfolio
======================================== */
.projects-section {
    padding: 100px 20px 60px;
    background: #f7f9fc;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 40px 0 60px;
    letter-spacing: 1px;
}

/* FILTER BUTTONS */
.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    text-align: center;
}

/* FILTER BUTTON BASE */
.filter-btn {
    position: relative;
    padding: 12px 30px;
    margin: 0 12px;
    font-size: 16px;
    border-radius: 30px;
    border: none;
    background: #0d6efd;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: 0.4s ease;
    z-index: 1;
}

/* Sliding Overlay */
.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #000;
    transition: width 0.4s ease;
    z-index: -1;
}

/* Hover Effect (Right to Left) */
.filter-btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

/* Active Button */
.filter-btn.active {
    background: #000000;
    box-shadow: 0 4px 20px rgb(13 110 253 / 51%);
    ;
}

/* GRID */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    background: #fff;
}

.project-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.project-card img:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.25);
}

.pagination {
    text-align: center;
    margin-top: 60px;
    display: none;
    /* hidden by default */
}

/* CIRCLE BUTTON */
.page-btn {
    width: 45px;
    height: 45px;
    margin: 0 6px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Hover Effect */
.page-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Active Page */
.page-btn.active {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

/* Responsive */
@media(max-width:992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

/* =======================================
  Join Us
========================================== */
.career-section {
    margin-top: 80px;
}

.career-container {
    max-width: 1000px;
    margin: 60px auto;
}

.career-hero {
    position: relative;
    padding: 180px 20px 140px;
    text-align: center;
    color: #fff;
    overflow: hidden;

    /* Background Image */
    background: url('../images/joinus.jpg') no-repeat center center;
    background-size: cover;

    /* Rounded bottom corners */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* Dark Overlay */
.career-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    /* dark overlay */
    z-index: 1;
}

/* Subtle Grid Pattern */
.career-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 2;
}

/* Content */
.career-hero-content {
    position: relative;
    z-index: 3;
    max-width: 750px;
    margin: auto;
}

.career-hero h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.career-hero p {
    font-size: 20px;
    color: #ddd;
    line-height: 1.6;
}

.career-title {
    font-size: 32px;
    margin: 12px;
}

@media (max-width: 992px) {
    .career-container {
        padding: 60px 40px;
    }

    .career-hero {
        padding: 140px 20px 100px;
    }

    .career-hero h1 {
        font-size: 36px;
    }

    .career-hero p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {

    .career-hero {
        padding: 120px 20px 80px;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }

    .career-hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10px;
    border-bottom: 1px solid #cccccc;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 20px;
}

.job-item:hover {
    background-image: linear-gradient(240deg, #FFFFFF -10%, #2873eb 65%);
    color: white;
}

.job-item h3 {
    font-size: 22px;
    font-weight: 700;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ================= JOB LIST RESPONSIVE ================= */

@media (max-width: 768px) {

    .career-container {
        padding: 0 20px;
    }

    .career-title {
        font-size: 24px;
        text-align: center;
    }

    .job-item {
        align-items: flex-start;
        gap: 15px;
        padding: 20px 15px;
    }

    .job-item h3 {
        font-size: 18px;
    }

    .arrow-btn {
        width: 36px;
        height: 36px;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {

    .job-item {
        padding: 18px 10px;
    }

    .job-item h3 {
        font-size: 16px;
    }

    .career-title {
        font-size: 20px;
    }
}

/* ============================= */
/* MODAL OVERLAY */
/* ============================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* ============================= */
/* MODAL BOX */
/* ============================= */
.modal-box {
    background: #ffffff;
    width: 650px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-box.large {
    width: 820px;
}

/* ============================= */
/* CLOSE BUTTON */
/* ============================= */
.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    background: #000;
    color: #fff;
}

/* ============================= */
/* MODAL HEADINGS */
/* ============================= */
.modal-box h2 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.experience {
    font-weight: 500;
}

.job-type {
    font-size: 14px;
    color: #535353;
    margin-top: 4px;
    margin-bottom: 20px;
    border-bottom: 1px solid #cfcfcf;
}

/* ============================= */
/* MODAL CONTENT */
/* ============================= */
#jobDescription h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

#jobDescription ul {
    padding-left: 18px;
    margin-bottom: 15px;
}

#jobDescription li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ============================= */
/* MODAL FOOTER */
/* ============================= */
.modal-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* ============================= */
/* SCROLLBAR STYLING */
/* ============================= */
.modal-box::-webkit-scrollbar {
    width: 6px;
}

.modal-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

@media (max-width: 768px) {

    .modal-box {
        padding: 30px 20px;
        max-height: 90vh;
    }

    .modal-box h2 {
        font-size: 20px;
    }

    .modal-footer {
        text-align: center;
    }
}

@media (max-width: 480px) {

    .modal-box {
        padding: 20px;
        border-radius: 15px;
    }

    .close-btn {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}

/* ============================= */
/* APPLY PAGE */
/* ============================= */

.apply-page {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apply-card {
    margin-top: 90px;
    width: 100%;
    max-width: 900px;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 6px rgba(0, 0, 0, 0.1);
}

.apply-header {
    text-align: center;
    margin-bottom: 40px;
}

.apply-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.apply-header p {
    color: #666;
}

/* FORM */
.apply-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
    max-height: 200px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
    outline: none;
}

.form-group.full {
    grid-column: span 2;
}

textarea {
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #0d6efd, #0046c0);
    color: white;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Blue sliding layer */
.form-submit button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: #1c1c1c;
    /* Blue color */
    transition: width 0.5s ease;
    z-index: -1;
}

/* Hover effect */
.form-submit button:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.form-submit button:hover {
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 115, 235, 0.4);
}

/* BUTTONS */
.btn-primary {
    background: #0d6efd;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 8px;
}

.success-alert {
    background: #e6f9f0;
    color: #0f5132;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #badbcc;
    font-size: 14px;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.success-alert.hide {
    opacity: 0;
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .apply-card {
        padding: 30px;
    }

    .apply-form .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }
}

/* =========================================
Web Development Services
============================================ */
/* ================= HERO ================= */
.webapp-hero {
    padding: 160px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0d6efd, #001f5c);
    color: #fff;
}

.webapp-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.webapp-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}


/* ================= SECTION COMMON ================= */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
}

.section-heading.light h2 {
    color: #fff;
}

.qa-section {
    padding: 80px 0;
}

.qa-section .container {
padding: 0 40px;
    margin: auto;
}

.w-section-header {
    max-width: 800px;
    margin-bottom: 50px;
}

.w-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.w-section-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Layout */
.qa-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Image */
.qa-image {
    flex: 1;
    overflow: hidden;
}

.qa-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
}

.qa-image img:hover {
    transform: scale(1.02);
}

/* Features */
.qa-features {
    flex: 1;
}

.qa-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qa-features li {
    font-size: 16px;
    margin-bottom: 18px;
    padding-left: 28px;
    position: relative;
    color: #333;
}

/* Custom Star Icon */
.qa-features li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 992px) {

    .qa-content {
        flex-direction: column;
        gap: 40px;
    }

    .w-section-header h2 {
        font-size: 28px;
    }

    .w-section-header p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {

    .qa-section {
        padding: 60px 20px;
    }

    .qa-features li {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ================= SERVICES ================= */
/* web application page */
.webapp-services {
    padding: 0px 20px 80px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(13, 110, 253, 0.2);
}

.service-card h3 {
    margin-bottom: 15px;
}


/* ================= PROCESS ================= */
.webapp-process {
    padding: 100px 20px;
    background: #000000;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: #181F22;
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.process-card:hover {
    transform: translateY(-6px);
}

.process-card span {
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
    color: #0d6efd;
}

.process-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .webapp-process {
        padding: 80px 20px;
    }

    .process-card {
        padding: 30px 20px;
    }

    .process-card h4 {
        font-size: 18px;
    }
}

/* ================= TECH STACK ================= */

.webapp-tech {
    padding: 100px 20px 60px;
    position: relative;
    overflow: hidden;
}

.section-heading.center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    background: #e7edff;
    color: #0d6efd;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-heading h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Grid Layout */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

/* Tech Card */
.tech-grid .tech-card {
    padding: 25px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.05);
    transition: all 0.35s ease;
    cursor: pointer;
}

/* Hover Effect */
.tech-grid .tech-card:hover {
    transform: translateY(-8px);
    background: #0d6efd;
    color: #fff;
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.25);
}

@media (max-width: 768px) {

    .webapp-tech {
        padding: 80px 20px 40px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .tech-grid .tech-card {
        font-size: 14px;
        padding: 18px;
    }
}

/* ================= CTA ================= */
.webapp-cta {
    padding: 120px 20px;
    text-align: center;
    background: #000000;
    color: #fff;
}

.cta-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }
}

/* ===============================================
 Software Development
================================================== */

.soft-container {
    padding: 0 40px;
    margin: auto;
}

.soft-center {
    text-align: center;
}

.soft-center h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.soft-page {
    background-color: #000;
}

.soft-hero {
    padding: 120px 20px;
    background: #000000;
    color: #fff;
}

.soft-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.soft-hero-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.soft-hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.soft-hero-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 30px;
}

.soft-btn-primary {
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    margin-right: 15px;
    transition: .3s;
}

.soft-btn-primary:hover {
    background: #0056d2;
}

.soft-btn-outline {
    padding: 12px 28px;
    border: 1px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
}

@media (max-width: 1100px) {

    .soft-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .soft-hero-visual {
        order: -1;
        max-height: 320px;
    }

    .soft-hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {

    .soft-hero {
        padding: 80px 20px;
    }

    .soft-hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .soft-hero-content p {
        font-size: 14px;
    }
}

/* Floating Cards */

.soft-hero-visual {
    position: relative;
    height: 100%;
    max-height: 400px;
    background: url('../images/software-dev.jpg') no-repeat center center;
    border-radius: 30px;
    object-fit: contain;
}

.soft-floating-card {
    position: absolute;
    padding: 20px 30px;
    background: #fff;
    color: #111;
    border-radius: 15px;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.soft-card1 {
    top: 20px;
    left: -40px;
}

.soft-card2 {
    top: 120px;
    right: 20px;
}

.soft-card3 {
    bottom: -16px;
    left: 80px;
}

@media (max-width: 768px) {

    .soft-floating-card {
        position: static;
        display: inline-block;
        margin: 10px 10px 0 0;
    }

    .soft-hero-visual {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 20px;
        background-size: cover;
    }
}

/* ================= PROCESS ================= */

.soft-process {
    padding: 100px 20px;
    background: #f8fafc;
}

.soft-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.soft-process-step {
    background: #181F22;
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: .3s;
}

.soft-process-step span {
    font-size: 28px;
    font-weight: 700;
    color: #0d6efd;
}

.soft-process-step:hover {
    transform: translateY(-8px);
}

.soft-process-step h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {

    .soft-process {
        padding: 70px 20px;
    }

    .soft-process-grid {
        gap: 25px;
        margin-top: 40px;
    }

    .soft-process-step {
        padding: 25px;
    }

    .soft-process-step h4 {
        font-size: 18px;
    }
}

/* ================= SERVICES ================= */

.soft-services {
    padding: 60px 20px;
    background: #ffffff;
}

.soft-services-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

/* Left Side */

.soft-section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #eef2ff;
    color: #0d6efd;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.soft-services-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.soft-services-left p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Right Side */

.soft-services-right {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.soft-service-item {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.soft-service-item:hover {
    transform: translateX(8px);
}

.soft-service-number {
    font-size: 22px;
    font-weight: 700;
    color: #0d6efd;
    min-width: 50px;
}

.soft-service-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.soft-service-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* ================= SERVICES RESPONSIVE ================= */

@media (max-width: 1100px) {

    .soft-services-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {

    .soft-services {
        padding: 60px 20px;
    }

    .soft-services-left h2 {
        font-size: 26px;
    }

    .soft-service-item {
        flex-direction: column;
        gap: 10px;
    }

    .soft-service-item:hover {
        transform: none;
    }
}

/* ================= GROWTH SECTION ================= */

.soft-growth {
    background: #000;
    padding: 120px 20px;
    color: #fff;
}

.soft-growth-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* LEFT SIDE */

.soft-growth-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.soft-growth-desc {
    color: #aaa;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.soft-growth-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 60px;
}

.soft-btn-primary {
    padding: 12px 28px;
    background: linear-gradient(90deg, #2873EB, #6366f1);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.soft-btn-primary:hover {
    opacity: 0.9;
}

.soft-btn-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Bottom Section */

.soft-growth-bottom {
    display: flex;
    gap: 30px;
    align-items: center;
}

.soft-growth-image img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
}

.soft-growth-stats h3 {
    margin-bottom: 20px;
}

.soft-stats-row {
    display: flex;
    gap: 60px;
}

.soft-stats-row span {
    color: #aaa;
    font-size: 14px;
}

.soft-stats-row h2 {
    font-size: 40px;
    margin-top: 5px;
}

/* RIGHT SIDE FEATURE CARDS */

.soft-growth-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.soft-feature-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: #0a0a0a;
    transition: 0.3s;
}

.soft-feature-card:hover {
    transform: translateY(-6px);
    border-color: #2873EB;
}

.soft-feature-icon {
    width: 45px;
    height: 45px;
    padding: 10px;
    background: #1e1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

@media (max-width: 992px) {

    .soft-growth-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .soft-growth-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {

    .soft-growth {
        padding: 80px 20px;
    }

    .soft-growth-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .soft-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .soft-growth-bottom {
        flex-direction: column;
    }
}

/* Highlighted Card */

.soft-feature-highlight {
    background: linear-gradient(135deg, #2873eb, #1e1b4b);
    border: none;
}


.soft-app-process {
    padding: 120px 20px;
}

.soft-app-process-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.soft-app-step {
    padding: 30px;
    border-radius: 20px;
    background: linear-gradient(145deg, #bfbfbf, #f0f4ff);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

.soft-app-step:hover {
    transform: translateY(-4px);
}

.soft-app-step span {
    font-size: 28px;
    font-weight: 700;
    color: #2873eb;
}

.soft-app-step h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.soft-app-tech {
    padding: 100px 20px;
    background: linear-gradient(240deg, #FFFFFF 0%, #2873eb 40%);
    ;
    color: #fff;
}

.soft-app-tech-list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.soft-app-tech-list span {
    padding: 12px 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.soft-app-tech-list span:hover {
    transform: translateY(-5px);
}


/* ================= UI/UX HERO ================= */

.soft-ui-hero {
    padding: 120px 20px 150px;
    background: #f9fafc;
}

.soft-ui-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.soft-ui-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #eef2ff;
    color: #2873EB;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 20px;
}

.soft-ui-left h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.soft-ui-left p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.soft-ui-buttons {
    display: flex;
    gap: 20px;
}

.soft-ui-btn-primary {
    padding: 12px 28px;
    background: #2873EB;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

.soft-ui-btn-outline {
    padding: 12px 28px;
    border: 1px solid #2873EB;
    color: #2873EB;
    border-radius: 30px;
    text-decoration: none;
}

@media (max-width: 1100px) {

    .soft-ui-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .soft-ui-left h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {

    .soft-ui-hero {
        padding: 80px 20px;
    }

    .soft-ui-left h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .soft-ui-left p {
        font-size: 14px;
    }
}

/* Creative layered cards */

.soft-ui-right {
    position: relative;
    height: 426px;
    overflow: hidden;
}

.soft-ui-card {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.soft-ui-card-1 {
    background: linear-gradient(135deg, #6366f1, #2873EB);
    top: 0;
    right: 60px;
}

.soft-ui-card-2 {
    background: linear-gradient(135deg, #ec4899, #db2777);
    top: 20px;
    right: 80px;
}

.soft-ui-card-3 {
    background: linear-gradient(135deg, #22d3ee, #0ea5e9);
    top: 40px;
    right: 100px;
}

.soft-ui-card-4 {
    top: 60px;
    right: 120px;
    background: url('../images/uiux-1.jpg') center center / cover no-repeat;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {

    .soft-ui-card {
        position: static;
        width: 100%;
        height: 280px;
        margin-bottom: 15px;
    }

    .soft-ui-card-1,
    .soft-ui-card-2,
    .soft-ui-card-3 {
        display: none;
    }
}

/* ================= PHILOSOPHY ================= */

.soft-ui-philosophy {
    padding: 120px 20px;
}

.soft-ui-zigzag {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.soft-ui-zigzag.reverse {
    direction: rtl;
}

.soft-ui-zigzag.reverse .soft-ui-text {
    direction: ltr;
}

.soft-ui-text {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.soft-ui-text .para h2 {
    padding: 10px 0;
    font-size: 26px;
}

.soft-ui-visual {
    height: 350px;
    border-radius: 30px;
    background: url('../images/uiux-2.jpg') center center / cover no-repeat;
    transition: all 0.3s ease-in-out
}

.soft-ui-visual:hover {
    transform: scale(1.02);
}

.soft-ui-capabilities {
    padding: 120px 20px;
    background: #111827;
    color: #fff;
}

.soft-ui-panels {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.soft-ui-panel {
    padding: 40px;
    border-radius: 25px;
    background: #1f2937;
    transition: 0.3s;
}

.soft-ui-panel:hover {
    background: #2873EB;
}

/* ================= ZIGZAG RESPONSIVE ================= */

@media (max-width: 768px) {
    .soft-ui-zigzag.reverse {
        direction: ltr;
    }

    .soft-ui-visual {
        height: 260px;
    }

    .soft-ui-zigzag {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .soft-ui-philosophy {
        padding: 80px 20px;
    }

    .soft-ui-text .para h2 {
        font-size: 20px;
    }

    .soft-ui-text p {
        font-size: 14px;
    }
}

/* ================= CAPABILITIES RESPONSIVE ================= */


@media (max-width: 768px) {
    .soft-ui-panels {
        grid-template-columns: 1fr;
    }

    .soft-ui-capabilities {
        padding: 80px 20px;
    }

    .soft-ui-panel {
        padding: 25px;
    }

    .soft-ui-panel h3 {
        font-size: 18px;
    }

    .soft-ui-panel p {
        font-size: 14px;
    }
}

/* =============================================
   Legal Pages
================================================ */

.legal-section {
    padding: 100px 20px 40px;
}

.legal-container {
    max-width: 900px;
    margin: auto;
    background: #ffffff;
    padding: 0 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.legal-header {
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.legal-header p {
    color: #777;
    font-size: 14px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 20px;
    color: #111;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 30px;
    }

    .legal-header h1 {
        font-size: 26px;
    }
}