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

/* BODY */
body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: white;
    /* font-family: 'Poppins', sans-serif; */
    scroll-behavior: smooth;
}

#network-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    /* behind all content */
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* allow scrolling & clicks through canvas */
}

/* GLASSMORPHISM CARDS */
section {
    background-color: #000000;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px 20px;
    margin: 40px 20px 0px 0px;
    width: 100%;
    max-width: 1520px;
    animation: fadeIn 1s ease forwards;
}

section h2 {
    text-align: center;
    color: gold;
    font-size: 2.2rem;
}

/* ANIMATIONS */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVBAR */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.323);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    height: 85px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: gold;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: gold;
    bottom: -4px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.3s;
}


/* HERO */
.hero {
    position: relative;
    /* needed for canvas positioning */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #000000;
    color: #ffffff;
    overflow: hidden;
}

#hero-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    font-size: 17px;
}


.hero-content h1 {
    width: 88vh;
    font-size: 3rem;
    margin-bottom: 20px;

}

.hero .hero-content p {
    margin: 25px;
}

/* Animated Rotating Text */
.animated-text {
    /* display: inline-block;  */
    position: relative;
    margin-left: 10px;
    margin-top: 41px;
    top: 0px;
    height: 3rem;
}


.text-slide {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    white-space: nowrap;
    color: gold;
    /* ensure visible on black bg */
}

.text-slide.active {
    opacity: 1;
    transform: translateY(0);
}



.cta-btn {
    display: inline-flex;
    /* allows better alignment */
    align-items: center;
    /* vertically centers text */
    justify-content: center;
    /* horizontally centers text */
    text-decoration: none;
    background: #222;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    line-height: 2;
    /* remove extra line spacing */
    transition: 0.3s;
    font-weight: 500;
}

.cta-btn:hover {
    background: #555;
}

/* GRID STYLING */
.service-grid,
.portfolio-grid,
.pricing-grid,
.process-grid,
.testimonial-grid,
.contact-grid {
    display: grid;
    gap: 20px;
    margin-top: 0px;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.stats-section {
    background: #a9b1af00;
    color: white;
    text-align: center;
    padding: 60px 20px;
    font-family: "Poppins", sans-serif;
}

.stats-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 175px;
    flex-wrap: wrap;
}

.stat-box h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-box p {
    font-size: 15px;
    max-width: 180px;
    color: #e8e8e8;
    line-height: 1.4;
    text-align: center;
}


.service-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


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

.portfolio-card {
    background: linear-gradient(135deg, #111111, #1a1a1a);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(255, 255, 255, .12);
    padding: 25px;
    transition: .3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, .18);
}

.portfolio-card h3 {
    font: 600 1.1rem;
    color: gold;
    margin-bottom: 10px;
    text-align: left;
}

.portfolio-card p {
    font: 400;
    color: #d6d6d6;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: left;
}

.portfolio-card a {
    text-decoration: none;
    font: 500;
    cursor: pointer;
    color: #ffffff;
    /* border-bottom: 2px solid transparent; */
    transition: .3s;
    font-size: 13px;
}


.portfolio-card button {
    background: #000000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    transition: .3s;
    height: 45px;
    width: 110px;
}

.portfolio-card button:hover {
    box-shadow: 0 0 5px gold;
    background: white;
    color: black;
}

.portfolio-card button:hover a{
    color: #000;
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.contact-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}


/* ABOUT */
/* ABOUT SECTION - Laptop */
.about {
    background: rgba(0, 0, 0, 0.933);
    /* Glassmorphism */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 60px 40px;
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
    animation: fadeIn 1s ease forwards;
}

.about h2 {
    margin-bottom: 20px;
    color: gold;
}

.about p {
    text-align: justify;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
}

.service-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 40px;
}

.service-card {
    position: relative;
    background-size: cover;
    /* background-position: center; */
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, justify-content 0.5s;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Heading centered initially */
}

/* Dark overlay */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 15px;
    /* z-index: -1; */
}

/* Heading */
.service-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    transition: all 0.5s ease;
}

/* Paragraph hidden initially */
.service-card p {
    position: relative;
    text-align: justify;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin-top: 15px;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(196, 196, 196, 0.3);
    justify-content: flex-start;
    /* Heading moves to top */
    padding-top: 25px;
}

/* Show paragraph on hover */
.service-card:hover p {
    opacity: 1;
    /* transform: translateY(30); */
}

/* Keep heading centered initially */
.service-card:not(:hover) h3 {
    margin-top: auto;
    margin-bottom: auto;
}

/* Process Grid */

.process {
    text-align: center;
    padding: 0px;
}

.process h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: gold;
}

/* Circular container */
.process-circle {
    position: relative;
    width: 600px;
    height: 450px;
    margin: 0 auto;

}

/* Position each step in a circle */
.process-card {
    position: absolute;
    top: 26%;
    left: 42%;
    width: 135px;
    height: 135px;
    transform: rotate(calc(60deg * var(--i))) translate(200px);
    /* only position */
    transform-origin: center center;
}

/* Inner content stays upright */
.process-card-item {
    width: 100%;
    height: 100%;
    background-color: #000;
    border: 2px solid white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(calc(-60deg * var(--i)));
    /* counter rotation to keep upright */
}

.process-card-rotate {
    padding: 55px;
}

/* Number circle */
.process-card .step h4 {
    text-align: center;
    /* border: 2px solid gold; */
    border-radius: 50%;
    background:gold;
    color: black;
    width: 30px;
    height: 30px;
    line-height: 1.9;
    margin-bottom: 5px;
}

/* Icon */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Text */
.process-text {
    font-size: 0.7rem;
    color: #fff;
    font-weight: 600;
    text-align: center;
    word-wrap: break-word;
}

/* Detail text outside circles */
.process-detail {
    position: absolute;
    top: 50%;
    left: 140%;
    transform: translateY(-50%);
    width: 180px;
    text-align: left;
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.2;
    font-weight: 600;
}

/* Pointer line */
.process-detail::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: gold;
}

.process-card:nth-child(1) .process-detail {
    left: -210px;
}
.process-card:nth-child(1) .process-detail::before {
    left: 95%;
}

.process-card:nth-child(3) .process-detail {
    top: 50%;
    left: 145%;
}
.process-card:nth-child(3) .process-detail::before {
    top: 15px;
    left: -23%;
    transform: rotate(0deg);
}
.process-card:nth-child(4) .process-detail {
    top: 50%;
    left: 145%;
}
.process-card:nth-child(4) .process-detail::before {
    top: 10px;
    left: -25%;
    transform: rotate(00deg);
}
.process-card:nth-child(5) .process-detail {
    top: 54%;
    left: -210px;
}
.process-card:nth-child(5) .process-detail::before {
    top: 10px;
    left: 170px;
    transform: rotate(0deg);
}
.process-card:nth-child(6) .process-detail {
    left: -210px;
}
.process-card:nth-child(6) .process-detail::before {
    left: 95%;
}


.contact-form button {
    padding: 12px;
    border-radius: 50px;
    border: none;
    background: #000000 !important;
    color: #ffffff !important;
    ;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 0px;
}

.contact-form button:hover {
    background: #555;
}

/* Main Section (Left + Right) */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
    height: 85vh;
}

/* LEFT SIDE 2×2 GRID */
.contact-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 65vh;
}

/* Cards */
.contact-card {
    background: linear-gradient(135deg, #111111, #1a1a1a);
    padding: 15px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.contact-card:hover {
    transform: translateY(-5px);
}

/* Icon Circle */
.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 20px auto 15px;
    transition: 0.3s ease;
}

/* WhatsApp */
.contact-icon.whatsapp {
    background: #25D366;
}

/* Gmail (Google Red) */
.contact-icon.gmail {
    background: #D44638;
}

/* Hover border */
.contact-icon:hover {
    transform: scale(1.05);
}

/* Text inside card */
.contact-card p {
    margin: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

/* CONTACT FORM */
.contact-form {
    background: #ffffff1c;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 65vh;
    line-height: 0px
}

.contact-form input,
.contact-form textarea {
    /* width: 100%; */
    padding: 15px;
    /* height: 88px; */
    border-radius: 10px;
    border: 2px solid #ddd;
    font-size: 1rem;
}
.contact-form textarea{
  height: 160px;
  width: 100%;
}

.contact-form input{
    margin: 10px 0p 0px 10px;
}
/* ----------------------------------------------------------footer----------------------------------- */

.desktop-footer {
    background: #1e1d1d;
    padding: 13px 40px;
    color: #cfd6e1;
    margin-top: 0px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left p {
    margin: 4px 0;
    font-size: 14px;
    color: #cbd4e0;
}

.footer-left .designed strong {
    color: #fff;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 15px;
}

.social-icon {
    font-size: 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 50%;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    animation: bounceIcon 3s infinite;
}

.footer-right a {
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.08);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

/* Facebook */
.social-icon.facebook {
    background: #1877F2;
}

/* LinkedIn */
.social-icon.linkedin {
    background: #0A66C2;
}

@keyframes bounceIcon {

    0%,
    92% {
        transform: translateY(0);
    }

    95% {
        transform: translateY(-5px);
    }

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


.whatsapp-float {
    position: fixed;
    bottom: 95px;
    right: 25px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


/* MOBILE */



/* From Uiverse.io by MuhammadHasann */
button {
    position: relative;
    padding: 12px 35px;
    background: #000000;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    border: 3px solid #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 0 #fec1958c;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.star-1 {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
    position: absolute;
    top: 45%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
    position: absolute;
    top: 20%;
    left: 40%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
    position: absolute;
    top: 5%;
    left: 50%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 0 #fffdef);
    z-index: -5;
    transition: all 0.8s ease;
}

button:hover {
    background: black;
    color: #ffffff;
    box-shadow: 0 0 25px gold;
}

button:hover .star-1 {
    position: absolute;
    top: -80%;
    left: -30%;
    width: 25px;
    height: auto;
    filter: drop-shadow(0 0 10px gold);
    z-index: 2;
}

button:hover .star-2 {
    position: absolute;
    top: -25%;
    left: 10%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px gold);
    z-index: 2;
}

button:hover .star-3 {
    position: absolute;
    top: 55%;
    left: 25%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px gold);
    z-index: 2;
}

button:hover .star-4 {
    position: absolute;
    top: 30%;
    left: 80%;
    width: 8px;
    height: auto;
    filter: drop-shadow(0 0 10px gold);
    z-index: 2;
}

button:hover .star-5 {
    position: absolute;
    top: 25%;
    left: 115%;
    width: 15px;
    height: auto;
    filter: drop-shadow(0 0 10px gold);
    z-index: 2;
}

button:hover .star-6 {
    position: absolute;
    top: 5%;
    left: 60%;
    width: 5px;
    height: auto;
    filter: drop-shadow(0 0 10px gold);
    z-index: 2;
}

.fil0 {
    fill: gold;
}