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

body {
    font-family: "Bell MT", serif;
    background-color: #f5f0e0;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-radius: 0 0 15px 15px;
}

.navbar.scrolled {
    background-color: #f5f0e0;
    background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='10' height='10' x='0' y='0' fill='%23f5f0e0'/%3E%3Crect width='20' height='20' x='20' y='20' fill='%23f5f0e0'/%3E%3Crect width='10' height='10' x='0' y='10' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3Crect width='10' height='10' x='10' y='0' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3C/svg%3E");
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}


.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    cursor: pointer;
}

.logo-text {
    font-size: 2.4rem;
    margin-top: 10px;
    font-weight: 900;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-text.scrolled {
    text-decoration: none;
    -webkit-text-fill-color: #ad0e60;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.contact-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.contact-sidebar .icon {
    width: 45px;
    height: 45px;
    background: white;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0.2, 0.2);
    transition: transform 0.3s, background 0.3s;
    animation: slideInLeft 0.8s ease forwards;
}

.contact-sidebar .icon:hover {
    background-color: #aa136b;
    color: #fff;
    transform: scale(1.1);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

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


/* This creates the dark shadow overlay on the video */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* adjust the 0.5 for darker/lighter */
    z-index: 1;
}

/* ===== Desktop Navigation Bar ===== */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    height: 60px;
    background: transparent;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: all 0.4s ease;
    font-weight: bold;
    padding: 10px 15px;
    overflow: hidden;
}

.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    background: transparent;
    transition: all 0.4s ease;
}

.nav-link.scrolled {
    color: #ad0e60;
}

.nav-link.scrolled::before,
.nav-link.scrolled::after {
    background: #000000;
    opacity: 0.8;
}


/* Vertical lines on sides */
.nav-link::before,
.nav-link::after {
    content: '';
    position: absolute;
    background: #d6d6d6;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    opacity: 0.8;
}

/* Left vertical line */
.nav-link::before {
    width: 3px;
    height: 60%;
    top: 20%;
    left: 0;
}

/* Right vertical line */
.nav-link::after {
    width: 3px;
    height: 60%;
    top: 20%;
    right: 0;
}

/* Transform to horizontal lines on hover */
.nav-link:hover::before {
    width: 100%;
    height: 3px;
    top: 0;
    left: 0;
}

.nav-link:hover::after {
    width: 100%;
    height: 3px;
    bottom: 0;
    right: 0;
    top: auto;
}

.nav-link:hover {
    color: #140303;
}

/* CTA Button Styles */
.cta-button {
    background: linear-gradient(135deg, #aaaaaa, #9c9c9c);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fffeff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: #f5f0e0;
    /* background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='10' height='10' x='0' y='0' fill='%23f5f0e0'/%3E%3Crect width='20' height='20' x='20' y='20' fill='%23f5f0e0'/%3E%3Crect width='10' height='10' x='0' y='10' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3Crect width='10' height='10' x='10' y='0' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3C/svg%3E");
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(20px); */
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    width: 1500px;
    text-align: start;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    z-index: 2;
    margin-bottom: -30px;
    gap: 50px;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: -10px;
    line-height: 1.2;
    color: #ffffff;
    padding: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    text-decoration: none;
    /* border: 2px solid rgb(0, 0, 0); */
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: black;
    position: relative;
    border-radius: 50px;
    transition: all 1s;
    overflow: hidden;
}

.btn:hover {
    color: rgb(255, 255, 255);
}

.btn::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: rgba(92, 92, 92, 0.897);
    z-index: -1;
    transition: all 1s;
}

.btn:hover::before {
    width: 160%;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #000000;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Section Styles */
.section-header {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    margin-top: 6rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.section-badge span {
    color: #2e2e2e;
    /* Muted gray */
    font-size: 2.4rem;
    font-weight: 800;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #212529;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #3a3a3a;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 1rem 0;
    background-color: #f5f0e0;
    /* background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='10' height='10' x='0' y='0' fill='%23f5f0e0'/%3E%3Crect width='20' height='20' x='20' y='20' fill='%23f5f0e0'/%3E%3Crect width='10' height='10' x='0' y='10' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3Crect width='10' height='10' x='10' y='0' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3C/svg%3E");
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(20px); */
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-row {
    display: flex;
    align-items: center;
    min-height: 430px;
    position: relative;
}

.service-image {
    width: 50%;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: -20px 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

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

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

.service-text {
    width: 50%;
    background: white;
    padding: 1.3rem;
    border-radius: 24px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 2;
}

/* Default positioning (left-aligned text) */
.service-text {
    left: 0;
}

.service-detail-row:not(.reverse) .service-image {
    margin-left: 45%;
}

/* Reversed positioning (right-aligned text) */
.service-detail-row.reverse {
    flex-direction: row-reverse;
}

.service-detail-row.reverse .service-image {
    margin-left: 0;
    margin-right: 45%;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-row.reverse .service-text {
    right: 0;
    left: auto;
}

/* Content Styling */
.service-text h3 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.service-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service-text ul li {
    background: #f8f5ff;
    border-radius: 50px;
    font-size: 1rem;
    line-height: 1.5;
    color: #3f3f3f;
    display: flex;
    flex-wrap: wrap;
    /* allows wrapping on small screens */
    align-items: center;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
}

.service-text ul li::before {
    content: '+';
    margin-right: 0.5rem;
    font-weight: bold;
    color: #a02370;
    line-height: 1.5;
}

/* Responsive Label/Description Layout */
.label {
    min-width: 250px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ✅ Media Query for Smaller Screens */
@media (max-width: 600px) {
    .service-text ul li {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 1rem;
    }

    .label{
        width: 100%;
    }
    
    .label::after {
        content: ':';
        display: inline;
        margin-left: 0.1rem;
    }
}

@media (max-width: 1200px) {
    .service-text ul li {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 1rem;
    }

    .label{
        width: 100%;
    }
    
    .label::after {
        content: ':';
        display: inline;
        margin-left: 0.1rem;
    }
}

/* About Section */
.about {
    padding: 2rem 0;
    background: #f5f0e0;
}

.about-content {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #4a4a4a;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-align: justify;
}


.skills-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 1rem;
}

.skill-tag {
    background: rgb(233, 236, 239);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    color: #0565f7;
    font-size: 1.1rem;
    font-weight: 500;
}

.values-section,
.team-section {
    margin-bottom: 5rem;
}

.values-section h3,
.team-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    color: #0d6efd;
    font-size: 2rem;
}

.value-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.value-item p {
    color: #495057;
    line-height: 1.8;
    font-weight: 500;
}

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

.team-member {
    text-align: center;
    background: #e1f7e7;
    transition: transform 0.3s ease;
    border-radius: 16px;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 16px;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-image::after {
    opacity: 1;
}

.team-member h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-expertise {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio {
    padding: 2rem 0;
    background: #f5f0e0;
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #495057;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgb(99, 167, 255);
    color: rgb(0, 0, 0);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: rgb(215, 252, 255);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
}
.portfolio-image {
    position: relative;
    overflow: hidden; /* Ensures zoomed image doesn't overflow */
    padding-top: 34.25%; /* 16:9 Aspect Ratio (change as needed) */
}

.portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}
@media (max-width: 1024px) {
    .portfolio-image {
        padding-top: 35%; /* 4:3 for tablets */
    }
}

/* Optional: Different aspect ratios for different screen sizes */
@media (max-width: 768px) {
    .portfolio-image {
        padding-top: 35%; /* 4:3 for tablets */
    }
}

@media (max-width: 480px) {
    .portfolio-image {
        padding-top: 35%; /* 1:1 for mobile */
    }
}
.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0d6efd;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #a74abe;
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
    text-align: center;
}

.portfolio-category {
    color: #0165fc;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.portfolio-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.portfolio-item:hover .portfolio-title {
    color: #460664;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: space-around;
}

.external-name {
    color: #222222;
    margin-left: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.external-link {
    color: #222222;
    /* or any light/dark color you prefer */
    margin-left: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.external-link:hover {
    color: #1134f8;
}

.tech-tag {
    background: rgb(252, 238, 202);
    color: #272727;
    border: 1px solid rgba(83, 83, 83, 0.719);
    border-radius: 50px;
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
}

/* Contact Section */
.contact {
    padding: 2rem 0 0;
    background: #f5f0e0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.contact-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: #495057;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: wheat;
    border-radius: 12px;
    margin-top: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    color: #0d6efd;
    font-size: 1.7rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.contact-value {
    color: #0d6efd;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-desc {
    color: #1d1d1d;
    font-size: 1rem;
}

.social-links {
    margin: 20px 0;
}

.social-links h4 {
    color: #212529;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 60px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn i,
.social-btn .social-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
}

/* LinkedIn */
.social-btn:nth-child(1) {
    background: #284d61;
}

.social-btn:nth-child(1):hover {
    background: #009719;
}

/* Twitter */
.social-btn:nth-child(2) {
    background: #1DA1F2;
}

.social-btn:nth-child(2):hover {
    background: #2de0ec;
    color: #000000;
}

/* GitHub */
.social-btn:nth-child(3) {
    background: #333;
}

.social-btn:nth-child(3):hover {
    background: #fffdfd;
    color: #333333;
}

/* Hover effect */
.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #495057;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: #212529;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.submit-btn {
    height: 50px;
    width: 150px;
    border: 1px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.submit-btn::after {
    content: "Thank You";
    height: 50px;
    font-family: "High Tower Text", serif;
    width: 150px;
    background-color: #91ee7e;
    color: #000000;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(50px);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.submit-btn::before {
    content: "Send Message";
    height: 50px;
    width: 150px;
    font-family: "High Tower Text", serif;
    background-color: #6ae4fa;
    color: #000000;
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateY(0px) scale(1.2);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}

.submit-btn:hover::after {
    transform: translateY(0) scale(1.2);
}

.submit-btn:hover::before {
    transform: translateY(-50px) scale(0) rotate(120deg);
}



/* Footer */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
    background-color: #ffd1e1d3;
    border-radius: 20px 20px 0 0;
    /* background-image: url("data:image/svg+xml,%3Csvg width='50' height='50' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='10' height='10' x='0' y='0' fill='%23f5f0e0'/%3E%3Crect width='20' height='20' x='20' y='20' fill='%23f5f0e0'/%3E%3Crect width='10' height='10' x='0' y='10' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3Crect width='10' height='10' x='10' y='0' fill='%23e6ddc4' fill-opacity='0.4'/%3E%3C/svg%3E");
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    gap: 2rem;
    font-weight: 600;
    color: #000;
    padding: 20px;
}

.footer-text {
    color: #000000;
    font-size: 1.3rem;
    padding: 20px;
}

/* Animations */
@keyframes float {

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

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

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

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

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

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

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(248, 249, 250, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .social-buttons {
        flex-direction: column;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}