/* ===========================
   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:#06070b;
    color:#ffffff;
    overflow-x:hidden;
}


/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#06070b;
}

::-webkit-scrollbar-thumb{
    background:#4d6fff;
    border-radius:50px;
}

/* ===========================
   CURSOR
=========================== */

/* ===========================
   PREMIUM MOUSE TRAIL
=========================== */

body{
    cursor: none;
}

#cursor-trail{
    position:fixed;
    left:0;
    top:0;
    width:0;
    height:0;
    pointer-events:none;
    z-index:99999;
}

.trail{

    position:fixed;

    width:14px;
    height:14px;

    border-radius:50%;

    pointer-events:none;

    transform:translate(-50%,-50%);

    background:#5b7cff;

    box-shadow:
        0 0 10px rgba(91,124,255,.8),
        0 0 20px rgba(91,124,255,.7),
        0 0 40px rgba(91,124,255,.5);

    transition:
        width .25s,
        height .25s,
        background .25s,
        box-shadow .25s;

    will-change: transform;
}

.trail.hover{

    width:28px;
    height:28px;

    background:#ffffff;

    box-shadow:
        0 0 20px #ffffff,
        0 0 45px #5b7cff,
        0 0 80px #5b7cff;

}

/* ===========================
   LOADER
=========================== */

#loader{
    position:fixed;
    inset:0;
    background:#06070b;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

#loader h1{
    font-size:50px;
    color:white;
    letter-spacing:5px;
}

/* ===========================
   BACKGROUND GLOW
=========================== */

.background-glow{
    position:fixed;
    top:100px;
    left:-300px;
    width:700px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(circle,#4d6fff55,transparent 70%);
    filter:blur(120px);
    z-index:-2;
    animation:glowMove 12s infinite alternate ease-in-out;
}

@keyframes glowMove{

0%{
transform:translate(0,0);
}

50%{
transform:translate(300px,200px);
}

100%{
transform:translate(650px,100px);
}

}

/* ===========================
   NAVBAR
=========================== */

/* ===== PREMIUM NAVBAR ===== */

.navbar{
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 900px;
    height: 85px;

    padding: 0 35px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(15,18,30,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 70px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);

    z-index: 999;
}

/* Logo */
.logo img{
    width: 80px;
    height: 40px;
    object-fit: contain;
    display: block;
}
/* Menu */

.nav-links{
    display:flex;
    gap:45px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.35s;
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    border-radius:10px;
    background:#5B7CFF;
    transition:.35s;
}

.nav-links a:hover{
    color:#5B7CFF;
}

.nav-links a:hover::after{
    width:100%;
}

/* Button */

.nav-btn{
    text-decoration:none;
    color:#fff;
    padding:15px 34px;
    border-radius:40px;

    background:linear-gradient(135deg,#5B7CFF,#7B61FF);

    font-weight:600;

    transition:.4s;
}

.nav-btn:hover{

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(91,124,255,.45);
}

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width: 130px;
    height:auto;
    display:block;
}

nav ul{

display:flex;
gap:40px;

list-style:none;

}

nav ul li a{

    color:white;

    text-decoration:none;

    font: size 40px;     /* Increase text size */

    font-weight:600;

    letter-spacing:0.5px;

    transition:0.4s ease;

}

nav ul li a:hover{

color:#5b7cff;

}

.nav-btn{

padding:10px 28px;

background:#5b7cff;

border:none;

color:white;

border-radius:40px;

cursor:pointer;

font-size:15px;

transition:.4s;

}

.nav-btn:hover{

transform:translateY(-4px);

box-shadow:0 10px 40px rgba(91,124,255,.4);

}

/* ===========================
   HERO
=========================== */
/* ======================================
   HERO SECTION
====================================== */

.Home{
    width:92%;
    max-width:1600px;
    margin:80px auto;
    display:grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap:70px;
    align-items:center;
    min-height:90vh;
}

/* ======================
LEFT SIDE
====================== */

.hero-left{

    position:relative;

    height:720px;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

/* Background Glow */

.hero-left::before{

    content:"";

    position:absolute;

    width:650px;
    height:650px;

    background:#355BFF;

    opacity:.18;

    filter:blur(180px);

    border-radius:50%;

    z-index:0;

}

/* Logo */

.hero-image{

    width:420px;

    position:relative;

    z-index:2;

    animation:float 5s ease-in-out infinite;

}

.hero-image img{

    width:100%;

    display:block;

    filter:drop-shadow(0 20px 80px rgba(79,140,255,.35));

}

/* Floating Cards */

.floating-card{

    position:absolute;

    width:190px;

    padding:22px;

    border-radius:24px;

    background:rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    z-index:3;

    animation:cardFloat 4s ease-in-out infinite;

}

.floating-card h2{

    color:#5B7CFF;

    font-size:34px;

    margin-bottom:8px;

}

.floating-card p{

    color:#ddd;

    font-size:15px;

}

/* Positions */

.card1{

    top:70px;

    left:20px;

}

.card2{

    bottom:70px;

    left:40px;

}

.card3{

    top:100px;

    right:20px;

}

.card4{

    bottom:80px;

    right:30px;

}

/* ======================
RIGHT SIDE
====================== */

.hero-enquiry{

    width:100%;

    max-width:430px;

    justify-self:center;

    background:rgba(20,22,38,.82);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:38px;

    box-shadow:0 25px 70px rgba(0,0,0,.45);

    position:relative;

    overflow:hidden;

}

/* Blue Glow */

.hero-enquiry::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:#4F8CFF;

    opacity:.15;

    filter:blur(140px);

    top:-100px;

    right:-100px;

}

/* Header */

.enquiry-header{

    position:relative;

    z-index:2;

}

.enquiry-tag{

    color:#7BA4FF;

    font-size:13px;

    letter-spacing:2px;

    font-weight:700;

}

.enquiry-header h2{

    color:#fff;

    font-size:34px;

    margin:15px 0;

}

.enquiry-header p{

    color:#b6b6b6;

    line-height:1.6;

    margin-bottom:25px;

}

/* Trust Box */

.trust-box{

    padding:15px;

    border-radius:15px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:white;

    margin-bottom:22px;

}

/* Form */

.hero-enquiry form{

    display:flex;

    flex-direction:column;

    gap:16px;

    position:relative;

    z-index:2;

}

.hero-enquiry input,

.hero-enquiry select{

    width:100%;

    height:58px;

    padding:0 20px;

    border:none;

    outline:none;

    border-radius:15px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:rgb(250, 248, 248);

    font-size:15px;

    box-sizing:border-box;

}

.hero-enquiry input::placeholder{

    color:#9da5b8;

}

.hero-enquiry button{

    height:60px;

    border:none;

    border-radius:50px;

    background:linear-gradient(135deg,#4F8CFF,#6D4DFF);

    color:white;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.35s;

}

.hero-enquiry button:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(79,140,255,.4);

}

/* Animations */

@keyframes float{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-18px);
    }

}

@keyframes cardFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

}

/* Mobile */

@media(max-width:1100px){

.Home{

    grid-template-columns:1fr;

    gap:50px;

}

.hero-left{

    height:600px;

}

.hero-enquiry{

    max-width:500px;

    margin:auto;

}

}

/* ===========================
   SECTIONS
=========================== */

section{

padding:120px 8%;

}

.section-title{

font-size:52px;

text-align:center;

margin-bottom:70px;

}
/*==========================
Portfolio Marquee
==========================*/

.showcase{

padding:120px 0;

background:#070914;

overflow:hidden;

}

.section-title{

text-align:center;

font-size:55px;

margin-bottom:70px;

color:white;

}

.marquee{

overflow:hidden;

margin-bottom:35px;

}

.track{

display:flex;

gap:30px;

width:max-content;

animation:scrollLeft 35s linear infinite;

}

.reverse .track{

animation:scrollRight 35s linear infinite;

}

.track img{

width:420px;

height:260px;

object-fit:cover;

border-radius:22px;

transition:.4s;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.track img:hover{

transform:scale(1.06);

}

/* Left */

@keyframes scrollLeft{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

/* Right */

@keyframes scrollRight{

0%{

transform:translateX(-50%);

}

100%{

transform:translateX(0);

}

}

/*==============================
    SERVICES SECTION
==============================*/

.services-section {
    position: relative;
    background: #070B14;
    padding: 120px 8%;
    overflow: hidden;
}

/* Background Glow */

.services-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle,
            rgba(72, 117, 255, .18),
            transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.services-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(0, 195, 255, .12),
            transparent 70%);
    bottom: -180px;
    left: -150px;
    z-index: 0;
}

/*==============================
      SECTION TITLE
==============================*/

.section-title {
    text-align: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 2;
}

.section-title span {

    color: #fbfbfe;
    letter-spacing: 4px;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.section-title h2 {

    font-size: 56px;
    color: white;
    margin: 20px 0;
    font-weight: 700;
    line-height: 1.1;
}

.section-title p {

    color: #B7C0D8;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    font-size: 18px;
}

/*==============================
      SERVICE ROW
==============================*/

.service {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

    min-height: 100vh;

    z-index: 2;
}

/* Alternate Layout */

.service-right {

    flex-direction: row-reverse;

}

/*==============================
        TEXT
==============================*/

.service-text {

    width: 50%;
}

.service-text span {

    color: #4E7DFF;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 3px;
}

.service-text h1 {

    color: white;

    font-size: 78px;

    line-height: .95;

    margin: 25px 0;

    font-weight: 800;
}

.service-text p {

    color: #AEB6C8;

    font-size: 18px;

    line-height: 1.9;

    max-width: 520px;

    margin-bottom: 40px;
}

.service-text a {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 32px;

    color: white;

    text-decoration: none;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50px;

    background: rgba(255,255,255,.04);

    transition: .35s;
}

.service-text a:hover {

    background: #4E7DFF;

    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(78,125,255,.35);
}

/*==============================
      IMAGE SIDE
==============================*/

.service-image {

    width: 50%;

    display: flex;

    justify-content: center;

    align-items: center;
}

.service-image img {

    width: 100%;

    max-width: 620px;

    border-radius: 30px;

    transition: .5s;

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 80px rgba(70,120,255,.18);
}

.service-image img:hover {

    transform: scale(1.05);

    box-shadow:
        0 35px 80px rgba(0,0,0,.55),
        0 0 120px rgba(70,120,255,.35);
}

/*==============================
      DIVIDER
==============================*/

.service:not(:last-child)::after {

    content: "";

    position: absolute;

    bottom: -50px;

    left: 50%;

    transform: translateX(-50%);

    width: 85%;

    height: 1px;

    background: rgba(255,255,255,.06);
}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:1100px){

.service,
.service-right{

    flex-direction:column;

    min-height:auto;

    padding:120px 0;

}

.service-text,
.service-image{

    width:100%;
}

.service-text{

    text-align:center;

}

.service-text p{

    margin:auto auto 35px;

}

.service-image img{

    max-width:100%;
}

.service-text h1{

    font-size:58px;

}

.section-title h2{

    font-size:42px;
}

}

@media(max-width:768px){

.section-title h2{

    font-size:34px;
}

.service-text h1{

    font-size:42px;
}

.service-text p{

    font-size:16px;
}

}

/* ===========================
   PORTFOLIO
=========================== */

.featured-works{

    background:#05070F;
    padding:120px 8%;
    overflow:hidden;
    position:relative;

}

.section-heading{

    text-align:center;
    margin-bottom:80px;

}

.section-heading span{

    color:#4E7DFF;
    letter-spacing:4px;
    font-size:14px;
    text-transform:uppercase;

}

.section-heading h2{

    color:white;
    font-size:58px;
    margin:15px 0;

}

.section-heading p{

    color:#a9b3c5;
    max-width:650px;
    margin:auto;

}

.masonry-grid{

    column-count:3;
    column-gap:30px;

}

.work-card{

    position:relative;
    overflow:hidden;
    border-radius:24px;
    margin-bottom:30px;
    break-inside:avoid;
    cursor:pointer;
    transition:.4s;

}

.work-card img{

    width:100%;
    display:block;
    border-radius:24px;
    transition:.6s;

}

.work-card:hover img{

    transform:scale(1.08);

}

.work-card::before{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(transparent,
    rgba(0,0,0,.85));
    opacity:0;
    transition:.4s;

}

.work-card:hover::before{

    opacity:1;

}

.overlay{

    position:absolute;
    left:30px;
    bottom:20px;
    opacity:0;
    transform:translateY(40px);
    transition:.5s;
    z-index:2;

}

.work-card:hover .overlay{

    opacity:1;
    transform:translateY(0);

}

.overlay h3{

    color:white;
    font-size:30px;
    margin-bottom:10px;

}

.overlay p{

    color:#9ab0ff;

}

.work-card:hover{

    box-shadow:

    0 20px 60px rgba(0,0,0,.5),

    0 0 45px rgba(90,130,255,.35);

}

.tall img{

    height:620px;
    object-fit:cover;

}

.work-card:not(.tall) img{

    height:420px;
    object-fit:cover;

}

@media(max-width:1000px){

.masonry-grid{

column-count:2;

}

}

@media(max-width:700px){

.masonry-grid{

column-count:1;

}

.section-heading h2{

font-size:42px;

}

}
/*==========================================
    TRUSTED BOX
==========================================*/

.trusted-box{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:35px;
}

.trusted-box span{

    position:relative;

    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:16px 38px;

    border-radius:50px;

    color:#ffffff;

    font-size:18px;
    font-weight:600;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    overflow:hidden;

    box-shadow:
        0 8px 30px rgba(0,0,0,.25),
        inset 0 1px 1px rgba(255,255,255,.18);

    transition:.4s ease;
}

/* Animated glossy shine */
.trusted-box span::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    animation:shineMove 4s linear infinite;
}

.trusted-box span:hover{

    transform:translateY(-5px) scale(1.04);

    border-color:#5b7cff;

    box-shadow:
        0 0 25px rgba(91,124,255,.45),
        0 0 60px rgba(91,124,255,.20);

}

.trusted-box i{

    color:#5b7cff;
    font-size:20px;

}

@keyframes shineMove{

    100%{

        left:160%;

    }

}
/*==========================
 CLIENTS SECTION
===========================*/
.clients-section h2{
    width:100%;
    text-align:center;
    font-size:60px;
    color:#fff;
    font-weight:700;
    margin:20px auto;
}


.clients-glow{

    position:absolute;
    width:700px;
    height:700px;
    background:#4b6bff;
    filter:blur(220px);
    opacity:.12;
    left:50%;
    top:40%;
    transform:translate(-50%,-50%);

}
.clients-section .container{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}


.section-tag{

    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#5b7cff;
    font-weight:600;
    margin-bottom:20px;
    backdrop-filter:blur(15px);

}

.clients-section p{

    max-width:750px;
    margin:auto;
    color:#b8b8b8;
    line-height:32px;
    margin-bottom:60px;

}

.clients-image-box{

    position:relative;
    padding:35px;
    border-radius:30px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    overflow:hidden;

    transition:.5s;

    animation:floatBox 5s ease-in-out infinite;

}

.clients-image-box::before{

    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(91,124,255,.18),
        transparent
    );

    transform:translateX(-100%);
    animation:shine 5s linear infinite;

}

.clients-image-box:hover{

    transform:translateY(-10px);

    border-color:#5b7cff;

    box-shadow:
        0 0 30px rgba(91,124,255,.25),
        0 0 80px rgba(91,124,255,.15);

}

.clients-image-box img{

    width:100%;
    display:block;
    border-radius:18px;
    transition:.5s;

}

.clients-image-box:hover img{

    transform:scale(1.02);

}

@keyframes shine{

    100%{

        transform:translateX(100%);

    }

}

@keyframes floatBox{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

/* ===========================
   CONTACT
=========================== */

.contact{

text-align:center;

}

.contact h2{

font-size:56px;

margin-bottom:40px;

}

.contact button{

padding:18px 45px;

font-size:18px;

border:none;

background:#5b7cff;

border-radius:50px;

color:white;

cursor:pointer;

transition:.4s;

}

.contact button:hover{

transform:translateY(-8px);

box-shadow:0 20px 60px rgba(91,124,255,.45);

}

/* ===========================
   FOOTER
=========================== */
/*==============================
        MODERN FOOTER
===============================*/

.contact-section{

    position:relative;
    overflow:hidden;

    padding:120px 30px 70px;

    background:#070914;

}

/* Blue Glow */

.contact-section::before{

content:"";

position:absolute;

width:700px;
height:700px;

background:#4b7cff;

filter:blur(200px);

opacity:.18;

left:50%;

top:-300px;

transform:translateX(-50%);

}

/* Glass Card */

.contact-card{

position:relative;

max-width:1100px;

margin:auto;

padding:80px 60px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:35px;

text-align:center;

z-index:5;

box-shadow:0 30px 80px rgba(0,0,0,.4);

}

.contact-card h2{

font-size:58px;

color:#fff;

margin-bottom:20px;

}

.contact-card p{

font-size:20px;

color:#bbb;

max-width:700px;

margin:auto;

line-height:1.8;

}

/* Button */

.contact-btn{

display:inline-flex;

align-items:center;

gap:15px;

margin-top:45px;

padding:18px 45px;

border-radius:100px;

background:linear-gradient(90deg,#4f8cff,#7d5cff);

color:#fff;

font-size:18px;

font-weight:700;

text-decoration:none;

transition:.4s;

box-shadow:0 0 40px rgba(79,140,255,.35);

}

.contact-btn:hover{

transform:translateY(-8px);

box-shadow:0 0 70px rgba(79,140,255,.7);

}

/* Contact Cards */

.footer-info{

display:flex;

justify-content:center;

gap:25px;

margin-top:70px;

flex-wrap:wrap;

}

.info-box{

width:260px;

padding:30px;

border-radius:25px;

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.07);

transition:.4s;

}

.info-box:hover{

transform:translateY(-10px);

border-color:#4f8cff;

}

.info-box i{

font-size:32px;

color:#4f8cff;

margin-bottom:15px;

}

.info-box h4{

color:#fff;

margin-bottom:10px;

}

.info-box p{

color:#9d9d9d;

font-size:15px;

}

/* ===============================
   SOCIAL ICONS
================================== */

.social-icons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin-top:35px;
}

.social-icons a{
    width:55px;
    height:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#202432;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50%;
    color:#fff;
    font-size:22px;
    text-decoration:none;
    transition:0.4s ease;
}

.social-icons a:hover{
    transform:translateY(-8px) scale(1.1);
    background:#5b7cff;
    box-shadow:0 0 25px rgba(91,124,255,.5);
}

.social-icons a:hover:nth-child(1){
    background:#1877F2;
}

.social-icons a:hover:nth-child(2){
    background:#E4405F;
}

.social-icons a:hover:nth-child(3){
    background:#000;
}

.social-icons a:hover:nth-child(4){
    background:#25D366;
}

/* Divider */

.footer-bottom{

margin-top:80px;

padding-top:40px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

}

.footer-bottom h2{

font-size:40px;

color:white;

margin-bottom:10px;

}

.footer-bottom p{

color:#888;

}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1100px){

.hero{

flex-direction:column;

text-align:center;

}

.hero-left{

width:100%;

}

.hero-right{

grid-template-columns:1fr;

}

.service-container{

grid-template-columns:repeat(2,1fr);

}

.about{

flex-direction:column;

text-align:center;

}

.portfolio-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

nav{

padding:15px 20px;

}

nav ul{

display:none;

}

.hero h1{

font-size:48px;

}

.section-title{

font-size:38px;

}

.service-container{

grid-template-columns:1fr;

}

.contact-section{

    position:relative;
    overflow:hidden;

    padding:120px 20px 70px;

    background:#070914;

    text-align:center;
}

/* Background Glow */

.footer-glow{

    position:absolute;

    width:500px;
    height:500px;

    background:#4062ff;

    opacity:.12;

    filter:blur(170px);

    border-radius:50%;

    top:-120px;
    left:50%;

    transform:translateX(-50%);
}

/* Glass Card */

.contact-card{

    position:relative;

    max-width:760px;

    margin:auto;

    padding:70px 50px;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    z-index:2;
}

.contact-card h2{

    color:#fff;

    font-size:48px;

    margin-bottom:20px;
}

.contact-card p{

    color:#bbb;

    font-size:18px;

    line-height:1.8;

    margin-bottom:45px;
}

/* Button */

.contact-btn{

    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:18px 42px;

    border-radius:50px;

    background:linear-gradient(135deg,#4F8CFF,#6D4DFF);

    color:#fff;

    text-decoration:none;

    font-weight:700;

    font-size:18px;

    transition:.35s;
}

.contact-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 45px rgba(79,140,255,.45);
}

.contact-btn span{

    transition:.35s;
}

.contact-btn:hover span{

    transform:translateX(8px);
}

/* Social Icons */

.footer-icons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;
}

.footer-icons a{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

    transition:.35s;
}

.footer-icons a:hover{

    background:#4F8CFF;

    transform:translateY(-8px);
}

/* Divider */

.footer-bottom{

    margin-top:90px;
}

.line{

    width:120px;

    height:4px;

    margin:auto;

    border-radius:10px;

    background:linear-gradient(90deg,#4F8CFF,#6D4DFF);

    margin-bottom:30px;
}

.footer-bottom h2{

    color:#fff;

    font-size:40px;

    margin-bottom:10px;
}

.footer-bottom p{

    color:#888;

    font-size:18px;
}



/* Scroll Button */

.scroll-top{

    position:fixed;

    right:35px;

    bottom:35px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:linear-gradient(135deg,#4F8CFF,#6D4DFF);

    color:#fff;

    text-decoration:none;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

    transition:.35s;
}

.scroll-top:hover{

    transform:translateY(-6px);
}