
/*================Service Intro===============================*/
.services-intro {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f9fafb, #ffffff);
  text-align: center;
}

.services-intro h1 {
  font-size: 44px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.services-intro h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 24px;
}

.services-intro p {
  max-width: 820px;
  margin: 0 auto 16px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .services-intro h1 {
    font-size: 32px;
  }
}




/* ===== Cloud Computing Services ===== */

.service-section {
    padding: 80px 0;
}

.service-header {
    max-width: 750px;
    margin-bottom: 50px;
}

.service-header h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.service-header p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Content Layout */
.service-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Boxes */
.service-box {
    background: #fff;
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-6px);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

/* Lists */
.service-box ul {
    list-style: none;
}

.service-box li {
    margin-bottom: 18px;
}

.service-box li strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.service-box li span {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .service-content {
        grid-template-columns: 1fr;
    }
}
/*--------------------------------------------------------------------------*/

/*                  
/* =====        Cybersecurity Services(Icons + Animation Enhancements) ===== */
/* ===== Service Icons Styling ===== */
.service-box h3 i {
    color: #0b5ed7;
    margin-right: 8px;
}

.service-box ul li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.service-box ul li i {
    font-size: 20px;
    color: #0b5ed7;
    margin-top: 4px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover animation */
.service-box ul li:hover i {
    transform: scale(1.25) rotate(-6deg);
    color: #084298;
}

/* Card hover animation */
.service-box {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Section entrance animation */
.service-section {
    animation: fadeSlide 0.9s ease both;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* custom */
/* Software Development Accent */
.service-section.software .service-box {
    border-left: 4px solid #198754;
}

.service-section.software .service-box h3 i,
.service-section.software .service-box ul li i {
    color: #198754;
}

.service-section.software .service-box ul li:hover i {
    color: #146c43;
}
 /* Business Intelligence & Big Data Accent */
.service-section.bigdata .service-box {
    border-left: 4px solid #0d6efd;
}

.service-section.bigdata .service-box h3 i,
.service-section.bigdata .service-box ul li i {
    color: #0d6efd;
}

.service-section.bigdata .service-box ul li:hover i {
    color: #084298;
}
/* ===== Services Layout ===== */
.service-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Service Box */
.service-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}

/* List Styling */
.service-box ul {
    list-style: none;
    margin-top: 20px;
}

.service-box ul li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.service-box ul li i {
    font-size: 20px;
    margin-top: 4px;
    transition: transform 0.3s ease;
}

.service-box ul li:hover i {
    transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
}
/* Scroll Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translate(0);
}
