/* Torpedo Tracking System CSS */

.torpedo-section {
    background: linear-gradient(rgba(7, 47, 133, 0.85), rgba(7, 47, 133, 0.85)), 
                url('../../img/torpedo.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.torpodo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.torpedo-content {
    position: relative;
    z-index: 2;
}

.torpedo-title {
    font-size: 1.7rem;;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out;
    color: #fff;
}

.torpedo-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.torpedo-feature-item {
    background-color: #072F85;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.torpedo-feature-item i {
    color: #4CAF50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .torpedo-heading-content {
        flex-direction: column;
    }
    
    .torpedo-heading-img,
    .torpedo-heading-info {
        width: 100%;
    }
}


.torpedo-description{

    padding: 33px 20px;
}

.torpedo-description p{
    text-align: justify;
}

.comman-img{
    float: left;
    width: 49%;
}

.comman-content{
    float:right;
    width: 50%;
}
