/* Import a futuristic font */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    background-color: #0d0d0d;
    color: #fff;
}

/* Navbar Styling */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo img {
    height: 50px;
    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #0ff);
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

/* Social and Contact Icons */
.social-contact {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #fff;
    font-size: 20px;
    transition: 0.3s ease;
}

.social-icon:hover {
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('digital-marketing.jpg') no-repeat center center/cover;
}

.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.hero h1 {
    font-size: 50px;
    color: #0ff;
    text-shadow: 0 0 20px #0ff;
    margin-bottom: 20px;
    animation: blink 1.5s infinite;
}

.hero p {
    font-size: 18px;
    color
::contentReference[oaicite:0]{index=0}
 
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: url('digital-marketing.jpg') no-repeat center center/cover;
}

.hero-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.hero h1 {
    font-size: 50px;
    color: #0ff;
    text-shadow: 0 0 20px #0ff;
    margin-bottom: 20px;
    animation: blink 1.5s infinite;
}

.hero p {
    font-size: 18px;
    color: #ccc;
}

/* Blinking Animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hero-content {
        width: 90%;
    }
}
 /* About Section */
.about {
    background: #111;
    color: #fff;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    display: flex;
    max-width: 1100px;
    align-items: center;
    gap: 40px;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* About Image */
.about-image img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    opacity: 0.9;
    transition: 0.3s ease;
}

.about-image img:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

/* About Text */
.about-text {
    flex: 1;
    font-family: 'Poppins', sans-serif; /* Improved readability */
}

.about-text h2 {
    font-size: 36px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
}

.about-text p {
    font-size: 18px;
    color: #f5f5f5; /* Lighter text for better contrast */
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif; /* Clearer, professional font */
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        max-width: 350px;
    }
}
/* Hero Section */
.hero {
    position: relative;
    background: url('digital-marketing.jpg') no-repeat center center/cover;
    opacity: 0.8;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Thunder Effect */
@keyframes lightning {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

.thunder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('thunder.png') no-repeat center center/cover;
    opacity: 0;
    animation: lightning 3s infinite alternate;
}

/* Smoke Effect */
@keyframes smoke {
    0% { opacity: 0.3; transform: translateY(0px); }
    50% { opacity: 0.7; transform: translateY(-20px); }
    100% { opacity: 0.3; transform: translateY(0px); }
}

.smoke {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: url('smoke.png') no-repeat center bottom/cover;
    opacity: 0.4;
    animation: smoke 5s infinite linear;
}

/* About Section with Thunder & Smoke */
.about {
    position: relative;
    background: #111;
    color: #fff;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Adding the same smoke effect to about */
.about::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: url('smoke.png') no-repeat center bottom/cover;
    opacity: 0.4;
    animation: smoke 5s infinite linear;
}

/* About Section Styling */
.about-container {
    display: flex;
    max-width: 1100px;
    align-items: center;
    gap: 40px;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

/* About Image */
.about-image img {
    width: 400px;
    height: auto;
    border-radius: 10px;
    opacity: 0.9;
    transition: 0.3s ease;
}

.about-image img:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}
 /* Clients and Projects Section */
/* Clients Section */
.clients {
    background-color: #111;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.clients h2 {
    font-size: 36px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
}

.client-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 400px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.flip-card-front {
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flip-card-front img {
    width: 100px;
    height: 100px;
    /* border-radius: 50%; */
    margin-bottom: 20px;
}

.flip-card-front h3 {
    font-size: 24px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.flip-card-back {
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.flip-card-back h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.flip-card-back p {
    font-size: 16px;
    margin-bottom: 20px;
}

.view-project-button {
    text-decoration: none;
    color: #0ff;
    border: 1px solid #0ff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.view-project-button:hover {
    background-color: #0ff;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-cards {
        flex-direction: column;
        align-items: center;
    }
}



/* Services Section */
//* Services Section */
.services {
    background: #111;
    color: #fff;
    padding: 80px 50px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    color: #0ff;
    margin-bottom: 50px;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 300px;
    position: relative;
    overflow: hidden;
}

.service-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-card h3 {
    font-size: 24px;
    color: #0ff;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #f5f5f5;
    margin-bottom: 15px;
}

.view-project-button {
    display: inline-block;
    padding: 10px 20px;
    color: #0ff;
    border: 2px solid #0ff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.view-project-button:hover {
    background-color: rgb(65, 148, 148);
    color: #111;
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
}

/* Hover Effects */
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.service-card:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }
}
.services h2 {
    text-align: center;
    font-size: 36px;
    color: #0ff;
    margin-bottom: 50px;
}



/* Contact Us Section */
/* Contact Section */
.contact-section {
    background: #111;
    color: #fff;
    padding: 80px 50px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
}

.contact-form, .contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form h2, .contact-info h2 {
    font-size: 28px;
    color: #0ff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #0ff;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 10px #0ff;
}

button[type="submit"] {
    background: #0ff;
    color: #111;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0cc;
    box-shadow: 0 0 10px #0cc, 0 0 20px #0cc, 0 0 30px #0cc;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info p strong {
    color: #0ff;
}

.social-icons {
    margin-top: 20px;
    color: #ccc;
}

.social-icons a {
    color: #0ff;
    text-decoration: none;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #0cc;
    transform: scale(1.2);
}
.clients h2 {
    font-size: 36px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
} h2 {
    font-size: 36px;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
    margin-bottom: 40px;
    font-family: 'Orbitron', sans-serif;
}
/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
}
/* Some Examples Section */
.examples {
    background: #111;
    padding: 60px 20px;
    text-align: center;
}

.examples-container {
    max-width: 1200px;
    margin: 0 auto;
}

.examples h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0ff;
}

.examples-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.example-item {
    background-color: #0c0c0c;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 280px;
    transition: transform 0.3s;
}

.example-item img,
.example-item video {
    width: 100%;
    height: auto;
}

.example-item h3 {
    font-size: 24px;
    margin: 15px 0;
    color: #0ff;
}

.example-item p {
    font-size: 16px;
    padding: 0 15px 15px;
    color: #ffffff;
}

.example-item:hover {
    transform: translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .example-item {
        width: 100%;
    }
}
