:root {
    --theme-color: #2AC0FB;
    --dark-bg: #1A1A1A;
    --light-bg: #666666;
    --dark-text: #1A1A1A;
    --light-text: #FFFFFF;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    transition: var(--transition);
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--dark-text);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3.5px);
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--theme-color);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    transition: var(--transition);
}

.logo-white {
    display: block;
}

.logo-black {
    display: none;
}

.light-mode .logo-white {
    display: none;
}

.light-mode .logo-black {
    display: block;
}
.light-mode .navbar {
    background-color: rgba(198, 197, 197, 0.3);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--theme-color);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.light-mode .nav-link {
    color: var(--dark-text);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--light-text);
    transition: var(--transition);
}

.light-mode .theme-toggle {
    color: var(--dark-text);
}

.theme-toggle:hover {
    color: var(--theme-color);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8ZGlnaXRhbCUyMGJhY2tncm91bmR8ZW58MHx8MHx8&ixlib=rb-1.2.1&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.light-mode .hero {
    background: linear-gradient(rgba(198, 197, 197, 0.8), rgba(198, 197, 197, 0.8)), url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?ixid=MnwxMjA3fDB8MHxzZWFyY2h8Mnx8ZGlnaXRhbCUyMGJhY2tncm91bmR8ZW58MHx8MHx8&ixlib=rb-1.2.1&w=1000&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    z-index: 10;
}

.company-name {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    perspective: 1000px;
}
.company-name span
{
    margin: -1.5%;
}

.letter {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
    transform-style: preserve-3d;
}

.letter:hover {
    color: var(--theme-color);
    transform: translateY(-10px) rotateY(20deg);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--theme-color);
    transition: width 0.4s ease;
    transform: translateX(-20px) skewX(45deg);
    z-index: -1;
}

.hero-btn:hover {
    color: var(--dark-bg);
}

.hero-btn:hover::before {
    width: 180%;
}

.hero-card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.267);
    padding: 3rem;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.5s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.light-mode .hero-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(26, 26, 26, 0.1);
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--theme-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: scale(1.05) rotateY(10deg);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
    z-index: 1;
}

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

.service-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-desc {
    max-height: 0;
    opacity: 0;
    transition: var(--transition);
    overflow: hidden;
}

.service-card:hover .service-title {
    transform: translateY(-20px);
}

.service-card:hover .service-desc {
    max-height: 100px;
    opacity: 1;
}

.about {
    padding: 8rem 0;
    background-color: rgba(26, 26, 26, 0.9);
}

.light-mode .about {
    background-color: rgba(198, 197, 197, 0.9);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-img {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-img img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--theme-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Team Section - Separate styling */
.team {
    padding: 8rem 0;
    background-color: rgba(20, 20, 20, 0.95);
}

.light-mode .team {
    background-color: rgba(240, 240, 240, 0.95);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.light-mode .team-card {
    background-color: rgba(255, 255, 255, 0.7);
}

.team-img-container {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-img-container:hover .team-img {
    transform: scale(1.08);
}

/* Team glass info element */
.team-glass-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    transition: opacity 0.4s ease;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 1;
    text-align: center;
}

.light-mode .team-glass-info {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-glass-info h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.team-glass-info p {
    color: var(--theme-color);
    font-size: 0.9rem;
    margin: 0;
}

.light-mode .team-glass-info h4 {
    color: #333;
}

.team-img-container:hover .team-glass-info {
    opacity: 0;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: height 0.5s ease;
    z-index: 2;
}

.light-mode .team-overlay {
    background-color: rgba(255, 255, 255, 0.9);
}

.team-img-container:hover .team-overlay {
    height: 100%;
}

.team-overlay-content {
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    text-align: center;
    transition: transform 0.5s ease;
    transform: translateY(100%);
}

.light-mode .team-overlay-content {
    color: #333;
}

.team-img-container:hover .team-overlay-content {
    transform: translateY(0);
}

.team-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--theme-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--theme-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.portfolio-btn:hover {
    background-color: #00b8d4;
    transform: translateY(-3px);
}


/* Projects Section */
.projects {
    padding: 8rem 0;
    background-color: rgba(22, 22, 22, 0.95);
    overflow: hidden;
    position: relative;
}

.light-mode .projects {
    background-color: rgba(245, 245, 245, 0.95);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Projects carousel */
.projects-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 3rem 0;
}

.projects-track {
    display: flex;
    gap: 2rem;
    animation: scrollProjects 40s linear infinite;
    width: max-content;
}

.projects-carousel:hover .projects-track {
    animation-play-state: paused;
}

@keyframes scrollProjects {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5 - 10rem)); 
    }
}

/* Project cards */
.project-card {
    flex: 0 0 300px;
    height: 350px;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    transform: rotate3d(0, 0, 1, 0deg);
}

.project-card:hover {
    transform: rotate3d(0, 0, 1, 0deg);
}

.project-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    width: 100%;
}

.project-img-container {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.project-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(100%); /* Black and white by default */
}

.project-card:hover .project-img-container img {
    transform: scale(1.1);
    filter: grayscale(0%); /* Color on hover */
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
    padding: 2rem 1.5rem;
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}

.project-card:hover .project-overlay {
    opacity: 1;
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.project-overlay p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.view-project {
    display: inline-block;
    color: var(--theme-color);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
}

.view-project::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    transition: width 0.3s ease;
}

.project-card:hover .view-project::after {
    width: 100%;
}

.light-mode .project-overlay {
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5), transparent);
    color: #333;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .projects-track {
        gap: 1.5rem;
    }
    
    .project-card {
        flex: 0 0 220px;
        height: 300px;
    }
    
    @keyframes scrollProjects {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-220px * 5 - 7.5rem));
        }
    }
}


/* Contact Section */
.contact {
    padding: 8rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-form {
    background-color: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.light-mode .contact-form {
    background-color: rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(26, 26, 26, 0.5);
    color: var(--light-text);
    transition: var(--transition);
}

.light-mode .form-input {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(26, 26, 26, 0.2);
    color: var(--dark-text);
}

.form-input:focus {
    outline: none;
    border-color: var(--theme-color);
    box-shadow: 0 0 0 2px rgba(42, 192, 251, 0.3);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: transparent;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--theme-color);
    transition: width 0.4s ease;
    transform: skewX(45deg);
    z-index: -1;
}

.submit-btn:hover {
    color: var(--dark-bg);
}

.submit-btn:hover::before {
    width: 180%;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color);
    color: var(--dark-bg);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
}

.info-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-details p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.info-details a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-details a:hover {
    color: var(--theme-color);
}

/* Map Container */
.map-container {
    grid-column: 1 / -1;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 5rem 0 1rem;
    position: relative;
}

.light-mode .footer {
    background-color: rgba(198, 197, 197, 0.9);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: var(--theme-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.light-mode .social-link {
    background-color: rgba(26, 26, 26, 0.1);
    color: var(--dark-text);
}

.social-link:hover {
    background-color: var(--theme-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--theme-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: inherit;
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--theme-color);
    opacity: 1;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.light-mode .copyright {
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.6s ease forwards;
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--theme-color);
    z-index: 2000;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--theme-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: #1ba0db;
    transform: translateY(-5px);
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 1001;
    padding: 2rem;
    transition: right 0.4s ease;
    overflow-y: auto;
}

.light-mode .mobile-nav {
    background-color: var(--light-bg);
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    font-size: 1.5rem;
    color: var(--light-text);
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    transition: color 0.3s ease;
}

.light-mode .close-menu {
    color: var(--dark-text);
}

.close-menu:hover {
    color: var(--theme-color);
}

.mobile-nav-links {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.light-mode .mobile-nav-link {
    color: var(--dark-text);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.mobile-nav-link:hover {
    color: var(--theme-color);
    padding-left: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .company-name {
        font-size: 4rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-img, .about-text {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .company-name {
        font-size: 3rem;
    }
    
    .hero-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .hero-btn {
        padding: 0.6rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Form Success Message */
.success-message {
    background-color: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: none;
}

.success-message.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Form Error Message */
.error-message {
    background-color: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #e74c3c;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
    display: none;
}

.error-message.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--light-text);
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Floating elements animation */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}






