
/* main content */
body {
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}

.header-section {
    position: relative;
    background: linear-gradient(180deg, #0d1028 0%, #090b1c 100%);
    min-height: 75vh;
    align-items: center;
    justify-content: flex-start;
    color: white;
}

.overlay {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.header-content {
    max-width: 700px;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #f5f5f5;
}

.header-content p {
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    font-family: 'Raleway', Arial, sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


.header-content span {
    color: #5379f6;
}

.btn-custom {
    background-color: #5379f6;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #142044;
}

.btn-custom:hover {
    background-color: transparent;
    color: #142044;
    border-color: #142044;
}

/* logo */
.degree-text {
  font-size: 1.4rem; /* Increased from ~fs-5 (1.25rem) to larger size */
  font-weight: 700; /* Extra bold */
  font-family: 'Oswald', sans-serif; /* Modern, geometric font */
  color: #333333; /* Dark blue for contrast */
  line-height: 1;
  letter-spacing: -0.05em;
}

/* clients */
.clients-section {
    background-color: #f5f5f5;
    text-align: center;
    padding: 40px 0;
    font-family: 'Raleway', Arial, sans-serif;
}


.clients-title {
    color: #2c3e50;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.logo-container-clients {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-img {
    max-height: 110px;
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Client leaders */
.leaders-section {
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
}

.leaders-title {
    color: #2c3e50;
    font-weight: 600;
    font-family: 'Raleway', Arial, sans-serif;
}

.leaders-title-sub {
    color: #142044;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Raleway', Arial, sans-serif !important;   
}

.leaders-subtitle {
    color: #666;
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.illustration {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-card {
    background-color: #f0caca;
    border: none;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    margin-top: 40px;
    height: 290px;
    width: 391px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.custom-card div {
    color: #142044;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 26px;
}

.custom-card p {
    color: #413f3f;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

/* Logo placeholder */
.logo-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #142044, #1a3c6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.img-fluid-work{
    height:1800px;
    width: 600px;
}

/* Client logo placeholders */
.client-logo-placeholder {
    width: 150px;
    height: 80px;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.client-logo-placeholder:hover {
    background: #cbd5e1;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .leaders-title-sub {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .navbar-custom {
        padding: 15px 20px;
    }
    
    .logo-container {
        /* flex-direction: column; */
        /* align-items: flex-start; */
        /* gap: 2px; */
    }
    
    .degree-text,
    .company-text {
        font-size: 1.1rem;
    }
    
    .header-section {
        min-height: 60vh;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .leaders-section {
        padding: 60px 0;
    }
    
    .leaders-title-sub {
        font-size: 1.5rem;
    }
    
    .illustration {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 20px;
    }
    
    .nav-link {
        margin-left: 0;
        margin-top: 10px;
        font-family: 'Poppins', sans-serif;
    }
    
    .header-section {
        min-height: 50vh;
    }
    
    .header-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    .btn-custom {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    

    
    .clients-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .logo-container-clients {
        gap: 20px;
    }
    
    .logo-img,
    .client-logo-placeholder {
        max-height: 60px;
        max-width: 120px;
    }
    
    .leaders-section {
        padding: 40px 0;
    }
    
    .leaders-title-sub {
        font-size: 1.3rem;
        text-align: center !important;
    }
    
    .custom-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .custom-card h3 {
        font-size: 1.1rem;
    }
    
    .custom-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .navbar-custom {
        padding: 10px 15px;
    }
    
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .header-content p {
        font-size: 0.9rem;
    }
    
    .clients-title {
        font-size: 1.4rem;
    }
    
    .leaders-title-sub {
        font-size: 1.1rem;
    }
    
    .logo-container-clients {
        gap: 15px;
    }
    
    .client-logo-placeholder {
        width: 100px;
        height: 60px;
        font-size: 0.8rem;
    }
}

/* Additional responsive utilities */
.text-responsive {
    word-wrap: break-word;
    overflow-wrap: break-word;
}


/* service */

.services-section {
    padding: 60px 0;
    background-color: #f5f5f5;
    text-align: center;
}
.services-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 40px;
}
.service-card {
    border: none;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 350px;
}
.service-card h5 {
    color: #142044;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 26px;
}
.service-card p {
    color: #413f3f;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}
.service-image {
    max-width: 200px;
    margin-bottom: 20px;
}
.row {
    --bs-gutter-x: 2rem;
}
@media (max-width: 768px) {
    .service-image {
        max-width: 150px;
    }
    /* .service-content{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .manufacturing-partner-content{
        display: flex;
        justify-content: center;
        align-items: center;
    }  */
    .header-content{
        margin-top: 50px;
    } 
    .img-fluid-work{
        height:1000px;
        width: 400px;
    }

    .contact-details{
        text-align: center;
    }

    .contact-section{
        text-align: center;
    }
}