@font-face {
    font-family: "Popsies";
    src: url("https://db.onlinewebfonts.com/t/8ca14f5be5676d15ae6ef15c4c18a49b.eot");
    src: url("https://db.onlinewebfonts.com/t/8ca14f5be5676d15ae6ef15c4c18a49b.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/8ca14f5be5676d15ae6ef15c4c18a49b.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/8ca14f5be5676d15ae6ef15c4c18a49b.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/8ca14f5be5676d15ae6ef15c4c18a49b.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/8ca14f5be5676d15ae6ef15c4c18a49b.svg#Popsies")format("svg");
}
/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/*SHAPE DIVIDER AFTER SERVICES SECTION*/
.custom-shape-divider-top-1756199697 {
    position: relative; /* ✅ relative so text can be placed */
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }
  
  .custom-shape-divider-top-1756199697 svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
  }
  
  .custom-shape-divider-top-1756199697 .shape-fill {
    fill: #7ED321;
  }
  
  .divider-text {
    position: absolute;
    top: 115px; /*adjust this so text sits just under the SVG */
    left: 50%;
    transform: translateX(-50%);
    font-size: 130px;
    font-weight: 400;
    font-family: "Popsies";
    color: #a6d321;
    text-shadow: 0 2px 6px rgba(0,0,0,0.15);
    opacity: 0.5; /*ensure text is fully visible */
    z-index: 2; /* ✅ ensures text is above SVG */
    white-space: nowrap;
  }
  

/* Mobile: keep divider from occupying layout space and shrink height */
@media (max-width: 768px) {
    .services-section {
        position: relative; /* ensure absolute children anchor to section */
    }
    .custom-shape-divider-top-1756199697 {
        position: absolute; /* remove from normal flow so no extra height */
        bottom: 0;
        left: 0;
        right: 0;
        height: 100px; /* reserve enough space for text */
    }
    .custom-shape-divider-top-1756199697 svg {
        height: 56px; /* smaller height on mobile */
    }
    .custom-shape-divider-top-1756199697 {
        top: 48px; /* show just under SVG */
        font-size: 36px;
        letter-spacing: 1px;
        opacity: 0.12;
        z-index: 3;
    }
}

@media (max-width: 480px) {
    .custom-shape-divider-top-1756199697 {
        height: 80px;
    }
    .custom-shape-divider-top-1756199697 svg {
        height: 44px;
    }
    .custom-shape-divider-top-1756199697 {
        top: 38px;
        font-size: 28px;
    }
}

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

/* Section Header - Updated to match ko-section-header styling */
.ko-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.ko-section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ko-section-header h2 span {
    background: linear-gradient(90deg, #b0d136, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ko-section-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 600px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Service Cards - Glassmorphism Styling */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 500px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(176, 209, 54, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(176, 209, 54, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Card Image */
.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card-icon {
    background: #4caf50;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    font-size: 2rem;
    color: #fff;
}

.card-highlight {
    text-align: center;
    color: #fff;
}

.highlight-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Card Content */
.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.service-description {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #d0d0d0;
}

.service-features li i {
    color: #4caf50;
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Why Choose Section - Enhanced Styling */
.why-choose-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 80px 0 0 0;
    position: relative;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(176, 209, 54, 0.1);
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 209, 54, 0.05), transparent);
    transition: left 1.5s ease;
    z-index: 1;
}

.why-choose-section:hover::before {
    left: 100%;
}

.why-choose-section:hover {
    border-color: rgba(176, 209, 54, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(176, 209, 54, 0.1),
        0 0 0 1px rgba(176, 209, 54, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.why-choose-content {
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #b0d136, #00d4ff, #b0d136);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    text-shadow: 0 0 30px rgba(176, 209, 54, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #b0d136, #00d4ff);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(176, 209, 54, 0.5);
}

.why-subtitle {
    font-size: 1.2rem;
    color: #d0d0d0;
    margin-bottom: 50px;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    opacity: 0.9;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(176, 209, 54, 0.02);
    border-radius: 15px;
    padding: 25px 20px;
    border-bottom-color: rgba(176, 209, 54, 0.2);
}

.feature-icon {
    background: linear-gradient(135deg, #b0d136, #00d4ff);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
    position: relative;
    box-shadow: 
        0 10px 25px rgba(176, 209, 54, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #b0d136, #00d4ff, #b0d136);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 35px rgba(176, 209, 54, 0.4),
        0 0 30px rgba(176, 209, 54, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.feature-icon i {
    color: #fff;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-content {
    flex: 1;
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.feature-item:hover .feature-content h4 {
    background: linear-gradient(90deg, #b0d136, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    color: #c0c0c0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 300;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    -ms-word-break: break-word;
    word-break: break-word;
    max-width: 100%;
    white-space: normal;
    display: block;
    box-sizing: border-box;
}

.feature-item:hover .feature-content p {
    color: #e0e0e0;
}

/* Enhanced Statistics Cards */
.why-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(176, 209, 54, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(176, 209, 54, 0.3);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176, 209, 54, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(176, 209, 54, 0.15);
    transform: scale(1.08) translateY(-5px);
    border-color: rgba(176, 209, 54, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(176, 209, 54, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #b0d136, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 0 30px rgba(176, 209, 54, 0.5);
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-size: 1.1rem;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-label {
    color: #fff;
}

/* Enhanced Responsive Design - Matching Services Section Behavior */
@media (max-width: 1024px) {
    .why-choose-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
        margin-top: 60px;
        border-radius: 25px;
    }
    
    .why-choose-content {
        padding-right: 0;
        text-align: center;
        max-width: none;
    }
    
    .why-title {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
    }
    
    .why-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .why-features {
        gap: 25px;
    }
    
    .feature-item {
        padding: 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.02);
    }
    
    .why-stats {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
        max-width: 160px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .ko-section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        height: auto;
        min-height: 450px;
    }
    
    .card-image {
        height: 200px;
    }
    
    /* Match the services section responsive behavior */
    .why-choose-section {
        padding: 40px 15px;
        margin: 60px 0;
        border-radius: 20px;
        gap: 30px;
        /* Use same container approach as services */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: block;
    }
    
    .why-choose-content {
        text-align: center;
        padding: 0;
        margin-bottom: 30px;
    }
    
    .why-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }
    
    .why-title::after {
        width: 60px;
        height: 3px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .why-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .why-features {
        margin-bottom: 30px;
    }
    
    .feature-item {
        background: rgba(255, 255, 255, 0.02);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 15px;
        border: 1px solid rgba(176, 209, 54, 0.1);
    }
    
    .why-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        justify-content: center;
    }
    
    .stat-card {
        max-width: 100%;
        padding: 25px 20px;
        margin: 0;
        border-radius: 15px;
    }
    
/* Why Choose Section Mobile Adjustments - NUCLEAR CONTAINMENT */
    .why-choose-section {
        /* NUCLEAR OPTION - Break out of all containers */
        position: relative !important;
        left: calc(-50vw + 50%) !important;
        right: calc(-50vw + 50%) !important;
        width: 100vw !important;
        max-width: 100vw !important;
        margin: 40px 0 !important;
        padding: 15px 10px !important;
        
        /* Remove ALL problematic styling */
        transform: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-attachment: initial !important;
        
        /* Minimal styling only */
        background: rgba(255, 255, 255, 0.02) !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        
        /* ABSOLUTE containment */
        box-sizing: border-box !important;
        overflow: hidden !important;
        gap: 15px !important;
        
        /* Force block display */
        display: block !important;
        
        /* Override any parent constraints */
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Disable ALL hover effects on mobile */
    .why-choose-section:hover {
        transform: none !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid rgba(176, 209, 54, 0.2) !important;
        box-shadow: none !important;
    }
    
    /* Disable ALL pseudo-elements on mobile */
    .why-choose-section::before,
    .why-choose-section::after {
        display: none !important;
    }
    
    .why-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
        letter-spacing: 1px;
        /* Prevent text overflow */
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .why-title::after {
        width: 60px;
        height: 3px;
    }
    
    .why-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .why-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-card {
        max-width: 100%;
        padding: 20px 15px;
        margin: 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 15px 0;
        /* Prevent overflow */
        width: 100%;
        box-sizing: border-box;
    }
    
    .feature-item:hover {
        transform: translateX(3px);
        padding: 18px 10px;
        margin: 0;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        margin-top: 0;
        flex-shrink: 0;
    }
    
.feature-content {
        flex: 1;
        min-width: 0; /* Prevent flex item from overflowing */
        overflow-wrap: break-word;
        word-wrap: break-word;
        -ms-word-break: break-word;
        word-break: break-word;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .feature-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        -ms-word-break: break-word;
        word-break: break-word;
        max-width: 100%;
        white-space: normal;
        display: block;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding:5px 0;
    }
    
    .services-section .container {
        padding: 0 10px;
    }
    
    .ko-section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-height: 400px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    /* Why Choose Section Small Mobile - Fixed Layout */
    .why-choose-section {
        padding: 25px 12px;
        margin: 30px 2px 0 2px;
        border-radius: 15px;
        gap: 25px;
        /* Strict width control */
        width: calc(100vw - 4px);
        max-width: calc(100vw - 4px);
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .why-choose-content {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .why-stats {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .why-title {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
        /* Ensure title fits */
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-title::after {
        width: 50px;
        height: 2px;
        bottom: -8px;
    }
    
    .why-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .why-features {
        gap: 18px;
        width: 100%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px 5px;
        width: 100%;
        box-sizing: border-box;
        /* Remove problematic hover transforms on mobile */
        transform: none;
    }
    
    .feature-item:hover {
        transform: translateY(-2px);
        padding: 18px 8px;
        background: rgba(176, 209, 54, 0.03);
    }
    
    .feature-icon {
        margin: 0 auto;
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .feature-content {
        width: 100%;
        text-align: center;
    }
    
    .feature-content h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .feature-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .why-stats {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .stat-card {
        padding: 20px 12px;
        border-radius: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .stat-number {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    .stat-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
        word-wrap: break-word;
    }
}

/* Extra small devices (landscape phones) */
@media (max-width: 360px) {
    .why-choose-section {
        padding: 20px 8px;
        margin: 20px 1px 0 1px;
        border-radius: 12px;
        width: calc(100vw - 2px);
        max-width: calc(100vw - 2px);
    }
    
    .why-title {
        font-size: 1.2rem;
        line-height: 1.2;
    }
    
    .why-subtitle {
        font-size: 0.8rem;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Card Specific Styles */
.food-card .card-icon {
    background: #ff9800;
}

.bar-card .card-icon {
    background: #2196f3;
}

.hookah-card .card-icon {
    background: #9c27b0;
}

.bowling-card .card-icon {
    background: #4caf50;
}

.gaming-card .card-icon {
    background: #e91e63;
}

.live-screening-card .card-icon {
    background: #03a9f4;
}

/* Enhanced Glassmorphism Effects */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 20px 20px 0 0;
    pointer-events: none;
    z-index: 2;
}

.card-content {
    position: relative;
    z-index: 3;
}

.service-features li i {
    color: #b0d136;
}

.why-title {
    color: #b0d136;
}

.feature-icon {
    background: #b0d136;
}

.stat-card {
    background: rgba(176, 209, 54, 0.1);
    border: 2px solid #b0d136;
}

.stat-card:hover {
    background: rgba(176, 209, 54, 0.2);
}

.stat-number {
    color: #b0d136;
}

/* Animation classes for consistency with theme */
.ko-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.ko-delay-1 { animation-delay: 0.1s; }
.ko-delay-2 { animation-delay: 0.2s; }
.ko-delay-3 { animation-delay: 0.3s; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
