/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}


/* ===== Header ===== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled {
    background: #000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: #fff;
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b0b0b;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Base */
.section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0b0b0b 0%, #111 100%);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subheading {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #5d00ff, #9d00ff);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.4s ease;
    box-shadow: 0 5px 20px rgba(93, 0, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(93, 0, 255, 0.6);
}

.primary {
    background: #fff;
    color: #0b0b0b;
}

.primary:hover {
    background: transparent;
    color: #fff;
}

/* About Section */
.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.about p {
    font-size: 1.1rem;
    color: #ccc;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}
.section-header {
    margin-bottom: 60px;
}
/* ===== 2 Column Layout ===== */
.services-wrapper {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: start;
}

.services-left h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.services-left p {
    color: #aaa;
    margin-bottom: 40px;
}

.mt-60 {
    margin-top: 60px;
}

/* ===== Glassmorphism Accordion ===== */
.accordion-item {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s ease;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: rgba(255,255,255,0.05);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

.accordion-content ul {
    list-style: none;
    padding: 20px 0;
}

.accordion-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #ccc;
}

/* Animated Bullet */
.accordion-content li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #5d00ff;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* Responsive */
@media (max-width: 992px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #ccc;
}

/* Portfolio Section */
.portfolio h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.portfolio-item {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.portfolio-item:hover {
    transform: scale(1.05);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item h4 {
    padding: 20px;
    font-size: 1.2rem;
    text-align: center;
}

/* Stats Section */
.stats h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 10px;
}

.stat-item p {
    color: #ccc;
    font-size: 1.1rem;
}

/* Contact Section */
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact p {
    text-align: center;
    color: #ccc;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer
.footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #ccc;
} */

/* ===== Footer ===== */
.footer {
    background: #000;
    padding: 60px 0 20px;
    color: #ccc;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 40px;
    padding-top: 20px;

    font-size: 0.8rem;
    color: #777;
    text-align: center;
}


/* Social Icons */
.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

/* Premium Social Icons */

.social-icons a {

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

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

    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {

    background: linear-gradient(45deg, #5d00ff, #9d00ff);
    box-shadow: 0 5px 20px rgba(93,0,255,0.5);
    transform: translateY(-4px);
}


/* Responsive Design (Mobile-First) */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2rem;
    }
    .hero-subheading {
        font-size: 1rem;
    }
    .section {
        padding: 60px 0;
    }
    .services-grid,
    .portfolio-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 4rem;
    }
}


/* ===== Mobile Navbar ===== */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        background: #000;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        border-top: 1px solid #222;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        margin: 10px 0;
    }
}

/* Mobile Footer Refinement */

@media (max-width: 768px) {

    .footer {
        padding: 50px 20px 30px;
        text-align: left;
    }

    .footer-container {
        gap: 40px;
    }

    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.9rem;
        line-height: 1.7;
        color: #aaa;
    }

    .social-icons {
        justify-content: flex-start;
        margin-top: 15px;
        gap: 12px;
    }
}

/* ================================== */
/* 🌟 PREMIUM SOCIAL ICON DESIGN */
/* ================================== */

.social-icons a {

    width: 45px;               /* icon circle size */
    height: 45px;

    display: flex;             /* icon center karne ke liye */
    align-items: center;
    justify-content: center;

    border-radius: 50%;        /* perfect circle */

    background: rgba(255,255,255,0.05);  /* glass effect */
    border: 1px solid rgba(255,255,255,0.1);

    color: #fff;
    text-decoration: none;

    transition: 0.3s ease;     /* smooth hover effect */
}


/* Hover effect for premium feel */
.social-icons a:hover {

    background: linear-gradient(45deg, #5d00ff, #9d00ff); /* gradient glow */
    transform: translateY(-3px); /* thoda upar lift effect */
}



/* ================================== */
/* 🔹 Footer Bottom Cleaner Look */
/* ================================== */

.footer-bottom {

    border-top: 1px solid rgba(255,255,255,0.05); /* soft divider line */
    margin-top: 30px;
    padding-top: 15px;

    font-size: 0.85rem;  /* smaller copyright text */
    color: #888;         /* subtle gray tone */
    text-align: center;
}
