﻿body {
    font-family: "Poppins", sans-serif!important;
}
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
    text-decoration:none!important
}
h1{
    font-size:3rem;
    color:#004aad;
    font-weight:600!important;
}
h2{
    font-size:2.5rem!important;
    color:#0A2A43!important;
    font-weight:500!important;
}

/* Top bar */
.top-bar{
    display:flex;
    background-color:rgb(222, 130, 39) !important;
    padding:5px 30px;
    margin:0;
    justify-content:space-between;
}
.top-bar a{
    color:white;
    margin:0;
}
.top-left{
    display:flex;
    gap: 20px;
}
.top-bar .social-icons a:hover {
  color: #0a2a43;
}
@media(max-width:768px){
  .top-bar{
    display:flex;
    flex-direction:column;
    padding:5px 10px;
    margin:0;
   align-items:center;
}
  .top-left{
    display:flex;
    gap: 15px;
}
  .top-bar a{
    color:white;
    font-size:15px;
}
}

/* Navbar Styling */
header {
  background-color:#0A2A43;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between!important;
  align-items: center!important;
  padding: 0px 0px!important;
 
}

.logo img {
  width:300px;
  height:100px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;

  font-size:17px;
}

.nav-links a:hover {
  color: #de8227;
}

/* Dropdown (Desktop) */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0a2a43 !important;
  min-width: 250px!important;
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
  padding:0 0!important;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 5px 14px;
  color: #fff;
}

.dropdown-menu a:hover {
  background: #de8227;
  color:white;
}

/* Hover dropdown on desktop */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* ========= MOBILE VIEW ========= */
@media (max-width: 768px) {

  /* Base mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0a2a43;;
    padding: 10px 0;

  }

  /* When active */
  .nav-links.active {
    display: flex;
  }

  /* Show hamburger */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 8px;
  }

  .nav-links li {
    width: 100%;
  }
  .navbar .butn{
      display:none;
  }
 
  .dropdown {
    position: static; /* remove absolute behavior */
  }

  .dropdown-menu {
    display: none; /* hidden by default */
    position: static !important; /* stack below */
    background: #084a9f; /* match theme */
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    padding-left: 15px;
  }

  /* Show dropdown when open (clicked via JS) */
  .dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  /* Dropdown links */
  .dropdown-menu a {
    padding: 10px 25px;
  }
}


/*hero section*/
.hero {
   position:relative;
   width: 100%;
  }
.hero .overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0.5;
    background:linear-gradient( to bottom,#000, #000);
   
}

.hero img {
  width: 100%;
  height:100vh;
  object-fit: cover;
  display: block;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btnn {
  background: #f85454;
  color: white;
  padding: 10px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btnn:hover {
  background: transparent;
  border:1px solid white!important;
}

.butn{
    background-color:#DE8227 !important;
    color:white!important;
}
.butn a{
      color:white!important;
}
.butn:hover{
    background-color:#ca741f !important;
}

@media(max-width:768px) {
    .hero img{
        width: 100%;
        height: auto;;
    }

    .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-text {
        position: absolute;
        top: 30%;
        left: 5%;
        transform: none;
        color: #fff;
        text-align: center;
        z-index: 2;
    }

    .btnn {
        padding: 5px 15px;
        border-radius: 8px;
    }
}

/*Products section*/
.product-types{
    background: #E5E5E55C;
}
.product-img-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-img-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #de82276e;
    padding: 5px;
}

.product-img-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
    border-radius: 12px;
}

.product-img-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to top,#000,transparent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 20px;
    font-weight: 600;
    transition: 0.4s ease;
}

.product-img-card:hover img {
    transform: scale(1.08);
}

.product-img-card:hover .overlay {
    height: 50%;
    opacity: 1;
}
.product-types h2{
    text-align:center;
}

@media(max-width:768px){
 .product-img-card .overlay {
    width: 100%;
    height: 40%;
    opacity: 1;
  
}
}

/*we serve section*/
.industries-section{
    background: #0a2a43ed;
}

.industries-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
}

.industry-box {
    text-align: center;
}

.industry-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: 0.3s ease;
    filter: invert(90%);
}

.industry-box img:hover {
    transform: scale(1.08);
    filter: drop-shadow(2px 0 0 #de8227);
  
}

.industry-box p {
    margin-top: 12px;
    font-size: 16px;
    color: #de8227;
}

@media(max-width:768px){
    .industry-box img {
     transform: scale(1.08);
    filter: drop-shadow(2px 0 0 #d64626);
}
}

/*strength ssection*/
.strengths-section {
    background: #E5E5E55C;
}
.strengths-vertical {
    display: flex;
    gap: 20px;
    margin-top: 40px;
     flex-wrap: wrap;
}

.strength-card-vertical {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    flex: 0 0 548px;
   
}

.strength-card-vertical i {
    font-size: 40px;
    color: #d0771e;
    min-width: 50px;
    text-align: center;
}

.strength-card-vertical h3 {
    margin: 0;
    color: #0d3d56;
    font-size: 18px;
    font-weight: 700;
}

.strength-card-vertical p {
    margin: 4px 0 0;
    color: #555;
    font-size: 15px;
}

.strength-card-vertical:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
   .strength-card-vertical {
    flex: 0 0 auto;
  }
   .strengths-vertical {
    display: flex;
    flex-direction:column;
}
}

/*vision section*/
.vision-card {
    
    background: #ffffff;
    padding: 10px 25px;
    border-radius: 15px;
    text-align:center;
    transition: 0.3s ease;
}

.vision-card p {
    font-size: 17px;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}

/*Product page section*/
  .leftcat{
            position:sticky;
             top: 0;
            height:fit-content;
            overflow-y: auto;   
             height: 100vh;
             scrollbar-width: thin;           
        }
     
        .category-list{       
            background-color:white;
            display:flex;
            flex-direction:column;
            align-items:flex-start;     
            padding:20px;
        }
         .category-list a{
           width:100%;
           color:#000;
           padding:10px;
        }

         .category-list a:hover{
             background-color:#f0f0f0;
         }
         .products-content{
             display:grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 315px));
             gap:20px;
             padding:20px 0;
         }
   .product-img-cards {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 320px;
    cursor: pointer;
    background: #fff;
    padding: 10px;
    
}

.product-img-cards img {
    width: 100%;
    height: 80%;
    object-fit: contain;
    display: block;
    transition: 0.2s;
    border-radius: 12px;
}

.product-img-cards .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 17%;
    background: linear-gradient(to top,transparent,transparent);
    color: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transform: translateY(100%);
    font-size: 20px;
    font-weight: 600;
    transition: 0.2s;
}
.product-img-cards p{
    margin:5px 0!important;
    font-weight:600;
}

.product-img-cards:hover .overlay {
     transform: translateY(0);
}
.product-img-cards:hover img {
    height: 70%;
}
.but{
    background-color:#DE8227 !important;
    color:white!important;
    width:100%;
}

.but:hover{
    background-color:#ca741f !important;
}

@media(max-width:768px){
 .products-content{
   display:grid;
    grid-template-columns: 1fr;
}

 .product-img-cards .overlay {
    width: 100%;
    height: 40%;
    transform: translateY(0%);
  
}
 .leftcat{
     position:relative;
     top: 0;
     height: auto;       
  }
 .product-img-cards img {
    width: 100%;
    height: 70%;
    object-fit: contain;
}
}

/* product enquiry */
.contact-home {
    background: #F7DCC3CF;
    padding: 60px 0;
}

.contact-content{
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/*Contact */
.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-left h2 {
    font-size: 28px;
    color: #0A3A4A;
    margin-bottom: 15px;
}

.contact-left p {
    font-size: 20px;
    line-height: 1.6;
    color: #444;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1;
    min-width: 320px;
}

/* FORM STYLING */
.contact-home .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-home .contact-form input,
.contact-home .contact-form textarea {
    width: 100%;
    padding: 12px 14px !important;    
    border: 1px solid #ccc !important;
    border-radius: 8px !important;    
    font-size: 15px;
    background: #fff;
    outline: none !important;
}

/* BUTTON */
.contact-home .contact-form button {
    width: 100%;
    background: #0A2A43!important; 
    color: #fff !important;        
    padding: 12px 20px !important; 
    border: none !important;       
    border-radius: 8px !important; 
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

/* BUTTON HOVER */
.contact-home .contact-form button:hover {
    background: #0A3A4A !important;
}

@media(max-width:768px){
  .contact-left{
      text-align:center;
  }
}
 
     
 /* ==== Product-info section ==== */
.product-info-sec {
  padding: 30px 0;
}

.product-img {
  text-align: center;
  margin-bottom: 20px;
}

.product-img img {
  width: 85%;
  height: 400px;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-img img:hover {
  transform: scale(1.02);
}

/* Thumbnail images */
.view-img {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.view-img img {
  width: 75px;
  height: 75px;
  border-radius: 6px;
  border: 2px solid #ddd;
  cursor: pointer;
  transition: 0.3s;
}

.view-img img:hover {
  border-color: #f7901e;
  transform: scale(1.05);
}

/* Product Info */
.product-info {
  padding: 10px 40px;
}

.product-info h2 {
  font-weight: 700;
  color: #002e5b;
  font-size: 2rem;
  margin-bottom: 10px;
}

.product-info h5 {
  font-weight: 600;
  color: #333;
  margin: 15px 0 10px 0;
  text-transform: uppercase;
}

.product-info p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

/* Enquiry Button */
.btn.enq {
  background-color: #f7901e;
  color: #fff;
  border-radius: 6px;
  padding: 12px 28px;
  font-weight: 600;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.btn.enq:hover {
  background-color: #d8780d;
  color: #fff;
  transform: scale(1.05);
}

/* ==== RESPONSIVE DESIGN ==== */

/* For Large Screens (Desktops ≥ 1400px) */
@media screen and (min-width: 1400px) {
  .product-info {
    padding: 10px 60px;
  }
}

/* For Laptops (1025px - 1366px) */
@media screen and (max-width: 1366px) {
  .product-info {
    padding: 10px 30px;
  }

  .product-info h2 {
    font-size: 1.8rem;
  }

  .product-info p {
    font-size: 0.98rem;
  }

  .product-img img {
    width: 90%;
  }

  .view-img img {
    width: 70px;
    height: 70px;
  }

  .btn.enq {
    display: block;
    margin: 20px auto 0 auto;
  }
}

/* For Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .product-info {
    text-align: center;
    padding: 20px;
  }

  .product-info h2 {
    font-size: 1.6rem;
  }

  .product-info p {
    text-align: justify;
  }

  .product-img img {
    width: 80%;
  }

  .btn.enq {
    width: 70%;
  }
}

/* For Mobiles (Below 767px) */
@media screen and (max-width: 767px) {
  .product-info {
    text-align: center;
    padding: 15px;
  }

  .product-info h2 {
    font-size: 1.4rem;
  }

  .product-info p {
    font-size: 0.95rem;
  }

  .product-img img {
    width: 95%;
  }

  .view-img img {
    width: 60px;
    height: 60px;
  }

  .btn.enq {
    width: 90%;
  }
}

   

/*Footer section*/
.footer {
  background: #40190a;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
@media(min-width:768px){
.footer-about{
    max-width:30vw;
}
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ffcc00;
}

.footer p, .footer a {
  font-size: 15px;
  color: #ddd;
  line-height: 1.8;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: #ffcc00;
}

.know-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.know-more:hover {
  color: #fff;
  transform: translateX(3px);
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ffffff33;
  margin-top: 30px;
  font-size: 14px;
  color: #bbb;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-about, .footer-links, .footer-contact {
    margin-bottom: 25px;
  }
}
.midtext{
    font-weight:500!important;
}
