.heading {
    padding: 30px 20px;
    text-align: center;
    /* background: linear-gradient(to right,#06243a56,#005fcc52); */
    background-image: url('../assets/img/header-bg.jpg');
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding-bottom: 5px;
    /* text-shadow: 5px 5px 6px rgba(0, 0, 0, 0.85); */
}



.intro {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
}


.intro .red {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: rgb(153, 28, 30);
    background-image: url('../assets/img/45.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding: 40px;
    z-index: 1;
}

.intro .blue {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
    background-color: rgb(4, 23, 39);
    background-image: url('../assets/img/46.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding: 40px;
    z-index: 1;
}

.intro p {
    font-size: 25px;
    line-height: 2rem;
    text-align: justify;
    color: white;
    z-index: 2;
}




/* media section css */

.media {
    width: 100%;
    height: auto;
    /* background: linear-gradient(135deg, #f9fafc, #eef2f7); */
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.media .container {
    width: 100%;
    height: 400px;
    /* max-width: 1200px; */
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
}

.media .text {
    padding: 0 30px;
    width: 50%;
    height: 100%;
}

.media .text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 20px;
    position: relative;
}

.media .text p {
    color: black;
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;
}

.media .img {
    width: 50%;
    height: 100%;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media .img img {
    width: 100%;
    height: 100%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}




/* feature section css */

.features {
    width: 100%;
    background: #ffffff;
    margin: 5px 0;
    padding: 10px 0;
}

.features h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 40px;
    position: relative;
}


.features .container {
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

/* Feature layout */
.features .feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 15px;
    box-shadow: 5px 6px 20px rgba(0, 0, 0, 0.21);
}


/* Text */
.features .text {
    padding: 30px;
}

.features .text p {
    font-size: 1rem;
    line-height: 1.8;
    color: black;
    text-align: justify;
}

.features .text strong {
    color: rgb(4, 16, 28);
}

/* Image + Button */
.features .img {
    padding: 0 30px;
    text-align: center;
    position: relative;
}

.features .img img {
    display: block;
    width: 100%;
    box-shadow: 5px 8px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}


.features .view-btn {
    margin: 15px 0;
    padding: 10px 15px;
    font-size: 0.95rem;
    color: #fff;
    background-color: #0078ff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.features .view-btn:hover {
    background-color: #005fcc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding: 10px 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #ff4444;
}


/* Video section css */

.video-section {
    margin: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 30px 5%;
    flex-wrap: wrap;
    border-radius: 15px;
    box-shadow: 5px 6px 20px rgba(0, 0, 0, 0.146);
}

.video-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex: 1 1 45%;
    aspect-ratio: 16 / 9;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: .1px solid black;
}

.video-text {
    padding: 20px;
    flex: 1 1 45%;
    color: black;
}

.video-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.video-text p {
    font-size: 1rem;
    line-height: 1.6;
}

.video-text button {
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #1a2a3a;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.342);
}

.video-text button a {
    color: white;
    text-decoration: none;
}

.video-text button:hover {
    background-color: #940104;
}








/* conkraft section css */

.ConKraft {
    width: 100%;
    height: auto;
    /* background: linear-gradient(to right, #3b79cb65, #2d333b1e); */
    background-color: white;
    margin-top: 40px;
    box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
}


.ConKraft .container {
    margin-bottom: 30px;
    width: 100%;
    height: 430px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: nowrap;
}

.ConKraft .text {
    padding: 30px;
    text-align: justify;
    width: 60%;
    height: 100%;
}

.ConKraft .text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 10px;
    position: relative;
}

.ConKraft .text p {
    font-size: 1rem;
    line-height: 1.8;
    color: black;
}

.ConKraft .text strong {
    color: #0078ff;
}

.ConKraft .img {
    height: 100%;
    width: 40%;
    object-fit: contain;
}

.ConKraft .img img {
    height: 100%;
    width: 100%;
}