* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #f4f6f8;
}



/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #0f172a;
    padding: 15px 40px;

    /* 🔥 SHADOW */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.navbar {
    position: fixed;        /* 🔥 IMPORTANT */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;          /* سب کے اوپر رہے */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 15px 40px;
}
.nav-links a:hover,
.nav-links a.active{
    color:#38bdf8;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f172a;
    padding: 15px 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #38bdf8;
    font-size: 22px;
    font-weight: bold;
}

.logo i {
    font-size: 26px;
}

/* Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    color: #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.nav-links li a i {
    font-size: 18px;
}

/* Text */
.nav-links li a span {
    font-size: 14px;
}

/* Animated underline */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: #38bdf8;
    transition: 0.3s ease;
    border-radius: 5px;
}

/* Hover Effects */
.nav-links li a:hover {
    color: #38bdf8;
    transform: translateY(-4px);
}

.nav-links li a:hover::after {
    width: 100%;
}
/* HERO SECTION */
.hero {
    position: relative;
    height: 90vh;
    background: linear-gradient(135deg, #020617, #0f172a, #020617);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 0 20px;
}

/* Glow Effect */
.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #38bdf8, transparent 60%);
    filter: blur(120px);
    animation: glowMove 6s infinite alternate;
}

@keyframes glowMove {
    0% { transform: translate(-100px, -50px); }
    100% { transform: translate(100px, 50px); }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Heading */
.hero-content h1 {
    font-size: 52px;
    color: #e5e7eb;
    line-height: 1.2;
}

.hero-content h1 span {
    color: #38bdf8;
    text-shadow: 0 0 20px #38bdf8;
}

/* Paragraph */
.hero-content p {
    margin-top: 20px;
    font-size: 18px;
    color: #cbd5f5;
    line-height: 1.6;
}

/* Buttons */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

/* Primary Button */
.btn.primary {
    background: #38bdf8;
    color: #020617;
}

.btn.primary:hover {
    box-shadow: 0 0 25px #38bdf8;
    transform: translateY(-4px);
}

/* Secondary Button */
.btn.secondary {
    border: 2px solid #38bdf8;
    color: #38bdf8;
}

.btn.secondary:hover {
    background: #38bdf8;
    color: #020617;
    transform: translateY(-4px);
}/* SERVICES SECTION */
.services {
    background: #020617;
    padding: 80px 40px;
    text-align: center;
}

/* Title */
.section-title {
    font-size: 42px;
    color: #e5e7eb;
    margin-bottom: 50px;
}

.section-title span {
    color: #38bdf8;
    text-shadow: 0 0 15px #38bdf8;
}

/* Container */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.service-card {
    background: #0f172a;
    padding: 40px 25px;
    border-radius: 18px;
    transition: 0.4s ease;
    border: 1px solid rgba(56, 189, 248, 0.1);
    position: relative;
    overflow: hidden;
}

/* Glow on hover */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(56,189,248,0.15), transparent);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

/* Icon */
.service-card i {
    font-size: 42px;
    color: #38bdf8;
    margin-bottom: 20px;
}

/* Heading */
.service-card h3 {
    color: #e5e7eb;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Text */
.service-card p {
    color: #cbd5f5;
    font-size: 15px;
    line-height: 1.6;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.25);
}
/* PORTFOLIO SECTION */
.portfolio {
    position: relative;
    background: #020617;
    padding: 90px 40px;
    overflow: hidden;
    text-align: center;
}

/* Animated Background */
.portfolio-bg span {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(56, 189, 248, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 10s infinite alternate;
}

.portfolio-bg span:nth-child(1) {
    top: 10%;
    left: 10%;
}

.portfolio-bg span:nth-child(2) {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

.portfolio-bg span:nth-child(3) {
    top: 50%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    from {
        transform: translateY(0) translateX(0);
    }
    to {
        transform: translateY(-60px) translateX(40px);
    }
}

/* Container */
.portfolio-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Card */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

/* Image */
.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Overlay */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-overlay h3 {
    color: #38bdf8;
    font-size: 22px;
    text-shadow: 0 0 15px #38bdf8;
}

/* Hover Effects */
.portfolio-card:hover img {
    transform: scale(1.15);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}
/* CLIENTS REVIEWS SECTION */
.clients-reviews {
    background: #020617;
    padding: 80px 40px;
    overflow: hidden;
    position: relative;
}

/* Section Title */
.clients-reviews .section-title {
    color: #e5e7eb;
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
}

.clients-reviews .section-title span {
    color: #38bdf8;
    text-shadow: 0 0 20px #38bdf8;
}

/* Marquee */
.reviews-marquee {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scrollReviews 25s linear infinite;
}

/* Review Card */
.review-card {
    background: #0f172a;
    padding: 25px 30px;
    min-width: 280px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(56,189,248,0.4);
}

.review-card p {
    color: #cbd5f5;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-card h4 {
    color: #38bdf8;
    font-size: 16px;
    font-weight: 600;
}

/* Scroll Animation */
@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .reviews-track {
        animation: scrollReviews 35s linear infinite;
    }
    .review-card {
        min-width: 240px;
    }
}
/* CONTACT FORM SECTION */
.contact-form-section {
    background: #020617;
    padding: 90px 40px;
    text-align: center;
}

/* Section Title */
.contact-form-section .section-title {
    font-size: 40px;
    color: #e5e7eb;
    margin-bottom: 50px;
}

.contact-form-section .section-title span {
    color: #38bdf8;
    text-shadow: 0 0 15px #38bdf8;
}

/* Form Container */
.form-container {
    max-width: 600px;
    margin: auto;
    text-align: left;
}

/* Inputs and Textarea */
.form-container input,
.form-container textarea,
.form-container select {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid #38bdf8;
    background: #0f172a;
    color: #e5e7eb;
    font-size: 15px;
    transition: 0.3s;
}

.form-container input:focus,
.form-container textarea:focus,
.form-container select:focus {
    outline: none;
    border-color: #38bdf8;
    box-shadow: 0 0 15px rgba(56,189,248,0.4);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 25px;
    background: #38bdf8;
    color: #020617;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #22a7f0;
    box-shadow: 0 0 20px #38bdf8;
    transform: translateY(-3px);
}/* FOOTER SECTION */
.footer {
    background: #020617;
    color: #cbd5f5;
    padding: 60px 40px 30px 40px;
    font-family: sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* Footer Logo */
.footer-logo h2 {
    color: #38bdf8;
    text-shadow: 0 0 15px #38bdf8;
    font-size: 28px;
    
}
.logo1 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #38bdf8;
    font-size: 22px;
    font-weight: bold;
    margin-top: 25px;
    padding-top: 40px;
    padding-left: 10px;
}

.logo1 i {
    font-size: 40px;

}


/* Footer Links */
.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #38bdf8;
    margin-bottom: 15px;
    font-size: 18px;
    text-shadow: 0 0 10px #38bdf8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #cbd5f5;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #38bdf8;
}

/* Footer Contact */
.footer-contact p {
    margin-bottom: 8px;
}

/* Social Icons */
.footer-social .social-icons a {
    color: #cbd5f5;
    font-size: 18px;
    margin-right: 15px;
    transition: 0.3s;
}

.footer-social .social-icons a:hover {
    color: #38bdf8;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(56,189,248,0.2);
    padding-top: 20px;
    font-size: 14px;
    color: #7f8fa4;
}

/* ================= ABOUT BACKGROUND ================= */
.about-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:-1;
    background:#020617;
}
.about-bg span{
    position:absolute;
    width:60px;
    height:60px;
    background:rgba(255,255,255,0.1);
    border-radius:50%;
    animation:aboutMove 20s linear infinite;
}
.ab{
    text-align: justify;
}
.about-bg span:nth-child(1){
    top:80%;
    left:10%;
    width:90px;
    height:90px;
}
.about-bg span:nth-child(2){
    top:60%;
    left:70%;
    animation-duration:25s;
}
.about-bg span:nth-child(3){
    top:90%;
    left:40%;
    width:120px;
    height:120px;
    animation-duration:30s;
}
.about-bg span:nth-child(4){
    top:75%;
    left:85%;
    width:40px;
    height:40px;
    animation-duration:18s;
}

@keyframes aboutMove{
    0%{
        transform:translateY(0) rotate(0deg);
        opacity:0;
    }
    50%{opacity:1;}
    100%{
        transform:translateY(-1000px) rotate(360deg);
        opacity:0;
    }
}

/* ================= ABOUT SECTION ================= */
.about-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:100px; /* navbar space */
}
.about-container{
    max-width:700px;
    padding:40px;
    border-radius:20px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    text-align:center;
    color:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
}
.about-container h1{
    font-size:42px;
    margin-bottom:15px;
}
.about-container h1 span{
    color:#38bdf8;
}
.about-container p{
    font-size:18px;
    line-height:1.7;
    opacity:0.9;
}
/* ================= CONTACT BACKGROUND ================= */
.contact-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#0f172a,#0f172a,#0f172a);
    overflow:hidden;
    z-index:-1;
}
.contact-bg span{
    position:absolute;
    width:70px;
    height:70px;
    background:rgba(255,255,255,0.12);
    border-radius:50%;
    animation:contactFloat 25s linear infinite;
}
.contact-bg span:nth-child(1){
    top:85%;
    left:10%;
    width:120px;
    height:120px;
}
.contact-bg span:nth-child(2){
    top:90%;
    left:40%;
    animation-duration:20s;
}
.contact-bg span:nth-child(3){
    top:95%;
    left:70%;
    width:90px;
    height:90px;
    animation-duration:30s;
}
.contact-bg span:nth-child(4){
    top:80%;
    left:85%;
    width:50px;
    height:50px;
    animation-duration:18s;
}
.contact-bg span:nth-child(5){
    top:88%;
    left:55%;
    width:150px;
    height:150px;
    animation-duration:35s;
}

@keyframes contactFloat{
    0%{
        transform:translateY(0) rotate(0deg);
        opacity:0;
    }
    50%{opacity:1;}
    100%{
        transform:translateY(-1200px) rotate(360deg);
        opacity:0;
    }
}

/* ================= CONTACT SECTION ================= */
.contact-section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
}
.contact-box{
    width:100%;
    max-width:500px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:40px;
    text-align:center;
    color:#fff;
    box-shadow:0 25px 50px rgba(0,0,0,0.45);
}
.contact-box h1{
    font-size:40px;
    margin-bottom:10px;
}
.contact-box h1 span{
    color:#00ffd5;
}
.contact-box p{
    font-size:16px;
    opacity:0.85;
    margin-bottom:25px;
}

/* ================= FORM ================= */
.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 16px;
    margin-bottom:15px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,0.15);
    color:#fff;
    font-size:15px;
    outline:none;
}
.contact-form textarea{
    resize:none;
    height:120px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#ddd;
}

.contact-form button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#00ffd5;
    color:#000;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}
.contact-form button:hover{
    background:#fff;
}
/* ================= SERVICES BACKGROUND ================= */
.services-bg{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(135deg,#0f172a,#0f172a);
    overflow:hidden;
    z-index:-1;
}
.services-bg span{
    position:absolute;
    width:80px;
    height:80px;
    background:rgba(255,255,255,0.12);
    border-radius:50%;
    animation:servicesFloat 30s linear infinite;
}
.services-bg span:nth-child(1){
    top:90%;
    left:10%;
    width:120px;
    height:120px;
}
.services-bg span:nth-child(2){
    top:95%;
    left:35%;
    animation-duration:22s;
}
.services-bg span:nth-child(3){
    top:85%;
    left:65%;
    width:60px;
    height:60px;
    animation-duration:18s;
}
.services-bg span:nth-child(4){
    top:92%;
    left:85%;
    width:150px;
    height:150px;
    animation-duration:35s;
}

@keyframes servicesFloat{
    0%{
        transform:translateY(0) rotate(0deg);
        opacity:0;
    }
    50%{opacity:1;}
    100%{
        transform:translateY(-1200px) rotate(360deg);
        opacity:0;
    }
}

/* ================= SERVICES SECTION ================= */
.services-section{
    min-height:100vh;
    padding:120px 20px 60px;
    color:#fff;
}
.services-header{
    text-align:center;
    margin-bottom:60px;
}
.services-header h1{
    font-size:44px;
    margin-bottom:10px;
}
.services-header h1 span{
    color:#04cffd;
}
.services-header p{
    font-size:18px;
    opacity:0.85;
}

/* ================= SERVICES GRID ================= */
.services-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    
}

/* ================= SERVICE CARD ================= */
.service-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 20px 40px rgba(0,0,0,0.4);
    transition:0.4s;
}
.service-card:hover{
    transform:translateY(-12px) scale(1.03);
    background:rgba(255,255,255,0.15);
}
.service-card .icon{
    font-size:48px;
    margin-bottom:15px;
}
.service-card h3{
    font-size:22px;
    margin-bottom:10px;
}
.service-card p{
    font-size:15px;
    opacity:0.9;
    line-height:1.6;
}
.icon2 i{
    color: #fff;
}
.icon5 i{
    color: #95be46;
}
.icon6 i{
    color: #0fa2e5;
}
.icon4 i{
    color: #fff;
}
/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-social .social-icons a {
        margin-right: 10px;
        font-size: 20px;
    }
}