/* ==================================================
                GOOGLE FONT
================================================== */

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


/* ==================================================
                RESET
================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: "Poppins", sans-serif;

    background: #050816;

    color: #ffffff;

    overflow-x: hidden;

}


/* ==================================================
                COMMON
================================================== */

.container {

    width: 100%;

    max-width: 1300px;

    margin: auto;

}


a {

    text-decoration: none;

}


ul {

    list-style: none;

}


/* ==================================================
                HEADER START
================================================== */

.header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(8, 10, 28, .70);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}


.header .container {

    height: 125px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


/* Logo */

.logo {

    font-size: 28px;

    font-weight: 700;

    color: #ffffff;
    

}


.logo span {

    color: #00d9ff;
    padding: 10px

}


/* Navigation */

.nav-links {

    display: flex;

    gap: 35px;

}


.nav-links a {

    color: #ffffff;

    font-size: 16px;

    font-weight: 500;

    position: relative;

    transition: .3s;

}


/* Underline Animation */

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #00d9ff;

    transition: .3s;

}


.nav-links a:hover {

    color: #00d9ff;

}


.nav-links a:hover::after {

    width: 100%;

}


/* ==================================================
                RESPONSIVE
================================================== */

@media(max-width:768px){

    .header .container{

        flex-direction: column;

        justify-content: center;

        gap: 10px;

        height: auto;

        padding: 15px 0;

    }

    .nav-links{

        flex-wrap: wrap;

        justify-content: center;

        gap: 18px;

    }

}


/* ==================================================
                HEADER END
================================================== */

/* ==================================================
                    HERO START
================================================== */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding-top: 100px;

}

.hero-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;

}

.hero-content {

    flex: 1;

}

.hero-tag {

    display: inline-block;

    background: rgba(0, 217, 255, .12);

    border: 1px solid rgba(0, 217, 255, .4);

    color: #00d9ff;

    /* padding: 10px 20px; */

    border-radius: 50px;

    margin-bottom: 25px;

    font-size: 12px;

}

.hero-content h1 {

    font-size: 58px;

    line-height: 1.2;

    margin-bottom: 25px;

}

.hero-content p {

    color: #c8c8c8;

    line-height: 1.8;

    font-size: 17px;

    margin-bottom: 35px;

}

.hero-buttons {

    display: flex;

    gap: 20px;

}

.btn-primary,

.btn-secondary {

    padding: 15px 35px;

    border-radius: 8px;

    transition: .3s;

    font-weight: 600;

}

.btn-primary {

    background: #00d9ff;

    color: #000;

}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow: 0 0 25px rgba(0,217,255,.5);

}

.btn-secondary {

    border: 2px solid #00d9ff;

    color: #00d9ff;

}

.btn-secondary:hover {

    background: #00d9ff;

    color: #000;

}

.hero-image {

    flex: 1;

    display: flex;

    justify-content: center;

}

.hero-image img {

    width: 420px;

    max-width: 100%;

    border-radius: 20px;

    animation: floatImage 4s ease-in-out infinite;

    filter: drop-shadow(0 0 35px rgba(0,217,255,.35));

}

@keyframes floatImage {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-20px);

    }

    100% {

        transform: translateY(0px);

    }

}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {

    .hero-container {

        flex-direction: column-reverse;

        text-align: center;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-content h1 {

        font-size: 42px;

    }

}

@media (max-width: 576px) {

    .hero {

        padding-top: 160px;

    }

    .hero-content h1 {

        font-size: 32px;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .btn-primary,

    .btn-secondary {

        width: 100%;

        text-align: center;

    }

}

/* ==================================================
                    HERO END
================================================== */


/* ==================================================
            ABOUT PREVIEW START
================================================== */

.about-preview {

    padding: 120px 0;

}

.about-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

}

.about-image {

    flex: 1;

    display: flex;

    justify-content: center;

}

.about-image img {

    width: 420px;

    max-width: 100%;

    border-radius: 25px;

    border: 3px solid rgba(0, 217, 255, .15);

    transition: .4s;

    box-shadow: 0 0 40px rgba(0, 217, 255, .20);

}

.about-image img:hover {

    transform: scale(1.03);

    box-shadow: 0 0 60px rgba(0, 217, 255, .35);

}

.about-content {

    flex: 1;

}

.section-tag {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 30px;

    background: rgba(0,217,255,.10);

    color: #00d9ff;

    margin-bottom: 20px;

}

.about-content h2 {

    font-size: 42px;

    margin-bottom: 25px;

}

.about-content p {

    color: #cfcfcf;

    line-height: 1.9;

    margin-bottom: 20px;

}

/* Responsive */

@media(max-width:992px){

    .about-container{

        flex-direction: column;

        text-align: center;

    }

}

@media(max-width:576px){

    .about-preview{

        padding: 80px 0;

    }

    .about-content h2{

        font-size: 32px;

    }

}

/* ==================================================
            ABOUT PREVIEW END
================================================== */


/* ==================================================
                OUR VISION START
================================================== */

.vision {

    padding: 120px 0;

}

.vision-heading {

    text-align: center;

    margin-bottom: 50px;

}

.vision-heading h2 {

    font-size: 42px;

    margin-top: 15px;

}

.vision-content {

    max-width: 950px;

    margin: auto;

    background: rgba(255, 255, 255, 0.03);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(15px);

    border-radius: 20px;

    padding: 50px;

    transition: 0.3s;

}

.vision-content:hover {

    transform: translateY(-8px);

    border-color: rgba(0, 217, 255, 0.3);

    box-shadow: 0 0 30px rgba(0, 217, 255, 0.12);

}

.vision-content p {

    color: #cfcfcf;

    line-height: 1.9;

    margin-bottom: 20px;

    font-size: 16px;

}

.vision-content p:last-child {

    margin-bottom: 0;

}

/* Responsive */

@media (max-width: 768px) {

    .vision {

        padding: 80px 0;

    }

    .vision-heading h2 {

        font-size: 32px;

    }

    .vision-content {

        padding: 30px 20px;

    }

}

/* ==================================================
                OUR VISION END
================================================== */

/* =====================================
        TECHNOLOGIES START
===================================== */

.tech-stack{

    padding:120px 0;

    overflow:hidden;

}

.tech-heading{

    text-align:center;

    margin-bottom:60px;

}

.tech-heading h2{

    font-size:42px;

}

.slider{

    overflow:hidden;

    position:relative;

}

.slide-track{

    display:flex;

    width:calc(180px * 12);

    animation:scrollLeft 30s linear infinite;

}

.circle-box{

    width:140px;

    height:140px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    margin:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.3s;

}

.circle-box:hover{

    transform:scale(1.08);

    box-shadow:0 0 25px rgba(0,217,255,.3);

}

.circle-box img{

    width:70px;

    height:70px;

    object-fit:contain;

}

@keyframes scrollLeft{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

@media(max-width:768px){

    .tech-heading h2{

        font-size:32px;

    }

}

/* =====================================
        TECHNOLOGIES END
===================================== */

/* ===================================================
                    FOOTER START
=================================================== */

.footer {

    margin-top: 120px;

    padding-top: 80px;

    background: linear-gradient(135deg, #050816 0%, #0b1437 100%);

    border-top: 1px solid rgba(255, 255, 255, .08);

    position: relative;

    overflow: hidden;

}

/* Background Glow */

.footer::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(0, 217, 255, .12);

    border-radius: 50%;

    filter: blur(130px);

    top: -120px;

    left: -120px;

}

.footer::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    background: rgba(118, 75, 255, .12);

    border-radius: 50%;

    filter: blur(120px);

    bottom: -100px;

    right: -80px;

}

.footer-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr;

    gap: 70px;

    align-items: start;

}

.footer-name {

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 10px;

}

.footer-designation {

    color: #00d9ff;

    font-size: 18px;

    font-weight: 500;

    margin-bottom: 30px;

    letter-spacing: 1px;

}

.footer-col img {

    width: 180px;

    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 5px solid #00d9ff;

    transition: .4s;

    box-shadow:

        0 0 20px rgba(0, 217, 255, .25),

        0 0 50px rgba(0, 217, 255, .15);

}

.footer-col img:hover {

    transform: scale(1.05);

    box-shadow:

        0 0 30px rgba(0, 217, 255, .45),

        0 0 70px rgba(0, 217, 255, .30);

}

.footer-col h3 {

    font-size: 28px;

    color: #00d9ff;

    margin-bottom: 25px;

}

.footer-col ul {

    list-style: none;

}

.footer-col ul li {

    margin-bottom: 16px;

}

.footer-col ul li a {

    color: #d8d8d8;

    transition: .3s;

    position: relative;

}

.footer-col ul li a:hover {

    color: #00d9ff;

    padding-left: 10px;

}

.footer-col p {

    color: #d2d2d2;

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    line-height: 1.6;

}

.footer-col p i {

    color: #00d9ff;

    font-size: 18px;

}

.footer-icons {

    display: flex;

    gap: 15px;

    margin-top: 30px;

}

.footer-icons a {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #ffffff;

    font-size: 18px;

    transition: .35s;

}

.footer-icons a:hover {

    background: #00d9ff;

    color: #050816;

    transform: translateY(-6px) scale(1.08);

    box-shadow: 0 0 25px rgba(0, 217, 255, .45);

}

.footer-bottom {

    position: relative;

    z-index: 2;

    margin-top: 70px;

    padding: 22px 0;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, .08);

    color: #9ca3af;

    font-size: 14px;

    letter-spacing: .5px;

}

/* ===========================
        RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .footer-wrapper {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 50px;

    }

    .footer-col p {

        justify-content: center;

    }

    .footer-icons {

        justify-content: center;

    }

}

@media (max-width: 576px) {

    .footer-name {

        font-size: 34px;

    }

    .footer-designation {

        font-size: 16px;

    }

    .footer-col img {

        width: 150px;

        height: 150px;

    }

}


/* ===================================================
                Footer END
=================================================== */



/* =====================================================
                ABOUT HERO SECTION START
===================================================== */

.about-hero {

    position: relative;

    width: 100%;

    min-height: 100vh;

    padding-top: 120px;

    background-image:
        linear-gradient(
            rgba(5, 8, 22, 0.75),
            rgba(5, 8, 22, 0.75)
        ),
        url("../assets/images/profile.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    display: flex;

    align-items: center;

}

.about-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(5, 8, 22, 0.65),
        rgba(5, 8, 22, 0.35)
    );

}

.about-hero .container {

    position: relative;

    z-index: 2;

}

.about-hero-content {

    max-width: 750px;

}

.about-hero-content h1 {

    font-size: 68px;

    font-weight: 800;

    line-height: 1.15;

    color: #ffffff;

    text-shadow:

        3px 3px 0 #000,

        6px 6px 15px rgba(0, 0, 0, 0.7),

        0 0 20px rgba(0, 217, 255, 0.2);

}

.about-hero-content h1 span {

    color: #00d9ff;

}

.about-hero-content p {

    margin-top: 30px;

    max-width: 650px;

    font-size: 20px;

    line-height: 1.8;

    color: #d7d7d7;

}

.about-hero-content .btn-primary {

    margin-top: 35px;

    display: inline-block;

}

/* ---------- Responsive ---------- */

@media (max-width: 992px) {

    .about-hero-content h1 {

        font-size: 56px;

    }

}

@media (max-width: 768px) {

    .about-hero {

        min-height: 80vh;

    }

    .about-hero-content {

        text-align: center;

        max-width: 100%;

    }

    .about-hero-content h1 {

        font-size: 42px;

    }

    .about-hero-content p {

        font-size: 17px;

        margin-left: auto;

        margin-right: auto;

    }

}

@media (max-width: 480px) {

    .about-hero-content h1 {

        font-size: 34px;

    }

    .about-hero-content p {

        font-size: 15px;

    }

}

/* =====================================================
                ABOUT HERO SECTION END
===================================================== */

/* =========================================================
   ABOUT SECTION CSS - CLOUDEV WEBSITE
   FILE: about.css
   PURPOSE: Dark 3D About Section Styling
   ========================================================= */

/* ---------------- ABOUT SECTION START ---------------- */

.about-section {
    padding: 90px 20px;
    background: radial-gradient(circle at top, #111827, #05070f);
    color: white;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.about-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    box-shadow: 0 10px 25px rgba(59,130,246,0.4);
    transition: 0.3s;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59,130,246,0.6);
}

/* RIGHT IMAGES */
.about-images {
    position: relative;
    height: 350px;
    flex: 1;
}

.img {
    width: 200px;
    border-radius: 15px;
    position: absolute;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: 0.4s;
}

.img1 { top: 0; left: 40px; transform: rotate(-10deg); }
.img2 { top: 80px; left: 120px; transform: rotate(8deg); }
.img3 { top: 160px; left: 0; transform: rotate(-5deg); }

.img:hover {
    transform: scale(1.05) rotate(0deg);
    z-index: 10;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        height: auto;
    }

    .img {
        position: static;
        margin: 10px;
        width: 80%;
    }
}

/* ---------------- ABOUT SECTION END ---------------- */

/* ================= WHY CHOOSE US SECTION START ================= */

.why-section {
    padding: 120px 20px;
    background: radial-gradient(circle at top, #0b1220, #05070f);
    color: white;
}

.why-container {
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-header h2 {
    font-size: 46px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.why-header p {
    max-width: 700px;
    margin: auto;
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD (PREMIUM GLASS STYLE) */
.why-card {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle glow line */
.why-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 60%);
    opacity: 0;
    transition: 0.4s;
}

.why-card:hover::before {
    opacity: 1;
}

/* hover lift */
.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59,130,246,0.5);
}

/* ICON */
.icon {
    width: 60px;
    height: 60px;
    margin: auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
    width: 40px;
    height: 40px;
}

/* TEXT */
.why-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #e5e7eb;
}

.why-card p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-header h2 {
        font-size: 34px;
    }
}

/* ================= WHY CHOOSE US SECTION END ================= */

/* ================= TESTIMONIAL SECTION START ================= */

.testimonial-section {
    padding: 120px 20px;
    background: #0b1220;
    color: white;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.testimonial-header p {
    color: #9ca3af;
}

/* WRAPPER */
.slider-wrapper {
    overflow: hidden;
    max-width: 1100px;
    margin: auto;
}

/* TRACK (ANIMATION) */
.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 12s linear infinite;
}

/* CARD (WHITE PREMIUM) */
.t-card {
    background: #ffffff;
    color: #111827;
    width: 320px;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    flex-shrink: 0;
    transition: 0.3s;
}

.t-card:hover {
    transform: translateY(-5px);
}

/* STARS */
.stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 10px;
}

/* TEXT */
.t-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.t-card h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.t-card span {
    font-size: 12px;
    color: #6b7280;
}

/* ANIMATION (RIGHT → LEFT SCROLL) */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .t-card {
        width: 280px;
    }

    .testimonial-header h2 {
        font-size: 32px;
    }
}

/* ================= TESTIMONIAL SECTION END ================= */

/* ================= DROPDOWN MENU Start================= */

.nav-links .dropdown {
    position: relative;
}

/* hidden menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #111827;
    min-width: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* show on hover */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
}

/* hover effect */
.dropdown-menu li a:hover {
    background: #1f2937;
    color: #3b82f6;
}

/* ================= DROPDOWN MENU END================= */

/* ================= SERVICES BANNER START ================= */

.service-banner {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: #0b1220;
    color: white;
    overflow: hidden;
}

/* 🔥 animated glow background */
.service-banner .banner-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 60%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(40px);
    animation: floatGlow 6s ease-in-out infinite;
}

/* TEXT LAYER */
.banner-content {
    position: relative;
    z-index: 2;
}

/* 3D TITLE */
.banner-content h1 {
    font-size: 60px;
    letter-spacing: 1px;

    text-shadow:
        0 2px 0 #1e293b,
        0 10px 30px rgba(0,0,0,0.6);

    transform: perspective(800px) rotateX(8deg);
    margin-bottom: 10px;
}

/* SUB TEXT */
.banner-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 25px;
}

/* BADGES */
.badge-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-row span {
    padding: 6px 12px;
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 20px;
    font-size: 12px;
    color: #cbd5e1;
    background: rgba(17,24,39,0.6);
    backdrop-filter: blur(6px);
}

/* ANIMATION */
@keyframes floatGlow {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(20px);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 36px;
        transform: none;
    }
}

/* ================= SERVICES BANNER END ================= */

/* ================= SERVICES SECTION START ================= */

.services-section {
    background: #0b1220;
    padding: 80px 20px;
}

/* ROW LAYOUT */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
}

/* reverse */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGE */
.service-img {
    flex: 1;
}

.service-img img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: 0.3s;
}

.service-img img:hover {
    transform: scale(1.03);
}

/* TEXT */
.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #ffffff;
}

.service-text p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .service-text h2 {
        font-size: 28px;
    }
}

/* ================= SERVICES SECTION END ================= */

/* ================= HOW WE WORK START ================= */

.how-we-work {
    padding: 100px 20px;
    background: #0b1220;
    color: white;
    text-align: center;
}

/* TITLE */
.section-title h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-title p {
    color: #94a3b8;
    margin-bottom: 60px;
}

/* FLOW GRID */
.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* STEP CARD */
.process-step {
    background: rgba(17,24,39,0.6);
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 14px;
    padding: 25px 15px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: rgba(59,130,246,0.5);
}

/* NUMBER */
.process-step span {
    display: block;
    font-size: 22px;
    color: #3b82f6;
    margin-bottom: 10px;
    font-weight: bold;
}

/* TEXT */
.process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .process-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-flow {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }
}

/* ================= HOW WE WORK END ================= */

/* ================= BENEFITS SECTION START ================= */

.benefits-section {
    padding: 110px 20px;
    background: #0b1220;
    color: white;
}

/* CONTAINER */
.benefits-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.benefits-left {
    flex: 1;
}

.benefits-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.benefits-left p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* BUTTON */
.benefits-left button {
    padding: 12px 20px;
    border: none;
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.benefits-left button:hover {
    background: #2563eb;
}

/* RIGHT */
.benefits-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* DOT */
.benefit-item span {
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59,130,246,0.8);
}

/* TEXT */
.benefit-item p {
    color: #cbd5e1;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .benefit-item {
        justify-content: center;
    }
}

/* ================= BENEFITS SECTION END ================= */

/* ================= CTA SECTION START ================= */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 17px;
    color: #d1d5db;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn {
    background: #ffffff;
    color: #0f172a;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

.secondary-btn {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #0f172a;
}

/* Responsive */

@media (max-width: 768px) {

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 15px;
    }

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

    .cta-btn {
        width: 250px;
        text-align: center;
    }

}

/* ================= CTA SECTION END ================= */


/* ================= PROJECT HERO START ================= */

.project-hero{

    position:relative;

    width:100%;

    height:700px;

    overflow:hidden;

}

.project-hero img{

    width:100%;

    height:100%;

    object-fit:cover;

    transform:scale(1.08);

    transition:transform .8s ease;

}

.project-hero:hover img{

    transform:scale(1.12);

}

/* DARK CINEMATIC OVERLAY */

.project-overlay{

    position:absolute;

    inset:0;

    z-index:1;

    background:

    linear-gradient(
        rgba(5,10,20,.25),
        rgba(5,10,20,.65),
        rgba(5,10,20,.92)
    );

}

/* TEXT */

.project-content{

    position:absolute;

    z-index:2;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    text-align:center;

    width:90%;

    max-width:900px;

}

.project-content span{

    display:inline-block;

    color:#4da3ff;

    font-size:15px;

    letter-spacing:5px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.project-content h1{

    color:#fff;

    font-size:72px;

    line-height:1.08;

    font-weight:800;

    text-shadow:

        0 2px 0 rgba(255,255,255,.08),

        0 8px 20px rgba(0,0,0,.45),

        0 20px 50px rgba(0,0,0,.75);

    margin-bottom:25px;

}

.project-content p{

    color:#d1d5db;

    font-size:19px;

    line-height:1.8;

    max-width:700px;

    margin:auto;

    text-shadow:

        0 3px 10px rgba(0,0,0,.6);

}

/* MOBILE */

@media(max-width:768px){

    .project-hero{

        height:420px;

    }

    .project-content h1{

        font-size:40px;

    }

    .project-content p{

        font-size:15px;

    }

}

/* ================= PROJECT HERO END ================= */

/* ================= PROJECTS SHOWCASE START ================= */

.projects-showcase{

    background:#050816;

    padding:100px 20px;

}

.project-card{

    max-width:1200px;

    margin:0 auto 50px;

    display:flex;

    align-items:center;

    gap:50px;

}

.project-card.reverse{

    flex-direction:row-reverse;

}

.project-left{

    flex:0 0 350px;

    min-height:220px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:30px;

    border-radius:24px;

    background:linear-gradient(135deg,#1d4ed8,#0f172a);

    box-shadow:

    0 20px 50px rgba(0,0,0,.35);

}

.project-left h2{

    color:#fff;

    text-align:center;

    font-size:34px;

    line-height:1.3;

}

.project-right{

    flex:1;

}

.project-right p{

    color:#cbd5e1;

    font-size:17px;

    line-height:1.9;

    margin-bottom:25px;

}

.project-tech{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:30px;

}

.project-tech span{

    padding:8px 18px;

    border-radius:30px;

    background:#111827;

    border:1px solid rgba(96,165,250,.25);

    color:#60a5fa;

    font-size:14px;

}

.project-buttons{

    display:flex;

    gap:15px;

}

.project-buttons a{

    text-decoration:none;

    color:#fff;

    background:#2563eb;

    padding:12px 24px;

    border-radius:8px;

    transition:.3s;

}

.project-buttons a:hover{

    background:#1d4ed8;

    transform:translateY(-3px);

}

@media(max-width:992px){

    .project-card,

    .project-card.reverse{

        flex-direction:column;

    }

    .project-left{

        width:100%;

        flex:auto;

    }

    .project-left h2{

        font-size:28px;

    }

}

/* ================= PROJECTS SHOWCASE END ================= */


/* ================= PROJECT PROCESS START ================= */

.project-process{

    padding:120px 20px;

    background:#08111f;

    overflow:hidden;

}

.process-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto 70px;

}

.process-heading span{

    color:#4da3ff;

    font-size:14px;

    letter-spacing:4px;

    text-transform:uppercase;

}

.process-heading h2{

    color:#fff;

    font-size:52px;

    margin:18px 0;

}

.process-heading p{

    color:#b8c4d4;

    line-height:1.8;

    font-size:17px;

}

.process-wrapper{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.process-item{

    position:relative;

    padding:35px 25px;

    border-radius:20px;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.01)
    );

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}

.process-item:hover{

    transform:translateY(-8px);

    border-color:#2563eb;

    box-shadow:0 20px 40px rgba(37,99,235,.18);

}

.process-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

    background:rgba(37,99,235,.12);

    border:1px solid rgba(37,99,235,.35);

}

.process-item h3{

    color:#fff;

    margin-bottom:15px;

    font-size:24px;

}

.process-item p{

    color:#b8c4d4;

    line-height:1.8;

    font-size:15px;

}

/* Connector Line */

.process-item::after{

    content:"";

    position:absolute;

    width:25px;

    height:2px;

    background:#2563eb;

    top:50%;

    right:-25px;

}

.process-item:last-child::after{

    display:none;

}

@media(max-width:1100px){

    .process-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

    .process-item::after{

        display:none;

    }

}

@media(max-width:650px){

    .process-wrapper{

        grid-template-columns:1fr;

    }

    .process-heading h2{

        font-size:36px;

    }

}

/* ================= PROJECT PROCESS END ================= */


/* ================= FINAL CTA START ================= */

.final-cta{

    position:relative;

    width:100%;

    padding:140px 20px;

    background:

    url("img/final-cta-bg.jpg")

    center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        rgba(4,10,20,.78),

        rgba(4,10,20,.88)

    );

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;

}

.cta-content span{

    color:#4da3ff;

    font-size:15px;

    letter-spacing:5px;

    text-transform:uppercase;

}

.cta-content h2{

    color:#fff;

    font-size:64px;

    line-height:1.15;

    margin:22px 0;

    text-shadow:

        0 10px 35px rgba(0,0,0,.45);

}

.cta-content p{

    color:#d1d5db;

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin:0 auto 45px;

}

.cta-btn{

    display:inline-block;

    padding:18px 42px;

    background:#2563eb;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    box-shadow:

        0 10px 30px rgba(37,99,235,.35);

}

.cta-btn:hover{

    transform:translateY(-5px);

    background:#1d4ed8;

}

@media(max-width:768px){

    .final-cta{

        padding:90px 20px;

    }

    .cta-content h2{

        font-size:40px;

    }

    .cta-content p{

        font-size:15px;

    }

}

/* ================= FINAL CTA END ================= */

/* ================= CONTACT HERO START ================= */

.contact-hero{

    position:relative;

    background:#050816;

    padding:110px 0;

    overflow:hidden;

}

/* Glow */

.contact-glow{

    position:absolute;

    width:450px;

    height:450px;

    border-radius:50%;

    filter:blur(120px);

}

.glow-left{

    background:#2563eb33;

    top:-150px;

    left:-120px;

}

.glow-right{

    background:#7c3aed22;

    bottom:-180px;

    right:-120px;

}

/* Container */

.contact-container{

    width:90%;

    max-width:1300px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    position:relative;

    z-index:2;

}

/* Image */

.contact-image{

    flex:1;

    text-align:center;

}

.contact-image img{

    width:100%;

    max-width:520px;

    filter:drop-shadow(

        0 35px 60px rgba(0,0,0,.45)

    );

    animation:floatImage 5s ease-in-out infinite;

}

/* Text */

.contact-content{

    flex:1;

}

.contact-tag{

    color:#60a5fa;

    letter-spacing:4px;

    text-transform:uppercase;

    font-size:14px;

}

.contact-content h1{

    color:#ffffff;

    font-size:62px;

    line-height:1.1;

    margin:20px 0;

}

.contact-content p{

    color:#cbd5e1;

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}

/* Button */

.contact-btn{

    display:inline-block;

    padding:16px 36px;

    background:#2563eb;

    color:#ffffff;

    text-decoration:none;

    border-radius:50px;

    transition:.3s;

    box-shadow:

        0 10px 30px rgba(37,99,235,.30);

}

.contact-btn:hover{

    transform:translateY(-4px);

    background:#1d4ed8;

}

/* Floating */

@keyframes floatImage{

    0%,100%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

}

/* Mobile */

@media(max-width:992px){

    .contact-container{

        flex-direction:column;

        text-align:center;

        gap:50px;

    }

    .contact-content h1{

        font-size:42px;

    }

}

@media(max-width:576px){

    .contact-content h1{

        font-size:34px;

    }

}

/* ================= CONTACT HERO END ================= */

/* ================= CONTACT FORM START ================= */

.contact-section{

    padding:120px 20px;

    background:#08111f;

}

.contact-wrapper{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

}

.contact-details{

    padding:45px;

    border-radius:24px;

    background:

    linear-gradient(

    135deg,

    rgba(255,255,255,.04),

    rgba(255,255,255,.01)

    );

    border:1px solid rgba(255,255,255,.06);

}

.contact-details span{

    color:#60a5fa;

    letter-spacing:3px;

    font-size:14px;

}

.contact-details h2{

    color:#fff;

    font-size:42px;

    margin:20px 0;

}

.contact-details p{

    color:#cbd5e1;

    line-height:1.8;

}

.info-box{

    margin-top:35px;

}

.info-box h4{

    color:#fff;

    margin-bottom:8px;

}

.contact-form-box{

    padding:45px;

    border-radius:24px;

    background:

    linear-gradient(

    135deg,

    rgba(255,255,255,.04),

    rgba(255,255,255,.01)

    );

    border:1px solid rgba(255,255,255,.06);

}

.contact-form-box form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form-box input,

.contact-form-box textarea{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    padding:16px;

    border-radius:12px;

    outline:none;

}

.contact-form-box input:focus,

.contact-form-box textarea:focus{

    border-color:#2563eb;

}

.contact-form-box button{

    background:#2563eb;

    color:#fff;

    border:none;

    padding:18px;

    border-radius:12px;

    cursor:pointer;

    transition:.3s;

}

.contact-form-box button:hover{

    background:#1d4ed8;

}

@media(max-width:992px){

    .contact-wrapper{

        grid-template-columns:1fr;

    }

}

/* ================= CONTACT FORM END ================= */