/* ===================================== */
/* RESET */
/* ===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#1f2937;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

/* ===================================== */
/* CONTAINER */
/* ===================================== */

.container{
    width:100%;
    max-width:1800px;
    margin:auto;
    padding:0 20px;
}

/* ===================================== */
/* HEADER */
/* ===================================== */

.header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.06);
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:85px;
}

.logo img{
    width:220px;
}

.navbar ul{
    display:flex;
    gap:35px;
}

.navbar ul li a{
    color:#4b5563;
    font-weight:600;
    transition:.3s;
}

.navbar ul li a:hover{
    color:#059669;
}

.mobile-menu-btn{
    display:none;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    background:#fff;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.mobile-menu a{
    display:block;
    padding:15px 25px;
    color:#374151;
    border-bottom:1px solid #eee;
}

/* ===================================== */
/* HERO SECTION */
/* ===================================== */

.hero-slider{
    position:relative;
    width:100%;
    height:88vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(5,150,105,.85),
        rgba(16,185,129,.75)
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:2;
    text-align:center;
    color:#fff;
    width:90%;
    max-width:950px;
}

.hero-content h1{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content h1 span{
    display:block;
    color:#d1fae5;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ===================================== */
/* BUTTONS */
/* ===================================== */

.btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 40px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.btn-primary{
    background:#fff;
    color:#059669;
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#059669;
}

/* ===================================== */
/* SLIDER NAVIGATION */
/* ===================================== */

.slider-controls button{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.25);
    color:#fff;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.slider-controls button:hover{
    background:#fff;
    color:#059669;
}

#prevSlide{
    left:30px;
}

#nextSlide{
    right:30px;
}

.slider-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:10;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
}

.dot.active{
    background:#fff;
}

/* ===================================== */
/* STATS */
/* ===================================== */

.stats{
    background:#fff;
    padding:80px 0;
}

.stats .container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:52px;
    color:#059669;
    margin-bottom:10px;
}

.stat-box p{
    color:#6b7280;
    font-weight:500;
}

/* ===================================== */
/* SECTION TITLE */
/* ===================================== */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:48px;
    font-weight:800;
    position:relative;
    display:inline-block;
}

.section-title h2::after{
    content:'';
    position:absolute;
    width:90px;
    height:5px;
    border-radius:50px;
    background:#059669;
    left:50%;
    transform:translateX(-50%);
    bottom:-15px;
}

/* ===================================== */
/* ABOUT SECTION */
/* ===================================== */

.about{
    padding:120px 0;
    background:#f1f5f9;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
}

.about-content{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.about-content h3{
    font-size:32px;
    margin-bottom:25px;
    color:#059669;
}

.about-content p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:20px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:30px;
}

.features div{
    font-weight:600;
}

.features i{
    color:#10b981;
    margin-right:8px;
}

/* ===================================== */
/* ABOUT CARDS */
/* ===================================== */

.about-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.info-card{
    padding:30px;
    border-radius:18px;
    color:#fff;
}

.info-card i{
    font-size:45px;
    margin-bottom:20px;
}

.info-card h4{
    font-size:22px;
    margin-bottom:12px;
}

.green{
    background:#16A34A;
}

.blue{
    background:#2563EB;
}

.purple{
    background:#9333EA;
}

.orange{
    background:#CA8A04;
}

/* ===================================== */
/* PRODUCTS MAIN */
/* ===================================== */

.products{
    padding:120px 0;
    background:#fff;
}

.category-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:80px;
}

.category-buttons a{
    padding:14px 28px;
    border-radius:40px;
    color:#fff;
    font-weight:700;
}

.food-btn{
    background:#059669;
}

.construction-btn{
    background:#2563eb;
}

.industrial-btn{
    background:#7c3aed;
}

.networking-btn{
    background:#d97706;
}

.category-section{
    margin-bottom:100px;
}




/* ===================================== */
/* CATEGORY HEADERS */
/* ===================================== */

.category-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    padding:50px;
    border-radius:25px;
    margin-bottom:50px;
}

.food-header{
    background:linear-gradient(
    135deg,
    #f0fdf4,
    #dcfce7
    );
}

.construction-header{
    background:linear-gradient(
    135deg,
    #eff6ff,
    #dbeafe
    );
}

.industrial-header{
    background:linear-gradient(
    135deg,
    #faf5ff,
    #ede9fe
    );
}

.networking-header{
    background:linear-gradient(
    135deg,
    #fff7ed,
    #fed7aa
    );
}

.category-left h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
}

.category-left p{
    color:#6b7280;
    line-height:1.8;
    font-size:18px;
}

.category-right i{
    font-size:90px;
}

.food-header i{
    color:#059669;
}

.construction-header i{
    color:#2563eb;
}

.industrial-header i{
    color:#7c3aed;
}

.networking-header i{
    color:#ea580c;
}

/* ===================================== */
/* PRODUCTS GRID */
/* ===================================== */

.products-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.product-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
    transition:.4s ease;
    position:relative;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 20px 45px rgba(0,0,0,.12);
}

.product-image{
    position:relative;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.product-card:hover img{
    transform:scale(1.08);
}

.product-content{
    padding:25px;
}

.product-content h4{
    font-size:20px;
    margin-bottom:18px;
    font-weight:700;
}

.product-content ul li{
    margin-bottom:3px;
    color:#434040;
    position:relative;
    padding-left:20px;
}

.product-content ul li::before{
    content:'✓';
    position:absolute;
    left:0;
    color:#10b981;
    font-weight:bold;
}
.construction-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    width:100%;
}
/* ===================================== */
/* BADGES */
/* ===================================== */

.badge{
    position:absolute;
    top:15px;
    left:15px;
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:8px 14px;
    border-radius:30px;
}

.food-badge{
    background:#059669;
}

.construction-badge{
    background:#2563eb;
}

.industrial-badge{
    background:#7c3aed;
}

.network-badge{
    background:#ea580c;
}

/* ===================================== */
/* SUMMARY SECTION */
/* ===================================== */

.summary-section{
    margin-top:100px;
    padding:70px;
    border-radius:30px;
    background:
    linear-gradient(
    135deg,
    #f0fdf4,
    #eff6ff
    );
}

.summary-section h3{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    font-weight:800;
}

.summary-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:25px;
}

.summary-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    text-align:center;
    transition:.4s;
}

.summary-card:hover{
    transform:translateY(-8px);
}

.summary-card i{
    font-size:42px;
    color:#059669;
    margin-bottom:20px;
}

.summary-card h4{
    font-size:22px;
    margin-bottom:10px;
}

.summary-card p{
    color:#6b7280;
    line-height:1.7;
}

/* ===================================== */
/* CONTACT SECTION */
/* ===================================== */

.contact-section{
    padding:120px 0;
    background:#111827;
    color:#fff;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h3{
    font-size:36px;
    margin-bottom:40px;
}

.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.contact-item i{
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#059669;
    border-radius:50%;
    font-size:22px;
}

.contact-item h4{
    margin-bottom:8px;
}

.contact-item p{
    color:#d1d5db;
    line-height:1.8;
}

/* ===================================== */
/* CONTACT FORM */
/* ===================================== */

.contact-form-box{
    background:#fff;
    color:#111827;
    padding:45px;
    border-radius:25px;
}

.contact-form-box h3{
    font-size:30px;
    margin-bottom:30px;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    padding:16px;
    border:1px solid #d1d5db;
    border-radius:12px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color:#059669;
}

.submit-btn{
    width:100%;
    padding:18px;
    border:none;
    background:#059669;
    color:#fff;
    border-radius:12px;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#047857;
}

/* ===================================== */
/* FOOTER */
/* ===================================== */

.footer{
    background:#030712;
    color:#9ca3af;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    1.3fr 1fr 1fr;
    gap:50px;
    padding-bottom:60px;
}

.footer-logo img{
    width:220px;
    margin-bottom:25px;
}

.footer-col p{
    line-height:1.8;
}

.footer-col h4{
    color:#fff;
    margin-bottom:25px;
    font-size:22px;
}

.footer-col ul li{
    margin-bottom:15px;
}

.footer-col ul li a{
    color:#9ca3af;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#10b981;
}

.footer-col ul li i{
    color:#10b981;
    margin-right:10px;
}

.footer-social{
    margin-top:25px;
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111827;
    color:#fff;
    border-radius:50%;
    transition:.3s;
}

.footer-social a:hover{
    background:#059669;
}

.copyright{
    border-top:1px solid #1f2937;
    padding:30px 0;
    text-align:center;
}

.copyright p{
    margin-bottom:10px;
}



/* ===================================== */
/* SCROLL ANIMATION CLASSES */
/* ===================================== */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:
    opacity .8s ease,
    transform .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

.fade-left{
    opacity:0;
    transform:translateX(-50px);
    transition:
    opacity .8s ease,
    transform .8s ease;
}

.fade-left.show{
    opacity:1;
    transform:translateX(0);
}

.fade-right{
    opacity:0;
    transform:translateX(50px);
    transition:
    opacity .8s ease,
    transform .8s ease;
}

.fade-right.show{
    opacity:1;
    transform:translateX(0);
}

/* ===================================== */
/* PREMIUM HOVER EFFECTS */
/* ===================================== */

.info-card,
.summary-card,
.product-card,
.contact-form-box{
    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.info-card:hover,
.summary-card:hover,
.contact-form-box:hover{
    transform:translateY(-8px);
}

.logo img{
    transition:.4s;
}

.logo:hover img{
    transform:scale(1.04);
}

.category-buttons a{
    transition:.35s ease;
}

.category-buttons a:hover{
    transform:translateY(-4px);
    box-shadow:
    0 15px 30px rgba(0,0,0,.15);
}

/* ===================================== */
/* MOBILE MENU ACTIVE */
/* ===================================== */

.mobile-menu.active{
    display:block;
    animation:menuFade .35s ease;
}

@keyframes menuFade{

    from{
        opacity:0;
        transform:translateY(-15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===================================== */
/* HERO TEXT ANIMATION */
/* ===================================== */

.hero-content h1{
    animation:heroTitle 1s ease;
}

.hero-content p{
    animation:heroText 1.4s ease;
}

.hero-buttons{
    animation:heroButtons 1.8s ease;
}

@keyframes heroTitle{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes heroText{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes heroButtons{

    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===================================== */
/* TABLET RESPONSIVE */
/* ===================================== */

@media(max-width:1024px){

    .hero-content h1{
        font-size:54px;
    }

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .summary-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}

/* ===================================== */
/* MOBILE RESPONSIVE */
/* ===================================== */

@media(max-width:768px){

    .navbar{
        display:none;
    }

    .mobile-menu-btn{
        display:block;
    }

    .hero-slider{
        height:80vh;
    }

    .hero-content{
        width:95%;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:17px;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn{
        width:100%;
        justify-content:center;
    }

    .slider-controls button{
        width:45px;
        height:45px;
    }

    .stats .container{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .stat-box h2{
        font-size:38px;
    }

    .section-title h2{
        font-size:34px;
    }

    .category-header{
        flex-direction:column;
        text-align:center;
        padding:35px 25px;
    }

    .category-left h3{
        font-size:32px;
    }

    .category-right i{
        font-size:70px;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .summary-section{
        padding:40px 25px;
    }

    .summary-grid{
        grid-template-columns:1fr;
    }

    .summary-section h3{
        font-size:30px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box{
        padding:30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .footer{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

}

/* ===================================== */
/* SMALL MOBILE */
/* ===================================== */

@media(max-width:480px){

    .container{
        padding:0 15px;
    }

    .header .container{
        min-height:75px;
    }

    .logo img{
        width:180px;
    }

    .hero-slider{
        height:75vh;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:15px;
    }

    .btn{
        padding:15px 25px;
        font-size:14px;
    }

    .stats{
        padding:60px 0;
    }

    .stats .container{
        grid-template-columns:1fr;
    }

    .about{
        padding:80px 0;
    }

    .about-content{
        padding:30px;
    }

    .features{
        grid-template-columns:1fr;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .products{
        padding:80px 0;
    }

    .category-buttons a{
        width:100%;
        text-align:center;
    }

    .contact-section{
        padding:80px 0;
    }

    .contact-info h3,
    .contact-form-box h3{
        font-size:28px;
    }

    .whatsapp-btn{
        width:58px;
        height:58px;
        font-size:28px;
        right:15px;
        bottom:15px;
    }

}

.active-link{
    color:#059669 !important;
    font-weight:700;
}


/* ===================================== */
/* END OF STYLE.CSS */
/* ===================================== */


@media(max-width:991px){

  .food-grid,
  .construction-grid,
  .industrial-grid,
  .network-grid{
      grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .food-grid,
  .construction-grid,
  .industrial-grid,
  .network-grid{
      grid-template-columns:1fr;
  }

}



/* ===================================== */
/* FLOATING HANDSHAKE ICON */
/* ===================================== */

.floating-handshake{
    position:absolute;
    right:40px;
    bottom:40px;
    width:70px;
    height:70px;
    background:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:20;

    box-shadow:
    0 15px 40px rgba(0,0,0,.18);

    animation:
    floatIcon 3s ease-in-out infinite,
    pulseGlow 2s infinite;
}

.floating-handshake i{
    font-size:42px;
    color:#16a34a;
}

/* Up Down Animation */

@keyframes floatIcon{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

/* Pulse Effect */

@keyframes pulseGlow{

    0%{
        box-shadow:
        0 0 0 0 rgba(22,163,74,.4);
    }

    70%{
        box-shadow:
        0 0 0 20px rgba(22,163,74,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(22,163,74,0);
    }

}
@media(max-width:768px){

    .floating-handshake{
        width:75px;
        height:75px;
        right:20px;
        bottom:20px;
    }

    .floating-handshake i{
        font-size:28px;
    }

}