/* Info Section */
.terminal-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Info Box */
.terminal-box {
    max-width: 900px;
    background: #e3f2fd; /* Light blue background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    line-height: 1.6;
    color: #333;
}




/* Main Section */
.terminal-sectio {
    max-width: 1200px;  
    width: 90%;         
    margin: 0 auto;     
    display: flex;
    flex-wrap: wrap;     
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid rgba(115, 118, 124, 0.664); 
    margin-top: 40px !important;
}
.info-item i {
    color: orange;
}

/* Header */
.terminal-header {
    text-align: left;
}

.terminal-title {
    font-size: 28px;
    color: #333;
    font-weight: bold;
}

/* Terminal Details */
.terminal-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 50px;
}

/* Left Column */
.terminal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px; /* Adds spacing */
    border-bottom: 1px solid #ddd; /* Light gray border */
}

.info-icon {
    font-size: 20px;
    color: orange;
}

.info-label {
    font-weight: bold;
    color: #333;
}

.info-value {
    color: #666;
}

/* Right Column (Services) */
.services {
    flex: 1;
    text-align: left;
}

.services-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.services-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* Footer */
.terminal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

/* Left: Contact Info */
.terminal-contact {
    flex: 1;
    background: #dff0ff;
    padding: 40px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    width: 50%;
    border-radius: 8px;
}

.contact-title {
    font-size: 22px;
    font-weight: bold;
}

.contact-email a{
    text-decoration: none;
    color: orange;
    font-size: 12px;
    font-weight: bold;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 19px;
    margin-top: 22px;
}

.contact-box h5 {
    font-size: 14px;
    font-weight: bold;
    margin-top: 30px;
}

.contact-box p {
    font-size: 14px;
    color: #333;
}

/* Right: Image */
.terminal-image {
    flex: 1;
    text-align: right;
    /* width: 30%; */
}

.terminal-image img {
    width: 100%;
    /* max-width: 400px; */
    border-radius: 8px;
}

.terminal-footer{
    width: 100% !important;
    gap: 50px;
}



/* Responsive Design */

@media (max-width: 1024px) {
    .section-container {
        flex-direction: column; /* Stack items on smaller screens */
        align-items: center;
    }
}
@media (max-width: 768px) {
    .terminal-box {
        padding: 15px;
        font-size: 1rem;
    }
    .terminal-details,
    .terminal-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .terminal-info,
    .services,
    .terminal-contact {
        width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .terminal-image {
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .terminal-box {
        padding: 10px;
        font-size: 0.9rem;
    }
}