/* HERO SECTION */
.hero-slider{
  position:relative;
  width:100%;
  height:85vh;          /* smaller than full screen */
  min-height:520px;
  max-height:700px;
  overflow:hidden;
}

/* SLIDES */
.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:0.7s ease-in-out;
}

.slide.active{
  opacity:1;
  z-index:2;
}

/* IMAGE SMALLER + RESPONSIVE */
.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1);   /* removed zoom */
}

/* OVERLAY */
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

/* TEXT */
.overlay-content{
  position:absolute;
  top:50%;
  left:8%;
  transform:translateY(-50%);
  z-index:5;
  max-width:700px;
  color:#fff;
}

.overlay-content h4{
  font-size:24px;
  color:#f6a100;
  margin-bottom:15px;
}

.overlay-content h1{
  font-size:50px;
  margin-bottom:18px;
}

.overlay-content p{
  font-size:17px;
  line-height:1.7;
  margin-bottom:28px;
}

.btn{
  display:inline-block;
  padding:14px 34px;
  background:#f6a100;
  color:#fff;
  text-decoration:none;
  border-radius:4px;
  font-weight:600;
}

.btn:hover{
  background:#d88b00;
}

/* ARROWS */
.nav-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,0.18);
  color:#fff;
  font-size:26px;
  cursor:pointer;
  z-index:20;
}

.prev-btn{
  left:20px;
}

.next-btn{
  right:20px;
}

/* LARGE TABLET */
@media(max-width:992px){

  .hero-slider{
    height:70vh;
    min-height:500px;
  }

  .overlay-content h1{
    font-size:46px;
  }

  .overlay-content p{
    font-size:18px;
  }
}

/* TABLET */
@media(max-width:768px){

  .hero-slider{
    height:60vh;
    min-height:430px;
  }

  .overlay-content{
    left:5%;
    right:5%;
    max-width:100%;
  }

  .overlay-content h4{
    font-size:18px;
  }

  .overlay-content h1{
    font-size:34px;
  }

  .overlay-content p{
    font-size:16px;
    line-height:1.6;
  }

  .nav-btn{
    width:44px;
    height:44px;
    font-size:20px;
  }

  .prev-btn{
    left:10px;
  }

  .next-btn{
    right:10px;
  }
}

/* MOBILE */
@media(max-width:480px){

  .hero-slider{
    height:52vh;
    min-height:360px;
  }

  .overlay-content h1{
    font-size:26px;
  }

  .overlay-content p{
    font-size:14px;
    margin-bottom:20px;
  }

  .btn{
    padding:10px 22px;
    font-size:14px;
  }

  .nav-btn{
    width:38px;
    height:38px;
    font-size:18px;
  }
}







/* SECTION */
.welcome-section{
    width:100%;
  
    padding:70px 20px 80px;
}

.welcome-section .container{
    max-width:1400px;
    margin:auto;
    text-align:center;
}

/* TITLE */
.welcome-section h2{
    font-size:35px;
    font-weight:400;
    color:#111;
    line-height:1.2;
    margin-bottom:10px;
}

.welcome-section h2 span{
    color:#e49300;
}

/* IMAGE UNDER TITLE */
.title-shape{
    margin-bottom:35px;
}

.title-shape img{
    width:220px;
    max-width:100%;
    height:auto;
    display:inline-block;
}

/* TEXT */
.welcome-section p{
    font-size:18px;
    line-height:1.7;
    color:#111;
    max-width:1450px;
    margin:0 auto 25px;
    font-weight:400;
}

/* LAPTOP */
@media(max-width:1200px){

    .welcome-section h2{
        font-size:48px;
    }

    .welcome-section p{
        font-size:22px;
    }

    .title-shape img{
        width:190px;
    }
}

/* TABLET */
@media(max-width:768px){

    .welcome-section{
        padding:55px 20px 65px;
    }

    .welcome-section h2{
        font-size:36px;
    }

    .welcome-section p{
        font-size:18px;
        line-height:1.8;
    }

    .title-shape{
        margin-bottom:28px;
    }

    .title-shape img{
        width:160px;
    }
}

/* MOBILE */
@media(max-width:480px){

    .welcome-section{
        padding:45px 15px 55px;
    }

    .welcome-section h2{
        font-size:28px;
        line-height:1.4;
    }

    .welcome-section p{
        font-size:16px;
        margin-bottom:18px;
    }

    .title-shape img{
        width:130px;
    }
}



.about-title{
    font-size:55px;
    
    color:#000;
    line-height:1.1;
}

.about-title span{
    color:#e69900;
}

.about-subtitle{
    font-size:26px;
    font-weight:400;
    color:#111;
    margin-bottom:30px;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    color:#111;
    margin-bottom:20px;
}

/* BUTTON */
.about-btn{
    background:#001f2d;
    color:#fff;
    padding:8px 20px;
    font-size:16px;
    border-radius:6px;
    border:none;
}

.about-btn:hover{
    background:#03344a;
    color:#fff;
}

/* IMAGE */


.about-img img{
    object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:1399px){

    .about-title{
        font-size:58px;
    }
}

@media(max-width:991px){

   

    .about-title{
        font-size:48px;
    }

    .about-subtitle{
        font-size:22px;
    }

    .about-content p{
        font-size:18px;
    }
}

@media(max-width:767px){

    .about-title{
        font-size:38px;
    }

    .about-subtitle{
        font-size:20px;
    }

    .about-content{
        padding-top:20px !important;
        padding-bottom:35px !important;
    }

    .about-content p{
        font-size:16px;
        line-height:1.8;
    }

   

    .about-btn{
        font-size:16px;
        padding:12px 22px;
    }
}

@media(max-width:480px){

    .about-title{
        font-size:32px;
    }

    .about-subtitle{
        font-size:18px;
    }
}




/* PRODUCT SECTION */
.product-section {
    padding: 80px 20px;
    background-color: #fff;
}

.product-section .container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

/* HEADER STYLE */
.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.section-header h2 span {
    color: #f6a100; /* Match your gold color */
}

.header-line {
    width: 60px;
    height: 2px;
    background: #333;
    margin: 0 auto 25px;
}

.section-header p {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

/* GRID LAYOUT */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.product-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
}

.product-img {

    padding: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

/* CARD INFO & BUTTON */
.product-info {
    background-color: #f5f5f5; /* Light grey background for the bottom part */
    padding: 25px 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.know-more-btn {
    display: inline-block;
    background-color: #001f2d; /* Dark blue from your about-btn */
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.know-more-btn:hover {
    background-color: #f6a100; /* Turns orange on hover */
    color: #fff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }
    .product-grid {
        gap: 30px;
    }
    .product-card {
        max-width: 100%;
    }
}


















/* MAIN FOOTER */
.main-footer {
    background-color: #111; /* Dark black/grey background */
    color: #888;
    padding: 60px 0 0;
    font-family: sans-serif;
}

.main-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ADDRESS SECTION */
.footer-address h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-address h4 span {
    color: #f6a100; /* Your Brand Orange */
}

.footer-address p {
    line-height: 1.8;
    font-size: 14px;
}

/* PRODUCT TAGS */
.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #333;
    color: #888;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.tag:hover, .tag.active {
    border-color: #f6a100;
    color: #f6a100;
}

/* FOOTER NAV & SOCIAL */
.footer-divider {
    border: 0;
    border-top: 1px solid #222;
    margin-bottom: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 30px;
    gap: 20px;
}

.footer-nav {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: #fff;
}

/* SOCIAL ICONS */
.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a.social-active {
    background-color: #fff;
    color: #000;
}

/* COPYRIGHT BAR */
.copyright-bar {
    background-color: #000;
    text-align: center;
    padding: 15px 0;
}

.copyright-bar p {
    font-size: 13px;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}