:root {
    --primary-color: #00ffff;
    --secondary-color: #00cccc;
    --dark-color: #121212;
    --light-cyan: #e6ffff;
    --gradient: linear-gradient(45deg, #00ffff, #00cccc);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-color);
    color: white;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar Styles */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    background: var(--gradient);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.hero-text {
    flex: 1;
    padding-right: 3rem;
}

.main-heading {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
}

.heading-shadow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: rgba(0, 255, 255, 0.1);
    transform: translate(5px, 5px);
    filter: blur(4px);
}

.sub-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary-color);
}

.heading-reflection {
    position: absolute;
    bottom: -20px;
    left: 0;
    transform: scaleY(-0.25);
    opacity: 0.3;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.primary-btn {
    background: var(--gradient);
    color: var(--dark-color);
    border: none;
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient);
    transition: all 0.3s ease;
    z-index: -1;
}

.secondary-btn:hover {
    color: var(--dark-color);
}

.secondary-btn:hover::before {
    width: 100%;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Button Icon Animation */
.secondary-btn i {
    transition: all 0.3s ease;
}

.secondary-btn:hover i {
    animation: sendIcon 0.5s ease forwards;
}

@keyframes sendIcon {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-image img {
    width: 350px;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* Animated Background Elements */
.image-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.bg-shape-1, .bg-shape-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.bg-shape-1 {
    background: linear-gradient(
        45deg,
        rgba(0, 255, 255, 0.15),
        rgba(0, 255, 255, 0.05)
    );
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotateShape 20s linear infinite;
}

.bg-shape-2 {
    background: linear-gradient(
        -45deg,
        rgba(0, 255, 255, 0.1),
        rgba(0, 255, 255, 0.02)
    );
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: rotateShape 15s linear infinite reverse;
}

.image-frame {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(0, 255, 255, 0.2);
    border-radius: 30px;
    z-index: 1;
}

/* Glowing Dots Background */
.dots-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    background-image: radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Floating Effect */
.hero-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(0, 255, 255, 0.2) 0%,
        transparent 70%
    );
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

/* Animations */
@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Floating Icons Positioning */
.floating-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    z-index: 3;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.icon1 {
    top: 15%;
    right: 15%;
}

.icon2 {
    bottom: 20%;
    left: 15%;
}

.icon3 {
    bottom: 15%;
    right: 25%;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-image img {
        width: 280px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        width: 240px;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
    text-shadow: 0 0 15px var(--primary-color);
}
    
/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}
.asad{
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Updated Skills Section Styles */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.skill-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.1);
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.2);
}

.skill-card i,
.skill-card .tailwind-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Specific style for Tailwind icon */
.tailwind-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
}

.skill-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.skill-card p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    background: var(--gradient);
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease-in-out;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Projects Section */
.section-subtitle {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0) 0%,
        rgba(0, 255, 255, 0.05) 50%,
        rgba(0, 255, 255, 0) 100%
    );
    transform: translateX(-100%);
    transition: 0.5s;
}

.project-card:hover::before {
    transform: translateX(100%);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.project-content p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.6;
}

.project-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.project-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e0e0e0;
}

.project-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.project-tech span {
    background: rgba(0, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 15px;
}

.cta-text {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    border-radius: 25px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .cta-container {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}

/* Contact Section Styles */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-box p {
    color: #e0e0e0;
}

.availability-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    margin-top: 1rem;
}

.availability-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.availability-list {
    list-style: none;
    margin-top: 1rem;
}

.availability-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.availability-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
}

.form-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-color);
    color: white;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .main-heading {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-image img {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .sub-heading {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-image img {
        width: 250px;
    }
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transform: rotate(-3deg) scale(1.02);
    z-index: 1;
}

.about-subtitle {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.about-description {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    line-height: 1.8;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    gap: 0.5rem;
}

.detail-label {
    color: var(--primary-color);
    font-weight: bold;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    display: block;
}

.stat-label {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.about-interests {
    margin-top: 2rem;
}

.about-interests h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.interests-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.interest-item {
    background: rgba(0, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.interest-item:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
}

.interest-item i {
    color: var(--primary-color);
}

/* Responsive Design for About Section */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .interests-list {
        justify-content: center;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .skill-card {
        padding: 2rem 1.5rem;
    }
}

/* Hire Badge Styles */
.hire-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.hire-badge i {
    font-size: 0.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    padding: 4rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-left {
    padding-right: 2rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff 50%, #00ffff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.footer-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 400px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid #00ffff;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.footer-desc:hover {
    color: #fff;
    border-left-color: #fff;
    padding-left: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-section ul li i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #a0a0a0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-left {
        text-align: center;
        padding-right: 0;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section ul li i {
        display: none;
    }

    .footer {
        padding: 2rem 0 1rem 0;
    }
}

/* Updated Social Links Styles */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.social-links a:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* WhatsApp specific style */
.social-links a .fa-whatsapp {
    font-size: 1.4rem;
}

/* Hiring Status Styles in Contact Section */
.hiring-status {
    background: rgba(0, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin: 2rem auto 3rem;
    max-width: 600px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hiring-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 255, 255, 0) 0%,
        rgba(0, 255, 255, 0.1) 50%,
        rgba(0, 255, 255, 0) 100%
    );
    animation: shine 3s infinite;
}

.status-icon {
    margin-bottom: 1rem;
}

.status-icon i {
    color: var(--primary-color);
    font-size: 0.8rem;
    animation: pulse 1.5s infinite;
}

.hiring-status h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.hiring-status p {
    color: #e0e0e0;
    font-size: 1.1rem;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.5; transform: scale(0.8); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-links {
        gap: 1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .hiring-status {
        padding: 1.5rem;
        margin: 1.5rem auto 2rem;
    }

    .hiring-status h3 {
        font-size: 1.5rem;
    }

    .hiring-status p {
        font-size: 1rem;
    }
}

/* Interactive Contact Info Styles */
.info-box.clickable {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info-box.clickable:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.click-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.info-box.clickable:hover .click-hint {
    transform: translateY(0);
}

/* Footer Contact Links */
.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-section ul li a i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Mobile Optimization */
@media (hover: none) {
    .click-hint {
        transform: translateY(0);
        background: rgba(0, 255, 255, 0.05);
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .info-box.clickable {
        padding-bottom: 2rem;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
}

/* Animations */
@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Glowing Effect on Hover */
.floating-icon:hover {
    color: var(--dark-color);
    background: var(--primary-color);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .hero-image img {
        width: 280px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        width: 240px;
    }

    .floating-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .icon1 { right: 0; }
    .icon2 { left: 0; }
    .icon3 { right: 10%; }
}

/* Social Icons Shared Styles */
.social-icons-container {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-icon {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

/* WhatsApp specific size */
.social-icon .fa-whatsapp {
    font-size: 1.4rem;
}

/* Fiverr specific size */
.social-icon .fa-fiverr {
    font-size: 1.4rem;
}

/* Hover Effects */
.social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

.social-icon span {
    position: absolute;
    bottom: -20px;
    font-size: 0.75rem;
    color: var(--primary-color);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-icon:hover span {
    bottom: 5px;
    opacity: 1;
}

.social-icon:hover i {
    transform: translateY(-10px);
}

/* Footer specific adjustments */
footer .social-icons-container {
    justify-content: center;
    margin-top: 1rem;
}

footer .social-icon {
    width: 40px;
    height: 40px;
}

footer .social-icon:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons-container {
        justify-content: center;
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon i {
        font-size: 1rem;
    }

    .social-icons-container {
        gap: 0.8rem;
    }
}

/* Optional: Add these animations for extra flair */
@keyframes socialIconPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.social-icon:active {
    animation: socialIconPop 0.3s ease;
}

/* Optional: Add a subtle glow effect */
.social-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 0.2;
    transform: scale(1.3);
}

/* Contact Section Enhancement */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 10%;
    align-items: center;
    margin-left:-120px ;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Scroll Animation */
.scroll-animation {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn,
    .secondary-btn {
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }
}

/* Updated Contact Form Styles */
.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: white;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Textarea specific adjustments */
.form-group textarea ~ label {
    top: 1rem;
    transform: translateY(0);
}

/* Floating label animation */
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group select:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -1rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Bottom border animation */
.form-group::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.form-group input:focus ~ ::after,
.form-group textarea:focus ~ ::after,
.form-group select:focus ~ ::after {
    width: 100%;
}

/* Show placeholder only on focus */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
    transition: color 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Custom Select Styling */
.form-group select {
    width: 100%;
    padding: 0.8rem 0;
    font-size: 1rem;
    color: white;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

/* Select arrow styling */
.form-group select {
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
                      linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: calc(100% - 8px) calc(1em + 2px),
                         calc(100% - 3px) calc(1em + 2px);
    background-size: 5px 5px,
                    5px 5px;
    background-repeat: no-repeat;
}

/* Select options styling */
.form-group select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Floating label for select */
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -1rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient);
    border: none;
    border-radius: 5px;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Button hover effect */
.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-group {
        margin-bottom: 2rem;
    }
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 350px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

/* Background Elements - Same as Home */
.about-image .image-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.about-image .bg-shape-1 {
    position: absolute;
    width: 120%;
    height: 120%;
    background: linear-gradient(
        45deg,
        rgba(0, 255, 255, 0.15),
        rgba(0, 255, 255, 0.05)
    );
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotateShape 20s linear infinite;
}

.about-image .bg-shape-2 {
    position: absolute;
    width: 110%;
    height: 110%;
    background: linear-gradient(
        -45deg,
        rgba(0, 255, 255, 0.1),
        rgba(0, 255, 255, 0.02)
    );
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    animation: rotateShape 15s linear infinite reverse;
}

.about-image .dots-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(
        circle,
        rgba(0, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 20px 20px;
}

/* Tech Icons */
.about-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    z-index: 3;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Icon Positions */
.about-icon.icon1 {
    top: 10%;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.about-icon.icon2 {
    top: 50%;
    left: -20px;
    animation: float 3s ease-in-out infinite 0.5s;
}

.about-icon.icon3 {
    bottom: 10%;
    right: -20px;
    animation: float 3s ease-in-out infinite 1s;
}

.about-icon.icon4 {
    bottom: 30%;
    left: -20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

/* Animations */
@keyframes rotateShape {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

/* Hover Effects */
.about-icon:hover {
    transform: scale(1.2);
    background: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-image {
        width: 300px;
    }

    .about-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .about-icon.icon1 { right: -15px; }
    .about-icon.icon2 { left: -15px; }
    .about-icon.icon3 { right: -15px; }
    .about-icon.icon4 { left: -15px; }
}

@media (max-width: 480px) {
    .about-image {
        width: 260px;
    }

    .about-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .about-icon.icon1 { right: -10px; }
    .about-icon.icon2 { left: -10px; }
    .about-icon.icon3 { right: -10px; }
    .about-icon.icon4 { left: -10px; }
}

/* CTA Section Styles */
.cta-section {
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

/* Glowing Background Effect */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(0, 255, 255, 0.1),
        transparent 70%
    );
    animation: rotateBg 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Animated Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    background: var(--gradient);
    border-radius: 50px;
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.button-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

/* Button Hover Effects */
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.cta-button:hover .button-text {
    transform: translateX(-3px);
}

.cta-button:hover .button-icon {
    transform: translateX(3px);
}

/* Background Animation */
@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 2.5rem 1.5rem;
        margin: 3rem auto;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Optional: Add these hover effects for extra flair */
.cta-section:hover::before {
    animation-duration: 15s;
}

/* Button click effect */
.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(0, 255, 255, 0.3);
}

/* Optional: Add a subtle pulse animation to the CTA section */
@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.005);
    }
}

.cta-section {
    animation: subtle-pulse 4s ease-in-out infinite;
}

/* Stats Section Styling */
.about-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 255, 255, 0.1),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 2px;
}

.stat-text {
    display: block;
    font-size: 1rem;
    color: #fff;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        max-width: 250px;
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-plus {
        font-size: 1.2rem;
    }
}

/* Add these new animation keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add these animation classes */
.animate-left {
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.animate-right {
    opacity: 0;
    animation: slideInRight 1s ease forwards;
}

.animate-bottom {
    opacity: 0;
    animation: slideInBottom 1s ease forwards;
}

/* Add animation delay utilities */
.delay-200 { animation-delay: 200ms; }
.delay-400 { animation-delay: 400ms; }
.delay-600 { animation-delay: 600ms; }

/* Initial states */
.animate-from-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease;
}

.animate-from-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
}

.animate-from-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-fade-in {
    opacity: 0;
    transition: all 0.6s ease;
}

/* Animation classes */
.animate-from-left.animate-active,
.animate-from-right.animate-active,
.animate-from-bottom.animate-active {
    opacity: 1;
    transform: translate(0);
}

.social-icon .fab.fa-fiverr {
    color: inherit;
    font-size: 1.2em; /* Match other icons size */
    transition: color 0.3s ease;
}

/* Remove any existing SVG-specific styles */
.fiverr-icon {
    display: none; /* Hide the old SVG icon */
}

.custom-fiverr {
    font-weight: bold;
    font-size: 1.2rem;
    color: inherit;
}

.social-icon:hover .custom-fiverr {
    color: var(--dark-color);
}

.fiverr-icon {
    position: relative;
    font-weight: bold;
    text-decoration: none;
}

.fiverr-dot {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.fiverr-dot::before {
    content: "fi";
    position: absolute;
    color: var(--bg-color);
    font-weight: bold;
}

/* Hover effect to match other social icons */
.fiverr-icon:hover .fiverr-dot {
    background-color: var(--hover-color);
}

/* Update floating icons positioning */
.icon4 {
    bottom: 30%;
    left: -20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

/* Make sure fiverr-dot matches floating icon style */
.floating-icon .fiverr-dot {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.floating-icon .fiverr-dot::before {
    color: var(--dark-color);
    font-size: 1rem;
}

.social-links .fiverr-dot {
    width: 20px;
    height: 20px;
    background-color: currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.social-links .fiverr-dot::before {
    content: "fi";
    color: var(--dark-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--gradient);
    border-radius: 30px;
    color: var(--dark-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.2);
}

.download-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

.download-btn:hover i {
    animation: bounceDown 0.5s ease infinite;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

.social-icons-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 1.2rem;
}

/* WhatsApp specific size */
.social-icon .fa-whatsapp {
    font-size: 1.4rem;
}

/* Hover Effects */
.social-icon:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-icons-container {
        justify-content: center;
        gap: 1rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-icon i {
        font-size: 1rem;
    }

    .social-icons-container {
        gap: 0.8rem;
    }
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.split-text {
    background: linear-gradient(to right, #fff 50%, #00ffff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 5px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Add hover effect */
.footer-text:hover .split-text {
    background: linear-gradient(to right, #00ffff 50%, #fff 50%);
    -webkit-background-clip: text;
    background-clip: text;
    transition: background 0.3s ease;
}

/* Form Header Styling */
.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.form-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* Decorative elements */
.form-header::before,
.form-header::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    opacity: 0.3;
}

.form-header::before {
    top: -20px;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.form-header::after {
    bottom: -20px;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Glowing dot accents */
.accent-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
}

.dot-1 { top: 0; left: 20%; }
.dot-2 { top: 50%; right: 15%; }
.dot-3 { bottom: 0; left: 30%; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
}

/* Input Fields Only Styling */
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    outline: none;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

/* Input Focus State */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
    border-bottom-color: var(--primary-color);
    box-shadow: 0 1px 0 0 var(--primary-color);
}

/* Input Hover State */
input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover,
select:hover {
    border-bottom-color: rgba(255, 255, 255, 0.4);
}

/* Textarea Specific */
textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Select Specific */
select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 25px;
    background-image: 
        linear-gradient(45deg, transparent 50%, var(--primary-color) 50%),
        linear-gradient(135deg, var(--primary-color) 50%, transparent 50%);
    background-position: 
        calc(100% - 12px) calc(1em + 2px),
        calc(100% - 7px) calc(1em + 2px);
    background-size: 
        5px 5px,
        5px 5px;
    background-repeat: no-repeat;
}

/* Select Options */
select option {
    background: #1a1a1a;
    color: #fff;
    padding: 10px;
}

/* Placeholder Styling */
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .contact-wrapper {
        display: flex;
        flex-direction: column; 
    }
    .contact-info {
        margin-bottom: 20px; 
    }
}
.image-custom {
  height: 50px;        /* Navbar height ke mutabiq */
  width: auto;         /* Aspect ratio maintain kare */
  vertical-align: middle;
  margin-right: 15px;  /* Text se thoda gap */
}

@media (max-width: 768px) {
  .image-custom {
    height: 40px;      /* Mobile view me thoda chhoti image */
    margin-right: 10px;
  }
}
