/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif
}


/* Global Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #161b22;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
    z-index: 1000;
    
}


.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00eaff;
}

/* Navigation */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    transition: color 0.3s ease-in-out;
    padding: 8px 12px;
    border-radius: 5px;
}

/* Hover Effect */
.nav-links a:hover {
    color: #00eaff;
    background: rgba(0, 255, 255, 0.2);
}

/* Active Section Highlight */
.nav-links a:target {
    color: #00eaff;
    background: rgba(0, 255, 255, 0.3);
    font-weight: bold;
}

/* "Let's Talk" Button */
.lets-talk {
    background: #00eaff;
    color: #x00eaff;
    padding: 8px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.lets-talk:hover {
    background: #161b22;
    color: aliceblue;
    border: 2px solid #00eaff;
}

/* Mobile Menu */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 20px;

    top: 15px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        background: #161b22;
        width: 250px;
        flex-direction: column;
        text-align: center;
        transition: right 0.3s ease-in-out;
        padding: 20px;
        border-radius: 10px 0 0 10px;
    }
    header {
        margin-bottom: 30px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-icon {
        display: block;
    }

    /* Show menu when active */
    #menu-toggle:checked ~ nav .nav-links {
        right: 0;
    }

    /* "Let's Talk" button on mobile */
    .lets-talk {
        display: none;
    }
}

    

body {
    background-color: #0e0e0e;
    color: white;
    text-align: center;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: left;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text {
    max-width: 450px;
    
}

.hero-text h1 {
    font-size: 36px;
}

.frontend {
    color: cyan;
    font-weight: bold;
}

/* Social Media Icons */
.social-icons {
    margin: 15px 0;
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: cyan;
    color: black;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: white;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    background: cyan;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
    transition: 0.3s;
}




/* Hero Image */
.hero-image img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px cyan;
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* About Section Layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    gap: 40px;
    flex-wrap: wrap;
}

/* About Image */
.about-image {
    width: 300px;
    min-width: 280px; /* Fixed size */
    flex-shrink: 0; /* Prevents shrinking */
}

.about-image .hexagon {
    width: 100%;
    position: relative;
}

.about-image .hexagon img {
    width: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 4px solid cyan;
    box-shadow: 0px 0px 20px cyan;
}

/* About Text */
.about-text {
    max-width: 500px;
    flex-grow: 1; /* Allows it to take remaining space */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: left;
    }

    .hero-text {
        max-width: 100%;
        margin-top: 100px;
    }

    .hero-image img {
        width: 220px;
    }

    /* About Section: On Mobile, Text First */
    .about-container {
        flex-direction: column-reverse;
        text-align: left;
    }

    .about-image {
        width: 240px;
    }
}









/* Services Section */
.services {
    padding: 80px 20px;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background-color: #1a1a1a;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px cyan;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px cyan;
}

/* Icons */
.service-box i {
    font-size: 40px;
    color: cyan;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-box:hover i {
    color: white;
}

/* Button Styling */
.service-box .btn {
    display: inline-block;
    background: cyan;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.service-box .btn:hover {
    color: white;
    background-color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
    }
}




/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


/* Contact Section */
.contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
    background: #161b22;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.2);
}

/* Heading */
h2 {
    font-size: 2rem;
    font-weight: 600;
}

h2 span {
    color: #00eaff;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #222;
    color: white;
    outline: none;
    transition: 0.3s;
}

textarea {
    resize: none;
    height: 120px;
}

/* Input Focus */
input:focus, textarea:focus {
    border: 1px solid #00eaff;
    box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
}

/* Submit Button */
button {
    padding: 19px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #00eaff;
    color: #0d1117;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

button:hover {
    background: #00a3cc;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5);
}

/* Copyright */
.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
}
            
    

body {
    background-color: #0e0e0e;
    color: white;
    text-align: center;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: left;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    padding: 0 20px;
}

.hero-text {
    max-width: 450px;
}

.hero-text h1 {
    font-size: 36px;
}

.frontend {
    color: cyan;
    font-weight: bold;
}

/* Social Media Icons */
.social-icons {
    margin: 15px 0;
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid cyan;
    border-radius: 50%;
    background-color: #0d1117;
    color: cyan;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: cyan;
    color: #222;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    background: cyan;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px%;
    transition: 0.3s;
}
.btn:hover {
    background-color: #161b22;
    border: solid  cyan  4px;
    color: white;
}



/* Hero Image */
.hero-image img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px cyan;
}

/* About Section */
.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* About Section Layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    gap: 40px;
    flex-wrap: wrap;
}

/* About Image */
.about-image {
    width: 300px;
    min-width: 280px; /* Fixed size */
    flex-shrink: 0; /* Prevents shrinking */
}

.about-image .hexagon {
    width: 100%;
    position: relative;
}

.about-image .hexagon img {
    width: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 4px solid cyan;
    box-shadow: 0px 0px 20px cyan;
}

/* About Text */
.about-text {
    max-width: 500px;
    flex-grow: 1; /* Allows it to take remaining space */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: left;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image img {
        width: 220px;
    }

    /* About Section: On Mobile, Text First */
    .about-container {
        flex-direction: column-reverse;
        text-align: left;
    }

    .about-image {
        width: 240px;
    }
}









/* Services Section */
.services {
    padding: 80px 20px;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background-color: #1a1a1a;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 10px cyan;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 0px 20px cyan;
}

/* Icons */
.service-box i {
    font-size: 40px;
    color: cyan;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-box:hover i {
    color: white;
}

/* Button Styling */
.service-box .btn {
    display: inline-block;
    background: cyan;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.service-box .btn:hover {
    background: white;
    color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 90%;
    }
}






/* Contact Section */
.contact {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 600px;
    background: #161b22;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 0px 20px rgba(0, 255, 255, 0.2);
}

/* Heading */
h2 {
    font-size: 2rem;
    font-weight: 600;
}

h2 span {
    color: #00eaff;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.form-group input {
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #222;
    color: white;
    outline: none;
    transition: 0.3s;
}

textarea {
    resize: none;
    height: 120px;
}

/* Input Focus */
input:focus, textarea:focus {
    border: 1px solid #00eaff;
    box-shadow: 0px 0px 10px rgba(0, 255, 255, 0.3);
}

/* Submit Button */
button {
    padding: 19px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: #00eaff;
    color: #0d1117;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

button:hover {
    background: #00a3cc;
    box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.5);
}

/* Copyright */
.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
    }
}






/* Skills Section */
.skills-section {
    text-align: center;
    padding: 50px 20px;
}

.skills-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.skills-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Skills Container */
.skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

/* Individual Skill Box */
.skill {
    background: #222;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.skill:hover {
    transform: scale(1.05);
}

.skill i {
    font-size: 40px;
    color: #f4b400;
}

.skill h3 {
    margin: 10px 0;
    font-size: 1.5rem;
}

/* Progress Bar */
.progress-bar {
    background: #444;
    border-radius: 20px;
    overflow: hidden;
    height: 20px;
    margin-top: 10px;
}

.progress {
    height: 100%;
    background: cyan;
    text-align: center;
    line-height: 20px;
    color: #111;
    font-weight: bold;
    border-radius: 20px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .skills-section h2 {
        font-size: 2rem;
    }

    .skills-section p {
        font-size: 1rem;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }
}



/* testimonials */

.testimonials {
    padding: 50px 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.underline {
    width: 50px;
    height: 4px;
    background: #4CAF50;
    margin: 0 auto 20px;
    border-radius: 5px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.testimonial:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 20px cyan;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid cyan;
    transition: transform 0.3s ease-in-out;
}

/* Image Zoom on Hover */
.testimonial:hover img {
    transform: scale(1.1);
}

h4 {
    font-size: 18px;
    margin: 10px 0 5px;
    font-weight: 600;
}

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
}








/* projects */
.projects {
    padding: 50px 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.underline {
    width: 50px;
    height: 4px;
    background: #4CAF50;
    margin: 0 auto 20px;
    border-radius: 5px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.project {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.project img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Overlay Effect */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 157, 175, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 15px;
    text-align: center;
}

/* Hover Effect */
.project:hover .overlay {
    opacity: 1;
}

.project:hover img {
    transform: scale(1.1);
}

.project h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.project p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 10px;
}

.btn2 {
    display: inline-block;
    padding: 8px 15px;
    background: cyan;
    color: #0d1117;
    text-decoration: none;
    font-size: 14px;
    border-radius: 15px;
    border: 2px solid cyan;
    transition background: 0.3s;
}

.btn2:hover {
    background: #111;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    @media (max-width: 768px) {
    .projects-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px; /* Space between projects */
    }
    
    .project-card {
        width: 45%; /* Reduce size to match service section */
        height: auto; /* Adjust height automatically */
        padding: 10px; /* Add some space inside */
        text-align: center;
    }

    .project-card img {
        width: 100%;
        height: auto;
        border-radius: 10px; /* Add smooth edges */
    }
}
}



/* WhatsApp Floating Button Container */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

/* Message Above WhatsApp Icon */
.whatsapp-text {
    background-color: #25d366;
    color: white;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 10px;
    margin-bottom: 5px;
    box-shadow: cyan;
    animation: fadeIn 1s ease-in-out;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    width: 60px;
    height: 60px;
    /* background-color: #25d366; */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}1

/* Hover effect */
.whatsapp-float:hover {
    background-color: cyan;
}

/* Animation for Message */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}



/* footer */
footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
}

.footer-logo h2 {
    color: cyan;
    font-size: 24px;
}

.footer-links, .footer-contact, .footer-social {
    width: 250px;
    text-align: left;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: cyan;
}

.footer-contact p, .footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: cyan;
}

.footer-social .social-icons a {
    font-size: 20px;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}

.footer-social .social-icons a:hover {
    color: cyan;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid gray;
    padding-top: 10px;
}





        /* Contact Section */
        .contact-container {
            width: 90%;
            max-width: 1000px;
            background: #131313;
            padding: 40px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0px 0px 15px rgba(0, 255, 255, 0.4);
        }

        .contact-container h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .contact-container h2 span {
            color: cyan;
        }

        .contact-description {
            font-size: 1rem;
            margin-bottom: 30px;
            color: #ccc;
        }

        /* Contact Content */
        .contact-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 30px;
        }

        /* Left Side - Contact Info */
        .contact-info {
            flex: 1;
            max-width: 45%;
            text-align: left;
            padding-right: 20px;
            border-right: 2px solid cyan;
        }

        .contact-info h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: cyan;
        }

        .info-box {
            display: flex;
            align-items: center;
            gap: 15px;
            background: #222;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 15px;
        }

        .info-box i {
            font-size: 22px;
            color: cyan;
        }

        /* Social Media Icons */
        .social-icons {
            margin-top: 15px;
        }

        .social-icons a {
            display: inline-block;
            font-size: 22px;
            color: cyan;
            width: 45px;
            height: 45px;
            line-height: 45px;
            text-align: center;
            border-radius: 50%;
            border: 2px solid cyan;
            margin: 5px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: cyan;
            color: black;
        }

        /* Right Side - Contact Form */
        .contact-form {
            flex: 1;
            max-width: 50%;
            display: flex;
            flex-direction: column;
            gap: 15px;
            text-align: left;
        }

        .contact-form h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: cyan;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: none;
            outline: none;
            background: #1c1c1c;
            color: white;
            border-radius: 5px;
            transition: 0.3s;
            font-size: 1rem;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border: 2px solid cyan;
            background: #262626;
        }

        .contact-form textarea {
            resize: none;
            height: 120px;
        }

        .btn {
            padding: 12px;
            background: cyan;
            color: black;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            transition: 0.3s;
            border-radius: 5px;
        }

        .btn:hover {
            background: white;
            color: black;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: white;
            color: black;
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .success-message button {
            margin-top: 10px;
            padding: 8px 15px;
            background: cyan;
            border: none;
            cursor: pointer;
            font-size: 14px;
            border-radius: 5px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
                text-align: center;
            }

            .contact-info {
                max-width: 100%;
                text-align: center;
                border-right: none;
                padding-right: 0;
            }

            .info-box {
                justify-content: center;
            }

            .contact-form {
                max-width: 100%;
            }
        }

