/* =========================================
   INDUSTRIAL GREEN THEME
   Premium Machine Manufacturer Style
========================================= */

:root{
    --primary:#1f7a3d;          /* industrial green */
    --primary-dark:#14532d;     /* dark green */
    --primary-light:#22c55e;    /* bright green */
    --accent:#84cc16;           /* lime accent */
    
    --bg:#FFFFFF; /* f5f7f6;*/
    --white:#f7fcf5; /**/

    --text:#1f2937;
    --text-light:#6b7280;

    --border:#dbe4dc;

    --shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:var(--white);
    line-height:1.7;
}

.container{
    width:90%;
    max-width:960px;
    margin:auto;
}

section{
    padding:40px 0;
}

h1,h2,h3{
    font-weight:700;
    color:var(--text);
}

p{
    color:black; /* var(--text-light);*/
    text-align:justify;
    text-indent: 50px;
}

/* =========================================
   HEADER
========================================= */

.header{
/*    background:rgba(255,255,255,0.95);*/
    background:var(--white);
    backdrop-filter:blur(10px);
    box-shadow:0 2px 10px rgba(0,0,0,0.06);
    padding:8px 0;
    position:sticky;
/*    top:0;*/
    z-index:999;
}

.header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:90px;
}

.whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:12px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#1ea952;
}

/* =========================================
   HERO
========================================= */

.hero{
/*    background:
    linear-gradient(rgba(255,255,255,0.92),rgba(255,255,255,0.92)),
    url('../img/industrial-bg.jpg');
  */  
    background-size:cover;
    background-position:center;
	padding:20px 100px;
    display:flex;
    align-items:center;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

}

.hero-text h2{
    font-size:14px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:20px;
    text-align:center;
}
.hero-text p{
    font-size:19px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:20px;
    text-align:center;
      align-items:center;
}
.hero-text a{
    font-size:19px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:var(--primary);
    margin-bottom:20px;
    text-align:center;
display: block;
}

.hero-text h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
    text-align:center;
}

.seo-hidden {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:35px;
    justify-content:center;
    align-items:center;
}

.btn{
    display:inline-block;
    padding:15px 34px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary{
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    box-shadow:var(--shadow);
}

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

.btn-outline{
    border:2px solid var(--primary);
    color:var(--primary);
    background:#fff;
}

.btn-outline:hover{
    background:var(--primary);
    color:#fff;
}

/* HERO IMAGE */

.hero-image img{
    width:100%;

   order:4;
}

/* BADGES */

.badges{
    display:grid;
    flex-wrap:wrap;
    gap:15px;
    justify-content:center;
    grid-template-columns:1fr 1fr;
}

.badge{
    background:#fff;
    border:1px solid var(--border);
    padding:12px 12px;
    border-radius:20px;

    font-weight:500;
    
    box-shadow:var(--shadow);
    text-align:center;
}

/* =========================================
   SECTION TITLE
========================================= */

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

.section-title h2{
    font-size:42px;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

/* =========================================
   CTA MAIN
========================================= */

.cta-main{
    display:block;
    text-align:center;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#fff;
    font-size:18px;
    font-weight:700;
    padding:18px;
    border-radius:12px;
    text-decoration:none;
    box-shadow:var(--shadow);
 
}

.cta-main:hover{
    background:var(--primary-dark);
}

/* =========================================
   PRICE BOX
========================================= */

.price-box{
    margin:20px auto 20px;
    max-width:340px;
    text-align:center;

    background:#fff;
    border:1px solid var(--border);

    border-radius:16px;
    padding:35px;

    box-shadow:var(--shadow);
}

.price-main{
    font-size:24px;
    font-weight:800;
    color:var(--primary);
}

.price-sub{
    font-size:14px;
    margin-top:6px;
}

/* =========================================
   FEATURES
========================================= */

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

.feature-card{
    background:#fff;
    padding:35px 25px;
    border-radius:16px;
    box-shadow:var(--shadow);
    text-align:center;
    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-card h3{
    margin:20px 0 12px;
    color:var(--primary-dark);
}
/* MAP */

.map-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.map-container iframe {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 10px;
}

.map img{
  
    max-width:100%;
}

/* =========================================
   STATS
========================================= */

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

.stat-card{
    background:#fff;
    border-radius:16px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow);
}

.stat-card h2{
    color:var(--primary);
    font-size:44px;
}
/* =========================
   VIDEO
========================= */

.shorts-container {
  width: 90%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  margin: auto;

  border-radius: 20px;
  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

}

.shorts-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-title {
  text-align: center;
}

/* =========================================
   APPLICATIONS
========================================= */

.apps-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.app-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:var(--shadow);
  
      display:flex;
    justify-content:center;
    align-items:center;
}

.app-card img{
   width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s;

}

.app-card:hover img{
    transform:scale(1.06);
}

.app-card h3{
    position:absolute;
    bottom:18px;
    left:18px;

    background:rgba(20,83,45,0.92);
    color:#fff;

    padding:8px 14px;
    border-radius:8px;
}


/* =========================================
   gallery
========================================= */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.gallery-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:var(--shadow);
  
      display:flex;
    justify-content:center;
    align-items:center;
}

.gallery-card img{
  
    height:480px;
    object-fit:cover;
    transition:0.4s;

}

.gallery-card:hover img{
    transform:scale(1.06);
}

.gallery-card h3{
    position:absolute;
    bottom:18px;
    left:18px;

    background:rgba(20,83,45,0.92);
    color:#fff;

    padding:8px 14px;
    border-radius:8px;
}
/* =========================================
   TABLES
========================================= */


.spec-table{
    width: 100%;
    max-width: 500px;
    margin: auto;
    border-collapse:collapse;
    background:#fff;
    box-shadow:var(--shadow);
    border-radius:12px;
    overflow:hidden;

}

.spec-table td{
    padding:10px 10px;
    border:1px solid #edf1ed;
    text-align:center;
}
.spec-table th{
    background:var(--primary);
    color:#fff;
    }
    
.spec-table tr:nth-child(even){
    background:#f8faf8;
}

/* =========================================
   CLIENTS
========================================= */

.clients{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.client-card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    box-shadow:var(--shadow);
    /* border-top:5px solid var(--primary);*/
}

/* =========================================
   CTA
========================================= */

.cta{
    background:
    linear-gradient(135deg,var(--primary-dark),var(--primary));

    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
    color:#fff;
}

.cta p{
    color:#e5e7eb;
    margin-bottom:30px;
}

/* =========================================
   FAQ
========================================= */
.faq-section {
  /*max-width: 900px;*/
  max-width: 90%;
  margin:auto;

}

.faq-section h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: #111;
}

/* FAQ Box */
.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Hover effect */
.faq-item:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Question */
.faq-item h3 {
  margin: 0;
  padding: 18px 20px;
  font-size: 17px;
  cursor: pointer;
  position: relative;
  color: #111;
  background: #fafafa;
}

/* Plus icon */
.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #777;
}

/* Answer (hidden by default) */
.faq-item p {
  display: none;
  padding: 15px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  background: #fff;
}
/* =========================================
   FOOTER
========================================= */

footer{
    background:#0f172a;
    color:#fff;
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-bottom:40px;
}

footer h3{
    margin-bottom:18px;
    color:#fff;
}

footer p,
footer a{
    color:#cbd5e1;
    font-size:14px;
    text-decoration:none;
    display:block;
    margin-bottom:10px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding-top:18px;
    padding-bottom:18px;
    text-align:center;
    font-size:13px;
    color:#94a3b8;
}

.address p{
  padding-left: 28px;
  text-indent: -28px;
  line-height: 1.7;
}



/*    FLOAT ICON */
.ocean-call-btn{
  position: fixed;
  right: 0px;
  top: 58px;
  z-index: 9999;

  display: flex;
  align-items: center;

  width: 38px;
  height: 48px;

  border-radius: 0 0 0 10px;
  overflow: hidden;

  background: linear-gradient(135deg,#0b6cff,#0047d6);
  color: #fff;
  text-decoration: none;



  transition: all .35s ease;

  animation: pulse 2s infinite;
}

/* Phone Icon */
.phone-icon{
/*  min-width: 62px;*/
  width: 24px;
  height: 26px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: auto;
}

/* Hidden Text */
.ocean-call-btn span{
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;

  font-size: 15px;
  font-weight: 600;

  transition: all .35s ease;
}

/* Hover Expand */
.ocean-call-btn:hover{
  width: 150px;
  border-radius: 10px 0 0 10px;
}

.ocean-call-btn:hover span{
  max-width: 120px;
  opacity: 1;
  margin-right: 18px;
}





.ocean-whatsapp-btn{
  position: fixed;
  right: 0px;
  top: 10px;
  z-index: 9999;

  display: flex;
  align-items: center;

  width: 38px;
  height: 48px;

  border-radius: 10px 0 0 0;
  overflow: hidden;

  background: linear-gradient(135deg,#25D366,#128C7E);
  
  color: #fff;
  text-decoration: none;


  transition: all .35s ease;

  animation: whatsappPulse 2s infinite;
}

/* WhatsApp Icon */
.whatsapp-icon{
 /* min-width: 24px;*/
  width: 24px;
  height: 24px;

  display: flex;

  justify-content: right;

  margin: auto;
}

/* Hidden Text */
.ocean-whatsapp-btn span{
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;

  font-size: 15px;
  font-weight: 600;

  transition: all .35s ease;
}

/* Hover Expand */
.ocean-whatsapp-btn:hover{
  width: 190px;
  border-radius: 10px 0 0 10px;
}

.ocean-whatsapp-btn:hover span{
  max-width: 120px;
  opacity: 1;
  margin-right: 18px;
}



/* =========================================
   MOBILE
========================================= */

@media(max-width:720px){

.hero-content,
.features-grid,
.stats,
.apps-grid,
.clients,
.footer-grid{
    grid-template-columns:1fr;
}

.hero{
    padding:40px 0;
}
.hero-content{
    display:flex;
    flex-direction:column;
  
}
.hero-text{
    display:flex;
    flex-direction:column;
    order:1;
}
.hero-image{
    order:2;
}
/* force internal ordering inside hero-text */
.hero-text h2:first-of-type{
    order:1;
}

.hero-text h1{
    font-size:34px;
    order:2;
    
}
.hero-text h2:last-of-type{
    order:3;
}
.section-title h2{
    font-size:30px;
    
}

.hero-text p{
    order:1;
}
.hero-text a{
    order:3;
}
.hero-buttons{
    flex-direction:column;
    order:5;
}

.badges{
    order:6;
}

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


.gallery-grid{
    display:grid;
    grid-template-columns:repeat(1, 1fr);
    gap:25px;
}

.logo img{
    height:72px;
}

}
