/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    font-size: 1.6rem;
}

.container {
    max-width: 104rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 2rem;
    z-index: 9999;
    border-top: 0.2rem solid #6c5ce7;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 104rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    min-width: 30rem;
    font-size: 1.4rem;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {

background: radial-gradient(49.43% 211.29% at 49.81% 0%, #007C29 0%, #1501C5 100%);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #5a4fcf;
}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 0.1rem solid #6c5ce7;
}

.cookie-btn.decline:hover {

background: radial-gradient(49.43% 211.29% at 49.81% 0%, #007C29 0%, #1501C5 100%);
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(1rem);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 0.1rem solid #333;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 104rem;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #6c5ce7;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #6c5ce7;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 2.5rem;
    height: 2rem;
    gap: 0.4rem;
}

.nav-toggle span {
    width: 100%;
    height: 0.3rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 12rem 2rem 8rem;
    background-image: url("./img/bg.png");
     background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 80rem;
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #6c5ce7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: #cccccc;
    max-width: 70rem;
}

.cta-btn {

background: radial-gradient(49.43% 211.29% at 49.81% 0%, #007C29 0%, #1501C5 100%);
    color: #ffffff;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
}

.cta-btn:hover {
    background: #5a4fcf;
    transform: translateY(-0.2rem);
}

.cta-btn span {
    font-size: 1.8rem;
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: #111111;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 40rem;
}

.about-text h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #6c5ce7;
}

.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #cccccc;
}

.about-image {
    flex: 1;
    min-width: 40rem;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 30rem;
    object-fit: cover;
    border-radius: 1rem;
}

.image-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(108, 92, 231, 0.9);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overlay-text {
    font-size: 2rem;
    font-weight: 700;
}

.overlay-icons {
    display: flex;
    gap: 0.5rem;
}

.icon {
    font-size: 1.6rem;
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: #0a0a0a;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #ffffff;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 25rem;
    padding: 3rem 2rem;
    border-radius: 1rem;
    color: #ffffff;
}

.service-card.blue {

background: radial-gradient(49.43% 211.29% at 49.81% 0%, #007C29 0%, #1501C5 100%);
}

.service-card.purple {

background: radial-gradient(49.43% 211.29% at 49.81% 0%, #007C29 0%, #1501C5 100%);
}

.service-card h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.service-card p {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Growth Section */
.growth {
    padding: 8rem 2rem;
    background: #111111;
}

.growth-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.growth-item {
    flex: 1;
    min-width: 25rem;
    padding: 3rem 2rem;
    background: #1a1a2e;
    border-radius: 1rem;
    border-left: 0.4rem solid #6c5ce7;
}

.growth-item h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #6c5ce7;
}

.growth-item p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Results Section */
.results {
    padding: 8rem 2rem;
    background: #0a0a0a;
}

.results-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.results-text {
    flex: 2;
    min-width: 40rem;
}

.results-text h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.3;
}

.results-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #cccccc;
}

.results-image {
    flex: 1;
    min-width: 30rem;
    position: relative;
}

.results-image img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    border-radius: 1rem;
}

.results-stats {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    background: rgba(108, 92, 231, 0.9);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    font-size: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: #111111;
}

.cta-section h3 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #ffffff;
}

.cta-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-card {
    flex: 1;
    min-width: 30rem;
    padding: 3rem 2rem;
    border-radius: 1rem;
    color: #ffffff;
}

.cta-card.green {
    background: #2ed573;
}

.cta-card h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.cta-card p {
    font-size: 1.4rem;
    line-height: 1.6;
}

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

.contact h3 {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5rem;
    color: #ffffff;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    background: #1a1a2e;
    padding: 3rem;
    border-radius: 1rem;
}

.contact-map {
    flex: 1;
    min-width: 30rem;
}

.contact-map img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #6c5ce7;
}

.contact-item p {
    font-size: 1.4rem;
    color: #cccccc;
}

/* Footer */
.footer {
    background: #0a0f14;
    padding: 6rem 2rem 3rem;
    border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
}

.footer-brand {
    flex: 1;
    min-width: 30rem;
}

.footer-brand h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.footer-brand p {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column h5 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3b82f6;
}


.footer-column h5 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #6c5ce7;
}

/* Success Page Styles */
.success-section {
    padding: 15rem 2rem 10rem;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    margin-bottom: 4rem;
}

.checkmark {
    width: 10rem;
    height: 10rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #ffffff;
    margin: 0 auto;
    animation: checkmarkAnimation 0.6s ease-in-out;
    box-shadow: 0 1rem 3rem rgba(16, 185, 129, 0.3);
}

@keyframes checkmarkAnimation {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-content h2 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.success-content p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    padding: 1.8rem 3.5rem;
    text-decoration: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.btn-primary:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2.5rem rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    padding: 1.8rem 3.5rem;
    text-decoration: none;
    border: 0.2rem solid #3b82f6;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-0.3rem);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html {
        font-size: 9px;
    }

    .nav-menu {
        position: fixed;
        top: 7rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 7rem);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
        padding-top: 5rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-0.5rem, 0.6rem);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-0.5rem, -0.6rem);
    }

    .hero-title {
        font-size: 3.6rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }

    .growth-grid {
        flex-direction: column;
    }

    .growth-item {
        min-width: 100%;
    }

    .cta-cards {
        flex-direction: column;
    }

    .cta-card {
        min-width: 100%;
    }

    .about-content {
        flex-direction: column;
    }

    .about-text,
    .about-image {
        min-width: 100%;
    }

    .results-content {
        flex-direction: column;
    }

    .results-text,
    .results-image {
        min-width: 100%;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-map,
    .contact-info {
        min-width: 100%;
    }

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

    .footer-links {
        justify-content: center;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 30rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 8px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 10rem 1.5rem 6rem;
    }

    .hero-title {
        font-size: 3.2rem;
    }

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

    .cookie-content p {
        min-width: 100%;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        min-width: 12rem;
    }
}
/* Working Principles Section */
.principles {
    padding: 10rem 2rem;
    background: #0f1419;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.principle-card {
    flex: 1;
    min-width: 30rem;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 1.2rem;
    border-left: 0.5rem solid #3b82f6;
    transition: transform 0.3s ease;
}

.principle-card.wide {
    flex-basis: 100%;
    min-width: 100%;
}

.principle-card:hover {
    transform: translateY(-0.5rem);
}

.principle-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    line-height: 1.3;
}

.principle-card p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Leadership Team Section */
.leadership {
    padding: 10rem 2rem;
    background: #1a2332;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 28rem;
    max-width: 32rem;
    text-align: center;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.team-member:hover {
    transform: translateY(-1rem);
}

.member-image {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 0.4rem solid #3b82f6;
    position: relative;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    z-index: 1;
}

.member-role {
    font-size: 1.3rem;
    font-weight: 600;
    color: #3b82f6 !important;
    margin-bottom: 2rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    position: relative;
    z-index: 1;
}

.member-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* About Digitalis Section */
.about-digitalis {
    padding: 10rem 2rem;
    background: #0f1419;
}

.about-digitalis-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.about-digitalis .about-text {
    flex: 1;
    min-width: 40rem;
}

.about-digitalis .about-text h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.about-digitalis .about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-digitalis .about-image {
    flex: 1;
    min-width: 35rem;
}

.about-digitalis .about-image img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    border-radius: 1.2rem;
}

/* Customer Approach Section */
.customer-approach {
    padding: 10rem 2rem;
    background: #1a2332;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.approach-card {
    flex: 1;
    min-width: 30rem;
    padding: 4rem 3rem;
    border-radius: 1.2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.approach-card.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.approach-card.wide-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    flex-basis: 100%;
    min-width: 100%;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.approach-card:hover {
    transform: translateY(-0.5rem);
}

.approach-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    position: relative;
    z-index: 1;
}

.approach-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .principles-grid {
        flex-direction: column;
    }

    .principle-card {
        min-width: 100%;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        min-width: 100%;
        max-width: 40rem;
    }

    .about-digitalis-content {
        flex-direction: column;
    }

    .about-digitalis .about-text,
    .about-digitalis .about-image {
        min-width: 100%;
    }

    .approach-grid {
        flex-direction: column;
    }

    .approach-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .principles {
        padding: 8rem 1.5rem;
    }

    .leadership {
        padding: 8rem 1.5rem;
    }

    .about-digitalis {
        padding: 8rem 1.5rem;
    }

    .customer-approach {
        padding: 8rem 1.5rem;
    }

    .principle-card h4,
    .approach-card h4 {
        font-size: 1.6rem;
    }

    .team-member h4 {
        font-size: 1.8rem;
    }

    .about-digitalis .about-text h3 {
        font-size: 2.4rem;
    }
}
/* Digitalis Info Section */
.digitalis-info {
    padding: 10rem 2rem;
    background: #0f1419;
}

.digitalis-info-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.info-text {
    flex: 1;
    min-width: 45rem;
}

.info-text h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.info-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.info-image {
    flex: 1;
    min-width: 40rem;
}

.info-image img {
    width: 100%;
    height: 35rem;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
}

/* Why Join Section */
.why-join {
    padding: 10rem 2rem;
    background: #1a2332;
}

.why-join-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.join-card {
    flex: 1;
    min-width: 30rem;
    padding: 4rem 3rem;
    border-radius: 1.2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.join-card.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.join-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.join-card:hover {
    transform: translateY(-0.5rem);
}

.join-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    position: relative;
    z-index: 1;
}

.join-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Team Experiences Section */
.team-experiences {
    padding: 10rem 2rem;
    background: #0f1419;
}

.experiences-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: center;
}

.experience-card {
    flex: 1;
    min-width: 28rem;
    max-width: 32rem;
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 4rem 3rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.experience-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
}

.experience-image {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 0.4rem solid #3b82f6;
    position: relative;
    z-index: 1;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    z-index: 1;
}

.experience-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* Internship Process Section */
.internship-process {
    padding: 10rem 2rem;
    background: #1a2332;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    border-radius: 1.2rem;
    border-left: 0.5rem solid #3b82f6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.process-step:hover {
    transform: translateX(1rem);
    box-shadow: 0 1rem 3rem rgba(59, 130, 246, 0.2);
}

.process-step h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    position: relative;
    z-index: 1;
}

.process-step p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* Mobile Responsive for Additional Sections */
@media (max-width: 768px) {
    .digitalis-info-content {
        flex-direction: column;
    }

    .info-text,
    .info-image {
        min-width: 100%;
    }

    .why-join-grid {
        flex-direction: column;
    }

    .join-card {
        min-width: 100%;
    }

    .experiences-grid {
        flex-direction: column;
        align-items: center;
    }

    .experience-card {
        min-width: 100%;
        max-width: 40rem;
    }

    .process-step:hover {
        transform: translateY(-0.5rem);
    }
}

@media (max-width: 480px) {
    .digitalis-info {
        padding: 8rem 1.5rem;
    }

    .why-join {
        padding: 8rem 1.5rem;
    }

    .team-experiences {
        padding: 8rem 1.5rem;
    }

    .internship-process {
        padding: 8rem 1.5rem;
    }

    .info-text h3 {
        font-size: 2.4rem;
    }

    .join-card h4,
    .process-step h4 {
        font-size: 1.6rem;
    }

    .experience-card h4 {
        font-size: 1.8rem;
    }

    .info-text {
        min-width: 100%;
    }

    .info-image {
        min-width: 100%;
    }
}
/* Contact Form Section */
.contact-form-section {
    padding: 10rem 2rem;
    background: #0f1419;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.contact-form-container {
 border-radius: 16px;
border: 1px solid #FFF;
background: radial-gradient(49.43% 211.29% at 49.81% 0%, #007C29 0%, #1501C5 100%);
    padding: 5rem 4rem;
    max-width: 70rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2rem 6rem rgba(59, 130, 246, 0.3);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.form-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.contact-form {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

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

.form-input {
    width: 100%;
    padding: 1.8rem 2rem;
    border: 0.2rem solid #e5e7eb;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    background: #f9fafb;
    color: #374151;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.form-input:focus {
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 0 0 0.3rem rgba(59, 130, 246, 0.1);
    transform: translateY(-0.2rem);
}

.form-input:valid {
    border-color: #10b981;
}

.form-submit-btn {
    width: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-submit-btn:hover {
    transform: translateY(-0.3rem);
    box-shadow: 0 1rem 2.5rem rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.contact-info-footer {
    position: relative;
    z-index: 1;
}

.office-info {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.office-item {
    flex: 1;
    min-width: 25rem;
}

.office-item h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 0.05rem;
}

.office-item p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.office-item a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.office-item a:hover {
    opacity: 0.8;
}

/* Form Validation States */
.form-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-input.error:focus {
    box-shadow: 0 0 0 0.3rem rgba(239, 68, 68, 0.1);
}

/* Loading State */
.form-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-submit-btn.loading {
    position: relative;
}

.form-submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2rem;
    margin: -1rem 0 0 -1rem;
    border: 0.2rem solid transparent;
    border-top: 0.2rem solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 8rem 1.5rem;
    }

    .contact-form-container {
        padding: 4rem 2.5rem;
    }

    .form-title {
        font-size: 2.6rem;
    }

    .contact-form {
        padding: 3rem 2rem;
    }

    .office-info {
        flex-direction: column;
        gap: 2rem;
    }

    .office-item {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 6rem 1rem;
    }

    .contact-form-container {
        padding: 3rem 2rem;
        border-radius: 1.5rem;
    }

    .form-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    .contact-form {
        padding: 2.5rem 1.5rem;
        border-radius: 1rem;
    }

    .form-input {
        padding: 1.5rem 1.5rem;
        font-size: 1.5rem;
    }

    .form-submit-btn {
        padding: 1.8rem;
        font-size: 1.6rem;
    }

    .office-item h4 {
        font-size: 1.4rem;
    }

    .office-item p {
        font-size: 1.3rem;
    }
}