/* services-page.css */

/* Section Wrapper */
.services-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  text-align: center;
}

/* Section Title */
.services-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
  position: relative;
}

.services-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #f58220; /* Orange from logo */
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Service Card */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.5s, box-shadow 0.5s;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Service Icon */
.service-icon {
  font-size: 14px;
  padding: 20px;
  color: #fff;
  transition: transform 0.5s;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.service-icon i {
  font-size:20px;
  color: #fff;
}

.service-card:hover .service-icon {
  transform: rotate(20deg) scale(1.2);
}

/* Logo Color Reference */
.service-icon-blue { background-color: #0072bc; }   /* Blue */
.service-icon-orange { background-color: #f58220; } /* Orange */
.service-icon-green { background-color: #7ac143; }  /* Green */

/* Card Title */
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
  margin-top: 12px;
}

/* Card Description */
.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 10px;
  }

  .services-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 20px 15px;
  }

  .service-icon {
    font-size: 2.5rem;
    padding: 15px;
  }
}


/* Services page */
/* MAIN WRAPPER */
.sai-services{
font-family: Arial, sans-serif;
}

/* HERO SECTION */

.sai-services .hero{
background:#3471b2;
color:white;
padding:100px 20px;
text-align:center;
}

.sai-services .hero h1{
font-size:48px;
margin-bottom:15px;
}

.sai-services .hero p{
font-size:18px;
max-width:700px;
margin:auto;
}


/* SERVICES SECTION */

.sai-services .services-section{
padding:80px 20px;
background:#f9f9f9;
text-align:center;
}

.sai-services .section-title{
font-size:36px;
margin-bottom:50px;
color:#3471b2;
}

.sai-services .services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1200px;
margin:auto;
}

.sai-services .service-card{
background:white;
padding:35px 25px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.sai-services .service-card:hover{
transform:translateY(-8px);
border-top:4px solid #f79316;
}

.sai-services .service-card .icon{
font-size:40px;
margin-bottom:15px;
}

.sai-services .service-card h3{
color:#3471b2;
margin-bottom:10px;
}

.sai-services .service-card p{
font-size:15px;
color:#555;
}


/* WHY SECTION */

.sai-services .why-section{
padding:80px 20px;
background:white;
text-align:center;
}

.sai-services .why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.sai-services .why-box{
padding:30px;
background:#f9f9f9;
border-radius:6px;
border-left:5px solid #7cb733;
}

.sai-services .why-box h3{
color:#3471b2;
margin-bottom:10px;
}

.sai-services .why-box p{
font-size:15px;
color:#555;
}


/* CTA SECTION */

.sai-services .cta-section{
background:#f79316;
color:white;
text-align:center;
padding:70px 20px;
}

.sai-services .cta-section h2{
font-size:34px;
margin-bottom:15px;
}

.sai-services .cta-section p{
margin-bottom:25px;
}

.sai-services .cta-btn{
background:#3471b2;
color:white;
padding:14px 35px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
transition:0.3s;
}

.sai-services .cta-btn:hover{
background:#7cb733;
}
/* TABLET */
@media (max-width:992px){
    .sai-services .hero{
        padding:80px 20px;
    }
    .sai-services .hero h1{
        font-size:38px;
    }
    .sai-services .hero p{
        font-size:16px;
    }
    .sai-services .services-grid{
        gap:20px;
    }
    .sai-services .why-grid{
        gap:20px;
    }
}

/* MOBILE */
@media (max-width:768px){
    .sai-services .hero{
        padding:70px 15px;
    }
    .sai-services .hero h1{
        font-size:32px;
    }
    .sai-services .section-title{
        font-size:28px;
    }
    .sai-services .services-grid,
    .sai-services .why-grid{
        grid-template-columns:1fr;
        gap:20px;
    }
    .sai-services .service-card .icon{
        font-size:32px;
    }
    .sai-services .service-card h3{
        font-size:18px;
    }
    .sai-services .service-card p{
        font-size:14px;
    }
    .sai-services .why-box h3{
        font-size:18px;
    }
    .sai-services .why-box p{
        font-size:14px;
    }
    .sai-services .cta-section h2{
        font-size:28px;
    }
    .sai-services .cta-section p{
        font-size:14px;
    }
    .sai-services .cta-btn{
        width:100%;
        padding:14px 0;
    }
}

/* SMALL MOBILE */
@media (max-width:480px){
    .sai-services .hero h1{
        font-size:26px;
    }
    .sai-services .hero p{
        font-size:14px;
    }
    .sai-services .section-title{
        font-size:24px;
    }
    .sai-services .service-card{
        padding:25px 15px;
    }
    .sai-services .why-box{
        padding:20px 15px;
    }
    .sai-services .cta-section h2{
        font-size:24px;
    }
}