/* style.css */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body{
  font-family:'Roboto',sans-serif;
  color:#333;
  background:#f5f5f5;
}
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* TOP BAR */
.top-bar{
  background:#003f6b;
  color:#fff;
  padding:16px 0;
  font-size:14px;
}
.top-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.top-left span{
  margin-right:20px;
}
.top-right i{
  margin-left:15px;
  cursor:pointer;
}

/* HEADER */
.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 15px rgba(0,0,0,0.05);
}
.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}
.logo img{
  width:170px;
}
.navbar ul{
  display:flex;
  list-style:none;
}
.navbar ul li{
  margin:0 15px;
}
.navbar ul li a{
  text-decoration:none;
  color:#003f6b;
  font-weight:700;
  font-size:16px;
  transition:0.3s ease;
}

.navbar ul li a:hover{
  color:#f9a11b;
}
.navbar ul li.active a{
  color:#f9a11b;
}
.quote-btn{
  background:#f9a11b;
  color:#fff;
  padding:14px 22px;
  text-decoration:none;
  font-weight:700;
}

/* HERO SLIDER */
.hero-slider{
  position:relative;
  height:650px;
  overflow:hidden;
}
.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:1s ease;
}
.slide.active{
  opacity:1;
}
.slide .overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.45);
}
.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  color:#fff;
  z-index:2;
}
.hero-content h1{
  font-size:60px;
  color:#f9a11b;
  margin-bottom:20px;
}
.hero-content p{
  font-size:22px;
}
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#f9a11b;
  color:#fff;
  border:none;
  width:50px;
  height:50px;
  font-size:24px;
  cursor:pointer;
  z-index:10;
}
.prev{
  left:20px;
}
.next{
  right:20px;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.9);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
}
.lightbox img{
  max-width:90%;
  max-height:90%;
}
.lightbox.active{
  display:flex;
}
.close-lightbox{
  position:absolute;
  top:30px;
  right:40px;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}
.product-card img{
  cursor:pointer;
  transition:.3s;
}
.product-card img:hover{
  transform:scale(1.03);
}

/* ABOUT */
.about-section,
.company{
  padding:90px 0;
  background:#fff;
}
.small-title{
  color:#aaa;
  letter-spacing:2px;
  font-size:12px;
}
.about-section h2,
.company h2{
  font-size:52px;
  margin:20px 0;
}
.line{
  width:70px;
  height:4px;
  background:#f9a11b;
  margin-bottom:25px;
}
.about-section p,
.company p{
  max-width:700px;
  line-height:1.8;
  color:#666;
}
.read-btn{
  display:inline-block;
  margin-top:20px;
  text-decoration:none;
  font-weight:700;
  color:#000;
}

/* SERVICES */
.services{
  background:#003f6b;
  padding:70px 0;
}
.service-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.service-box{
  color:#fff;
  text-align:center;
}
.service-box h3{
  font-size:42px;
}
.line-center{
  width:70px;
  height:4px;
  background:#f9a11b;
  margin:20px auto;
}
.service-box p{
  line-height:1.8;
  color:#ddd;
}
.service-box a{
  display:inline-block;
  margin-top:25px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

/* PRODUCTS */
.products{
  padding:80px 0;
  background:#f5f5f5;
}
.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.product-card{
  background:#fff;
  position:relative;
  overflow:hidden;
}
.product-card span{
  position:absolute;
  top:10px;
  left:10px;
  background:#000;
  color:#fff;
  padding:5px 10px;
  font-size:12px;
}
.product-card img{
  width:100%;
  display:block;
}

/* NEWSLETTER */
.newsletter{
  padding:80px 0;
  text-align:center;
  background:#f5f5f5;
}
.newsletter p{
  color:#777;
}
.newsletter h4{
  margin:10px 0 30px;
  font-weight:400;
}

.newsletter input{
  width:500px;
  max-width:100%;
  padding:15px;
  border:1px solid #ddd;
}

/* FOOTER */
.footer{
  background:#f89c12;
  color:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:40px;
  padding:60px 0;
}
.footer-box h3{
  margin-bottom:20px;
}
.footer-box p{
  line-height:1.8;
}
.footer-box img{
  width:100%;
}
.copyright{
  background:#003f6b;
  text-align:center;
  padding:15px;
  font-size:14px;
}

/* PAGE BANNER */
.page-banner{
  position:relative;
  height:420px;
  background:url('images/banner-bg.jpg') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}
.page-banner .overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,35,82,.75);
}
.banner-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}
.banner-content h1{
  font-size:72px;
  font-weight:700;
  margin-bottom:15px;
}
.banner-content p{
  font-size:14px;
  font-weight:700;
}

/* GALLERY */
.gallery-section{
  padding:90px 0;
  background:#efefef;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}
.gallery-item{
  position:relative;
  overflow:hidden;
}
.gallery-item span{
  position:absolute;
  top:10px;
  left:10px;
  background:#000;
  color:#fff;
  padding:6px 12px;
  font-size:13px;
  font-weight:700;
  z-index:5;
}
.gallery-item img{
  width:100%;
  display:block;
  cursor:pointer;
  transition:.4s;
}
.gallery-item img:hover{
  transform:scale(1.05);
}

/* MAP */
.map-container{
  width:100%;
  overflow:hidden;
}
.map-container iframe{
  width:100%;
  height:180px;
  border:0;
}

/* Image and Text Box */
.custom-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 80px 10%;
  background: #ffffff;
  flex-wrap: wrap;
}
.image-box {
  flex: 1;
  min-width: 300px;
}
.image-box img {
  width: 100%;
  border-radius: 12px;
  display: block;
}
.content-box {
  flex: 1;
  min-width: 300px;
}
.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}
.section-subtitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #555;
}
.section-description {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
}

/* Responsive Design */

@media (max-width: 768px) {
  
  .custom-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 20px;
  }
}
.custom-list {
  list-style: none; /* Remove default bullets */
  padding: 0;
}
.custom-list li {
  margin-bottom: 10px;
}
.custom-list i {
  color: #2ecc71; /* Set icon color */
  margin-right: 10px; /* Space between icon and text */
}
/* Testimonial Page */
.feature-section {
  padding: 80px 10%;
  background: #f9f9f9;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s ease;

  /* Center Content */
  text-align: center;
}
.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.feature-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}
.feature-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
}
.feature-box h5 {
  font-size: 20px;
  color: #111;
  margin: 0;
  font-weight: 600;
}

/* Tablet */

@media (max-width: 992px) {

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

/* Mobile */

@media (max-width: 768px) {

  .feature-section {
    padding: 50px 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* Contact Us Page */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 80px 10%;
  background: #f9f9f9;
  flex-wrap: wrap;
}

/* Left Side */
.contact-info {
  flex: 1;
  min-width: 320px;
}
.contact-title {
  font-size: 42px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 700;
}
.contact-subtitle {
  font-size: 24px;
  margin-bottom: 20px;
  color: #444;
  font-weight: 600;
}
.contact-description {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}
.contact-details p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.7;
}

/* Right Side Form */
.contact-form-box {
  flex: 1;
  min-width: 320px;
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.contact-form {
  display: flex;
  flex-direction: column;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000;
}
.contact-form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}
.contact-form button:hover {
  background: #333;
}

/* Responsive Design */

@media (max-width: 768px) {

  .contact-section {
    flex-direction: column;
    padding: 50px 20px;
  }
  .contact-title {
    font-size: 32px;
  }
  .contact-subtitle {
    font-size: 20px;
  }
}
/* MOBILE MENU */
.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#003f6b;
}

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .navbar{
    width:100%;
    display:none;
    margin-top:15px;
  }

  .navbar.active{
    display:block;
  }

  .navbar ul{
    flex-direction:column;
    align-items:center;
    background:#fff;
    width:100%;
    padding:20px 0;
  }
}

/* =========================================
   IMPROVED RESPONSIVE FIXES
========================================= */

/* Prevent Horizontal Scroll */

html,
body {
  overflow-x: hidden;
}

/* Better Images */
img {
  max-width: 100%;
  height: auto;
}

/* Better Buttons */
.quote-btn,
.contact-form button,
.read-btn {
  transition: 0.3s ease;
}
.quote-btn:hover,
.contact-form button:hover,
.read-btn:hover {
  opacity: 0.9;
}

/* Container Padding Mobile */

@media (max-width: 1200px) {

  .container {
    width: 92%;
  }
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 992px) {

  /* Header */

  .nav-container {
    flex-direction: column;
    gap: 20px;
  }
  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hero */
  .hero-slider {
    height: 500px;
  }
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-content p {
    font-size: 18px;
  }

  /* Banner */
  .banner-content h1 {
    font-size: 56px;
  }

  /* About */
  .about-section h2,
  .company h2 {
    font-size: 42px;
  }

  /* Products */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Feature Boxes */
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

@media (max-width: 768px) {

  /* Top Bar */
  .top-flex {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .top-left span {
    display: block;
    margin: 5px 0;
  }

  /* Header */
  .nav-container {
    flex-direction: column;
  }
  .logo img {
    width: 140px;
  }
  .navbar ul {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .navbar ul li {
    margin: 10px 0;
  }
  .quote-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  /* Hero Section */
  .hero-slider {
    height: 420px;
  }
  .hero-content {
    width: 90%;
  }
  .hero-content h1 {
    font-size: 34px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 16px;
  }
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  /* Banner */
  .page-banner {
    height: 300px;
  }
  .banner-content h1 {
    font-size: 38px;
  }
  .banner-content p {
    font-size: 13px;
  }

  /* Sections */
  .about-section,
  .company,
  .products,
  .services,
  .gallery-section,
  .newsletter,
  .feature-section,
  .contact-section {
    padding: 50px 20px;
  }

  /* Headings */
  .about-section h2,
  .company h2,
  .section-title,
  .contact-title {
    font-size: 32px;
    line-height: 1.3;
  }
  .section-subtitle,
  .contact-subtitle {
    font-size: 20px;
  }

  /* Products */
  .product-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* Feature Boxes */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* Services */

  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-box h3 {
    font-size: 32px;
  }

  /* Newsletter */
  .newsletter input {
    width: 100%;
  }

  /* Contact Section */
  .contact-section {
    flex-direction: column;
  }
  .contact-form-box,
  .contact-info {
    width: 100%;
    min-width: 100%;
  }

  /* Custom Section */
  .custom-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 20px;
  }
  .image-box,
  .content-box {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================================
   EXTRA SMALL DEVICES
========================================= */

@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .banner-content h1 {
    font-size: 30px;
  }
  .about-section h2,
  .company h2,
  .section-title,
  .contact-title {
    font-size: 28px;
  }
  .service-box h3 {
    font-size: 28px;
  }
  .feature-box {
    padding: 25px 15px;
  }
  .contact-form-box {
    padding: 25px 20px;
  }
}

/* CEO IMAGE */
.ceo-image-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.ceo-image-box img {
  width: 200px;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin: 0 auto;

  /* Professional Look */
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}