/* About Hero Section */
.about-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height */
    display: flex;
    align-items: center;
    justify-content: left;
    color: white;
    padding: 80px 20px;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover entire section */
    z-index: -1;
}
.about-title {

    font-weight: 800;
    color: #08387F; 
    text-transform: uppercase;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 900;
    color: #000; /* Black */
    text-transform: uppercase;
}

.about-description {
    max-width: 800px;
    margin: 20px auto;
    font-size: 18px;
    line-height: 1.6;
}
   


/* About Overview */
.about-overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0;
}
.about-text {
  flex: 1;
  font-size: 1.2rem;
}
.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Vision & Mission */
.about-values {
    padding: 80px 20px;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch; /* Ensures equal height */
}

.value-card {
    background: var(--service-bg-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: normal;
}

.value-card:hover {
    transform: translateY(-1px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.value-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.value-content {
    padding: 15px;
}
.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}
[data-aos] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 768px) {
  .about-overview {
    flex-direction: column;
    text-align: center;
  }
  .values-grid {
    flex-direction: column;
    align-items: center;
  }
  .about-title {
        font-size: 1.5rem;
    }
    .about-subtitle {
        font-size: 1.8rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }

}
@media (max-width: 1024px) {
    .about-overview {
        grid-template-columns: 1fr;
         text-align: left;
        padding: 50px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .service-grid {
        grid-template-columns: 1fr;
    }
          
}



.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #003366;
}

:root {
    --service-bg-light: #ffffff;
    --service-text-light: #1a1a1a;
    --service-text-dark: #ffffff;
    --accent-color: #0D47A1;
    --service-item-color: #1e293b;
}

.services {
    padding: 4rem 0;
    background: var(--service-bg-light);
    transition: background 0.3s ease;
    text-align: center;
}

[data-theme="dark"] .services {
    background: var(--service-bg-dark);
}
[data-theme="dark"] .value-card {
    background: var(--service-item-color);
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.service-item {
    background: var(--service-bg-light);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: none;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

[data-theme="dark"] .service-item {
    background: var(--service-item-color);
    box-shadow: 0 10px 30px rgba(255,255,255,0.05);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 3px solid var(--accent-color);
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.service-item ul {
    list-style: none;
    padding: 0;
}

.service-item li {
    padding: 0.5rem 0;
    color: var(--service-text-light);
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 8px;
}

[data-theme="dark"] .service-item li {
    color: var(--service-text-dark);
}

.service-item li:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

[data-theme="dark"] .service-item:hover {
    box-shadow: 0 15px 40px rgba(255,255,255,0.1);
}
/* Clients Section */
/* Clients Section */
.clients {
    text-align: center;
    padding: 50px 20px;

}

.clients-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #002b5b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.clients-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Logo Cards Container */
.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
[data-theme="dark"] .client-card {
    background: linear-gradient(90deg, #0077b6, #6edef4);
}
[data-theme="dark"] .client-card:hover {
    box-shadow: 0 15px 20px rgba(255,255,255,0.1);
}
/* Logo Cards */
.client-card {
    width: 180px;
    height: 120px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

/* Logo Images */
.client-card img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.client-card:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Looping Animation */
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.client-card {
    animation: floating 3s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .client-card {
        width: 150px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .clients-header h2 {
        font-size: 1.8rem;
    }
    .clients-header p {
        font-size: 0.9rem;
    }
    .client-card {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .client-card {
        width: 100px;
        height: 80px;
    }
}
