    
        /* Global Styles */
        :root {
            --primary: #1a5276;
            --secondary: #2e86c1;
            --accent: #f39c12;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --success: #27ae60;
            --section-bg: #ffffff; /* Changed from sky blue to white */
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: transparent;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
.hero-gif {
    width: 100%;
    height: auto;
    display: block;
}
 
 
 
/* Primary button (blue) */
.btn {
    background-color: #0d6efd;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0b5ed7;
    color: white;
}

/* Accent button (black) */
.btn-accent {
    background-color: #198754; /* Bootstrap success green */
    color: white;
}

.btn-accent:hover {
    background-color: #333333;
    color: white;
}
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 80px; /* adjust size */
            width: auto;  /* keeps proportions */
            display: block;
            margin-right: 10px;
		
}
        

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 2rem;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: var(--secondary);
        }
        
         /* Mobile Menu Button */
    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 5px;
    }
        
        /* Hero Section */
        .hero {
            position: relative;
            color: white;
            padding: 5rem 0;
            text-align: center;
            overflow: hidden; /* Ensures video doesn't spill out */ 
            height: 80vh;   /* full screen height */
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Keeps video covering background */
            z-index: -1; /* Push video behind content */
        }
        
        .hero-overlay {
            position: absolute;
            inset: 0;
            backdrop-filter: blur(4px); /* blur effect */
            z-index: -1; /* between video and text */
        }
        
        .hero-content {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
            z-index: 1; /* Keep content above video */
        }
        
        .hero-buttons {
            margin-top: 2rem;
        }
        
        .hero-buttons .btn {
            margin: 0 10px;
        }
	.rohe {
            position: relative;
            padding: 9rem 0;
            text-align: center;
            overflow: hidden; /* Ensures video doesn't spill out */ 
            height: 40vh;   /* full screen height */
        }
	.rohe-content h1,
       .rohe-content p {
        background-color: rgba(255, 255, 255, 0.7); /* White background behind text */
        color: black !important;
        display: inline-block;
        padding: 5px 15px;
        border-radius: 5px;
        }
           .rohe-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Keeps video covering background */
            z-index: -1; /* Push video behind content */
        }
		   .rohe-overlay {
            position: absolute;
            inset: 0;
            backdrop-filter: blur(4px); /* blur effect */
            z-index: -1; /* between video and text */
        }
        
        .rohe-content {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
            z-index: 1; /* Keep content above video */
        }
        
        /* Main Container - Increased width */
        .main-container {
            max-width: 1400px; /* Increased from 1200px */
            width: 95%; /* Increased from 100% */
            margin: 0 auto;
           background: #f5f5f5;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
        hk {
    display: block;
    color: #87CEEB; /* Sky blue color */
    font-size: 14px; /* Reduced size */
    font-weight: normal;
    margin-top: 5px;
    text-align: center;
    font-family: inherit;
}
        /* Values Section */
        .image-cards {
            padding: 3rem 0;

        }
        
        .image-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        
        .image-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 300px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .image-card:hover {
            transform: translateY(-8px);
        }
        
        .image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            animation: subtleMove 20s infinite alternate ease-in-out;
        }
        
        @keyframes subtleMove {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.05);
            }
        }
        
        .image-card:hover img {
            transform: scale(1.1);
            animation: none; /* Stop animation on hover for more dramatic effect */
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.85));
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 1.9rem;
            color: white;
            transition: all 0.5s ease;
            text-align: center;
        }
        
        .image-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            transition: all 0.5s ease;
        }
        
        .image-overlay p {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
            margin-bottom: 1rem;
            line-height: 1.5;
            font-size: 0.95rem;
            max-height: 0;
            overflow: hidden;
        }
        
        .image-card:hover .image-overlay h3 {
            transform: translateY(-10px);
        }
        
        .image-card:hover .image-overlay p {
            opacity: 1;
            transform: translateY(0);
            max-height: 150px;
        }
		
		
/* Products Section with Gray Background */
.products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
    gap: 25px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* ADJUST CARD WIDTH HERE */
.product-card {
    background: white;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    
    /* CHANGE THESE VALUES TO ADJUST WIDTH */
    width: 100%; /* Takes full width of grid cell */
    min-width: 310px; /* Minimum width */
    max-width: 410px; /* Maximum width */
}
/* Rest of your existing CSS remains the same */
.product-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Add animation effect */
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.95; /* slight dim look before hover */
}

.product-card:hover .product-img img {
    transform: scale(1.08); /* zoom in */
    opacity: 1; /* brighten */
}
@keyframes float {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.02) translateY(-5px); }
    100% { transform: scale(1) translateY(0); }
}

.product-img img {
    animation: float 4s ease-in-out infinite;
}


.product-img i {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.product-content h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    color: #1a365d;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(230px, 1fr));
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
        max-width: 1100px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .product-img {
        height: 150px;
    }
    
    .product-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}
        /* How It Works */
        .how-it-works {
            padding: 5rem 0;
            background: white;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .step {
            text-align: center;
            flex: 1;
            padding: 0 1.5rem;
            position: relative;
        }
        
        .step:not(:last-child):after {
            content: "";
            position: absolute;
            top: 40px;
            right: -30px;
            width: 60px;
            height: 2px;
            background: var(--secondary);
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin: 0 auto 1.5rem;
        }
		
		/* 5 Box Value Propositions Section */
.values-section {
    padding: 1rem 0;
    background: white;
}

.boxes-container {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
	width: 100%; 
}

.value-box {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 220px;
    max-width: none;
    border-top: 4px solid #2e5ba9;
    text-align: center;
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.value-box:nth-child(1) {
    border-top-color: #2e5ba9;
}

.value-box:nth-child(2) {
    border-top-color: #2e8b57;
}

.value-box:nth-child(3) {
    border-top-color: #8b4513;
}

.value-box:nth-child(4) {
    border-top-color: #8a2be2;
}

.value-box:nth-child(5) {
    border-top-color: #b22222;
}

.value-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2e5ba9;
}

.value-box:nth-child(2) .value-icon {
    color: #2e8b57;
}

.value-box:nth-child(3) .value-icon {
    color: #8b4513;
}

.value-box:nth-child(4) .value-icon {
    color: #8a2be2;
}

.value-box:nth-child(5) .value-icon {
    color: #b22222;
}

.value-box h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a3e72;
}

.value-box p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments for value boxes */
@media (max-width: 1200px) {
    .boxes-container {
        gap: 15px;
    }
    
    .value-box {
        min-width: 200px;
        padding: 20px 15px;
    }
}

@media (max-width: 1024px) {
    .boxes-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .value-box {
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .boxes-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .boxes-container {
        grid-template-columns: 1fr;
    }
    
    .value-box {
        max-width: 350px;
        margin: 0 auto;
    }
}
    
    /* Services Section - 2 cards per row */
.services-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Different animations for each service item */
.service-item:nth-child(1) .service-img img {
    animation: multiEffect1 12s ease-in-out infinite;
}

.service-item:nth-child(2) .service-img img {
    animation: multiEffect2 14s ease-in-out infinite;
}

.service-item:nth-child(3) .service-img img {
    animation: multiEffect3 16s ease-in-out infinite;
}

.service-item:nth-child(4) .service-img img {
    animation: multiEffect4 13s ease-in-out infinite;
}

.service-item:nth-child(5) .service-img img {
    animation: multiEffect5 15s ease-in-out infinite;
}

.service-item:nth-child(6) .service-img img {
    animation: multiEffect6 17s ease-in-out infinite;
}

.service-item:nth-child(7) .service-img img {
    animation: multiEffect7 11s ease-in-out infinite;
}

.service-item:nth-child(8) .service-img img {
    animation: multiEffect8 18s ease-in-out infinite;
}

/* Animation 1 - Original with variations */
@keyframes multiEffect1 {
    0% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8; 
        filter: brightness(1);
    }
    20% { 
        transform: scale(1.08) rotate(0.5deg); 
        opacity: 1; 
        filter: brightness(1.1);
    }
    40% { 
        transform: scale(1.05) rotate(-0.3deg); 
        opacity: 0.9; 
        filter: brightness(1.05);
    }
    60% { 
        transform: scale(1.12) rotate(0.2deg); 
        opacity: 0.95; 
        filter: brightness(1.15);
    }
    80% { 
        transform: scale(1.03) rotate(-0.1deg); 
        opacity: 0.85; 
        filter: brightness(1);
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8; 
        filter: brightness(1);
    }
}

/* Animation 2 - More zoom, less rotation */
@keyframes multiEffect2 {
    0% { 
        transform: scale(1); 
        opacity: 0.7; 
        filter: contrast(1);
    }
    25% { 
        transform: scale(1.15); 
        opacity: 1; 
        filter: contrast(1.2);
    }
    50% { 
        transform: scale(1.08); 
        opacity: 0.8; 
        filter: contrast(1.1);
    }
    75% { 
        transform: scale(1.12); 
        opacity: 0.9; 
        filter: contrast(1.15);
    }
    100% { 
        transform: scale(1); 
        opacity: 0.7; 
        filter: contrast(1);
    }
}

/* Animation 3 - Slide movement with zoom */
@keyframes multiEffect3 {
    0% { 
        transform: scale(1) translateX(0) translateY(0); 
        opacity: 0.8;
    }
    20% { 
        transform: scale(1.1) translateX(3%) translateY(2%); 
        opacity: 1;
    }
    40% { 
        transform: scale(1.05) translateX(-2%) translateY(1%); 
        opacity: 0.9;
    }
    60% { 
        transform: scale(1.08) translateX(1%) translateY(-1%); 
        opacity: 0.95;
    }
    80% { 
        transform: scale(1.12) translateX(-1%) translateY(2%); 
        opacity: 0.85;
    }
    100% { 
        transform: scale(1) translateX(0) translateY(0); 
        opacity: 0.8;
    }
}

/* Animation 4 - Pulse with saturation */
@keyframes multiEffect4 {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.75;
        filter: saturate(1) brightness(1);
    }
    33% { 
        transform: scale(1.09); 
        opacity: 0.95;
        filter: saturate(1.3) brightness(1.1);
    }
    66% { 
        transform: scale(1.04); 
        opacity: 0.85;
        filter: saturate(1.1) brightness(1.05);
    }
}

/* Animation 5 - Slow drift with glow */
@keyframes multiEffect5 {
    0% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8;
        filter: brightness(1) blur(0px);
    }
    30% { 
        transform: scale(1.07) rotate(0.8deg); 
        opacity: 1;
        filter: brightness(1.2) blur(0.8px);
    }
    60% { 
        transform: scale(1.03) rotate(-0.5deg); 
        opacity: 0.9;
        filter: brightness(1.1) blur(0.3px);
    }
    100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.8;
        filter: brightness(1) blur(0px);
    }
}

/* Animation 6 - Bounce effect */
@keyframes multiEffect6 {
    0%, 100% { 
        transform: scale(1) translateY(0); 
        opacity: 0.8;
    }
    15% { 
        transform: scale(1.06) translateY(-2%); 
        opacity: 0.95;
    }
    30% { 
        transform: scale(1.1) translateY(1%); 
        opacity: 1;
    }
    45% { 
        transform: scale(1.08) translateY(-1%); 
        opacity: 0.9;
    }
    60% { 
        transform: scale(1.12) translateY(2%); 
        opacity: 0.85;
    }
    75% { 
        transform: scale(1.05) translateY(0); 
        opacity: 0.95;
    }
}

/* Animation 7 - Quick pulses */
@keyframes multiEffect7 {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    12.5% { 
        transform: scale(1.05); 
        opacity: 0.9;
    }
    25% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    37.5% { 
        transform: scale(1.08); 
        opacity: 1;
    }
    50% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    62.5% { 
        transform: scale(1.06); 
        opacity: 0.95;
    }
    75% { 
        transform: scale(1); 
        opacity: 0.7;
    }
    87.5% { 
        transform: scale(1.03); 
        opacity: 0.85;
    }
}

/* Animation 8 - Wave-like motion */
@keyframes multiEffect8 {
    0% { 
        transform: scale(1) translateX(0) rotate(0deg); 
        opacity: 0.8;
    }
    20% { 
        transform: scale(1.07) translateX(2%) rotate(0.3deg); 
        opacity: 0.95;
    }
    40% { 
        transform: scale(1.1) translateX(-1%) rotate(-0.2deg); 
        opacity: 1;
    }
    60% { 
        transform: scale(1.05) translateX(1%) rotate(0.1deg); 
        opacity: 0.9;
    }
    80% { 
        transform: scale(1.09) translateX(-2%) rotate(-0.1deg); 
        opacity: 0.85;
    }
    100% { 
        transform: scale(1) translateX(0) rotate(0deg); 
        opacity: 0.8;
    }
}

.service-item:hover .service-img img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.service-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-tag {
    background: rgba(26, 82, 118, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(26, 82, 118, 0.2);
}

.service-item:hover .service-tag {
    background: var(--primary);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .service-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

        /* Contact Section - ADDED */
     .contact-wrapper {
            width: 100%;
            max-width: 1500px;
            margin: 0 auto;
            padding: 40px 20px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1516387938699-a93567ec168e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .contact-container {
            width: 100%;
            display: flex;
            border-radius: 10px;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1000px;
        }
        
        .contact-info {
            flex: 1;
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            color: #333;
        }
        
        .contact-form {
            flex: 1;
            background: white;
            padding: 30px;
        }
        
        .contact-info h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #28a745;
        }
        
        .contact-info p {
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
            color: #555;
        }
        

.contact-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.contact-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-card .highlight {
  color: #28a745; /* highlight color like the screenshot */
  font-weight: bold;
}

.contact-card .highlight a {
  color: #28a745;
  text-decoration: none;
}

.contact-card .highlight a:hover {
  text-decoration: underline;
}

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
            color: #444;
        }
        
        .info-item i {
            width: 35px;
            height: 35px;
            background: #28a745;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            font-size: 16px;
            color: white;
        }
        
        
        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #333;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
            height: 42px;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            border-color: #28a745;
            box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
        }
        
        .submit-btn {
            padding: 12px 25px;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            height: 42px;
        }
        
        .submit-btn:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
        }
        
        .cookie-settings {
            margin-top: 15px;
            text-align: center;
            font-size: 13px;
            color: #666;
        }
        
        .cookie-settings a {
            color: #28a745;
            text-decoration: none;
        }
        
        @media (max-width: 900px) {
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info, .contact-form {
                width: 100%;
            }
        }
    
    

.debug-panel {
    font-size: 14px;
    color: #fff;   /* adjust to match your theme */
}

#debugToggle {
    display: none; /* hide the toggle button */
}
/* Stats Section */
.stats-section {
    padding: 1rem 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #adb5bd 50%, #343a40 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
    background: #f8f9fa;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.industry-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.industry-card h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.industry-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Partners Section */
.partners {
    padding: 4rem 0;
    background: white;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.partner-logo {
    padding: 2rem;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.partner-logo span {
    font-weight: 600;
    color: var(--dark);
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

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

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid,
    .industries-grid,
    .partners-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .industries-grid,
    .partners-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
footer {
     background: url('../img/smartcard.gif') center/cover no-repeat;
    color: white;
    padding: 0.8rem 0;
    text-align: center;
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}

.footer-column {
    width: 100%;
}

.footer-column p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 400;
    color: rgb #000000;
    font-style: italic; /* Italics */
}

.copyright {
    width: 100%;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1.1rem;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
	color: rgb(#000000;
    
}

/* Ensure straight line alignment */
.footer-column,
.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* About Section Styles */
.about-section {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Responsive adjustments for About section */
@media (max-width: 768px) {
    .about-section {
        padding: 2.5rem 0;
    }
    
    .about-content p {
        font-size: 1rem;
        text-align: left;
    }
}




