/* Minimal reset */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;color:#0b1220;background:#fff}

:root{--nav-height:64px}

/* account for fixed navbar */
body{padding-top:calc(var(--nav-height) + 8px)}

/* Navbar - minimalist */
.navbar{display:flex;align-items:center;justify-content:space-between;padding:0 24px;height:var(--nav-height);border-bottom:1px solid rgba(11,18,32,0.06);position:fixed;top:0;left:0;right:0;background:#fff;z-index:1000;box-shadow:0 6px 18px rgba(11,18,32,0.04)}
.logo h2{font-size:18px;font-weight:600;color:#0b1220;margin:0}
.logo .site-logo, .site-logo, .footer-logo img{height:40px;width:auto;display:block}

/* slightly larger on desktop header */
@media (min-width:900px){
  .logo .site-logo, .site-logo{height:44px}
}
.menu ul{display:flex;gap:20px;list-style:none;margin:0}
.menu a{color:#0b1220;text-decoration:none;font-weight:500;padding:8px 12px;border-radius:8px;transition:background .15s,color .15s}
.menu a:hover{background:rgba(11,18,32,0.04)}

/* Primary-styled nav item (highlighted) */
.menu li.nav-primary a{background:#0b1220;color:#fff;padding:8px 14px;border-radius:10px;font-weight:700}
.menu li.nav-primary a:hover{background:#081018}

/* Hide the checkbox input visually */
.nav-toggle-input{position:absolute;opacity:0;pointer-events:none}
.nav-toggle-label{display:none}

/* Mobile: collapse menu into hamburger */
@media (max-width:768px){
  .nav-toggle-label{display:block;width:42px;height:42px;cursor:pointer;display:flex;align-items:center;justify-content:center}
  .nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after{display:block;background:#0b1220;height:2px;width:22px;border-radius:2px;position:relative;transition:all .25s}
  .nav-toggle-label span::before{content:'';position:absolute;top:-8px}
  .nav-toggle-label span::after{content:'';position:absolute;top:8px}

  /* make mobile menu full-bleed and links full-width for easier tapping */
  .menu{position:absolute;z-index:1000;left:0;right:0;top:var(--nav-height);background:#fff;overflow:hidden;max-height:0;transition:max-height .28s ease;border-bottom:1px solid rgba(11,18,32,0.06);width:100vw;margin-left:calc(50% - 50vw);border-radius:0}
  .menu ul{flex-direction:column;padding:0;margin:0;gap:0}
  .menu ul li{border-bottom:1px solid rgba(11,18,32,0.04)}
  .menu ul li a{display:block;padding:14px 20px;color:#0b1220}
  .menu ul li a:hover{background:rgba(11,18,32,0.03)}

  .nav-toggle-input:checked + .nav-toggle-label span{background:transparent}
  .nav-toggle-input:checked + .nav-toggle-label span::before{transform:translateY(8px) rotate(45deg)}
  .nav-toggle-input:checked + .nav-toggle-label span::after{transform:translateY(-8px) rotate(-45deg)}
  .nav-toggle-input:checked ~ .menu{max-height:420px}
}

/* Desktop tweaks */
@media (min-width:769px){
  .menu{position:static;max-height:none}
}

/* Carousel / Banner */
.banner{width:100%;margin:24px 0}
.banner-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
.banner-left{padding:24px}
.brand-title{font-size:34px;color:#0b1220;margin:0 0 8px;font-weight:800}
.brand-sub{color:#475569;margin-bottom:16px}
.banner-cta{display:flex;gap:12px;margin-bottom:14px}
.banner-features{list-style:none;padding-left:0;color:#0b1220;display:grid;gap:8px;margin-top:8px}
.banner-features li{position:relative;padding-left:36px;color:#0b1220}
.banner-features li::before{content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);width:22px;height:22px;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11' fill='%2316a34a'/><path d='M7.5 12.5l2.5 2.5 6-6' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");background-size:cover;background-repeat:no-repeat}
.banner-right{padding:12px}
.carousel{position:relative;display:flex;align-items:center}
.carousel-track{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;width:100%}
.slide{min-width:100%;height:320px;flex-shrink:0;background-size:cover;background-position:center;scroll-snap-align:center;border-radius:12px;box-shadow:0 12px 28px rgba(11,18,32,0.06)}
.carousel-btn{display:none}
.carousel-btn:hover{background:rgba(11,18,32,0.12)}
.carousel-dots{position:absolute;left:50%;bottom:12px;transform:translateX(-50%);display:flex;gap:8px;z-index:6}
.carousel-dots button{width:10px;height:10px;border-radius:50%;border:0;background:rgba(11,18,32,0.12);cursor:pointer;box-shadow:0 1px 0 rgba(255,255,255,0.6) inset}
.carousel-dots button.active{background:rgba(11,18,32,0.95)}

/* Ensure track shows no scrollbar in browsers that allow it */
.carousel-track::-webkit-scrollbar{display:none}

@media (max-width:480px){
  .slide{height:220px}
}

@media (max-width:900px){
  .banner-inner{grid-template-columns:1fr;gap:12px}
  .brand-title{font-size:26px}
  .slide{height:260px;border-radius:8px}
  /* On small screens place carousel first, then content; move CTA to the bottom */
  .banner-right{order:1;width:100%}
  .banner-left{order:2;padding:12px;display:flex;flex-direction:column}
  .banner-features{order:2;margin-top:8px}
  .banner-cta{order:3;margin-top:12px;display:flex;flex-wrap:wrap;gap:10px}
  .banner-cta a{flex:0 0 auto}
}

.about-company{padding:36px 16px;background:#f8fbff}
.about-inner{max-width:1200px;margin:0 auto;display:flex;gap:28px;align-items:center}
.about-text{flex:1}
.about-text h2{font-size:24px;color:#0b1220;margin-bottom:8px}
.about-text p{color:#4b5563;margin-bottom:10px}
.vision-mission h3{margin-top:12px;margin-bottom:6px;color:#0b1220;font-size:16px}
.vision-mission p{color:#4b5563;margin-bottom:8px}
.vision-mission ul{margin-left:16px;color:#4b5563;margin-top:8px;padding-left:18px}
.vision-mission{margin-top:8px}
.vision-mission ul li{margin-bottom:8px;line-height:1.45}
.values{margin-top:12px}
.values-list{display:flex;gap:10px;list-style:none;padding:0;margin-top:8px}
.values-list li{background:#fff;padding:8px 12px;border-radius:8px;box-shadow:0 1px 0 rgba(11,18,32,0.04);font-weight:600;min-width:100px;text-align:center}
.about-image{flex:1;min-height:220px;background-size:cover;background-position:center;border-radius:10px}
@media (max-width:900px){
  .about-inner{flex-direction:column;gap:18px}
  .about-image{width:100%;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);border-radius:0}
}

/* Customer logos marquee */
.customer{padding:18px 0;background:transparent}
.marquee{overflow:hidden;padding-bottom:12px}
.customer-title{font-size:18px;color:#0b1220;text-align:center;margin-bottom:12px;font-weight:600}
.customer-title{font-size:24px;color:#0b1220;text-align:center;margin:30px 0px;font-weight:600}
.marquee{overflow:hidden}
.marquee-track{display:flex;gap:32px;align-items:center;white-space:nowrap;overflow-x:auto;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;-ms-overflow-style:none;scrollbar-width:none}
.marquee-track::-webkit-scrollbar{display:none}
.logo-item{flex:0 0 auto;width:140px;height:70px;background-size:contain;background-repeat:no-repeat;background-position:center;filter:grayscale(100%);opacity:0.75;cursor:grab}
.logo-item:hover{filter:none;opacity:1}

/* On small screens show logos in a grid rather than a scrolling marquee */
@media (max-width:900px){
  .marquee{overflow:visible;padding:14px 10px}
  .marquee-track{display:grid;grid-template-columns:repeat(auto-fit,minmax(110px,1fr));gap:12px;align-items:center;white-space:normal;overflow:visible}
  .marquee-track .logo-item{width:100%;height:70px;flex:initial;margin:0;filter:grayscale(0);opacity:1;cursor:default}
  .marquee-track .logo-item.dup{display:none}
}

@media (max-width:600px){
  .marquee-track{gap:20px}
  .logo-item{width:110px;height:56px}
}

/* allow dragging (change grab cursor while interacting) */
.marquee-track:active .logo-item{cursor:grabbing}

/* Decorative divider under marquee for tidy separation */
.customer hr{border:0;height:1px;margin:18px auto 0;max-width:1100px;background:linear-gradient(90deg,transparent,rgba(11,18,32,0.06),transparent)}

/* Services card catalog */
.services-cards{padding:36px 16px;background:#f8fbff}
.services-inner{max-width:1200px;margin:0 auto}
.services-inner h2{font-size:22px;color:#0b1220;margin-bottom:6px}
.services-sub{color:#475569;margin-bottom:16px}
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.service-card{background:#fff;padding:18px;border-radius:12px;box-shadow:0 8px 20px rgba(11,18,32,0.04);min-height:140px;display:flex;flex-direction:column;gap:10px;transition:transform .18s ease,box-shadow .18s ease}
.service-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(11,18,32,0.08)}
.service-icon{font-size:30px;width:56px;height:56px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:linear-gradient(180deg,#eff6ff,#fff);box-shadow:0 2px 6px rgba(11,18,32,0.04)}
.service-title{font-size:16px;color:#0b1220;margin:0;font-weight:700}
.service-desc{color:#475569;font-size:14px;margin-top:6px;line-height:1.4}

@media (max-width:900px){
  .services-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:520px){
  .services-grid{grid-template-columns:1fr}
  .service-card{min-height:120px}
}

/* Catalog grid */
.catalog-section{padding:40px 16px;background:#fff}
.catalog-inner{max-width:1200px;margin:0 auto}
.catalog-inner h2{font-size:22px;color:#0b1220;margin-bottom:6px}
.catalog-sub{color:#475569;margin-bottom:16px}
.catalog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.catalog-card{background:#fff;border-radius:10px;box-shadow:0 8px 20px rgba(11,18,32,0.04);overflow:hidden;display:flex;flex-direction:column}
.catalog-card img{width:100%;height:180px;object-fit:cover;display:block}
.catalog-card h3{font-size:16px;margin:12px 16px 6px;color:#0b1220}
.catalog-card p{color:#475569;font-size:14px;margin:0 16px 16px;line-height:1.4}

/* availability meta */
.catalog-meta{display:flex;justify-content:space-between;align-items:center;padding:0 16px 16px}
.catalog-status{display:inline-block;padding:6px 10px;border-radius:999px;font-weight:700;font-size:13px}
.catalog-status.available{background:#d1fae5;color:#065f46}
.catalog-status.unavailable{background:#fee2e2;color:#991b1b}
.catalog-counts{color:#475569;font-size:13px}

.catalog-request{display:inline-block;padding:6px 10px;border-radius:999px;font-weight:700;font-size:13px;background:#fff;color:#000;border:1px solid #000;text-decoration:none;margin-left:12px}

@media (max-width:900px){
  .catalog-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:520px){
  .catalog-grid{grid-template-columns:1fr}
}

/* Why Choose Us section */
.testimonials{padding:34px 16px;background:#fff}
.testi-inner{max-width:1200px;margin:0 auto}
.testi-inner h2{font-size:22px;color:#0b1220;margin-bottom:16px}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.testi-card{background:#f8fbff;padding:16px;border-radius:10px;box-shadow:0 6px 18px rgba(11,18,32,0.06);min-height:140px;display:flex;flex-direction:column;justify-content:space-between}
.testi-quote{font-style:italic;color:#0b1220;line-height:1.4}
.testi-author{margin-top:12px;color:#374151;font-weight:600}
.testi-company{color:#6b7280;font-weight:500;margin-left:6px}
.testi-focus{margin-top:8px;font-size:13px;color:#065f46;background:#d1fae5;padding:6px 8px;border-radius:8px;display:inline-block;font-weight:700}

@media (max-width:900px){
  .testi-grid{grid-template-columns:1fr}
  .testi-card{min-height:120px}
}

.why_choose_us{padding:40px 16px;background:#fff}

/* Location / Map section */
.location{padding:34px 16px;background:#f7fbff}
.location-inner{max-width:1200px;margin:0 auto;text-align:center}
.location-inner h2{font-size:22px;color:#0b1220;margin-bottom:8px}
.location-desc{color:#475569;margin-bottom:12px}
.map-wrap{border-radius:12px;overflow:hidden;box-shadow:0 8px 24px rgba(11,18,32,0.06);max-width:1100px;margin:0 auto}
.map-wrap iframe{width:100%;height:420px;border:0;display:block}

@media (max-width:600px){
  .map-wrap iframe{height:260px}
}

/* Contact section */
.contact{padding:36px 16px;background:#fff}
.contact-inner{max-width:1100px;margin:0 auto;display:flex;gap:28px;align-items:flex-start}
.contact-info{flex:1}
.contact-info h2{font-size:22px;color:#0b1220;margin-bottom:8px}
.contact-desc{color:#475569;margin-bottom:12px}
.contact-list{list-style:none;padding:0;margin:0 0 12px 0;color:#374151}
.contact-list li{margin-bottom:8px}
.contact-cta .btn-primary{display:inline-block;margin-top:8px}
.contact-form-wrap{flex:1; width: 100%;}
.contact-form-wrap form{background:#f8fbff;padding:16px;border-radius:10px;box-shadow:0 8px 20px rgba(11,18,32,0.04)}
.form-row{display:flex;gap:12px;margin-bottom:12px}
.form-row input,.form-row textarea{flex:1;padding:10px;border-radius:8px;border:1px solid rgba(11,18,32,0.08);font-size:14px}
.form-row textarea{resize:vertical}
.form-actions{display:flex;gap:10px;justify-content:flex-end}
.btn-primary{background:#0b1220;color:#fff;padding:10px 16px;border-radius:8px;border:0;cursor:pointer;font-weight:700}
.btn-ghost{background:transparent;border:1px solid rgba(11,18,32,0.08);padding:10px 14px;border-radius:8px;color:#0b1220;cursor:pointer}

/* WhatsApp icon inside ghost buttons */
.wa-icon{display:inline-flex;width:22px;height:22px;margin-right:8px;vertical-align:middle}
.wa-icon img{display:block;width:100%;height:100%}
.btn-ghost .wa-icon svg{display:none}

/* Floating WhatsApp button */
.wa-float{position:fixed;right:20px;bottom:20px;width:72px;height:72px;border-radius:50%;background:#25D366;color:#fff;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 12px 36px rgba(37,211,102,0.18);z-index:1200;text-decoration:none;transition:transform .12s ease}
.wa-float img{width:36px;height:36px;display:block}
.wa-float:hover{transform:translateY(-6px);box-shadow:0 18px 50px rgba(0,0,0,0.18)}
.wa-float:active{transform:translateY(0)}

@media (max-width:420px){
  .wa-float{right:14px;bottom:14px;width:60px;height:60px}
  .wa-float img{width:28px;height:28px}
}

@media (max-width:900px){
  .contact-inner{flex-direction:column}
  .form-row{flex-direction:column}
}
.why-inner{max-width:1200px;margin:0 auto;display:flex;gap:28px;align-items:center}
.why-left{flex:1;min-width:260px}
.why-left h2{font-size:24px;margin-bottom:8px;color:#0b1220}
.why-desc{color:#4b5563;margin-bottom:14px}
.why-list{list-style:none;padding-left:0;display:grid;grid-template-columns:1fr;gap:10px}
.why-list li{position:relative;padding-left:28px;color:#0b1220}
.why-list li::before{content:"\2713";position:absolute;left:0;top:0;color:#16a34a;font-weight:700}
.why-right{flex:1;min-width:260px}
.why-carousel{position:relative;overflow:hidden;border-radius:10px}
.why-carousel{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch}
.why-slide{min-width:100%;min-height:220px;background-size:cover;background-position:center;scroll-snap-align:center;flex-shrink:0}
.why-dots{display:flex;gap:8px;justify-content:center;margin-top:12px}
.why-dots button{width:10px;height:10px;border-radius:50%;border:0;background:rgba(11,18,32,0.12);cursor:pointer}
.why-dots button.active{background:rgba(11,18,32,0.9)}

@media (max-width:900px){
  .why-inner{flex-direction:column}
  /* make carousel full-bleed on small screens */
  .why-carousel{width:100vw;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw);border-radius:0}
  .why-slide{min-width:100vw}
  .why-right{width:100%}
  .why-left{width:100%;padding:0 16px}
}

/* On larger screens place image (why-right) to the left of the text */
@media (min-width:901px){
  .why-right{order:-1}
}

/* Footer styles */
.site-footer{background:#0b1220;color:#fff;padding:36px 16px 18px}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;gap:28px;align-items:flex-start}
.footer-brand{flex:1;min-width:220px}
.footer-logo img{height:40px;width:auto;display:block;margin-bottom:12px}
.footer-desc{color:rgba(255,255,255,0.85);font-size:14px;line-height:1.5}
.footer-links{display:flex;gap:24px}
.links-col h4{margin:0 0 8px 0;color:#fff;font-size:15px}
.links-col ul{list-style:none;padding:0;margin:0}
.links-col li{margin-bottom:8px}
.links-col a{color:rgba(255,255,255,0.85);text-decoration:none}
.links-col a:hover{color:#aee2ff}
.footer-contact{min-width:200px}
.footer-contact h4{margin:0 0 8px 0;color:#fff;font-size:15px}
.footer-contact p{margin:6px 0;color:rgba(255,255,255,0.85)}
.social{margin-top:10px;display:flex;gap:8px}
.social-icon{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:8px;background:rgba(255,255,255,0.08);color:#fff;text-decoration:none}

.footer-bottom{border-top:1px solid rgba(255,255,255,0.04);margin-top:18px;padding-top:12px;text-align:center;color:rgba(255,255,255,0.6);font-size:13px}

@media (max-width:900px){
  .footer-inner{flex-direction:column;gap:18px}
  .footer-links{flex-direction:row;gap:12px}
  .footer-contact{width:100%}
}
