/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 70px;
    /* Account for fixed navbar */
    overflow-x: hidden;

}

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

/* Navigation */
.navbar {
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

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

.nav-logo h2 {
    color: #097f52;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #097f52;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #097f52;
}

/* Mobile Dropdown Adjustments */
@media (max-width: 992px) {
    .dropdown {
        display: block;
        width: 100%;
        height: auto;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: transparent;
        display: none;
        /* Hidden by default on mobile */
        min-width: auto;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
        /* Show on hover/tap */
    }

    .dropdown-item {
        padding: 10px 0;
        font-size: 1rem;
        color: #666;
    }
}

.btn-login {
    background: #097f52;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-login:hover {
    background: #076b3f;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ================= MOBILE NAVBAR (ADD ONLY) ================= */

@media (max-width: 992px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        border-top: 1px solid #eee;

        /* hide menu by default */
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-login {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ================= HAMBURGER ANIMATION ================= */

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 7px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, #0073ff 0%, #0caa64 100%);
    color: white;
    padding: 18px 0;
    font-family: 'Poppins', sans-serif;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

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

/* Align hero content with navigation logo */
.hero-content {
    text-align: left;
    max-width: 600px;
    margin-left: 0;
    padding-left: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 65vh;
}

.hero-content {
    text-align: left;
    max-width: 600px;
}

.hero-headlines {
    margin-bottom: 25px;
}

.hero-line {
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
}

.hero-line-1 {
    font-size: 3.2rem;
    color: #ffdc00;
    margin-bottom: 8px;
}

.hero-line-2 {
    font-size: 3.2rem;
    color: #ffdc00;
    margin-bottom: 12px;
}

.hero-line-3 {
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 45px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #ffdc00;
    color: #0caa64;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-primary:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #ffdc00;
    border: 2px solid #ffdc00;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffdc00;
    color: #0caa64;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 35px;
    justify-content: flex-start;
}

.stat-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid #ffdc00;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffdc00;
    margin-bottom: 5px;
    line-height: 1;
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mobile-mockup {
    position: relative;
    width: 300px;
    height: 620px;
    margin-left: auto;
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-top: 35px;
    justify-content: flex-start;
}

.stat-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid #ffdc00;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffdc00;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    text-align: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mobile-mockup {
    position: relative;
    width: 300px;
    height: 620px;
    margin-left: auto;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border: 2px solid #333;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(45deg, #0073ff, #0caa64);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.app-logo {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-content {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
}

.restaurant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 10px;
    border-left: 4px solid #0073ff;
}

.restaurant-icon {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0073ff;
    font-size: 0.9rem;
}

.restaurant-info {
    flex: 1;
}

.restaurant-info h4 {
    margin: 0;
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.restaurant-info p {
    margin: 2px 0 0 0;
    font-size: 0.8rem;
    color: #666;
}

.restaurant-status {
    font-size: 0.8rem;
    background: white;
    border-radius: 25px;
    overflow: hidden;
}

.app-interface {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, #0073ff, #0caa64);
    color: white;
    padding: 20px;
    text-align: center;
}

.app-logo {
    font-size: 2rem;
    margin-bottom: 10px;
}

.app-header h3 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.app-content {
    flex: 1;
    padding: 20px;
}

.restaurant-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    gap: 15px;
}

.restaurant-icon {
    width: 40px;
    height: 40px;
    background: #f0f8ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0073ff;
    font-size: 1.2rem;
}

.restaurant-info {
    flex: 1;
}

.restaurant-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 5px 0;
}

.restaurant-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.restaurant-status {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 30px 0;
        min-height: auto;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin: 0;
        text-align: left;
    }

    .hero-line-1,
    .hero-line-2 {
        font-size: 2.2rem;
    }

    .hero-line-3 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-stats {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 40px;
    }

    .stat-circle {
        width: 110px;
        height: 110px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .mobile-mockup {
        width: 240px;
        height: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 0;
    }

    .hero-line-1,
    .hero-line-2 {
        font-size: 1.8rem;
    }

    .hero-line-3 {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 15px;
        margin-top: 30px;
    }

    .stat-circle {
        width: 90px;
        height: 90px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .mobile-mockup {
        width: 180px;
        height: 380px;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .mobile-mockup {
        width: 160px;
        height: 320px;
    }
}

.hero-container .stat-item {
    color: white;
}

/* Subpage Hero Section - Debug with z-index */
/* Subpage Hero Section */
section.hero-subpage {
    background: linear-gradient(to bottom, #0073ff 0%, #0caa64 100%);
    color: white;
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
    min-height: 30vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Ensure container doesn't have background that covers gradient */
.hero-subpage .container,
.hero-subpage .hero-subpage-content {
    background: transparent !important;
    position: relative;
    z-index: 10;
}

.hero-subpage .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-subpage-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-subpage h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.1px;
    line-height: 1.2;
}



.hero-subpage .hero-description {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0 auto;
    max-width: 800px;
}

/* Responsive Subpage Hero */
@media (max-width: 768px) {
    .hero-subpage {
        padding: 40px 0 !important;
        min-height: 25vh !important;
    }

    .hero-subpage .hero-title {
        font-size: 2rem !important;
    }

    .hero-subpage .hero-subtitle {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }

    .hero-subpage .hero-description {
        font-size: 1rem !important;
        padding: 0 15px !important;
    }

    .hero-subpage .container {
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .hero-subpage {
        padding: 60px 0;
    }

    .hero-subpage .hero-title {
        font-size: 2rem;
    }

    .hero-subpage .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-subpage .hero-description {
        font-size: 1rem;
    }
}


/* Case Study */
/* ===============================
   CASE STUDY SECTION (ORIGINAL LOOK)
================================ */

.case-study {
    background: #f8f9fa;
    /* ORIGINAL */
    padding: 80px 0;
}

.case-study .container {
    max-width: 1200px;
    /* ORIGINAL */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Card visibility (slider logic kept) */
.case-study-card {
    display: none;
}

.case-study-card.active {
    display: block;
}

/* Card */
.case-study-card {
    background: #fff;
    border-radius: 15px;
    /* ORIGINAL */
    padding: 40px;
    border: 1px solid #e0e0e0;
}

/* Layout */
.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* ORIGINAL */
    gap: 40px;
}

/* Left side */
.case-study-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.case-study-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0073ff;
    margin-bottom: 20px;
}

/* Highlight box */
.case-study-highlight {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    border-left: 4px solid #097f52;
}

.case-study-highlight p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Tags */
.case-study-tags {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.case-study-tags span {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-green {
    background: #097f52;
    color: #fff;
}

.tag-green-light {
    background: #0FA958;
    color: #fff;
}

.tag-yellow {
    background: #ffdc00;
    color: #333;
}

/* Right side */
.case-study-right {
    position: relative;
}

/* 🔥 ORIGINAL SEPARATOR POSITION */
.case-study-separator {
    position: absolute;
    /* VERY IMPORTANT */
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #6ec16e;
    border-radius: 2px;
}

/* Challenges */
.case-study-challenges h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.case-study-challenges ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.case-study-challenges li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 12px;
}

.case-study-challenges li::before {
    content: "•";
    color: #6ec16e;
    position: absolute;
    left: 0;
}

/* Buttons */
.case-study-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-read-more {
    background: #0b8043;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-read-more:hover {
    background: #095c32;
    transform: translateY(-1px);
}

/* Navigation */
.case-study-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2e7dff;
    color: white;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #1a6de0;
    transform: scale(1.1);
}

.nav-arrow:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* ===============================
   RESPONSIVE (ORIGINAL BEHAVIOR)
================================ */

@media (max-width: 992px) {
    .case-study-content {
        grid-template-columns: 1fr;
    }

    .case-study-separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .case-study-card {
        padding: 25px;
    }

    .case-study-title {
        font-size: 1.5rem;
    }

    .case-study-buttons .btn {
        margin: 0 auto;
    }
}


/* Button styles */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Why Choose Section */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #FFE94E;
    color: #1A1A1A;
}

.btn-primary:hover {
    background: #FFD700;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #097f52;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #097f52;
    border: 2px solid #097f52;
}

.btn-outline:hover {
    background: #097f52;
    color: white;
    transform: translateY(-2px);
}

/* Hero Statistics */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFE94E;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Key Metrics Section */
.key-metrics {
    background: #f8f9fa;
    padding: 80px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.metric-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #097f52, #0FA958);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #097f52;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.white {
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

/* Why Choose Section */

.why-choose {
    padding: 40px 0 60px;
    background: #fff;
}

.section-title {
    margin-bottom: 15px;
    text-align: center;
}

.features-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.features-tabs {
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.features-tabs {
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
}

.features-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}


.features-tabs.dragging {
    cursor: grabbing;
}


.features-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    min-height: 63px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-item:hover,
.tab-item.active {
    background: #f0fff4;
    border-color: #097f52;
    box-shadow: 0 4px 12px rgba(9, 127, 82, 0.15);
}

.tab-icon {
    width: 40px;
    height: 40px;
    background: #0072FF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-title {
    font-weight: 600;
    color: #333;
}

/* RIGHT CONTENT CARD */
.features-content {
    background: #fff;
    padding: 101px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    min-height: 332px;
    /* margin-top: 107px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.features-html-wrapper ul {
    display: inline-block;
    text-align: left;
    margin: 20px auto;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0072FF;
}

.tab-content h4 {
    margin-top: 20px;
    color: #1a4d9b;
}

.tab-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #666;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    padding: 10px 0 10px 25px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.tab-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0FA958;
    font-weight: bold;
}

.carousel-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 992px) {
    .features-layout {
        grid-template-columns: 1fr;
    }

    .features-tabs {
        flex-direction: row;
        overflow-x: auto;
    }

    .tab-item {
        min-width: 220px;
    }
}

@media (max-width: 576px) {
    .features-content {
        padding: 25px;
    }

    .tab-content h3 {
        font-size: 1.5rem;
    }

    .features-tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
    }

}


/* SOLUTIONS SECTION */
.solutions {
    padding: 80px 0;
    background: #ffffff;
}

.solutions-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.solutions-carousel {
    overflow: hidden;
    width: 100%;
}

.solutions-grid.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease;
}

/* Card */
.solution-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    flex-shrink: 0;
    width: var(--card-width);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
}

/* Icon */
.solution-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0072FF, #0FA958);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Text */
.solution-card h3 {
    margin-bottom: 15px;
}

.solution-card p {
    color: #666;
    margin-bottom: 10px;
}

/* ================= FAQ SECTION ================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: #0072FF;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    /* Ensure space between text and icon */
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
    flex: 1;
    /* Allow text to take available space */
    text-align: left;
    /* Ensure text is left aligned */
    line-height: 1.4;
    /* Better line height for wrapping text */
    word-break: break-word;
    /* Prevent overflow of long words */
}

.faq-question i {
    color: #0072FF;
    transition: transform 0.3s ease;
    min-width: 24px;
    /* Fixed width for icon container */
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0;
    /* Strictly 0 padding when collapsed */
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease-out, padding 0.3s ease, opacity 0.3s ease;
    background: #f9f9f9;
}

.faq-answer.active {
    max-height: 1000px;
    /* Large enough to fit content */
    padding: 20px;
    /* Full padding when active */
    opacity: 1;
    border-top: 1px solid #eee;
    transition: max-height 0.5s ease-in, padding 0.3s ease, opacity 0.5s ease;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsiveness for FAQ */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 15px;
        /* Use standard responsive padding */
    }

    .faq-question {
        padding: 15px;
        align-items: flex-start;
        /* Align icon to top if text wraps mostly on mobile */
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 0;
        /* Remove padding as gap handles it */
        margin-top: 2px;
        /* Slight optical adjustment for top alignment */
    }

    .faq-question i {
        margin-top: 2px;
        /* Align icon with first line of text */
    }

    .faq-answer {
        padding: 0 15px;
        /* Reset horizontal padding for mobile collapsed */
    }

    .faq-answer.active {
        padding: 15px;
    }
}


.solution-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.solution-card li {
    padding-left: 20px;
    position: relative;
}

.solution-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0072FF;
}

/* Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #0072FF;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

.solution-card .btn {
    margin-top: 15px;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

.solution-card .btn-outline {
    background: transparent;
    color: #097f52 !important;
    border: 2px solid #097f52 !important;
}

.solution-card .btn-outline:hover {
    background: #097f52 !important;
    color: white !important;
}

.carousel-btn-prev {
    left: -20px;
}

.carousel-btn-next {
    right: -20px;
}

/* RESPONSIVE BREAKPOINTS */

/* Desktop: 3 cards */
:root {
    --card-width: calc((100% - 60px) / 3);
}

/* Tablet: 2 cards */
@media (max-width: 992px) {
    :root {
        --card-width: calc((100% - 30px) / 2);
    }
}

/* Mobile: 1 card */
@media (max-width: 576px) {
    :root {
        --card-width: 85%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-track {
        justify-content: flex-start;
    }

    .carousel-btn-prev {
        left: 0px;
    }

    .carousel-btn-next {
        right: 0px;
    }

    .solutions-carousel {
        overflow: hidden;
    }

    .solution-card {
        padding: 15px 10px;
    }


}

/* Product Cards with Grey Line Border */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #d0d0d0;
}

.product-card-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
}

.product-card-header.restaurant {
    background: linear-gradient(135deg, #007BFF, #0056D2);
}

.product-card-header.retail {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.product-card-header.van-sales {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.product-card-header.hybrid-erp {
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
}

.product-card-header.inventory {
    background: linear-gradient(135deg, #17a2b8, #007bff);
}

.product-card-header.analytics {
    background: linear-gradient(135deg, #fd7e14, #dc3545);
}

/* Hotel Management - Elegant teal/gold gradient */
.product-card-header.hotel-management {
    background: linear-gradient(135deg, #20B2AA, #FFD700);
}

/* Laundry Management - Clean blue/cyan gradient */
.product-card-header.laundry-management {
    background: linear-gradient(135deg, #4ECDC4, #556270);
}

.product-card-header i {
    font-size: 60px;
    opacity: 0.9;
}

/* Feature Cards with Grey Line Border */
.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    padding: 30px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d0d0d0;
}

.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 50px;
    color: white;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-content ul {
    color: #666;
    margin-bottom: 25px;
    padding-left: 20px;
    line-height: 1.6;
}

.feature-content li {
    margin-bottom: 5px;
}

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

.product-card-body {
    padding: 30px;
}

.product-card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.product-card-body p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-card-body ul {
    color: #666;
    margin-bottom: 25px;
    padding-left: 20px;
    line-height: 1.6;
}

.product-card-body li {
    margin-bottom: 5px;
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0072FF 0%, #0FA958 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    margin-top: 30px;
}

.cta-btn {
    background: white;
    color: #007BFF;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
    display: inline-block;
    text-decoration: none;
}

.cta-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-btn.outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-btn.outline:hover {
    background: white;
    color: #007BFF;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-btn {
        display: block;
        margin: 10px auto;
        max-width: 250px;
    }
}



/* Powerful Features Section */
.powerful-features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0072FF, #0FA958);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.features-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    text-align: center;
}


/* Clients Section */
.clients {
    background: white;
    padding: 60px 0;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    margin-bottom: 20px;
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
}

.client-logo {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    /* background: linear-gradient(135deg, #0072FF, #0FA958); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px solid #e0e0e0;
}

.logo-placeholder i {
    font-size: 2.5rem;
    color: white;
}

.client-name {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: #f8f9fb;
}

.testimonials-container {
    position: relative;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
    display: block;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #0072FF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
}

.faq-question:hover {
    background: #f0f8ff;
}

.faq-question span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    color: #0072FF;
    transition: transform 0.3s ease;
}

.faq-question i.active {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 15px;
    }

    .faq-question span {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #0072FF;
    font-size: 1.2rem;
    margin-top: 8px;
}

.contact-item h4 {
    margin-bottom: 0px;
    color: #333;
    font-size: larger;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 12px;
    transition: all 0.3s ease;
    border: 2px solid #25D366;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-btn:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn i {
    margin-right: 8px;
    font-size: 16px;
    color: white;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-btn {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 8px;
    }

    .whatsapp-btn i {
        font-size: 14px;
    }
}

.contact-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #097f52;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #FFE94E;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    padding: 5px 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFE94E;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #097f52;
}

/* Fixed Position Icons */
.fixed-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-item {
    position: relative;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-item:hover {
    background: #097f52;
    border-color: #097f52;
    transform: scale(1.1);
}

.icon-item i {
    font-size: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.icon-item:hover i {
    color: white;
}

.tooltip-content {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.icon-item:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.tooltip-block {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.tooltip-block::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.tooltip-block h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.tooltip-block p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.tooltip-link {
    display: inline-block;
    background: #097f52;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.tooltip-link:hover {
    background: #076b3f;
    color: white;
}

/* Responsive for fixed icons */
@media (max-width: 768px) {
    .fixed-icons {
        right: 10px;
        gap: 10px;
    }

    .icon-item {
        width: 40px;
        height: 40px;
    }

    .icon-item i {
        font-size: 16px;
    }

    .tooltip-content {
        right: 55px;
    }

    .tooltip-block {
        min-width: 160px;
        padding: 15px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .clients-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .logo-placeholder {
        width: 80px;
        height: 80px;
    }

    .logo-placeholder i {
        font-size: 2rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 35px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .contact-form-container {
        padding: 25px;
    }
}

/* Partner Network Section Responsive */
@media (max-width: 768px) {
    .partner-network-card {
        padding: 40px 20px;
        margin: 20px 0;
    }

    .partner-network-card>div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }

    .partner-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .partner-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .partner-content div {
        justify-content: center;
        gap: 15px;
    }

    .partner-content .btn-primary,
    .partner-content .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .partner-artwork {
        padding: 30px;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .partner-content h2 {
        font-size: 1.8rem;
    }

    .partner-content p {
        font-size: 1rem;
    }

    .partner-content div {
        flex-direction: column;
        align-items: center;
    }
}

/* Partner Network Section */
.partner-network-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    padding: 60px 40px;
    margin: 40px 0;
    background: linear-gradient(135deg, #0072FF 0%, #0FA958 100%);
}

.partner-network-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.partner-network-card>* {
    position: relative;
    z-index: 2;
}

.partner-artwork {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 200px;
}

.partner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.partner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.partner-content .btn-primary {
    background: #ffdc00;
    color: #0072FF;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.partner-content .btn-primary:hover {
    background: #ffd000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 220, 0, 0.3);
}

.partner-content .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.partner-content .btn-outline:hover {
    background: white;
    color: #0072FF;
    transform: translateY(-2px);
}

/* Company Section - Artistic Building Drawing */
.company-artwork {
    position: relative;
    width: 250px;
    height: 200px;
    background: linear-gradient(135deg, #007BFF, #0056D2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.company-artwork::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.artistic-building {
    position: relative;
    z-index: 2;
    border: 1px solid #e0e0e0;
}

.building-structure {
    width: 80px;
    height: 100px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    position: relative;
    border: 1px solid #e0e0e0;
}

.building-windows {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
}

.window {
    position: absolute;
    background: #007BFF;
    border-radius: 2px;
    border: 1px solid #e0e0e0;
}

.window:nth-child(1) {
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
}

.window:nth-child(2) {
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
}

.window:nth-child(3) {
    top: 20px;
    left: 0;
    width: 12px;
    height: 12px;
}

.window:nth-child(4) {
    top: 20px;
    right: 0;
    width: 12px;
    height: 12px;
}

.window:nth-child(5) {
    top: 40px;
    left: 0;
    width: 12px;
    height: 12px;
}

.window:nth-child(6) {
    top: 40px;
    right: 0;
    width: 12px;
    height: 12px;
}

.building-door {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 20px;
    background: #0056D2;
    border-radius: 8px 8px 0 0;
}

.building-roof {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 18px solid rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.decorative-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.decorative-element:nth-child(1) {
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
}

.decorative-element:nth-child(2) {
    top: 40px;
    right: 30px;
    width: 20px;
    height: 20px;
}

.decorative-element:nth-child(3) {
    bottom: 30px;
    left: 40px;
    width: 25px;
    height: 25px;
}

.decorative-element:nth-child(4) {
    bottom: 20px;
    right: 20px;
    width: 15px;
    height: 15px;
}

.decorative-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.decorative-line:nth-child(5) {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
}

.decorative-line:nth-child(6) {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 40px;
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-line-1,
    .hero-line-2 {
        font-size: 2.5rem;
    }

    .hero-line-3 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
        min-height: 60vh;
    }

    .hero-line-1,
    .hero-line-2 {
        font-size: 2rem;
    }

    .hero-line-3 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

.decorative-line:nth-child(7) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
}

.decorative-line:nth-child(8) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
}

/* Blog Section Styles */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .card-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card .card-content {
    padding: 25px;
}

.blog-card .category {
    font-size: 0.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #333;
}

.blog-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.blog-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.blog-card .meta span {
    color: #666;
    font-size: 0.85rem;
}

.blog-card .meta i {
    margin-right: 5px;
}

.featured-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 50px;
}

.featured-post .content {
    padding: 40px;
}

.featured-post .featured-badge {
    color: #007BFF;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-3px);
}

.category-item i {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.category-item p {
    color: #666;
    font-size: 0.9rem;
}


/* ===============================
   MISSION & VISION
================================ */

.mission-vision {
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mv-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mv-header i {
    font-size: 2rem;
    color: #0072FF;
    margin-right: 15px;
}

.mv-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.mv-card p {
    color: #666;
    line-height: 1.8;
}

/* ===============================
   VALUES SECTION
================================ */

.values-section {
    padding: 80px 0;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.values-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-card i {
    font-size: 3rem;
    color: #0072FF;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}


/* Tablet */
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mv-card {
        padding: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-header h2 {
        font-size: 2rem;
    }
}


/* Company overview */
/* ===== OUR STORY SECTION ===== */

.our-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.our-story-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
}

.our-story-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.our-story-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.our-story-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0072FF;
}

.our-story-stats .stat-label {
    color: #666;
}

/* IMAGE RESPONSIVE FIX */
.our-story-image {
    text-align: center;
}

.our-story-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .our-story-image {
        order: 1;
    }

    .our-story-content {
        order: 2;
    }

    .our-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .our-story-stats {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .our-story-title {
        font-size: 2rem;
    }

    .our-story-stats {
        gap: 20px;
        justify-content: center;
        text-align: center;
    }

    .our-story-stats>div {
        flex: 1 1 100%;
    }
}




/* Blog  Page */

@media (max-width: 992px) {
    .featured-article-card {
        grid-template-columns: 1fr !important;
    }

    .featured-article-image img {
        height: 300px !important;
    }
}

@media (max-width: 576px) {
    .faq-heading {
        font-size: 0.5rem;
    }

    .featured-article-content {
        padding: 30px !important;
    }

    .featured-article-content h2 {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .featured-article-image img {
        height: auto !important;
        max-height: 260px;
    }

    .featured-article-content a.btn {
        display: block;
        width: 100%;
        text-align: center;

    }
}




@media (max-width: 768px) {
    .newsletter-section h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .newsletter-section p {
        font-size: 1.05rem;
        padding: 0 15px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 50px 15px;
    }

    .newsletter-section h2 {
        font-size: 1.7rem;
    }

    .newsletter-form input {
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .newsletter-form button {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}



/* ================= CONTACT SECTION (SCOPED) ================= */

/* Ensure grid works only inside contact section */
.contact-section .container>div {
    width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
    .contact-section .container>div {
        grid-template-columns: 1fr !important;
    }

    .contact-section .contact-form,
    .contact-section .contact-info-card {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .contact-section .container>div {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .contact-section .grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .contact-section .form-group input,
    .contact-section .form-group select,
    .contact-section .form-group textarea {
        width: 100%;
        font-size: 1rem;
    }

    .contact-section .contact-form button {
        font-size: 1rem;
        padding: 14px;
    }

    .contact-section .contact-item {
        display: flex;
        gap: 15px;
        align-items: flex-start;
    }

    .contact-section .contact-details h4 {
        font-size: 1rem;
    }

    .contact-section .contact-details p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-section .contact-info-card div[style*="display: flex"] {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .contact-section .map-container {
        margin-top: 40px;
        padding: 30px 15px;
    }
}

@media (max-width: 324px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-section .contact-form h3,
    .contact-section .contact-info-card h3 {
        font-size: 1.4rem;
    }

    .contact-section .form-group label {
        font-size: 0.9rem;
    }

    .contact-section .contact-details p {
        font-size: 0.9rem;
    }

    .contact-section .map-container i {
        font-size: 45px;
    }
}

/* React Migration Overrides */
@media (max-width: 768px) {
    .industry-content-flex {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .industry-content-flex>div {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .industry-content-flex>div:nth-child(2)>div {
        width: 200px !important;
        height: 400px !important;
    }
}

.contact-page-wrapper input:focus,
.contact-page-wrapper select:focus,
.contact-page-wrapper textarea:focus {
    outline: none;
    border-color: #007BFF !important;
}

.fixed-icons {
    z-index: 1000;
}

/* Partners Page Styles */
.partner-intro {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.partner-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.partner-card h3 {
    color: #0073ff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-table {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.partner-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border: 1px solid #e0e0e0;
}

.partner-table th {
    background: #3a7d8c;
    color: white;
    padding: 16px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-table th:first-child {
    text-align: left;
    width: 35%;
}

.partner-table th:last-child {
    border-right: none;
}

.partner-table td {
    padding: 12px 20px;
    text-align: center;
    border-right: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.partner-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #444;
}

.partner-table tr:nth-child(even) {
    background-color: #fcfcfc;
}

.partner-table tr:hover {
    background-color: #f8f9ff;
}

.section-label {
    background: #f5f5f5 !important;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.section-label td {
    border-top: 2px solid #e0e0e0;
    border-bottom: 2px solid #e0e0e0;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
    font-size: 1.2em;
}

.not-available {
    color: #6c757d;
    font-weight: bold;
}

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

@media (max-width: 480px) {
    .partner-table {
        overflow-x: scroll;
    }

    .partner-table th,
    .partner-table td {
        min-width: 80px;
        padding: 6px 10px;
    }

    .partner-table th:first-child,
    .partner-table td:first-child {
        min-width: 120px;
        position: sticky;
        left: 0;
        background: white;
        z-index: 10;
        border-right: 2px solid #e0e0e0;
    }

    .partner-table th:first-child {
        background: #3a7d8c;
        color: white;
    }
}

/* FAQ Page Styles */
.faq-container {
    display: block;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
}

.faq-question:hover {
    background: #f8f9fa;
    border-color: #007BFF;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    line-height: 1.6;
    border-top: 1px solid #e0e0e0;
}

.faq-answer.active {
    padding: 30px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #007BFF;
}

.faq-icon.active {
    transform: rotate(180deg);
}

.faq-heading {
    margin: 60px 0 35px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    padding: 30px 0 15px;
}

@media (max-width: 576px) {
    .faq-heading {
        font-size: 1.8rem;
        margin: 30px 0 10px;
    }
}

/* Added missing btn-outline class identified in partners.html */
.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.btn-outline:hover {
    background: white;
    color: #1a1a1a;
    /* Assuming dark text on hover */
    transform: translateY(-2px);
}

.cta-section .btn-outline:hover {
    color: #0072FF;
    /* Match gradient start color */
}

/* ========================================
   PRODUCTS PAGE - MOBILE RESPONSIVENESS
   ======================================== */

@media (max-width: 768px) {

    /* Section Title & Subtitle */
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 10px !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    /* Products Grid - Single Column on Mobile */
    .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 10px !important;
    }

    /* Product Card */
    .product-card {
        margin-bottom: 20px !important;
    }

    .product-card-header {
        height: 150px !important;
    }

    .product-card-header i {
        font-size: 45px !important;
    }

    .product-card-body {
        padding: 20px !important;
    }

    .product-card-body h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .product-card-body p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }

    .product-card-body ul {
        margin-bottom: 15px !important;
    }

    .product-card-body ul li {
        font-size: 0.85rem !important;
        margin-bottom: 5px !important;
    }

    .product-card-body .btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 0.9rem !important;
    }

    /* Feature Cards */
    .feature-card {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }

    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 15px !important;
    }

    .feature-icon i {
        font-size: 35px !important;
    }

    .feature-content h3 {
        font-size: 1.2rem !important;
    }

    .feature-content p {
        font-size: 0.9rem !important;
    }

    /* Page Hero (Products/Subpages) */
    .page-hero h1 {
        font-size: 1.8rem !important;
    }

    .page-hero p {
        font-size: 1rem !important;
    }
}

/* Small mobile adjustments for Products */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem !important;
    }

    .section-subtitle {
        font-size: 0.95rem !important;
    }

    .product-card-header {
        height: 120px !important;
    }

    .product-card-header i {
        font-size: 35px !important;
    }

    .product-card-body {
        padding: 15px !important;
    }

    .product-card-body h3 {
        font-size: 1.1rem !important;
    }

    .page-hero h1 {
        font-size: 1.5rem !important;
    }

    .page-hero p {
        font-size: 0.9rem !important;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   Home Page - All Sections
   ======================================== */

@media (max-width: 768px) {

    /* ==========  INTRO SECTION  ========== */
    .intro h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }

    .intro p,
    .intro div {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .intro .container {
        padding: 0 20px !important;
    }

    /* ==========  SOLUTIONS SECTION  ========== */
    .solutions-section h2 {
        font-size: 1.8rem !important;
    }

    .solutions-section p {
        font-size: 0.95rem !important;
    }

    /* ==========  WHY CHOOSE SECTION  ========== */
    .why-choose h2 {
        font-size: 1.8rem !important;
    }

    .features-layout {
        flex-direction: column !important;
    }

    .features-tabs {
        width: 100% !important;
        order: 1 !important;
    }

    .features-content {
        width: 100% !important;
        order: 2 !important;
    }

    .tab-item {
        padding: 12px 15px !important;
    }

    .tab-title {
        font-size: 0.9rem !important;
    }

    .features-content h3 {
        font-size: 1.3rem !important;
    }

    .features-content p {
        font-size: 0.95rem !important;
    }

    /* ==========  POWERFUL FEATURES SECTION  ========== */
    .powerful-features h2 {
        font-size: 1.8rem !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-item {
        padding: 20px !important;
    }

    .feature-item h3 {
        font-size: 1.1rem !important;
    }

    .feature-item p {
        font-size: 0.9rem !important;
    }

    /* ==========  CLIENTS SECTION  ========== */
    .clients-section h2 {
        font-size: 1.8rem !important;
    }

    /* ==========  FAQ SECTION  ========== */
    .faq-section h2 {
        font-size: 1.8rem !important;
    }

    .faq-question {
        font-size: 1rem !important;
        padding: 15px !important;
    }

    .faq-answer {
        font-size: 0.9rem !important;
        padding: 0 15px 15px !important;
    }

    /* ==========  CONTACT SECTION  ========== */
    .contact-section h2 {
        font-size: 1.8rem !important;
    }

    .contact-section p {
        font-size: 0.95rem !important;
    }

    /* ==========  GENERAL SECTION STYLES  ========== */
    .section {
        padding: 40px 0 !important;
    }

    .container {
        padding: 0 15px !important;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {

    .intro h2,
    .solutions-section h2,
    .why-choose h2,
    .powerful-features h2,
    .clients-section h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 1.5rem !important;
    }

    .intro p,
    .intro div {
        font-size: 0.95rem !important;
    }

    .tab-item {
        padding: 10px 12px !important;
    }

    .features-grid {
        gap: 15px !important;
    }

    .feature-item {
        padding: 15px !important;
    }

    .faq-question {
        font-size: 0.95rem !important;
    }

    .section {
        padding: 30px 0 !important;
    }
}

/* Added missing btn-outline class identified in partners.html */
.btn-outline,
.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.btn-outline:hover,
.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
    /* Assuming dark text on hover */
    transform: translateY(-2px);
}

.cta-section .btn-outline:hover {
    color: #0072FF;
    /* Match gradient start color */
}

/* ========================================
   BLOG PAGE - MOBILE RESPONSIVENESS
   ======================================== */

@media (max-width: 900px) {

    /* Featured Article - Stack Vertically on smaller screens */
    .featured-article-card {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Reset grid columns to avoid issues */
    .featured-article-card>div {
        grid-column: auto !important;
    }

    .featured-article-content {
        padding: 30px !important;
    }

    .featured-article-image img {
        height: 250px !important;
    }
}

@media (max-width: 768px) {

    /* Main Blog Title (Featured) */
    .featured-article-card h3 {
        font-size: 1.8rem !important;
        /* Override 3rem */
        line-height: 1.3 !important;
    }

    /* Article Body Text */
    .featured-article-card p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    /* Expandable Content Headings */
    .featured-article-card h4 {
        font-size: 1.2rem !important;
        margin-top: 20px !important;
    }

    .featured-article-card ul li {
        font-size: 0.95rem !important;
    }

    /* Newsletter Section */
    .newsletter-section {
        padding: 40px 0 !important;
    }

    .newsletter-section h2 {
        font-size: 1.8rem !important;
    }

    .newsletter-section p {
        font-size: 1rem !important;
    }

    .newsletter-form {
        flex-direction: column !important;
        padding: 0 15px !important;
    }

    .newsletter-form input {
        width: 100% !important;
        margin-bottom: 10px !important;
    }

    .newsletter-form button {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .featured-article-content {
        padding: 20px !important;
    }

    /* Reduce title further on small screens */
    .featured-article-card h3 {
        font-size: 1.5rem !important;
    }

    .featured-article-image img {
        height: 200px !important;
    }

    .newsletter-section h2 {
        font-size: 1.5rem !important;
    }
}/* Fixed Position Icons - Extracted from style.css */
.fixed-icons {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.icon-item {
    position: relative;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.icon-item:hover {
    background: #097f52;
    border-color: #097f52;
    transform: scale(1.1);
}

.icon-item i {
    font-size: 20px;
    color: #666;
    transition: color 0.3s ease;
}

.icon-item:hover i {
    color: white;
}

.tooltip-content {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.icon-item:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
}

.tooltip-block {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
}

.tooltip-block::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.tooltip-block h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.tooltip-block p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.tooltip-link {
    display: inline-block;
    background: #097f52;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.tooltip-link:hover {
    background: #076b3f;
    color: white;
}

/* Responsive for fixed icons */
@media (max-width: 768px) {
    .fixed-icons {
        right: 10px;
        gap: 10px;
    }

    .icon-item {
        width: 40px;
        height: 40px;
    }

    .icon-item i {
        font-size: 16px;
    }

    .tooltip-content {
        right: 55px;
    }

    .tooltip-block {
        min-width: 160px;
        padding: 15px;
    }
}/* Stat Item Styles (Text Only) */
.stat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align text */
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    /* Spacing between items */
    /* Removed width/height/border/bg/radius/backdrop-filter to match text-only design */
}

.stat-number {
    font-size: 2.2rem;
    /* Larger font */
    font-weight: 800;
    color: #ffdc00;
    /* Yellow */
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 1;
    /* Full opacity */
}

/* Ensure hero-image relative positioning works */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-badge {
    position: absolute;
    bottom: -40px;
    left: -40px;
    max-width: 300px;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: row !important;
        /* Override standard column stacking */
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-circle {
        width: 100px;
        /* Smaller circles on mobile */
        height: 100px;
        padding: 5px;
    }

    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 3px;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    /* Adjust badge for mobile */
    .hero-badge {
        bottom: -20px;
        left: -10px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 15px;
    }

    .stat-circle {
        width: 90px;
        height: 90px;
    }

    .stat-number {
        font-size: 1.2rem;
    }
}/* Industry Solutions Responsive Styles (Ported from index.html inline media queries) */
@media (max-width: 768px) {
    .industry-section-padding {
        padding: 60px 0 !important;
    }

    .industry-flex-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .industry-col-left,
    .industry-col-center,
    .industry-col-right {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    .industry-col-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .industry-col-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Ensure child divs (items) align center */
    .industry-col-left>div,
    .industry-col-right>div {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .industry-item h3 {
        font-size: 1rem !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        align-items: center !important;
    }

    /* On mobile: Left column uses row-reverse to put icon first visually */
    .industry-col-left .industry-item h3 {
        flex-direction: row-reverse !important;
        justify-content: flex-end !important;
        text-align: left !important;
    }

    /* Right column stays row with icon first already in JSX */
    .industry-col-right .industry-item h3 {
        flex-direction: row !important;
        justify-content: flex-start !important;
        text-align: left !important;
    }

    /* Icon sizing on mobile - prevent shrinking */
    .industry-item h3 img {
        width: 30px !important;
        height: 30px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .industry-item p {
        font-size: 0.875rem !important;
    }

    /* Mobile Mockup sizing */
    .industry-mobile-mockup {
        width: 200px !important;
        height: 400px !important;
        margin: 0 auto !important;
    }

    /* Integration Logos */
    .industry-logos {
        gap: 30px !important;
        flex-wrap: wrap !important;
    }

    .industry-logos img {
        height: 30px !important;
    }
}/* Testimonials Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Ensure testimonial cards have consistent sizing */
.testimonial-card {
    width: 100%;
    max-width: none;
    /* Remove any max-width constraints */
}

/* Tablet (2 columns) */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Mobile (1 column) */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}/* Contact Section Layout */
.contact {
    background: #f8f9fa;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

/* Contact Info Column */
.contact-info h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info>p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #097f52;
    margin-top: 5px;
    min-width: 30px;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

/* Contact Form Column */
.contact-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #097f52;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3e%3cpolyline points="6 9 12 15 18 9"%3e%3c/polyline%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }

    .contact-info h3 {
        font-size: 1.75rem;
    }



    .contact-content {
        gap: 40px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .whatsapp-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 12px 20px;
    }
}

/* Partner Network Section */
.partner-network-card {
    background: linear-gradient(135deg, #0072FF 0%, #0FA958 100%);
    border-radius: 15px;
    padding: 60px 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.partner-grid-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.partner-artwork {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-height: 200px;
}

.partner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.partner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.partner-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments for Partner Section */
@media (max-width: 992px) {
    .partner-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .partner-artwork {
        margin: 0 auto;
        max-width: 300px;
    }

    .partner-content h2 {
        font-size: 2rem;
    }

    .partner-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .partner-network-card {
        padding: 40px 20px;
    }

    .partner-content h2 {
        font-size: 1.75rem;
    }

    .partner-content p {
        font-size: 1rem;
    }

    .partner-artwork {
        padding: 20px;
        min-height: 160px;
    }
}