* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background: #070707;
    color: white;
    overflow-x: hidden;
}

/* NAVBAR */

/* nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #00f2ff, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: .3s;
}

nav ul li a:hover {
    color: #00ffcc;
} */
/* new navbar css */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
    overflow: visible;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(90deg, #00f2ff, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Desktop Menu */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: .3s;
}

nav ul li a:hover {
    color: #00ffcc;
}

/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* 🔥 Mobile View */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav ul {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);
        flex-direction: column;
        text-align: center;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 20px 0;
    }
}


/* HERO */

.hero {
    /* height: 100vh; */
    min-height: 100dvh; /* better for mobile */
    padding: 60px 20px;  /* add this */
    /* background: url("https://images.unsplash.com/photo-1558655146-364adaf1fcc9") center/cover; */
    background: url("../Images/poster_sky.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 900px; */
    width: 100%;
    padding: 0 10px;
}

.hero h1 {
    /* font-size: 65px; */
    font-size: clamp(28px, 6vw, 65px);
    line-height: 1.2;
    word-wrap: break-word;
    background: linear-gradient(90deg, #00f2ff, #00ff9d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    margin: 20px 0 40px;
    opacity: .8;
}

/* THOUGHT SLIDER */

.thought-slider {
    padding: 0 10px;
    font-size: clamp(16px, 4vw, 28px);
    /* height: 70px; */
    height: auto;
    min-height: 70px;
    /* overflow: hidden; */
    overflow: visible;
    position: relative;
}

.thought {
    position: absolute;
    width: 100%;
    font-size: 28px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(40px);
    transition: .7s;
}

.thought.active {
    opacity: 1;
    transform: translateY(0);
}

/* SECTIONS */

section {
    padding: 120px 10%;
}

/* SERVICES */

.services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service {

    background: rgba(255, 255, 255, 0.05);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    opacity: 0;
    transform: translateX(120px);
    transition: 1s;

}

.service.show {
    opacity: 1;
    transform: translateX(0);
}

.service:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.4);
    background: linear-gradient(135deg, #00f2ff, #00ff9d);
    color: black;
}

/* TICKER SECTION */

.ticker-section {

    width: 100%;
    /* background:#000; */
    background: #070707;
    padding: 20px 0;
    overflow: hidden;
    /* border-top:1px solid rgba(255,255,255,0.1);
border-bottom:1px solid rgba(255,255,255,0.1); */
}

.ticker-wrapper {

    white-space: nowrap;
    overflow: hidden;

}

.ticker {

    display: inline-block;
    white-space: nowrap;

    animation: scrollTicker 25s linear infinite;

}

.ticker span {

    font-size: 22px;
    font-weight: 600;
    color: #00ffcc;
    margin-right: 50px;

}

/* animation */

@keyframes scrollTicker {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* PLANS */

.plans h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.plan {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    /* text-align: center; */
    text-align: left;
    transition: .5s;
}
.plan h3{
    background: linear-gradient(90deg, #ddff00, #b700ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.plan:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #00f2ff, #00ff9d);
    color: black;
}


/* PORTFOLIO */

/* .portfolio h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 15px;
    transition: .6s;
}

.gallery img:hover {
    transform: scale(1.15) rotate(2deg);
    box-shadow: 0 20px 40px rgba(0, 255, 200, 0.4);
} */

.portfolio {
    padding: 80px 8%;
    background: #070707;
    text-align: center;
}

.portfolio h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 50px;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards in one row */
    gap: 25px;
}

/* Tablet view */
@media (max-width: 900px) {
    .why-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile view */
@media (max-width: 500px) {
    .why-container {
        grid-template-columns: 1fr;
    }
}


.why-card {
    background: #111;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.4s ease;
    border: 1px solid rgba(0,255,200,0.1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

/* Glow Effect */
.why-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0,255,200,0.2), transparent);
    top: 0;
    left: -100%;
    transition: 0.5s;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 25px rgba(0,255,200,0.3);
}

.icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.why-card h3 {
    color: #00ffc8;
    margin-bottom: 10px;
}

.why-card p {
    color: #ccc;
    font-size: 14px;
}


/* SOCIAL MEDIA SECTION  */
.social-section {
    background: #070707;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.social-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.social-text {
    color: #aaa;
    max-width: 500px;
    margin: 0 auto 30px;
    font-size: 14px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.icon {
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0ef;
    font-size: 20px;
    transition: 0.3s ease;
    text-decoration: none;
}

.icon:hover {
    background: linear-gradient(45deg, #00f0ff, #00ff88);
    color: #000;
    transform: scale(1.1);
}

/* optional different hover colors */
.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
    color: #fff;
}

.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.linkedin:hover {
    background: #0077b5;
    color: #fff;
}

/* CONTACT */

.contact h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.contact form {
    max-width: 550px;
    margin: auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 18px;
    border: none;
    border-radius: 12px;
    background: #1a1a1a;
    color: white;
    resize: vertical;
}

.contact button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 40px;
    background: linear-gradient(90deg, #00f2ff, #00ff9d);
    font-weight: 600;
    cursor: pointer;
    transition: .4s;
}

.contact button:hover {
    transform: scale(1.05);
}

/* FOOTER */

footer {
    text-align: center;
    padding: 30px;
    background: #050505;
}



/* new css classe and ids code  */
/* Subtext under Contact heading */
.contact-subtext {
    color: #b0b0b0;
    font-size: 14px;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Form labels */
.contact form label {
    display: block;
    margin: 10px 0 5px;
    font-size: 13px;
    color: #dcdcdc;
    font-weight: 500;
}

/* Privacy note under button */
.form-note {
    margin-top: 12px;
    font-size: 12px;
    color: #888;
    text-align: center;
}

/* Footer copyright inside social section */
.footer-copy {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* Optional: improve focus states (recommended) */
.contact form input:focus,
.contact form textarea:focus {
    outline: none;
    border: 1px solid #00ffd5;
    box-shadow: 0 0 8px rgba(0, 255, 213, 0.3);
}

/* Optional: smoother button hover (if not already styled) */
.contact form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 213, 0.3);
    transition: 0.3s ease;
}
