/* ============================================
   PREMIUM HERO SECTION CSS - ScrapRefit
   Glassmorphism + Advanced Animations + Fully Responsive
   ============================================ */

/* ===== INQUIRY FORM CARD - PREMIUM GLASS CARD (REDUCED SIZE) ===== */
.inquiry-form-card {
    margin-right: 60px;
    margin-top: -20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 24px;
    border-radius: 20px;
    max-width: 360px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInRight 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
    position: relative;
    overflow: hidden;
}

.inquiry-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, black);
    animation: shimmerLine 3s infinite;
}

@keyframes shimmerLine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hover subtle lift */
.inquiry-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Form Heading - REDUCED */
.inquiry-form-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0c3c60;
    text-align: center;
    position: relative;
    letter-spacing: -0.3px;
}

.inquiry-form-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 2.5px;
    background: linear-gradient(90deg, black);
    border-radius: 3px;
}

/* ===== FORM GROUP - REDUCED SPACING ===== */
.form-group {
    margin-bottom: 12px;
}

/* ===== INPUTS - SMALLER ===== */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    background: #fefefe;
    font-family: inherit;
}

/* textarea height - REDUCED */
.form-group textarea {
    min-height: 90px;
    resize: vertical;
}

/* focus effect */
.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.12);
}

/* placeholder styling */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-weight: 400;
    font-size: 13px;
}

/* Input with icon styling */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffd700;
    font-size: 14px;
}

.input-with-icon input {
    padding-left: 38px;
}

/* ===== SUBMIT BUTTON - SMALLER ===== */
.submit-inquiry-btn {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0c3c60, #015a78);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: 5px;
    letter-spacing: 0.5px;
}

.submit-inquiry-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-inquiry-btn:hover::before {
    width: 250px;
    height: 250px;
}

/* button hover */
.submit-inquiry-btn:hover {
    background: linear-gradient(135deg, #015a78, #0c3c60);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(12, 60, 96, 0.3);
}

/* button active */
.submit-inquiry-btn:active {
    transform: scale(0.97);
}

/* Hero section background + premium overlay */
.hero-sec {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    overflow: hidden;
}

/* Premium animated gradient overlay */
.hero-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

/* Animated background pattern overlay */
.hero-sec::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path fill="rgba(255,215,0,0.03)" d="M0 0h200v200H0z"/><path fill="rgba(255,215,0,0.05)" d="M100 0L0 100l100 100 100-100z"/></svg>');
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
    animation: slowDrift 60s linear infinite;
}

@keyframes slowDrift {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.max-width {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Hero Flex Container */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding: 60px 0;
}

/* Left content styling - Premium */
.hero-sec-content {
    margin-left: 42px;
    margin-top: -30px;
    flex: 1.2;
    max-width: 620px;
    color: #fff;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

.hero-sec-content h1 { 
    font-size: 72px;
    font-weight: 800;
    line-height: 1.15;
    width: 100%;
    margin-bottom: 28px;

    background: linear-gradient(135deg, 
        #FFFFFF 0%, 
        #cefad0 40%,   /* light green */
        #E0F2E0 70%, 
        #FFFFFF 100%
    );

    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    animation: gradientFlow 8s ease infinite;
    text-shadow: none;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-sec-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Button Group - Premium */
.hero-sec-btn-group {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-sec-btn {
    padding: 16px 36px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-sec-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.hero-sec-btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-sec-btn i {
    transition: transform 0.3s ease;
}

.hero-sec-btn:hover i {
    transform: translateX(5px);
}

/* Blue Button */
.hero-sec-btn-blue {
    background: linear-gradient(105deg, #1e73be 0%, #0f5a9e 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-sec-btn-blue:hover {
    transform: translateY(-4px);
    background: linear-gradient(105deg, #2a86d1 0%, #1a67a8 100%);
    box-shadow: 0 15px 30px rgba(30, 115, 190, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Green Button */
.hero-sec-btn-green {
    background: linear-gradient(105deg, #2ecc71 0%, #25a55a 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-sec-btn-green:hover {
    transform: translateY(-4px);
    background: linear-gradient(105deg, #3be07e 0%, #2ab864 100%);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== FEATURE SECTION - PREMIUM ===== */
.feature-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0a2b1e;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #0a2b1e, #1a5c40);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-header p {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 20px 0;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 170, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 170, 0, 0.2));
}

.feature-icon i {
    font-size: 36px;
    color: #ffd700;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a2b1e;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===== FEATURES SEC (BLUE BAR) - FULLY RESPONSIVE ===== */
.features-sec {
    background: linear-gradient(135deg, #0a66c2 0%, #0a5bb0 100%);
    color: #fff;
    padding: 20px 5%;
    position: relative;
    overflow: hidden;
}

.features-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmerBar 4s infinite;
}

@keyframes shimmerBar {
    0% { left: -100%; }
    100% { left: 100%; }
}

.features-sec-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.features-sec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}

.features-sec-item:hover {
    transform: translateY(-3px);
}

/* Divider line */
.features-sec-item:not(:last-child) {
    position: relative;
}

.features-sec-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
}

.features-sec-icon {
    font-size: 40px;
    margin-bottom: 0;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}

.features-sec-item:hover .features-sec-icon {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.features-sec-text {
    flex: 1;
}

.features-sec h3 {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.features-sec p {
    text-align: left;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.4;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Stagger animations for feature cards */
.feature-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.feature-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.feature-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.feature-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
.feature-card:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
.feature-card:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-sec-content h1 { font-size: 58px; }
    .hero-flex { gap: 50px; }
    .hero-sec-content { margin-left: 20px; }
}

@media (max-width: 1100px) {
    .hero-sec-content h1 { font-size: 52px; }
    .hero-flex { gap: 45px; }
    .inquiry-form-card { 
        max-width: 380px; 
        margin-right: 20px;
    }
    .section-header h2 { font-size: 36px; }
}

@media (max-width: 992px) {
    .hero-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .hero-sec-content {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-top: 0;
    }
    
    .hero-sec-content p { 
        max-width: 85%; 
        margin-left: auto; 
        margin-right: auto; 
    }
    
    .hero-sec-btn-group { 
        justify-content: center; 
    }
    
    .inquiry-form-card {
        max-width: 500px;
        width: 100%;
        margin: 20px auto 30px;
    }
    
    .hero-sec-content h1 { 
        font-size: 48px; 
        width: auto; 
        text-align: center; 
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Features sec responsive */
    .features-sec-container {
        justify-content: center;
    }
    
    .features-sec-item {
        min-width: 250px;
    }
    
    .features-sec-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-sec { 
        min-height: auto; 
        padding: 40px 0 60px 0;
        height: auto;
        background-attachment: scroll;
    }
    
    .max-width {
        padding: 0 24px;
    }
    
    .hero-sec-content h1 { 
        font-size: 38px; 
    }
    
    .hero-sec-content p { 
        font-size: 16px;
        max-width: 95%;
    }
    
    .hero-sec-btn { 
        padding: 12px 28px; 
        font-size: 14px; 
    }
    
    .inquiry-form-card { 
        padding: 24px 20px;
        max-width: 100%;
        margin-right: 0;
        margin-top: 30px;
    }
    
    .inquiry-form-card h3 { 
        font-size: 22px; 
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .feature-section {
        padding: 50px 0;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
    
    /* Features sec mobile */
    .features-sec {
        padding: 30px 5%;
    }
    
    .features-sec-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .features-sec-item {
        width: 100%;
        justify-content: flex-start;
        gap: 20px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .features-sec-item:last-child {
        border-bottom: none;
    }
    
    .features-sec-icon {
        font-size: 32px;
        min-width: 45px;
    }
    
    .features-sec h3 {
        font-size: 1rem;
    }
    
    .features-sec p {
        font-size: 0.8rem;
    }
}

@media (max-width: 580px) {
    .hero-sec-btn-group {
        gap: 15px;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-sec-btn {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .max-width { 
        padding: 0 20px; 
    }
    
    .hero-sec-content h1 { 
        font-size: 32px; 
    }
    
    .hero-sec-content p {
        font-size: 14px;
    }
    
    .hero-sec-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .inquiry-form-card h3 { 
        font-size: 20px; 
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .submit-inquiry-btn {
        padding: 11px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 26px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* Features sec small mobile */
    .features-sec-item {
        gap: 15px;
    }
    
    .features-sec-icon {
        font-size: 28px;
        min-width: 40px;
    }
    
    .features-sec h3 {
        font-size: 0.9rem;
    }
    
    .features-sec p {
        font-size: 0.7rem;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ======= solution section ======= */

.solutions-sec {
    padding: 60px 20px;
    background: #fff;
}

.solutions-sec-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* Left Image */
.solutions-sec-left {
    flex: 1;
    margin-top: -34px;
    min-width: 320px;
    text-align: center;
}

.solutions-sec-left img {
    max-width: 100%;
    height: auto;
}

/* Right Content */
.solutions-sec-right {
    flex: 1;
    margin-top: -65PX;
    min-width: 320px;
}

.solutions-sec-right h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.solutions-sec-right p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.solutions-sec-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0066ff;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    margin-bottom: 25px;
}

.solutions-sec-btn:hover {
    background: #004ecc;
}

/* Bottom small images */
.solutions-sec-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.solutions-sec-images img {
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .solutions-sec-container {
        flex-direction: column;
        text-align: center;
    }

    .solutions-sec-right {
        text-align: center;
    }

    .solutions-sec-images {
        justify-content: center;
    }
}

/* ======= service Section ======= */

/* Services Section with Black Background */
.services-sec {
    background-color: #36454F;
    padding: 20px 0;
    width: 100%;
}

.services-sec-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-sec-heading {
    text-align: center;
    margin-bottom: 50px;
}

.services-sec-heading h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin: 0;
    letter-spacing: 1px;
}

.services-sec-heading h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2d6a4f, #ffd700);
    border-radius: 2px;
}

/* Tabs Wrapper */
.services-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:26px;
    margin-bottom:45px;
    flex-wrap:wrap;
}

/* Tab Button */
.tab-btn{
    width:180px;
    height:50px;
    border:none;
    border-radius:8px;
    background:#d3d3d3;
    color:#111;
    
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    font-size:18px;
    font-weight:700;
    cursor:pointer;

    transition:all 0.3s ease;
}

/* Icons */
.tab-btn i{
    font-size:24px;
}

/* Active Tab */
.tab-btn.active{
    background:#1f8f1d;
    color:black;
}

/* Hover */
.tab-btn:hover{
    transform:translateY(-2px);
}

/* Mobile */
@media(max-width:768px){

    .services-tabs{
        gap:15px;
    }

    .tab-btn{
        width:100%;
        max-width:320px;
        height:72px;
        font-size:17px;
    }

    .tab-btn i{
        font-size:20px;
    }
}


/* Service Cards */
.waste-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.waste-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.waste-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.waste-card:hover img {
    transform: scale(1.05);
}

.waste-content {
    padding: 25px;
}

.waste-content h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.waste-card:hover .waste-content h3 {
    color: #ffd700;
}

.waste-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Button Styling */
.services-sec-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

.services-sec-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000000;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.services-sec-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, #ffed4e, #ffd700);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-sec {
        padding: 50px 0;
    }
    
    .services-sec-heading h2 {
        font-size: 28px;
    }
    
    .waste-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .tab-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .waste-grid {
        grid-template-columns: 1fr;
    }
}

/* why-choose-us  section */

.why-choose {
    background: #fdfbf6;
    /* light background */
    padding: 20px 5%;
}

.why-choose-container {
  
    display: flex;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

/* Image */
.why-choose-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Content */

.why-choose-content{
  max-width: 650px;
}
.why-choose-content .highlight {
    color: #2FA61C;
    ;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-choose-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.why-choose-content .desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Features */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.features-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
}

.features-list li span {
    color: #2FA61C;

    font-weight: 700;
}

/* Button */
.why-btn {
    display: inline-block;
    background: #0056d2;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.why-btn:hover {
    background: #003f99;
}

/* Responsive */
@media (max-width: 992px) {
    .why-choose-container {
        flex-direction: column;
        text-align: center;
    }

    .why-choose-image img {
        margin: 0 auto;
    }

    .why-choose-content {
        text-align: center;
    }

    .features-list li {
        text-align: left;
        display: inline-block;
    }
}

/* ======= process  section ======= */

.process-section {
    padding: 20px 20px;
    background: #fff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.process-header p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card */
.process-card {
    background: #f9fdfb;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}


.process-card .process-icon-tag{
  display: flex;
  gap: 20px;
  align-items: center;
}
/* Icon */
.process-card .icon {

  width: 70px;
  height: 70px;
    font-size: 2rem;
    color: #2e7d32;
    /* green */
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E4F6E2;
    border-radius: 50%;
}

/* Title */
.process-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

/* Text */
.process-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* ======= we are number section ======= */


  .numbers-section {
    background: #002015;
    padding: 20px 5%;
    color: #fff;
    max-height: 620px;
    height: 100%;
    margin-bottom: 100px;
  }

.numbers-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}

.numbers-left .subtitle {
    color: #6fbf73;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.numbers-left h2 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 25px;
}

.numbers-left .numbers-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.numbers-right {
  height: 100%;
    justify-self: end;
    display: grid;
    grid-template-columns: 179px 179px;
    grid-template-rows: 238px 238px;
    gap: 25px;
}

.stat-card {
    width: 179px;
    border: 1px solid #D7FFB1;
    padding: 25px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(22, 163, 74, 0.08);
    transform: translateY(-6px);
}

.stat-card .icon {
    font-size: 2rem;
    color: #16a34a;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.95rem;
    color: #e5e5e5;
}

/* === Counter Animation (Pure CSS) === */
@property --num {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

.counter {
    counter-reset: number var(--num);
}

.counter::after {
    content: counter(number);
}

.counter[data-target="200"] {
    animation: count200 3s forwards;
}

.counter[data-target="100"] {
    animation: count100 3s forwards;
}

.counter[data-target="14"] {
    animation: count14 2s forwards;
}

.counter[data-target="10"] {
    animation: count10 2s forwards;
}

@keyframes count200 {
    from {
        --num: 0;
    }

    to {
        --num: 200;
    }
}

@keyframes count100 {
    from {
        --num: 0;
    }

    to {
        --num: 100;
    }
}

@keyframes count14 {
    from {
        --num: 0;
    }

    to {
        --num: 14;
    }
}

@keyframes count10 {
    from {
        --num: 0;
    }

    to {
        --num: 10;
    }
}

@media (max-width: 992px) {

  .numbers-section{
    max-height: 100%;
    margin-bottom: 0;
  }

  .numbers-container .numbers-image{
    position:static
  }
    .numbers-container {
        grid-template-columns: 1fr;
        text-align: center;
        max-height: 100%;
    }

    .numbers-right {
        grid-template-columns: 1fr 1fr;
        margin:auto;

    }
}

@media (max-width: 600px) {
    .numbers-section{
        max-width: 100%;;
    }
    /* .numbers-right {
        grid-template-columns: 1fr;
    } */

    .numbers-left{
        justify-self: center;
    }
    .stat-card{
      width:100%;
    }
}



/* ==================================
==================================
          End Home pages
==================================
================================== */



/* ==================================
==================================
          About Us Page
==================================
================================== */

/* ===== About Banner ===== */
.zk-about-banner {
  position: relative;
  width: 100%;
  min-height:60px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zk-overlay {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
   background: rgba(0,0,0,0.7); /*darker overlay for readability */
  z-index: 1;
}

.zk-about-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.zk-about-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
  .zk-about-banner {
    min-height: 300px;
  }
  .zk-about-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .zk-about-banner {
    min-height: 220px;
  }
  .zk-about-content h2 {
    font-size: 1.2rem;
  }
}

/* ======= About Us Section ======= */
.about-section{
    padding:15px 5%;
}
   .about-container {
   
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    /* Left Content */
    .about-content {
      max-width: 500px;
    }

    .about-content h4 {
      color: #3aa63f;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .about-content h2 {
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #111;
    }

    .about-content p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #444;
      margin-bottom: 30px;
    }

    .about-list {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;
    }

    .about-list li {
      margin-bottom: 20px;
      font-size: 16px;
      font-weight: 500;
      color: #111;
    }

    .about-list li i {
      color: #00b050;
      margin-right: 8px;
    }

     .about-list li strong {
      color: #00b050;
    }

    .btn-primary {
      display: inline-block;
      background: #004aad;
      color: #fff;
      padding: 12px 25px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: 0.3s;
    }

    .btn-primary:hover {
      background: #003080;
    }

    /* Right Content */
    .about-image {
      max-width: 500px;
      position: relative;
    }

    .about-image img {
      
      height: auto;
      border-radius: 12px;
    }

    .experience-card {
      position: absolute;
      bottom: 20px;
      left: -30px;
      background: #fff;
      border: 2px solid #3aa63f;
      padding: 20px 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .experience-card h3 {
      font-size: 28px;
      font-weight: 700;
      color: #004aad;
      margin: 0;
    }

    .experience-card span {
      font-size: 14px;
      color: #666;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-image img{
        max-width: 400px;
      }
      
      .experience-card {
        position: absolute;
        margin-top: 20px;
        display: inline-block;
      }
      .about-content{
        text-align: left;
        max-width: 100%;
      }
      .about-content h2 {
        font-size: 26px;
      }
    }

    @media(max-width:756px) {
        .about-container {
        flex-direction: column-reverse;
        text-align: center;
      }
    }

      @media(max-width:410px) {
        

      .about-image img{
        max-width: 300px;
      }
    }


       /* ======= greeen  section ======= */





    .zk-green-sec {
    background: #001e17;
    color: #fff;
    padding: 50px 5%;
    position: relative;
    min-height: 380px;
    z-index: 999;

  }


  .zk-green-container {

    display: grid;
    gap: 2rem;
  }

  @media (min-width: 900px) {
    .zk-green-container {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }

  .zk-green-eyebrow {
    display: block;
    font-size: 0.9rem;
    color: #b7d989;
    margin-bottom: 0.6rem;
  }

  .zk-green-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
    font-weight: 700;
  }

  .zk-green-desc p {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e5da;
  }

  /* ===== Cards ===== */
  .zk-green-cards {
    max-width: 1200px;
    margin: 2.5rem auto 0;
    display: grid;
    gap: 1.5rem;
    position: static;
  }

  @media (min-width: 768px) {
    .zk-green-cards {
      grid-template-columns: repeat(3, 1fr);
      position: absolute;
    }
  }

  .zk-green-card {
    background: #2FA61C;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    color: #fff;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .zk-green-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .zk-green-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
  }

  .zk-green-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #f0fdf4;
  }

  /* Optional icon placeholder */
  .zk-green-icon {
    font-size: 2rem;
  }



    /* ======= Driving sustainibility section ======= */


    .zk-recycle-sec {
  background: #faf7f0;
  padding: 150px 5% 60px 5%;
  font-family: "Arial", sans-serif;
  color: #222;
}

.zk-recycle-container {
  position: relative;
}

.zk-recycle-img-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.zk-recycle-content {
  max-width: 700px;
}

.zk-recycle-img-wrap {
  border-radius: 8px;
  overflow: hidden;
}
.zk-recycle-img {
  border-radius: 8px;
  display: block;
  width: 100%;
}

/* Right Column */
.zk-recycle-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.zk-recycle-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #555;
}

.zk-recycle-btn {
  display: inline-block;
  background: #1662c4;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.zk-recycle-btn:hover {
  background: #0f4a91;
}

/* Bottom Cards */
.zk-recycle-bottom {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 40px;
  position: absolute;
  bottom: 60px;
  left: 80px;
}

.zk-recycle-bottom-card {
  flex: 1 1 calc(50% - 1rem);
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.zk-recycle-bottom-card:hover {
  transform: translateY(-5px);
}

.zk-recycle-bottom-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.zk-recycle-bottom-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Responsive */
@media (max-width: 1024px) {
  .zk-recycle-content {
    max-width: 500px;
  }
  .zk-recycle-img {
    max-width: 350px;
  }

  .zk-recycle-bottom {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 40px;
  position: static;

}


}

@media (max-width: 927px) {
  .zk-recycle-img-content {
    flex-direction: column;
    align-items: center;
  }
  .zk-recycle-content {
    max-width: 100%;
  }
  .zk-recycle-bottom {
    flex-direction: column;
    gap: 1rem;
  }
}




/* ===== Mission Vision Section ===== */
.zk-mission-vision {
  background: #e9f8e9; /* light green shade */
  padding: 100px 5%;
  font-family: "Arial", sans-serif;
  color: #222;
  margin-top:-40px;
}

.zk-mv-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.zk-mv-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.zk-mv-text h3 {
  color: #1c8d34;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.zk-mv-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.zk-mv-img img {
  border-radius: 12px;
  width: 100%;
  display: block;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .zk-mv-container {
    grid-template-columns: 1fr;
  }
}



/* ===== Certification section===== */




.certification-section {
    padding: 15px 5%;
    text-align: center;
    background: #fff;
    
  }

  .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }

  .certification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
  }





  .certificate-card {
    position: relative;
    background: #f4f4f4;
    border-radius: 12px;
    overflow: hidden;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .certificate-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
  }

  /* Overlay */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* Hover effect */
  .certificate-card:hover img {
    transform: scale(1.05);
  }

  .certificate-card:hover .overlay {
    opacity: 1;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .certification-grid {
      grid-template-columns: 1fr;
    }
  }




    /* Only PDF Modal CSS */
  .pdf-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 10px;
    animation: fadeIn 0.25s ease-in-out;
  }

  .pdf-modal-content {
    position: relative;
    width: 90%;
    height: 95%;
    max-width: 1200px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transform: scale(0.98);
    animation: scaleUp 0.25s ease-in-out forwards;
    display: flex;
    flex-direction: column;
  }

  .pdf-viewer {
    flex: 1;
    overflow-y: auto;
    /* vertical scroll only */
    overflow-x: hidden;
    /* prevent horizontal scroll */
    padding: 16px;
    background: #f7f7f7;
    font-size: 50px;
    font-weight: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;

  }

  .pdf-viewer canvas {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 16px;
    background: #fff;
    border-radius: 6px;
  }

  .pdf-loading,
  .pdf-error {

    margin-top: 40%;
    padding: 24px;
    text-align: center;
    color: #444;
  }

  .pdf-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
    color: #333;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 50px;
    z-index: 10;
    width: 50px;
    height: 50px;
  }

  .pdf-close-btn:hover {
    background-color: #e74c3c;
    color:white;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes scaleUp {
    from {
      transform: scale(0.98);
    }

    to {
      transform: scale(1);
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .pdf-modal-content {
      width: 100%;
      height: 100%;
      border-radius: 0;
    }

    .pdf-viewer {
      padding: 10px;
    }

    .pdf-close-btn {
      
      color: #000;
    }
  }




/* ==================================
==================================
          Services pages
==================================
================================== */


/* ======= service common page ======= */
.waste-management {
  padding: 80px 5%;
  background: #fff;
  text-align: center;
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

.waste-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 25px;
}


.waste-card {
  background: #1365B6; /* blue background */
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}

.waste-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.waste-content {
  padding: 20px;
}

.waste-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.waste-content p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.waste-content a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s;
}

.waste-content a:hover {
  color: #ffd700;
}

.waste-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


@media(max-width:756px) {
    .waste-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; },
}



/* ======= transform section ======= */

  .partner-section {
  text-align: center;
  padding: 60px 20px;
}

.partner-header {
  margin-bottom: 40px;
}

.partner-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.partner-title {
  font-size: 32px;
  font-weight: 700;
  color: #2e7d32; /* green */
}

/* Exact Grid Layout */
.partner-grid {
  /* display: grid; */
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  grid-auto-rows: 200px; /* control row height */
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.partner-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Place items exactly like screenshot */
.partner-grid img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.partner-grid img:nth-child(2) {
  grid-column: span 2;
  grid-row: span 1;
}
.partner-grid img:nth-child(3) {
  grid-column: span 1;
  grid-row: span 1;
}
.partner-grid img:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}
.partner-grid img:nth-child(5) {
  grid-column: span 1;
  grid-row: span 2;
}
.partner-grid img:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}
.partner-grid img:nth-child(7) {
  grid-column: span 1;
  grid-row: span 1;
}
.partner-grid img:nth-child(8) {
  grid-column: span 1;
  grid-row: span 1;
}
.partner-grid img:nth-child(9) {
  grid-column: span 2;
  grid-row: span 1;
}

/* Button */
.partner-btn {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #0b5ed7;
}

/* Responsive */
@media (max-width: 1024px) {
  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 768px) {
  .partner-title {
    font-size: 26px;
  }
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
}

@media (max-width: 480px) {
  .partner-title {
    font-size: 22px;
  }
  .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
  }
  .partner-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}



/* ==================================
==================================
          service single  page
==================================
================================== */

  .zk-waste {
    background: #fff;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: "Arial", sans-serif;
  }

  .waste-img {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
  }

  .waste-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }

  .zk-waste-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0b1a33;
    margin-bottom: 20px;
  }

   .zk-waste-content p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
  }

  .zk-waste-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #0b1a33;
  }

   .zk-waste-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
  }

  .zk-waste-content ul li {
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
  }

   .zk-waste-content ul li strong {
    color: #0a9a42;
  }

  /* Responsive */
  @media (max-width: 768px) {
     .zk-waste-content h2 {
      font-size: 22px;
    }
     .zk-waste-content h3 {
      font-size: 18px;
    }
     .zk-waste-content p,
     .zk-waste-content ul li {
      font-size: 14px;
    }
  }




/* ======= service form section ======= */
  .form-section{
  padding:60px 5%;
}
  
    .form-container{
      text-align: center;
     
    }

    .form-section h2 {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 15px;
      color: #0f2331;
    }

    .form-section p {
      font-size: 15px;
      color: #555;
      margin-bottom: 30px;
    }

    .form-section h3 {
      font-size: 28px;
      color: #1365B6;
      margin-bottom: 25px;
    }

    .form-section form {
      display: grid;
      gap: 15px;
     
      text-align: left;
    }

    .form-row {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .form-group {
      flex: 1;
      position: relative;
      min-width: 200px;
    }

    .form-group img{
      position: absolute;
      left:20px;
      top:15px;
    }

    input, select, textarea {
      width: 100%;
      padding: 12px 60px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
      outline: none;
      transition: border 0.3s;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #1365B6;
    }

    textarea {
      min-height: 120px;
      resize: vertical;
    }

    .error {
      color: red;
      font-size: 13px;
      margin-top: 4px;
      display: none;
    }

    input.error-input, select.error-input, textarea.error-input {
      border-color: red;
    }

    button {
      background: #28a745;
      color: #fff;
      border: none;
      padding: 14px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
      width: 100%;
    }

    button:hover {
      background: #218838;
    }

     select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: #333;
    background: #fff url("data:image/svg+xml;utf8,<svg fill='%23333' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
    background-size: 16px;
    appearance: none;  /* removes default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
  }

  select:focus {
    border-color: #1365B6; /* blue border on focus */
    outline: none;
  }

  option {
    padding: 10px;
    font-size: 15px;
  }

    @media (max-width: 600px) {
      .form-row {
        flex-direction: column;
      }
    }












/* ==================================
==================================
          EPR page
==================================
================================== */



/* ======= EPR second section ======= */


.epr-section {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
        max-width: 1200px;
        margin: 2rem auto;
        padding: 1rem;
        flex-wrap: wrap;
    }

    .epr-section img {
        flex: 1 1 400px;
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .epr-content {
        flex: 1 1 500px;
    }

    .epr-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        font-weight: bold;
        color: #111;
    }

    .epr-content p {
        margin-bottom: 1rem;
        color: #444;
    }

    .epr-content h3 {
        font-size: 1rem;
        color: #2FA61C;
        margin-top: 1rem;
        margin-bottom: 0.3rem;
    }

    .epr-content p.sub {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        color: #333;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .epr-section {
            flex-direction: column;
            text-align: left;
        }

        .epr-content h2 {
            font-size: 1.4rem;
        }
    }


    /* ======= EPR third section ======= */

    .epr-sections {
        padding: 60px 5%;
        background-color: #FFFCF2B2;
    }

    .epr-categories {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 2rem;

        flex-wrap: wrap;

    }

    .epr-image {
        flex: 1 1 400px;
        display: flex;
        justify-content: center;
    }

    .epr-image img {
        max-width: 100%;
        height: auto;
    }

    .epr-text {
        flex: 1 1 500px;
    }

    .epr-text h2 {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #111;
    }

    .epr-text p {
        margin-bottom: 1rem;
        color: #444;
        line-height: 1.6;
    }

    .epr-text h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #2FA61C;
        margin-top: 1rem;
        margin-bottom: 0.3rem;
    }

    .epr-text p.sub {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        color: #333;
    }

    .epr-text .btn {
        display: inline-block;
        margin-top: 1rem;
        background: #0c3c8a;
        color: #fff;
        padding: 0.6rem 1.4rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s;
    }

    .epr-text .btn:hover {
        background: #072a63;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .epr-categories {
            flex-direction: column;
            text-align: left;
        }

        .epr-text h2 {
            font-size: 1.4rem;
        }
    }


     /* ======= EPR fourth section ======= */

     .epr-benefits {
        padding: 60px 5%;
        background: #fff;
    }

    .benefits-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }

    .benefits-text {
        flex: 1 1 500px;
    }

    .benefits-text h2 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #111;
    }

    .benefits-text h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #2FA61C;
        margin-top: 1rem;
        margin-bottom: 0.3rem;
    }

    .benefits-text p.sub {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        color: #333;
        line-height: 1.6;
    }

    .benefits-text .btn {
        display: inline-block;
        margin-top: 1.5rem;
        background: #0c3c8a;
        color: #fff;
        padding: 0.6rem 1.4rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s;
    }

    .benefits-text .btn:hover {
        background: #072a63;
    }

    .benefits-image {
        flex: 1 1 400px;
        display: flex;
        justify-content: center;
    }

    .benefits-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .benefits-wrapper {
            flex-direction: column-reverse;
            text-align: left;
        }

        .benefits-text h2 {
            font-size: 1.4rem;
        }

        .benefits-text .btn {
            text-align: center;
            display: block;
            width: fit-content;
        }
    }



    /* ==================================
==================================
          sustaibility  page
==================================
================================== */


 /* ======= sustainability second section ======= */
 .sustainability-section {
        padding: 60px 20px;
        background: #fff;
    }

    .sustainability-container {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
        flex-wrap: wrap;
    }

    /* Left Image */
    .sustainability-image {
        flex: 1 1 45%;
    }

    .sustainability-image img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        display: block;
    }

    /* Right Content */
    .sustainability-content {
        flex: 1 1 50%;
        text-align: left;
    }

    .sustainability-content h2 {
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 16px;
    }

    .sustainability-content p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .sustainability-content h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .sustainability-content ul {
        list-style: disc;
        padding-left: 20px;
        color: #333;
        font-size: 15px;
        line-height: 1.6;
    }

    .sustainability-content ul li {
        margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .sustainability-container {
            gap: 30px;
        }

        .sustainability-content h2 {
            font-size: 24px;
        }
    }

    @media (max-width: 768px) {
        .sustainability-container {
            flex-direction: column;
            text-align: center;
        }

        .sustainability-content {
            text-align: center;
        }

        .sustainability-content ul {
            text-align: left;
            display: inline-block;
            margin-top: 10px;
        }
    }

    @media (max-width: 480px) {
        .sustainability-content h2 {
            font-size: 20px;
        }

        .sustainability-content p,
        .sustainability-content ul {
            font-size: 14px;
        }
    }

 /* ======= sustainability third section ======= */

  .ewaste-section {
        padding: 80px 5%;
        background: #E4F6E2;
        /* light green bg */
    }

    .ewaste-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    /* Left */
    .ewaste-left {
        width: 250px;
    }

    .ewaste-left .feature-tag {
        font-size: 14px;
        letter-spacing: 2px;
        color: #333;
        font-weight: 500;
    }

    .ewaste-left h2 {
        font-size: 40px;
        font-weight: 900;
        margin: 16px 0 24px;
        color: #1a1a1a;
    }

    .btn-primary {
        display: inline-block;
        padding: 12px 22px;
        background: #1365B6;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
        transition: 0.3s;
    }

    .btn-primary:hover {
        background: #084298;
    }

    /* Right Cards */
    .ewaste-right {

        display: grid;
        grid-template-columns: repeat(3, 250px);
        gap: 60px;
    }

    .ewaste-card {

        border-radius: 12px;

        text-align: left;

        transition: transform 0.3s ease;
    }

    .ewaste-card:hover {
        transform: translateY(-5px);
    }

    .ewaste-card img {
        border-radius: 25px;
        margin-bottom: 16px;
    }

    .ewaste-card h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #1a1a1a;
    }

    .ewaste-card p {
        font-size: 15px;
        line-height: 1.6;
        color: #555;
    }

    /* Responsive */


    @media (max-width: 1239px) {

        .ewaste-left {
            min-width: 50%;
            margin-bottom: 50px;

        }

        .ewaste-container {

            justify-content: center;
        }

    }

    @media (max-width: 992px) {

        .ewaste-right {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .ewaste-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .ewaste-right {
            grid-template-columns: 1fr;
            width: 100%;
        }

        .ewaste-card {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .ewaste-left h2 {
            font-size: 22px;
        }
    }

 /* ======= sustainability fourth section ======= */

 .recycling-section {
        padding: 80px 5%;
        background: #fff;
    }

    .recycling-container {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
        flex-wrap: wrap;
    }

    /* Left Content */
    .recycling-left {
        flex: 1 1 55%;
        min-width: 300px;
    }

    .recycling-left h2 {
        font-size: 28px;
        font-weight: 700;
        color: #0b1a33;
        margin-bottom: 16px;
    }

    .recycling-left p {
        font-size: 15px;
        line-height: 1.7;
        color: #444;
        margin-bottom: 24px;
    }

    .recycling-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .recycling-list li {
        margin-bottom: 16px;
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }

    .highlight {
        color: #0a9a42;
        /* green */
        font-weight: 600;
    }

    /* Right Image */
    .recycling-right {
        display: flex;
        gap:60px;
        
        text-align: left;
    }

    .recycling-right img {
        width: 100%;
        border-radius: 12px;
        max-width: 500px;
        object-fit: cover;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .recycling-container {
            flex-direction: column;
            text-align: left;
        }

        .recycling-right {
            margin-top: 20px;
            flex-direction: column-reverse;
            max-width: 100%;
        }

        .recycling-right img{
            align-self: center;
        }
    }

    @media (max-width: 600px) {
        .recycling-left h2 {
            font-size: 22px;
        }

        .recycling-left p,
        .recycling-list li {
            font-size: 14px;
        }
    }

 /* ======= sustainability fifth section ======= */

 .recycle-steps {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
  }

  .recycle-steps h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0b1a33;
  }

  .recycle-steps h2 span {
    font-weight: 600;
  }

  .steps-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .step-card {
    padding: 30px 20px;
    border-radius: 8px;
    color: #fff;
    text-align: left;
    min-height: 220px;
  }

  .step-icon {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .step-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #f2f2f2;
  }

  /* Color variations */
  .green-card {
    background: #0a9a42;
  }

  .blue-card {
    background: #005baa;
  }

  .light-card {
    background: #f1f1f1;
    color: #333;
  }

  .light-card h3,
  .light-card p {
    color: #333;
  }

  .highlight {
    color: #0a9a42;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .steps-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .steps-grid {
      grid-template-columns: 1fr;
    }

    .recycle-steps h2 {
      font-size: 22px;
    }

    .step-card {
      text-align: center;
    }
  }




    /* ==================================
==================================
          contact  page
==================================
================================== */



  .contact-section {
    background: #fff;
    padding: 60px 20px;
    font-family: "Arial", sans-serif;
  }

  .icons-content {
    display: flex;
    gap: 20px;
    text-align: left;
  }

  .contact-icons {
    width: 42px;
    height: 42px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Form */

  .contact-form {
    background-color: #E4F6E2;
    padding: 40px;
  }

  .contact-form h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b1a33;
  }

  .contact-form p {
    margin-bottom: 25px;
    color: #555;
  }

  .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #0b1a33;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 10px 10px 50px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: #2fa61c;
  }

  .form-row {
    display: flex;
    gap: 15px;
  }

  .form-row .form-group {
    flex: 1;
  }

  .submit-btn {
    background: #2fa61c;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
  }

  .submit-btn:hover {
    background: #268d17;
  }

  /* Error styling */
  .error {
    display: none;
    font-size: 13px;
    color: red;
    margin-top: 5px;
  }

  .error-input {
    border: 1px solid red !important;
  }

  #formMessage {
    margin-top: 15px;
    font-size: 14px;
  }

  /* Right box */
  .contact-info {
    background: linear-gradient(90deg, #2FA61C -3.93%, rgba(49, 102, 251, 0.03) 118.52%),
      linear-gradient(90deg, #2FA61C -3.93%, rgba(47, 166, 28, 0.5) 118.52%);

    padding: 30px;
    border-radius: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .contact-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .contact-info h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: left;
  }

  .cont-info-icons {
    display: inline-block;
    width: 42px;
    height: 42px;
    border-radius: 5px;
    background-color: white;
  }

  .social-links {
    display: flex;
    gap: 20px;
  }

  .social-links a {
    display: inline-block;

    font-size: 20px;
    color: #2fa61c;
  }

  .social-links a:hover {
    color: #2fa61c;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .contact-container {
      grid-template-columns: 1fr;
    }

    .contact-info {
      text-align: center;
    }

    .social-links {
      justify-content: start;
    }
  }

  