body,html {
    background-color: #101826; /* ✅ Keep body separate from sections */
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
}


/* ✅ About Section Styling */
.about-modern {
    background: linear-gradient(135deg, #0D1424, #192231);
    width: 100%;
}

/* ✅ Content Layout */
.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 70%;
    margin: 0 auto;
}

/* ✅ Left Side - Text */
.about-text {
    max-width: 100%;
    justify-content: center;
    align-items: center;
    padding: 100px 100px 100px 0px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00d2ff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
}

.about-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #a6b1c1;
    margin-bottom: 10px;
}

/* ✅ Right Side - Team Grid */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 20px;


}

.team-member {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(10px);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 150, 255, 0.5);
    transition: transform 0.3s ease;
}

.team-member h4 {
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.team-member p {
    font-size: 16px;
    color: #a6b1c1;
}

/* ✅ Hover Effects */
.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 150, 255, 0.5);
}

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

-------------------------------------------------------------------
/* ✅ Partners Section */
.partners {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    background: linear-gradient(135deg, #0D1424, #192231);
    padding: 50px 10%;
    position: relative;
}

/* ✅ Content Layout */
.partners-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-bottom: 10px;
}

/* ✅ Left Side - Text */
.partners-text {
    flex: 1;
    color: white;
    padding-right: 40px;
}

.partners-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #00d2ff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
}

.partners-text p {
    font-size: 18px;
    line-height: 1.5;
    color: #a6b1c1;
    margin-bottom: 10px;
}

/* ✅ Right Side - Partner Cards */
.partner-grid {
    flex: 1;
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

/* ✅ Partner Card */
.partner-card {
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    width: 250px;
}

.partner-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 150, 255, 0.5);
    transition: transform 0.3s ease;
}

.partner-card h4 {
    margin: 10px 0 5px;
    font-size: 20px;
    font-weight: bold;
}

.partner-card p {
    font-size: 16px;
    color: #a6b1c1;
    margin-bottom: 10px;
}

/* ✅ Hover Effects */
.partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 150, 255, 0.5);
}

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

/* ✅ Call-to-Action Button */
.partner-btn {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    border-radius: 8px;
    transition: 0.3s ease-in-out;
    margin-top: 10px;
}

.partner-btn:hover {
    background: #3a7bd5;
    transform: scale(1.05);
}




/* ✅ Services Section -----------------------------------------*/
.services {
    text-align: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #101826, #192231);
}

/* ✅ Section Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #00d2ff;
    text-shadow: 0px 4px 10px rgba(0, 150, 255, 0.6);
    margin-bottom: 50px;
}

/* ✅ Services Grid */
.services-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 0px 50px 0px;
}

/* ✅ Individual Service Box */
.service-box {
    width: 250px;
    padding: 20px ;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 150, 255, 0.5);
}

/* ✅ Service Icons */
.service-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

/* ✅ Service Titles */
.service-box h3 {
    font-size: 20px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

/* ✅ Service Text */
.service-box p {
    font-size: 16px;
    color: #a6b1c1;
    line-height: 1.5;
}

/* ✅ Hover Effects */
.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 20px rgba(0, 150, 255, 0.5);
}

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






/* ✅ Website Section --------------------------------------------*/
.build-process {
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(135deg, #0D1424, #192231);
}

/* ✅ Section Title - Bigger & Bolder */
.section-title {
    font-size: 42px; /* Increased Size */
    font-weight: bold;
    color: #00d2ff;
    text-shadow: 0px 4px 12px rgba(0, 150, 255, 0.7);
    margin-bottom: 25px;
}

/* ✅ Section Subtitle - Bigger & Easier to Read */
.section-subtitle {
    font-size: 20px; /* Increased Size */
    color: #a6b1c1;
    margin-bottom: 60px;
}

/* ✅ Process Cards */
.process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Cards per Row */
    gap: 30px; /* More Space Between Cards */
    justify-content: center;
}

/* ✅ Individual Card - Bigger & Better */
.process-card {
    padding: 30px; /* More Padding */
    background: rgba(255, 255, 255, 0.07);
    border-radius: 20px; /* Softer Corners */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    backdrop-filter: blur(12px);
    box-shadow: 0px 5px 15px rgba(0, 150, 255, 0.5);
    overflow: hidden;
    min-height: 220px; /* Taller Cards */
}

/* ✅ Hover Effects */
.process-card:hover {
    transform: scale(1.07);
    box-shadow: 0px 8px 22px rgba(0, 150, 255, 0.8);
}

/* ✅ Card Content - Bigger Fonts */
.card-content {
    position: relative;
    z-index: 2;
}

/* ✅ Title Inside Cards - Bigger */
.process-card h3 {
    font-size: 30px; /* Increased Size */
    font-weight: bold;
    color: white;
    margin-bottom: 15px;
}

/* ✅ Card Text - More Readable */
.process-card p {
    font-size: 22px; /* Increased Size */
    color: #c0c8d1;
    line-height: 1.6;
}

/* ✅ Background Floating Glow Effect */
.process-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.6), rgba(58, 123, 213, 0));
    top: -40px;
    left: -40px;
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
}

/* ✅ Hover Animation */
.process-card:hover::before {
    transform: translate(200px, 150px) scale(1.6);
}

/* ✅ Mobile Responsiveness */
@media (max-width: 768px) {
    .about-content, .partners-content {
        flex-direction: column;
        text-align: center;
        padding-bottom: 100px;
    }

    .about-text {
        padding-right: 0;
    }

    .team-grid{
        justify-content: center;
    }
    .process-cards {
        display: row;
        grid-template-columns: repeat(1, 1fr); /* 3 Cards per Row */
    }

}

.davinci {
    max-width: 100%;
    margin: 0 auto;         /* Centers the container horizontally */
    padding: 20px;
    background: linear-gradient(135deg, #0D1424, #192231);       /* White background for the content */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;     /* Centers text inside the container */
    padding-bottom: 30px;
  }
  
  .davinci-titel {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    color: #00d2ff;
    text-shadow: 0px 4px 12px rgba(0, 150, 255, 0.7);
  }
  
  .davinci-desc {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #00d2ff;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    transform: scale(1.07);
    box-shadow: 0px 8px 22px rgba(0, 150, 255, 0.8);
  }