body {
    gap: 0;
}

#imageContent2 {
    width: 55vw;
    position: absolute;
    left: 30vw;
    top: 20vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.r-d-banner {
    background-image: url(images/Rectangle\ 5233.png);
    background-size: cover;
    background-attachment: fixed;
}

#imageContent2 h2 {
    font-size: 60px;
    color: white;
        /* text-align: center; */
/* margin-right: 100px; */
}

#imageContent2 p {
    font-size: 20px;
    width: 45vw;
    color: white;
    text-align: center;
}

.slick-dots li button {
    display: none;
}

#r-d-sec2 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.rdsec2d1 {
    width: 90%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.innovation-r-d {
    width: 50%;
}

.innovation-r-d img {
    width: 100%;
    height: auto;
    object-fit: contain; 
}

.innovation-r-d h2 {
    font-size: 50px;
    font-weight: 600;
}

.innovation-r-d p {
    font-size: 20px;
    font-weight: 400;
    color: #374151;
    padding-top: 20px;
}

.innovation-r-d hr {
    border: none;
    background-color: #30479D;
    width: 8%;
    height: 4px;
}

#r-d-sec3 {
    width: 100%;
    background-color: #E9EDF6;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#r-d-sec3 h2 {
    font-size: 36px;
    font-weight: 700;
    padding: 10px 0;
}

#r-d-sec3-p {
    width: 55%;
    font-size: 20px;
    font-weight: 400;
    color: #4B5563;
    text-align: center;
    padding: 10px 0;
}

/* 🔥 Main Fix: 3 Cards per Row + Center 4th Card */
.focus-area {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 300px);
    gap: 25px; /* Reduced gap */
    justify-content: center; /* Centers entire grid */
    padding: 30px 0;
}

.focus-area-content {
    background-color: #fff;
    width: 300px;
    height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
}

/* Icons */
.focus-area-image {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #2B4CCE1A;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

.focus-area-image img {
    width: 100%;
    object-fit: contain;
}

/* Titles */
.focus-area-content h4 {
    width: 80%;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 20px;
}

/* Paragraph */
.focus-area-content p {
    width: 70%;
    font-size: 16px;
    font-weight: 400;
    color: #4B5563;
    text-align: center;
}

/* 🔥 Responsive Fix */
@media (max-width: 1024px) {
    .focus-area {
        grid-template-columns: repeat(2, 300px);
    }
}

@media (max-width: 600px) {
    .focus-area {
        grid-template-columns: repeat(1, 300px);
    }
}


#r-d-sec4 {
    width: 100vw;
    height: 80vh;
    background-image: linear-gradient(#00000000, #00000099, #000000CC),
        url("images/r&dl.jpg");

    background-position: center;
    background-size: cover;
    color: white;
    position: relative;
    background-attachment: fixed;
}

.r-d-sec4-content {
    width: 80%;
    position: absolute;
    left: 10%;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.r-d-sec4-content h2 {
    font-size: 48px;
    font-weight: 700;
}

.r-d-sec4-content p {
    font-size: 20px;
    font-family: 400;
    color: #E5E7EB;
}