/* =========================================
GLOBAL RESET
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

html{
  scroll-behavior:smooth;
}

/* =========================================
CONTENT PROTECTION
========================================= */

/* Disable selection everywhere */
body{
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

/* Allow selection in footer */
.footer,
.footer *,
.footer a,
.footer p{
    -webkit-user-select:text;
    -moz-user-select:text;
    -ms-user-select:text;
    user-select:text;
}

/* Prevent image dragging */
img{
    -webkit-user-drag:none;
    -user-drag:none;
    -webkit-touch-callout:none;
}

/* =========================================
HEADER
========================================= */

.header{
  position:fixed;
  top:0;
  width:100%;
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
  z-index:1000;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:8px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:45px;
}


/* =========================================
NAVIGATION
========================================= */

.nav-links{
  list-style:none;
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#1E2D8F;
  font-weight:600;
  transition:.3s ease;
}

.nav-links a:hover{
  color:#F17C2E;
}


/* =========================================
HAMBURGER MENU
========================================= */

.hamburger{
  display:none;
  flex-direction:column;
  cursor:pointer;
}

.hamburger span{
  height:3px;
  width:25px;
  background:#1E2D8F;
  margin:4px 0;
  transition:.3s;
}


/* =========================================
MOBILE NAVIGATION
========================================= */

@media(max-width:768px){

  .nav{
    position:absolute;
    top:70px;
    right:0;
    background:#fff;
    width:100%;
    display:none;
    flex-direction:column;
  }

  .nav.active{
    display:flex;
  }

  .nav-links{
    flex-direction:column;
    text-align:center;
    padding:20px 0;
  }

  .hamburger{
    display:flex;
  }

}


/* =========================================
HERO SECTION (Updated Premium Minimalist Style)
========================================= */
/* .hero{

    height:100vh;

    position:relative;

    overflow:hidden;
    background: linear-gradient(rgba(7, 14, 49, 0.45),rgba(7,12,40,.45));

background: linear-gradient(rgba(7,12,40,.45),rgba(7,12,40,.45)),
url("img/hero-bg_1.png");

    background-size:cover;

    background-position:center bottom;

    background-repeat:no-repeat;

} */

/* =========================================
HERO SECTION (Clean Gradient - No Patterns)
========================================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;

  /* Smooth color blend: Softened orange bottom glow melting into clean industrial navy */
  background-color: #05081d;
  background-image: radial-gradient(
    circle at 50% 125%,
    rgba(241, 124, 46, 0.5) 0%,    /* Lightened, soft orange glow */
    rgba(25, 35, 102, 0.85) 35%,   /* Smooth transition navy */
    rgba(10, 15, 48, 0.98) 70%,    /* Deep corporate dark blue */
    #05081d 100%                   /* Deepest dark corners */
  );
}



/* Completely disables any procedural pattern overlays or sparkle tracking */
.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

.hero-content{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:90%;
    max-width:900px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

    z-index:2;
}

.hero-company{

    display:inline-block;

    margin-bottom:18px;

    font-size:15px;

    font-weight:700;

    letter-spacing:6px;

    text-transform:uppercase;

    color:rgba(255,255,255,.88);

    padding-bottom:12px;

    border-bottom:2px solid rgba(241,124,46,.9);
}

/* Style for the sub-industries line */
.hero-content .sub-industries {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* Subtle clean orange break divider under titles */
.hero-content .sub-industries::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 125px; /* Adjust based on exact spacing */
  width: 60px;
  height: 3px;
  background-color: #F17C2E;
  display: none; /* Handled gracefully via native text breaks if you prefer inline style */
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}



.primary:hover {
  background: #d9661c;
  border-color: #d9661c;
  transform: translateY(-2px);
}


.secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}


.hero-content h1,
.hero-content .sub-industries{
    text-shadow:0 3px 12px rgba(0,0,0,.35);
}


.hero-content h1{

    font-size:38px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:18px;

    text-align:center;

    text-shadow:0 3px 12px rgba(0,0,0,.35);
}

.sub-industries{

    font-size:20px;

    font-weight:500;

    color:rgba(255,255,255,.92);

    margin-bottom:38px;

    justify-content:center;

    text-align:center;
}

@media (max-width:768px){

    .hero-content{
        width:92%;
    }

    .hero-company{

        font-size:13px;

        letter-spacing:4px;

        margin-bottom:14px;
    }

    .hero-content h1{

        font-size:36px;

        margin-bottom:16px;
    }

    .sub-industries{

        font-size:16px;

        line-height:1.7;

        flex-wrap:wrap;

        margin-bottom:28px;
    }

    .hero-buttons{

        flex-direction:column;

        width:100%;
        max-width:280px;
    }
}

@media(max-width:768px){
  .hero-content h1 {
    font-size: 36px;
    max-width:700px;
margin:auto;
margin-bottom:20px;
  }
  .hero-content .sub-industries {
    font-size: 16px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .btn {
    text-align: center;
    width: 100%;
  }
}

.primary{
  background:#F17C2E;
  color:#fff;
}

.secondary{
  border:2px solid #fff;
  color:#fff;
}




/* =========================================
ABOUT SECTION
========================================= */

.about{
  padding:80px 20px;
  background:#f7f8fc;
}

.about-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.about-text h2{
  font-size:32px;
  color:#1E2D8F;
  margin-bottom:15px;
}

.about-text p{
  font-size:16px;
  line-height:1.7;
  color:#333;
}

.about-image img{
  width:100%;
  max-width:450px;
  border-radius:8px;
}

@media(max-width:768px){

  .about-wrap{
    flex-direction:column;
    text-align:center;
  }

}


/* =========================================
COMMON SECTION TITLE
========================================= */

.section-title{
  width:100%;
  text-align:center;
  font-size:32px;
  color:#1E2D8F;
  margin-bottom:50px;
}


/* =========================================
PRODUCTS SECTION
========================================= */

.products{
  padding:80px 20px;
  background:#fff;
}

.products .container{
  display:block;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    align-items:stretch;
}

@media (max-width:1024px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .product-card img{

    height:240px;

    padding:30px;

}

}

@media (max-width:768px){

.product-card img{

    height:220px;

    padding:28px;

}

}

.product-card{

    display:flex;
    flex-direction:column;
    border-radius:20px;
    overflow:hidden;
    background:#f8f9fc;
}

.product-card img{

    width:100%;
    height:260px;

    object-fit:contain;
    object-position:center;

    padding:8px;

    background:#fff;
    
    transition:.35s ease;
}

.product-card h3{

    padding:18px 18px 22px;

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#1E2D8F;

    text-align:center;

    line-height:1.35;

}

.product-card h3::after{
    content:"";
    display:block;
    width:40px;
    height:3px;
    background:#F17C2E;
    margin:12px auto 0;
}

.product-card p{
  font-size:15px;
  line-height:1.6;
  color:#666;

  margin-top:15px;
}

.product-card:hover{

transform:translateY(-10px);

box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.product-card:hover img{

transform:scale(1.06);

}

.card-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.card-link .product-card{
  height:100%;
}

@media (max-width:768px){

   .product-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .product-card img{
        height:260px;
        padding:25px;
    }

}


/* =========================================
CLIENTS SECTION
========================================= */

.clients{
  padding:70px 20px;
  background:#f7f8fc;
  overflow:hidden;
}

.client-slider{
  width:100%;
  overflow:hidden;
}

.client-track{
  display:flex;
  width:max-content;
  animation:clientScroll 35s linear infinite;
}

.client-track img{
  width:90px;
  margin:0 35px;
  flex-shrink:0;
  opacity:.75;
  transition:.3s ease;
}

.client-track img:hover{
  opacity:1;
}

@keyframes clientScroll{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

.client-slider:hover .client-track{
  animation-play-state:paused;
}

@media(max-width:768px){

  .client-track img{
    width:110px;
    margin:0 20px;
  }

}


/* =========================================
HOME GALLERY SECTION
========================================= */

.gallery{
  padding:60px 20px;
  background:#f5f6f7;
}

.gallery-wrapper{
  width:100%;
}

/* IMPORTANT FIX */
#dynamicGallery{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  transition:.4s ease;
}

/* =========================================
GALLERY ITEM
========================================= */

.gallery-item-home{
  position:relative;
  overflow:hidden;
  border-radius:10px;
  cursor:pointer;
}

.gallery-item-home img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.gallery-item-home:hover img{
  transform:scale(1.05);
}


/* =========================================
GALLERY OVERLAY
========================================= */

.gallery-overlay-home{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(4px);

  display:flex;
  align-items:center;
  justify-content:center;

  opacity:0;
  transition:.3s ease;

  padding:10px;
  text-align:center;
}

.gallery-item-home:hover .gallery-overlay-home{
  opacity:1;
}

.gallery-overlay-home p{
  color:#fff;
  font-size:14px;
  font-weight:500;
  line-height:1.5;
}


/* =========================================
GALLERY ANIMATION
========================================= */

.gallery-fade{
  opacity:0;
  filter:blur(5px);
  transition:all 0.5s ease;
}

/* =========================================
GALLERY BUTTON
========================================= */

.gallery-more{
  text-align:center;
  margin-top:30px;
}

.btn-gallery{
  display:inline-block;
  padding:10px 26px;
  font-size:.95rem;
  text-decoration:none;
  color:#fff;
  background:#1f3c88;
  border:1px solid #1f3c88;
  transition:.3s ease;
}

.btn-gallery:hover{
  background:transparent;
  color:#1f3c88;
}


/* =========================================
IMAGE POPUP
========================================= */

.image-popup{
  position:fixed;
  top:0;
  left:0;

  width:100%;
  height:100%;

  background:rgba(0,0,0,0.92);

  display:none;

  justify-content:center;
  align-items:center;

  z-index:9999;
}

.image-popup img{
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}

.close-popup{
  position:absolute;
  top:20px;
  right:30px;

  color:#fff;
  font-size:42px;
  cursor:pointer;
}


/* =========================================
CONTACT SECTION
========================================= */

.contact-section{
  padding:60px 20px;
  background:#fff;
}

.contact-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  gap:40px;
}

.contact-info{
  flex:1;
}

.contact-info h2{
  font-size:30px;
  margin-bottom:12px;
}

.contact-info p{
  font-size:15px;
  line-height:1.6;
  color:#444;
}

.contact-form{
  flex:1;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:11px;
  margin-bottom:14px;
  border:1px solid #ccc;
  font-size:14px;
}

.contact-form textarea{
  resize:vertical;
}

.upload-label{
  font-size:14px;
  margin-bottom:15px;
  display:block;
}

.upload-label input{
  display:block;
  margin-top:5px;
}

.contact-form button{
  padding:12px;
  width:100%;
  background:#000;
  color:#fff;
  border:none;
  cursor:pointer;
  font-size:15px;
}

@media(max-width:768px){

  .contact-container{
    flex-direction:column;
  }

  .contact-info{
    text-align:center;
  }

}


/* =========================================
FOOTER
========================================= */

.footer{
  background:#111;
  color:#ddd;
  padding:40px 20px 20px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:40px;
}

.footer-box{
  flex:1;
}

.footer-box h3,
.footer-box h4{
  color:#fff;
  margin-bottom:10px;
}

.footer-box p{
  font-size:14px;
  line-height:1.6;
  color:#ccc;
}

.footer-box a{
  color:#ccc;
  text-decoration:none;
}

.footer-box a:hover{
  color:#fff;
}

.footer-box i{
  margin-right:8px;
}

.footer-bottom{
  text-align:center;
  margin-top:25px;
  padding-top:15px;
  border-top:1px solid #333;
  font-size:13px;
  color:#aaa;
}


/* =========================================
MOBILE RESPONSIVE
========================================= */

@media(max-width:768px){

  /* FOOTER */

  .footer-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .footer-box{
    width:100%;
  }

  .footer-box p{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  }

  .footer-box i{
    margin:0;
  }

  /* IMPORTANT GALLERY FIX */

  #dynamicGallery{
    grid-template-columns:repeat(2,1fr) !important;
  }

  .gallery-item-home img{
    height:160px;
  }

}