/* Base Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    max-width: 1800px;
    margin: 0 auto;
    font-size: 20px !important;
}

.container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Section Spacing */
.solutech_serivce_area,
.ict-equipment-section,
.ict-services-section,
.asset-monitoring-solutions,
.solutech_testimonial_bg_area,
.about-section {
    padding: 60px 0;
}

/* ICT Equipment Section Styles */
.ict-equipment-section {
    background-color: #f8f9fa;
}

.ict-equipment-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.ict-equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-image {
    margin-bottom: 20px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

/* ICT Services Section Styles */
.ict-services-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ict-service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.ict-service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    margin-bottom: 20px;
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

/* Asset Monitoring Solutions Section */
.asset-monitoring-solutions {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.asset-monitoring-solutions h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

.asset-monitoring-solutions h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #333;
}

.asset-monitoring-solutions p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.asset-monitoring-solutions ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.asset-monitoring-solutions li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
}

/* Section Titles */
.witr_section_title {
    margin-bottom: 50px;
}

.witr_section_title_inner h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.witr_section_title_inner h3 {
    font-size: 20px;
    color: #666;
}

/* Card Content */
.ict-equipment-card h3,
.ict-service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
}

.ict-equipment-card p,
.ict-service-card p {
    color: #666;
    line-height: 1.6;
}

/* Custom styles for width and height constraints */
.witr_swiper_area {
    max-width: 1800px;
    margin: 0 auto;
}

.witr_swiper_height {
    height: 700px !important;
    max-height: 700px !important;
}

.swiper-container {
    max-width: 1800px;
    margin: 0 auto;
}

/* Container width constraints */
.containers {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

/* Ensure all images respect max width */
img {
    max-width: 1750px;
    height: auto;
}

.logo img {
    width: 100px;  /* Default width */
    height: auto;  /* Maintain aspect ratio */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo img {
        width: 80px; /* Adjust for tablets */
    }
    
    .equipment-image,
    .service-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 60px; /* Adjust for mobile */
    }
    
    .equipment-image,
    .service-image {
        height: 120px;
    }
}

/* Utility class for easy resizing */
.logo-small {
    width: 50px !important;
}

.logo-medium {
    width: 250px !important;
}

.logo-large {
    width: 250px !important;
}

/* Footer styling */
.footer-section {
    background: #f8f9fa;
    padding: 40px 0;
    display: none;
}

.footer-contact {
    padding: 20px 0;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #333;
    font-size: 14px;
}

.footer-contact i {
    margin-right: 10px;
    color: #0c5adb;
}

/* About section styling */
.about-section {
    padding: 60px 0;
    display: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Improved card layouts */
.ict-equipment-card,
.ict-service-card {
    display: flex;
    flex-direction: column;
}

.ict-equipment-card .equipment-image,
.ict-service-card .service-image {
    flex: 0 0 auto;
}

.ict-equipment-card h3,
.ict-service-card h3 {
    flex: 0 0 auto;
}

.ict-equipment-card p,
.ict-service-card p {
    flex: 1 0 auto;
}

/* Improved section spacing */
.solutech_serivce_area + .ict-equipment-section,
.ict-equipment-section + .ict-services-section,
.ict-services-section + .asset-monitoring-solutions {
    margin-top: 40px;
}

/* ICT Services Gallery Styles */
.ict-service-gallery {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ict-service-gallery:hover {
    transform: translateY(-5px);
}

.ict-service-gallery .service-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.ict-service-gallery .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ict-service-gallery:hover .service-image img {
    transform: scale(1.1);
}

.ict-service-gallery .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ict-service-gallery:hover .service-overlay {
    transform: translateY(0);
}

.ict-service-gallery .service-overlay h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .ict-services-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .ict-services-section {
        padding: 40px 0;
    }
    
    .ict-service-gallery {
        margin-bottom: 20px;
    }
}
