* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Background */
body {
    background: url("background.jpg") no-repeat center center/cover;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;   /* ← yahin add karna hai */
}


/* Header / Navbar */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #00e0ff;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

/* Services Section */
.services {
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.services-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    opacity: 0.85;
}

.service-card span {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: #00e0ff;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 224, 255, 0.4);
    background: rgba(0, 224, 255, 0.1);
}


/* Coming Soon Style */
.coming-soon span {
    color: #ffcc00;
}

/* Later Style */
.later span {
    color: #ee1606;
}

/* About Us Section */
.about {
    padding: 80px 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

.about-text.highlight {
    color: #00e0ff;
    font-weight: 500;
}
.section {
    display: none;
    padding: 80px 60px;
    background: rgba(0,0,0,0.8);
    color: white;
}


.section.active {
    display: block;
}

/* Portfolio */
.portfolio-list {
    max-width: 800px;
    margin: auto;
    list-style: none;
    font-size: 17px;
}

.portfolio-list li {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.portfolio-list span {
    color: #00e0ff;
    font-size: 14px;
}
/* Contact Section */
.contact {
    padding: 80px 60px;
    background: rgba(0,0,0,0.9);
    color: white;
}

.contact h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Side */
.contact-left {
    flex: 1;
}

.contact-left p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-left form {
    margin-top: 20px;
}

.contact-left input,
.contact-left textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
}

.contact-left textarea {
    height: 120px;
}

.contact-left button {
    background: #00e0ff;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
}

/* Right Side */
.contact-right {
    flex: 1;
}

.contact-right video {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}
.portfolio-list a {
    color: #00e0ff;           /* bright blue color */
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.portfolio-list a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px #00e0ff;  /* glow effect on hover */
}
.section {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}


.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
#typing-text {
    font-size: 20px;
    color: #00e0ff;
    font-weight: 500;
    margin-top: 10px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
}

.logo img {
    height: 40px;
    width: auto;
}
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    border: 2px solid #00e0ff;
    color: #00e0ff;
    background: transparent;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}


.btn-secondary {
    border: 2px solid #00e0ff;
    color: #00e0ff;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
}
.footer {
    background: rgba(0,0,0,0.95);
    text-align: center;
    padding: 25px;
    font-size: 14px;
    opacity: 0.8;
}

.nav-link.active {
    color: #00e0ff;
    border-bottom: 2px solid #00e0ff;
    padding-bottom: 4px;
}
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top: 5px solid #00e0ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    #typing-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 20px;
    }
}
@media (max-width: 768px) {

    header {
        padding: 15px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    #typing-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 60px 20px;
    }
}
/* Section enter animation */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}
.section.active {
    animation: liftIn 0.70s ease;
}

@keyframes liftIn {
    0% {
        opacity: 2;
        transform: translateY(40px);
    }
    60% {
        opacity: 3;
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}
/* Button Press Effect */
button,
.btn {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:active,
.btn:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) inset;
}
/* Contact – Centered International Style */
.contact {
    text-align: center;
}

.contact-tagline {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 17px;
    opacity: 0.85;
}

.contact-center {
    max-width: 520px;
    margin: auto;
    background: rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* Info Row */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    opacity: 0.9;
}

/* Inputs */
.contact-center input,
.contact-center textarea {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
}

/* Button */
.contact-center button {
    width: 100%;
    background: #00e0ff;
    color: #000;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
}
/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: #000;
    font-size: 14px;
    opacity: 0.85;
}

.footer h3 {
    margin-bottom: 8px;
}

.copy {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.6;
}
/* Why Choose Us Section */
#why-us {
    text-align: center;
    background: rgba(0,0,0,0.85);
}

#why-us h2 {
    font-size: 34px;
    margin-bottom: 35px;
}

.why-box {
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.why-item {
    background: rgba(255,255,255,0.08);
    padding: 18px;
    border-radius: 10px;
    font-size: 15px;
}
/* Process Section */
#process {
    text-align: center;
    background: rgba(0,0,0,0.85);
}

#process h2 {
    font-size: 34px;
    margin-bottom: 40px;
}

.process-steps {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.step {
    background: rgba(255,255,255,0.08);
    padding: 30px 20px;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.step span {
    font-size: 28px;
    font-weight: bold;
    color: #00e0ff;
    display: block;
    margin-bottom: 10px;
}

.step p {
    font-size: 16px;
    opacity: 0.9;
}

/* subtle hover lift */
.step:hover {
    transform: translateY(-6px);
}
/* Primary Button */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #00e0ff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover */
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,224,255,0.4);
}

/* Secondary Button */
.btn.secondary {
    background: transparent;
    color: #00e0ff;
    border: 1px solid #00e0ff;
}

.btn.secondary:hover {
    background: #00e0ff;
    color: #000;
}
.focus-line {
    margin-top: 25px;
    font-size: 14px;
    opacity: 0.75;
    letter-spacing: 0.5px;
}
.section-subtext {
    max-width: 700px;
    margin: 10px auto 40px;
    font-size: 16px;
    opacity: 0.8;
}
#skills {
    text-align: center;
    background: rgba(0,0,0,0.85);
}

.skills-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 800px;
    margin: auto;
}
.skills-box span {
    padding: 10px 18px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    font-size: 14px;
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 22px;
    padding: 14px 16px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 1000;
}
.final-cta {
    text-align: center;
    background: linear-gradient(135deg, #00e0ff, #008cff);
    color: #000;
}

.final-cta p {
    margin: 15px 0 25px;
    font-size: 18px;
}
