/* ============================================================
   SERVICE INDEX PAGE — service.css
   Matches the design screenshot exactly
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:wght@700&family=Open+Sans:wght@400;500;700&display=swap');

/* ── Tokens ── */
:root {
    --cyan:   #009AB5;
    --yellow: #F8CC00;
    --text:   #111111;
    --gray:   #000;
    --white:  #ffffff;
    --light:  #f8f9fa;
}

body { font-family: 'Open Sans', sans-serif; color: var(--gray); line-height: 1.6; }

.text-cyan { color: var(--cyan) !important; }


/* Hero Section */
.hero-section {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    text-align: center;
}

.hero-heading {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        min-height: 300px;
    }
    
    .hero-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 250px;
    }
    
    .hero-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-heading {
        font-size: 24px;
    }
}

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.container-1200 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 30px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Card */
.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Service Image Wrapper */
.service-image-wrapper {
    position: relative;
    width: 100%;
       height: 100%;
    overflow: hidden;
}

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

.service-card:hover .service-image-wrapper img {
    transform: scale(1.05);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.service-card:hover .service-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-title {
    font-size: 24px;
    font-weight: 700;
    color: #F9AF40;
    text-align: center;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-transform: uppercase;
}

.service-card:hover .overlay-title {
    transform: translateY(0);
}

/* Toggle Button */
.srv-toggle-wrap {
    text-align: center;
    margin-top: 40px;
}

.srv-toggle-btn {
    background: #F9AF40;
    color: #000000;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.srv-toggle-btn:hover {
    background: transparent;
    transform: translateY(-3px);
   border: 2px solid #F9AF40;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.srv-toggle-btn[data-expanded="true"] .btn-arrow {
    transform: rotate(180deg);
}

/* Extra Services (Hidden by default) */
.srv-extra {
    display: none;
}

.srv-extra.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
   
    
    .section-title {
        font-size: 26px;
    }
    
    .overlay-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
  
    
    .overlay-title {
        font-size: 18px;
    }
}

/* CTA Section CSS (Updated) */
.cta-section {
    background-color: #F9AF40;
    padding: 40px 0;
    width: 100%;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    flex: 1;
}

.cta-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.cta-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.clock-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.clock-icon svg {
    width: 45px;
    height: 45px;
}

.cta-text {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    letter-spacing: 0.5px;
}

.cta-action {
    flex-shrink: 0;
}

.cta-button {
    display: inline-block;
    background-color: #672E91;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
   border: 2px solid #672E91;
   color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .cta-content {
        width: 100%;
    }
    
    .cta-heading {
        font-size: 28px;
    }
    
    .cta-info {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 30px 0;
    }
    
    .cta-heading {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .cta-heading {
        font-size: 20px;
    }
    
    .cta-text {
        font-size: 12px;
    }
    
    .clock-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
}