:root {
    --primary-color: #8B2799;
    --secondary-color: #6A1B7A;
    --accent-color: #A855F7;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-light: #F7FAFC;
    --bg-purple: #F3E8FF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #f8f9fa;
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100vw;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 50%, #DDD6FE 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="80" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    animation: expandWidth 2s ease-out 0.5s both;
}

@keyframes expandWidth {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.hero-buttons {
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color), #6A1B7A);
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    margin-right: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 39, 153, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::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: left 0.6s;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #6A1B7A, var(--primary-color));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 39, 153, 0.4);
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 39, 153, 0.1);
}

.btn-secondary-custom:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 39, 153, 0.3);
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(139, 39, 153, 0.2);
    animation: fadeInRight 1s ease-out 0.2s both;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 39, 153, 0.1), transparent);
    z-index: 1;
    border-radius: 20px;
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
    animation: pulse 4s ease-in-out infinite;
}

.hero-image:hover img {
    transform: scale(1.08);
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite linear;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 12px;
    height: 12px;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 6px;
    height: 6px;
    left: 70%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 10px;
    height: 10px;
    left: 80%;
    animation-delay: 6s;
}

.particle:nth-child(5) {
    width: 14px;
    height: 14px;
    left: 30%;
    animation-delay: 8s;
}

.particle:nth-child(6) {
    width: 8px;
    height: 8px;
    left: 90%;
    animation-delay: 10s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    color: #6B7280;
    margin-bottom: 35px;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Enhanced Buttons */
.btn-primary-custom span,
.btn-secondary-custom span {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover span,
.btn-secondary-custom:hover span {
    transform: translateX(-5px);
}

.btn-primary-custom i,
.btn-secondary-custom i {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover i,
.btn-secondary-custom:hover i {
    transform: translateX(5px);
}

/* Image Enhancements */
.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--primary-color), #6A1B7A, var(--primary-color));
    border-radius: 30px;
    filter: blur(20px);
    opacity: 0.3;
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.tech-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: badge-float 3s ease-in-out infinite;
}

.tech-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.tech-badge span {
    font-weight: 600;
    color: #374151;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Floating Services Background */
.floating-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.service-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 39, 153, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s ease;
    animation: float-service infinite linear;
    opacity: 0;
    box-shadow: 0 8px 25px rgba(139, 39, 153, 0.1);
    animation-fill-mode: forwards;
}

.service-float i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-float:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 15px 35px rgba(139, 39, 153, 0.3);
    z-index: 10;
}

.service-float:hover i {
    color: var(--secondary-color);
    animation: pulse-icon 0.6s ease-in-out;
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Organized service float animations - aesthetic wave pattern */
.service-float:nth-child(1) {
    bottom: -100px;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.service-float:nth-child(2) {
    bottom: -100px;
    left: 35%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.service-float:nth-child(3) {
    bottom: -100px;
    right: 35%;
    animation-delay: 8s;
    animation-duration: 22s;
}

.service-float:nth-child(4) {
    bottom: -100px;
    right: 15%;
    animation-delay: 12s;
    animation-duration: 19s;
}

.service-float:nth-child(5) {
    left: -150px;
    top: 45%;
    animation-delay: 16s;
    animation-duration: 21s;
}

.service-float:nth-child(6) {
    right: -150px;
    top: 55%;
    animation-delay: 20s;
    animation-duration: 23s;
    animation-name: float-from-right;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-float-right {
        display: none;
    }

    .service-float {
        font-size: 0.8rem;
        padding: 12px 16px;
    }
}

@media (max-width: 768px) {
    .floating-services {
        display: none;
    }
}

@keyframes float-service {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
        transform: translateY(-10vh) translateX(5px) rotate(2deg) scale(0.9);
    }

    25% {
        transform: translateY(-25vh) translateX(15px) rotate(8deg) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-50vh) translateX(-10px) rotate(-5deg) scale(1.1);
        opacity: 1;
    }

    75% {
        transform: translateY(-75vh) translateX(20px) rotate(6deg) scale(1);
        opacity: 0.7;
    }

    85% {
        transform: translateY(-85vh) translateX(-5px) rotate(-2deg) scale(0.95);
        opacity: 0.5;
    }

    95% {
        transform: translateY(-95vh) translateX(0px) rotate(0deg) scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: translateY(-105vh) translateX(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
}

/* Animation for services floating from sides with organized pattern */
@keyframes float-from-side {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
        transform: translateX(-40px) translateY(-15px) rotate(3deg) scale(0.9);
    }

    30% {
        transform: translateX(-80px) translateY(10px) rotate(10deg) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateX(-140px) translateY(-25px) rotate(-8deg) scale(1.1);
        opacity: 1;
    }

    70% {
        transform: translateX(-200px) translateY(20px) rotate(5deg) scale(1);
        opacity: 0.8;
    }

    85% {
        transform: translateX(-240px) translateY(-10px) rotate(-3deg) scale(0.95);
        opacity: 0.5;
    }

    95% {
        transform: translateX(-270px) translateY(0px) rotate(0deg) scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: translateX(-300px) translateY(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
}

/* Animation for services floating from right side */
@keyframes float-from-right {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
        transform: translateX(40px) translateY(-15px) rotate(-3deg) scale(0.9);
    }

    30% {
        transform: translateX(80px) translateY(10px) rotate(-10deg) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateX(140px) translateY(-25px) rotate(8deg) scale(1.1);
        opacity: 1;
    }

    70% {
        transform: translateX(200px) translateY(20px) rotate(-5deg) scale(1);
        opacity: 0.8;
    }

    85% {
        transform: translateX(240px) translateY(-10px) rotate(3deg) scale(0.95);
        opacity: 0.5;
    }

    95% {
        transform: translateX(270px) translateY(0px) rotate(0deg) scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: translateX(300px) translateY(0px) rotate(0deg) scale(0.8);
        opacity: 0;
    }
}

/* Apply side animation to right services */
.service-float-right {
    animation-name: float-from-side;
}

/* Bouncing animation for edge collision */
@keyframes bounce-vertical {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce-horizontal {

    0%,
    100% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(20px);
    }
}

/* Enhanced floating services with bounce detection */
.service-float.bouncing {
    animation: bounce-vertical 0.6s ease-in-out 3;
}

.service-float-right.bouncing {
    animation: bounce-horizontal 0.6s ease-in-out 3;
}

/* Service tooltip on hover */
.service-float::after {
    content: attr(data-service);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-float:hover::after {
    opacity: 1;
}

/* Enhanced hero content positioning */
.hero-content {
    position: relative;
    z-index: 5;
}

.hero-image {
    position: relative;
    z-index: 5;
}

/* Beautiful Learn More Button */
.btn-learn-more {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), #6A1B7A);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(139, 39, 153, 0.3);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-learn-more::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: left 0.5s;
}

.btn-learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 39, 153, 0.4);
    color: white;
    text-decoration: none;
}

.btn-learn-more:hover::before {
    left: 100%;
}

.btn-learn-more:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(139, 39, 153, 0.3);
}

.btn-learn-more i {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.more-services {
    text-align: center;
    margin-top: 50px;
}

.more-services a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--bg-purple);
}

.project-filters {
    text-align: center;
    margin-bottom: 50px;
}

.filter-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.filter-btn:not(.active) {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.project-card {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 1;
    transform: none;
    border: 1px solid rgba(139, 39, 153, 0.1);
    height: fit-content;
    max-width: 320px;
    margin: 0 auto;
    position: static;
    visibility: visible;
}

.project-card:hover {
    box-shadow: 0 12px 25px rgba(139, 39, 153, 0.15);
    border-color: rgba(139, 39, 153, 0.2);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.project-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.project-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

.projects-grid {
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    min-height: 400px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonial-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.testimonial-card {
    text-align: center;
    padding: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Why TDARCS Section */
.why-tdarcs {
    padding: 100px 0;
    background: var(--bg-purple);
}

.why-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-badge {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.feature-row {
    margin-bottom: 80px;
    align-items: center;
}

.feature-content {
    padding: 40px;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-quote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 20px;
}

.feature-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-row:hover .feature-image img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        text-align: center;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        display: block;
        width: 100%;
        margin: 10px 0;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .feature-row {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}



/* Input Transition */
.form-control {
    transition: all 0.3s ease;
}

/* Input Hover Effects */
.form-control:hover {
    border-bottom-color: #667eea !important;
    transform: translateY(-2px);
}

/* Input Focus Effects */
.form-control:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: #764ba2 !important;
    transform: translateY(-2px);
}

/* Button Hover Effect */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6) !important;
}

/* Placeholder Color */
.form-control::placeholder {
    color: #A0AEC0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* Placeholder Hover Color */
.form-control:hover::placeholder {
    color: #667eea;
}
