/* ================= GLOBAL ================= */

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #0e1625;
}

.contact-number {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-number:hover {
    color: #000; /* stays black on hover */
}

.service-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HERO ================= */

.service-hero {
    padding: 220px 20px 180px;
    background: linear-gradient( rgba(30,167,215,0.85), rgba(14,22,37,0.85)),
               url('../images/hero_service.png') center/cover no-repeat;
    text-align: center;
    color: white;
}

.service-hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 900px;
    margin: auto;
}

.service-hero p {
    font-size: 20px;
    margin-top: 25px;
    opacity: 0.9;
}

.phone-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1ea7d7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.phone-btn:hover {
    background: #0e5c82;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30,167,215,0.3);
}

/* ================= INTRO ================= */

.service-intro {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4fbff 0%, #e9f6fc 100%);
}

.philosophy-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */

.philosophy-text {
    flex: 1;
}

.section-tag {
    display: block;
    width: 100%;
    text-align: center;     /* Center horizontally */
    font-size: 34px;
    font-weight: 800;
    color: #000000;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 auto 40px auto;   /* Center block */
}





.philosophy-text h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.philosophy-text h2 span {
    color: #1ea7d7;
}

.philosophy-text .lead {
    font-size: 18px;
    font-weight: 500;
    color: #0e1625;
    margin-bottom: 20px;
}

.philosophy-text p {
    color: #5b6b7a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.philosophy-points {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    font-weight: 600;
    color: #0e1625;
}

/* RIGHT CARD */

.philosophy-card {
    flex: 1;
}

.card-box {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(30,167,215,0.15);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.card-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 120px rgba(30,167,215,0.25);
}

.card-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1ea7d7;
}

.card-box ul {
    list-style: none;
    margin-bottom: 30px;
}

.card-box ul li {
    margin-bottom: 15px;
    font-weight: 500;
    color: #0e1625;
}

.highlight {
    padding: 20px;
    background: linear-gradient(135deg, #1ea7d7, #0e5c82);
    color: #ffffff;
    border-radius: 15px;
    font-weight: 600;
    line-height: 1.6;
}

/* ================= DETAILED SECTIONS ================= */

.service-detailed {
    padding: 00px 0;
}

.service-detailed.alt {
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.service-detailed h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;

}

/* ================= SERVICE BLOCK ================= */

.service-block {
    display: flex;
    gap: 80px;
    margin-bottom: 70px;
    align-items: center;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 28px;
    color: #1ea7d7;
    margin-bottom: 25px;
}

.service-text p {
    color: #5b6b7a;
    line-height: 1.9;
    margin-bottom: 18px;
    font-size: 16px;
}

.ideal {
    margin-top: 20px;
    padding: 15px 20px;
    background: #f4f9fd;
    border-left: 4px solid #1ea7d7;
    border-radius: 10px;
    font-size: 15px;
}


/* Image Premium Style */

.service-image {
    flex: 1;
    position: relative;
}

.service-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(30,167,215,0.20);
    transition: 0.6s ease;
}

.service-image img:hover {
    transform: scale(1.04);
}

/* ================= BENEFITS ================= */

/* ================= BENEFITS ================= */

.service-benefits {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0e1625;
}

.benefits-header p {
    max-width: 650px;
    margin: auto;
    color: #6c7a89;
    font-size: 18px;
}

/* GRID */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* CARD */

.benefit-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(30,167,215,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Blue Hover */

.benefit-card:hover {
    background: linear-gradient(135deg, #1ea7d7, #0e5c82);
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(14,92,130,0.35);
}

/* Sliding Accent Line */

.benefit-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #ffffff;
    transition: 0.4s ease;
}

.benefit-card:hover::before {
    width: 100%;
}

/* ICON */

.benefit-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #1ea7d7, #0e5c82);
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: 0.4s ease;
}

/* Icon Invert on Hover */

.benefit-card:hover .benefit-icon {
    background: #ffffff;
    color: #1ea7d7;
}

/* TEXT */

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0e1625;
    transition: 0.4s ease;
}

.benefit-card:hover h3 {
    color: #ffffff;
}

.benefit-card p {
    color: #5b6b7a;
    line-height: 1.8;
    transition: 0.4s ease;
}

.benefit-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* ================= PROCESS ================= */

/* ================= PROCESS ================= */

.service-process {
    padding: 20px 0;
    background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 100%);
}

.process-header {
    text-align: center;
    margin-bottom: 90px;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0e1625;
}

.process-header p {
    max-width: 650px;
    margin: auto;
    color: #6c7a89;
    font-size: 18px;
}

/* GRID */

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* PROCESS CARD */

.process-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(30,167,215,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* BLUE HOVER EFFECT */

.process-card:hover {
    background: linear-gradient(135deg, #1ea7d7, #0e5c82);
    transform: translateY(-12px);
    box-shadow: 0 40px 100px rgba(14,92,130,0.35);
}

/* Sliding Accent Line */

.process-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #ffffff;
    transition: 0.4s ease;
}

.process-card:hover::before {
    width: 100%;
}

/* STEP NUMBER */

.step-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(30,167,215,0.15);
    margin-bottom: 20px;
    transition: 0.4s ease;
}

/* Step number turns white on hover */

.process-card:hover .step-number {
    color: #ffffff;
}

/* TITLE */

.process-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0e1625;
    transition: 0.4s ease;
}

.process-card:hover h3 {
    color: #ffffff;
}

/* TEXT */

.process-card p {
    color: #5b6b7a;
    line-height: 1.8;
    transition: 0.4s ease;
}

.process-card:hover p {
    color: rgba(255,255,255,0.9);
}
/* ================= CTA ================= */

.service-cta {
    padding: 160px 20px;
    background:  #1ea7d7;
    color:  white;
    text-align: center;
}

.service-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.service-cta p {
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #ffffff;
    color: #1ea7d7;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    border: 2px solid #ffffff;
    transition: 0.4s ease;
}

.cta-btn:hover {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}


/* ================= FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #0e1625, #162c46);
    color: #ffffff;
    padding-top: 100px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col {
    text-align: center;
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: #1ea7d7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #cbd5e1;
    transition: 0.3s ease;
}

.footer-col ul li a:hover {
    color: #1ea7d7;
    padding-left: 5px;
}
.contact-info-footer li {
    justify-content: center;
}
/* Contact Info */
.contact-info li {
    color: #cbd5e1;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1ea7d7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #ffffff;
    color: #1ea7d7;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #0b1220;
    color: #9aa5b1;
    font-size: 14px;
}

.nav-links a.active {
    color: #1ea7d7;
    font-weight: 600;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-info i {
    color: #1ea7d7;
    width: 18px;
}

.contact-info a {
    color: #cbd5e1;
    text-decoration: none;
}

.contact-info a:hover {
    color: #1ea7d7;
}



