 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
    background: #ffffff;
  }

  /* ========== KEYFRAME ANIMATIONS ========== */
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-40px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes pulseGlow {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 20, 88, 0.5);
    }
    70% {
      box-shadow: 0 0 0 12px rgba(0, 20, 88, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 20, 88, 0);
    }
  }

  /* ========== TOP BAR ========== */
  .top-bar {
    background: #111;
    color: #aaa;
    font-size: 12.5px;
    padding: 8px 0;
    border-bottom: 1px solid #222;
  }

  .top-bar a {
    color:#ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .top-bar a:hover {
    text-decoration: underline;
    color: #001458;
  }

  .social-icons-top a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    margin-left: 6px;
    color: #ccc;
    font-size: 12px;
    transition: all 0.3s ease;
  }

  .social-icons-top a:hover {
    background: #001458;
    color: #fff;
    transform: translateY(-3px) rotate(360deg);
  }

  /* ========== MIDDLE HEADER (Logo + Contact) ========== */
  .middle-bar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .logo-img {
    height: 62px;
    width: auto;
    max-height: 62px;
    object-fit: contain;
  }

  .logo-img[src=""],
  .logo-img:not([src]) {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 60"><rect width="200" height="60" fill="%23001458" rx="8"/><text x="15" y="38" font-size="20" font-weight="bold" fill="%23fff">Evergreen</text><text x="115" y="38" font-size="14" fill="%23ddd">Const.</text></svg>');
  }

  .info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 14px;
    border-left: 1px solid #eee;
    transition: all 0.3s;
  }

  .info-box:hover {
    transform: translateX(5px);
  }

  .info-box .icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 20, 88, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
  }

  .info-box:hover .icon-wrap {
    background: #001458;
    transform: scale(1.1);
  }

  .info-box .icon-wrap i {
    color: #001458;
    font-size: 16px;
    transition: all 0.3s;
  }

  .info-box:hover .icon-wrap i {
    color: #fff;
  }

  .info-box .text strong {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    color: #888;
  }

  .info-box .text span {
    font-size: 12px;
    color: #222;
    font-weight: 600;
  }

  /* ========== NAVBAR (Sticky) ========== */
  .main-navbar {
    background: #0a0c10;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .navbar-nav .nav-link {
    color: #ddd !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 18px 16px !important;
    transition: 0.25s;
    border-bottom: 2px solid transparent;
    position: relative;
  }

  .navbar-nav .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #001458;
    transition: all 0.3s;
    transform: translateX(-50%);
  }

  .navbar-nav .nav-link:hover:before,
  .navbar-nav .nav-link.active:before {
    width: 80%;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #ffffff !important;
  }

  @media (max-width: 991px) {
    .navbar-collapse {
      background: #0a0c10;
      padding: 1rem;
      border-radius: 16px;
      margin-top: 10px;
    }

    .navbar-nav .nav-link {
      text-align: center;
      padding: 12px 0 !important;
    }

    .info-section-wrapper {
      display: none !important;
    }

    .middle-bar .col-lg-4 {
      text-align: center !important;
    }
  }

  /* ========== HERO BANNER SLIDER ========== */
  .carousel-item {
    height: 86vh;
    min-height: 550px;
    background-size: cover;
    background-position: center 30%;
    position: relative;
  }

  .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(98deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);*/
    z-index: 1;
  }

  .slide-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    z-index: 3;
    max-width: 700px;
    padding: 0 5%;
  }

  .slide-tag {
    display: inline-block;
    background: #001458;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 5px 18px;
    border-radius: 40px;
    margin-bottom: 18px;
    opacity: 0;
  }

  .carousel-item.active .slide-tag {
    animation: fadeInLeft 0.6s forwards, pulseGlow 2.5s infinite;
  }

  .carousel-item.active .slide-content h1 {
    animation: fadeInLeft 0.8s forwards;
  }

  .carousel-item.active .slide-content p {
    animation: fadeInLeft 1s forwards;
  }

  .slide-content h1 {
    font-size: clamp(32px, 6vw, 62px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
  }

  .slide-content p {
    font-size: clamp(14px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 30px;
    opacity: 0;
  }

  .btn-custom-primary {
    background: #001458;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 40px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-custom-primary:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .btn-custom-primary:hover:after {
    left: 100%;
  }

  .btn-custom-primary:hover {
    background: #001458;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
  }

  .btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 10px 26px;
    border-radius: 40px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .btn-outline-light-custom:hover {
    border-color: #001458;
    background: rgba(0, 20, 88, 0.2);
    color: #001458;
    transform: translateY(-3px);
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
  }
/* Dropdown Menu */
.custom-dropdown {
  background: #0a0c10;
  border: none;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 260px;
  overflow: hidden;
}

.custom-dropdown .dropdown-item {
  color: #ddd;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.custom-dropdown .dropdown-item:hover {
  background: #001458;
  color: #fff;
  padding-left: 26px;
}

.dropdown-toggle::after {
  margin-left: 8px;
}

/* footer start */

.footer-section{
  width:100%;
  background:#171d3b;
  padding:90px 8% 40px;
  overflow:hidden;
}

.footer-container{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:50px;
}

/* ================= TITLES ================= */

.footer-title{
  font-size:20px;
  font-weight:700;
  color:#ffffff;
  margin-bottom:35px;
}

/* ================= OFFICE ================= */

.footer-contact{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:18px;
  color:#c7c7c7;
  font-size:15px;
  line-height:1.7;
  word-break:break-word;
}

.footer-contact i{
  color:#d6d7dc;
  font-size:16px;
  margin-top:5px;
  flex-shrink:0;
}

/* ================= SOCIAL ================= */

.footer-social{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:35px;
}

.footer-social a{
  width:48px;
  height:48px;
  border-radius:50%;
  background:#ffffff;
  color:#000000;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:18px;
  transition:0.3s;
}

.footer-social a:hover{
  background:#c9a84c;
  color:#171d3b;
  transform:translateY(-4px);
}

/* ================= QUICK LINKS ================= */

.footer-links{
  list-style:none;
  padding-left:0;
}

.footer-links li{
  margin-bottom:16px;
}

.footer-links a{
  text-decoration:none;
  color:#c7c7c7;
  font-size:15px;
  transition:0.3s;
  display:inline-flex;
  align-items:center;
  flex-wrap:wrap;
}

.footer-links a i{
  margin-right:12px;
  font-size:12px;
}

.footer-links a:hover{
  color:#ffffff;
  padding-left:5px;
}

/* ================= SERVICES ================= */

.footer-hours{
  margin-bottom:18px;
}

.footer-hours p{
  color:#c7c7c7;
  font-size:15px;
  margin-bottom:6px;
  line-height:1.7;
}

/* ================= NEWSLETTER ================= */

.footer-news-text{
  color:#c7c7c7;
  font-size:15px;
  line-height:1.9;
  margin-bottom:28px;
  max-width:320px;
}

.newsletter-form{
  width:100%;
  border:1px solid rgba(255,255,255,0.5);
  border-radius:12px;
  display:flex;
  align-items:center;
  padding:10px;
  gap:10px;
}

.newsletter-form input{
  flex:1;
  min-width:0;
  height:50px;
  border:none;
  outline:none;
  background:transparent;
  color:#ffffff;
  font-size:16px;
  padding:0 18px;
}

.newsletter-form input::placeholder{
  color:#8f93a8;
}

.newsletter-form button{
  width:110px;
  min-width:110px;
  height:50px;
  border:none;
  border-radius:10px;
  background:#ffffff;
  color:#000000;
  font-size:16px;
  font-weight:500;
  cursor:pointer;
  transition:0.3s;
}

.newsletter-form button:hover{
  background:#c9a84c;
  color:#171d3b;
}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom{
  width:100%;
  border-top:1px solid rgba(255,255,255,0.12);
  margin-top:70px;
  padding-top:25px;
  text-align:center;
}

.footer-bottom p{
  color:#c7c7c7;
  font-size:15px;
  line-height:1.8;
  margin:0;
}

/* ================= RESPONSIVE ================= */

@media(max-width:991px){

  .footer-section{
    padding:70px 6% 35px;
  }

  .footer-container{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:45px;
  }
}

@media(max-width:768px){

  .footer-section{
    padding:60px 5% 30px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .newsletter-form{
    flex-direction:column;
    align-items:stretch;
  }

  .newsletter-form input,
  .newsletter-form button{
    width:100%;
  }

  .footer-title{
    margin-bottom:25px;
  }

  .footer-bottom{
    margin-top:50px;
    padding-top:20px;
  }

  .footer-bottom p{
    font-size:14px;
  }
}

@media(max-width:480px){

  .footer-section{
    padding:50px 20px 25px;
  }

  .footer-social a{
    width:42px;
    height:42px;
    font-size:16px;
  }

  .footer-title{
    font-size:18px;
  }

  .footer-contact,
  .footer-links a,
  .footer-hours p,
  .footer-news-text{
    font-size:14px;
  }
}

  /* footer end */

    /* =========================
   PARLLEX STRIP BANNER
========================= */

.parllex-img{
    position: relative;
    padding: 90px 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://img.freepik.com/premium-photo/top-view-various-kinds-disposable-plastic-waste-blue-background_130265-646.jpg') center/cover fixed no-repeat;
    overflow: hidden;
}

.parllex-img-content h5{
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.parllex-img-content h1{
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    max-width: 700px;
}

.parllex-img-btn{
    display: inline-block;
    padding: 16px 38px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.4s ease;
}

.parllex-img-btn:hover{
    background: #000000;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive */
@media(max-width:991px){

    .parllex-img{
        padding: 70px 0;
        text-align: center;
    }

    .parllex-img-content h1{
        font-size: 38px;
        max-width: 100%;
    }

}

@media(max-width:576px){

    .parllex-img-content h1{
        font-size: 28px;
    }

    .parllex-img-btn{
        padding: 14px 30px;
        font-size: 15px;
    }

}

/* counter start  */
   .counter-section{
    width: 100%;
    background: #001458;
    padding: 55px 0; /* Reduced Height */
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}


   .counter-heading{
    text-align: center;
    margin-bottom: 40px; /* Reduced spacing */
}

    .counter-heading h2{
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}



  .counter-heading p{
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin: 0;
    font-weight: 400;
}

   .counter-box{
    text-align: center;
    padding: 10px;
}

    .counter-number{
    color: #ffffff;
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

    .counter-text{
    color: rgba(255,255,255,0.80);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

   /* =========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .counter-section{
        padding: 45px 0;
    }

    .counter-heading h2{
        font-size: 38px;
    }

    .counter-number{
        font-size: 46px;
    }

    .counter-text{
        font-size: 15px;
    }

    .counter-box{
        margin-bottom: 25px;
    }

}

@media(max-width:576px){

    .counter-section{
        padding: 40px 0;
    }

    .counter-heading{
        margin-bottom: 35px;
    }

    .counter-heading h2{
        font-size: 30px;
    }

    .counter-heading p{
        font-size: 14px;
    }

    .counter-number{
        font-size: 38px;
    }

    .counter-text{
        font-size: 13px;
    }

}
/* counter end */

/* accrodation start */
 /* ── Why Choose Us Section ── */
    .why-choose-section {
      width: 100%;
      background: #f4f6fb;
      padding: 80px 0;
      font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    
    }
 
    .why-choose-section .section-wrapper {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 24px;
    }
 
    /* ── Image side ── */
    .why-img-col {
      position: relative;
    }
 
    .why-img-frame {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,.14);
      aspect-ratio: 4/3;
      background: #d0d5e8;
      z-index: 1;
    }
 
    .why-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: opacity .45s ease, transform .55s ease;
      position: absolute;
      top: 0; left: 0;
      opacity: 0;
    }
 
    .why-img-frame img.active {
      opacity: 1;
      transform: scale(1);
    }
 
    .why-img-frame img.leaving {
      opacity: 0;
      transform: scale(1.04);
    }
 
    /* decorative blob behind image */
    .why-img-col::before {
      content: '';
      position: absolute;
      width: 85%;
      height: 85%;
      background: linear-gradient(135deg, rgba(0,20,88,.12) 0%, rgba(0,20,88,.05) 100%);
      border-radius: 24px;
      top: 24px;
      left: -16px;
      z-index: 0;
    }
 
    /* ── Right side ── */
    .why-right-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    .why-section-title {
      font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      color: #0a0c10;
      margin-bottom: 36px;
      letter-spacing: -.3px;
      text-align: center;
    }
 
    /* ── Accordion ── */
    .why-acc-item {
      background: #fff;
      border-radius: 14px;
      margin-bottom: 12px;
      box-shadow: 0 2px 12px rgba(0,20,88,.06);
      overflow: hidden;
      transition: box-shadow .3s;
    }
 
    .why-acc-item.open {
      box-shadow: 0 6px 28px rgba(0,20,88,.13);
    }
 
    .why-acc-btn {
      width: 100%;
      background: transparent;
      border: none;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
      gap: 12px;
      font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
    }
 
    .why-acc-label {
      font-size: 1rem;
      font-weight: 600;
      color: #0a0c10;
      transition: color .25s;
    }
 
    .why-acc-item.open .why-acc-label {
      color: #001458;
    }
 
    .why-acc-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 2px solid #cdd3e8;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color .3s, background .3s, transform .35s;
    }
 
    .why-acc-icon svg {
      stroke: #8a93b8;
      transition: stroke .3s;
    }
 
    .why-acc-item.open .why-acc-icon {
      background: #001458;
      border-color: #001458;
      transform: rotate(45deg);
    }
 
    .why-acc-item.open .why-acc-icon svg {
      stroke: #fff;
    }
 
    .why-acc-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s ease;
      padding: 0 24px;
    }
 
    .why-acc-item.open .why-acc-body {
      max-height: 200px;
      padding-bottom: 20px;
    }
 
    .why-acc-body p {
      font-size: .9rem;
      color: #555;
      line-height: 1.75;
      margin: 0;
    }
 
    /* ── Mobile ── */
    @media (max-width: 767px) {
      .why-choose-section { padding: 50px 0; }
      .why-img-col { display: none; }
      .why-section-title { margin-bottom: 24px; }
    }
/* accrodation end */

/* image slider start */
    .bucket-slider-section{
      width: 100%;
      padding: 70px 0;
      background: #ffffff;
      overflow: hidden;
    }

    .bucket-swiper{
      padding-bottom: 20px;
    }

    .bucket-card{
      background: #e9ebf2;
      border-radius: 30px;
      padding: 30px 20px 40px;
      text-align: center;
      transition: 0.4s ease;
      overflow: hidden;
      height: 100%;
    }

    .bucket-card:hover{
      transform: translateY(-8px);
    }

    .bucket-title{
      font-size: 32px;
      font-weight: 700;
      color: #111;
      margin-bottom: 20px;
      font-family: Arial, sans-serif;
    }

    .bucket-image-wrap{
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .bucket-image{
      width: 100%;
      max-width: 240px;
      object-fit: contain;
      transition: 0.4s ease;
    }

    .bucket-card:hover .bucket-image{
      transform: scale(1.05);
    }

    /* Navigation Buttons */

    .bucket-next,
    .bucket-prev{
      width: 50px;
      height: 50px;
      background: #001458;
      border-radius: 50%;
      color: #fff;
      transition: 0.3s ease;
    }

    .bucket-next::after,
    .bucket-prev::after{
      font-size: 18px;
      font-weight: bold;
    }

    .bucket-next:hover,
    .bucket-prev:hover{
      background: #ff6600;
    }

    /* Pagination */

    .swiper-pagination-bullet{
      background: #001458;
      opacity: 0.5;
    }

    .swiper-pagination-bullet-active{
      opacity: 1;
      width: 22px;
      border-radius: 20px;
    }

    /* Responsive */

    @media (max-width: 768px){

      .bucket-card{
        border-radius: 24px;
        padding: 25px 15px 30px;
      }

      .bucket-title{
        font-size: 24px;
      }

      .bucket-image{
        max-width: 190px;
      }

      .bucket-next,
      .bucket-prev{
        display: none;
      }
    }

/* image slider end */

/* product page design start */
    .product-showcase-section{
      width: 100%;
      padding: 90px 0;
      background: #f5f7fb;
      overflow: hidden;
    }

    .product-showcase-content{
      padding-right: 40px;
    }

    .product-showcase-subtitle{
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #001458;
      margin-bottom: 15px;
      display: inline-block;
    }

    .product-showcase-title{
      font-size: 52px;
      font-weight: 800;
      line-height: 1.2;
      color: #111;
      margin-bottom: 25px;
    }

    .product-showcase-description{
      font-size: 17px;
      line-height: 1.9;
      color: #555;
      margin-bottom: 30px;
    }

    .product-showcase-list{
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .product-showcase-list li{
      position: relative;
      padding-left: 35px;
      margin-bottom: 18px;
      font-size: 16px;
      font-weight: 500;
      color: #222;
    }

    .product-showcase-list li::before{
      content: "✔";
      position: absolute;
      left: 0;
      top: 2px;
      width: 22px;
      height: 22px;
      background: #001458;
      color: #fff;
      border-radius: 50%;
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .product-showcase-slider{
      position: relative;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .product-showcase-slider img{
      width: 100%;
      height: 550px;
      object-fit: cover;
    }

    .swiper-pagination-bullet{
      background: #fff;
      opacity: 1;
    }

    .swiper-pagination-bullet-active{
      background: #001458;
      width: 24px;
      border-radius: 20px;
    }

    @media(max-width:991px){

      .product-showcase-section{
        padding: 70px 0;
      }

      .product-showcase-content{
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
      }

      .product-showcase-title{
        font-size: 38px;
      }

      .product-showcase-list{
        display: inline-block;
        text-align: left;
      }

      .product-showcase-slider img{
        height: 400px;
      }
    }

    @media(max-width:576px){

      .product-showcase-title{
        font-size: 30px;
      }

      .product-showcase-description{
        font-size: 15px;
      }

      .product-showcase-list li{
        font-size: 15px;
      }

      .product-showcase-slider img{
        height: 300px;
      }
    }

/* product page design end */

/* contact page start */
.contact-section {
      width: 100%;
      padding: 80px 0;
      background: #f8f9fc;
    }

    .contact-wrapper {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    }

    .contact-left {
      background: #001458;
      color: #fff;
      padding: 60px 45px;
      height: 100%;
    }

    .contact-tag {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #b9c7ff;
      margin-bottom: 15px;
    }

    .contact-title {
      font-size: 42px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .contact-description {
      font-size: 16px;
      line-height: 1.8;
      color: #d7defd;
      margin-bottom: 40px;
    }

    .contact-info-box {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 35px;
    }

    .contact-icon {
      width: 55px;
      height: 55px;
      background: rgba(255,255,255,0.12);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }

    .contact-info-title {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .contact-info-text {
      font-size: 15px;
      line-height: 1.8;
      color: #d7defd;
    }

    .contact-right {
      padding: 60px 45px;
      background: #fff;
    }

    .contact-form-title {
      font-size: 34px;
      font-weight: 700;
      color: #001458;
      margin-bottom: 35px;
    }

    .contact-form-group {
      margin-bottom: 22px;
    }

    .contact-input,
    .contact-select,
    .contact-textarea {
      width: 100%;
      border: 1px solid #dcdcdc;
      border-radius: 12px;
      padding: 15px 18px;
      font-size: 15px;
      outline: none;
      transition: 0.3s ease;
      background: #fff;
    }

    .contact-input:focus,
    .contact-select:focus,
    .contact-textarea:focus {
      border-color: #001458;
      box-shadow: 0 0 0 3px rgba(0,20,88,0.08);
    }

    .contact-textarea {
      height: 140px;
      resize: none;
    }

    .contact-submit-btn {
      background: #001458;
      color: #fff;
      border: none;
      padding: 15px 35px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      transition: 0.3s ease;
    }

    .contact-submit-btn:hover {
      background: #0a237a;
    }

    @media (max-width: 991px) {

      .contact-left,
      .contact-right {
        padding: 45px 30px;
      }

      .contact-title {
        font-size: 34px;
      }

      .contact-form-title {
        font-size: 28px;
      }
    }

    @media (max-width: 767px) {

      .contact-section {
        padding: 50px 0;
      }

      .contact-title {
        font-size: 28px;
      }

      .contact-form-title {
        font-size: 24px;
      }

      .contact-left,
      .contact-right {
        padding: 35px 25px;
      }
    }
/* contact page end */

/* about page start */
/* =========================
    ABOUT COMPANY SECTION
========================= */

.about-company-section{
  padding:70px 0;
  background:#f5f5f5;
  overflow:hidden;
}

.about-company-left{
  padding-right:30px;
}

.about-company-subtitle{
  font-size:18px;
  font-weight:600;
  color:#0056c7;
  display:inline-block;
  margin-bottom:15px;
}

.about-company-title{
  font-size:45px;
  line-height:1.2;
  font-weight:800;
  color:#081b4b;
  margin-bottom:25px;
}

.about-company-contact{
  margin-bottom:25px;
}

.about-company-contact span{
  display:block;
  font-size:16px;
  color:#666;
  margin-bottom:6px;
}

.about-company-contact h4{
  font-size:28px;
  color:#0056c7;
  font-weight:700;
  margin:0;
}

.about-company-text{
  font-size:16px;
  line-height:1.8;
  color:#666;
  margin-bottom:20px;
}

.about-company-list{
  list-style:none;
  padding:0;
  margin:0 0 30px;
}

.about-company-list li{
  position:relative;
  padding-left:35px;
  margin-bottom:16px;
  font-size:18px;
  font-weight:500;
  color:#081b4b;
}

.about-company-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:-1px;
  font-size:22px;
  font-weight:bold;
  color:#0056c7;
}

.about-company-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:110px;
  height:62px;
  border-radius:30px;
  background:#005ed9;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  transition:0.4s;
}
.about-company-contact-box span{
    display:block;
    font-size:16px;
    color:#555;
    margin-bottom:12px;
    font-weight:500;
}
.about-company-contact-box h4{
    font-size:26px;
    font-weight:700;
    color:#0056c7;
    margin:0;
}
.about-company-contact-border{
    width:2px;
    height:92px;
    background:#0056c7;
}

/* FOUNDER TEXT COLOR */

.about-company-contact-box:last-child h4{
    color:#081b4b;
}

/* MOBILE RESPONSIVE */

@media(max-width:767px){

    .about-company-contact-main{
        gap:25px;
    }

    .about-company-contact-border{
        display:none;
    }

    .about-company-contact-box h4{
        font-size:22px;
    }
}
.about-company-btn:hover{
  background:#001458;
  color:#fff;
}

/* =========================
    RIGHT SIDE
========================= */

.about-company-right{
  padding-left:10px;
}

.about-company-image-box{
  width:100%;
  height:280px;
  border-radius:18px;
  overflow:hidden;
  background:#e9ecef;
  margin-bottom:20px;
}

.about-company-image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.about-company-contact-main{
    display:flex;
    align-items:center;
    gap:45px;
    margin-bottom:35px;
    flex-wrap:wrap;
}
.about-company-counter-box{
  background:#ececec;
  border-radius:16px;
  padding:25px 25px;
  height:100%;
  transition:0.4s;
}

.about-company-counter-box:hover{
  transform:translateY(-5px);
}

.about-company-counter-box h3{
  font-size:42px;
  font-weight:800;
  color:#0056c7;
  margin-bottom:5px;
}

.about-company-counter-box p{
  font-size:22px;
  line-height:1.4;
  color:#081b4b;
  margin:0;
  font-weight:500;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:1200px){

  .about-company-title{
    font-size:46px;
  }

  .about-company-counter-box p{
    font-size:20px;
  }
}

@media(max-width:991px){

  .about-company-section{
    padding:60px 0;
  }

  .about-company-left{
    padding-right:0;
    margin-bottom:40px;
  }

  .about-company-title{
    font-size:40px;
  }

  .about-company-image-box{
    height:240px;
  }

  .about-company-counter-box{
    padding:22px;
  }

  .about-company-counter-box h3{
    font-size:36px;
  }

  .about-company-counter-box p{
    font-size:18px;
  }
}

@media(max-width:767px){

  .about-company-section{
    padding:50px 0;
  }

  .about-company-subtitle{
    font-size:16px;
  }

  .about-company-title{
    font-size:32px;
  }

  .about-company-contact h4{
    font-size:24px;
  }

  .about-company-text{
    font-size:15px;
    line-height:1.7;
  }

  .about-company-list li{
    font-size:16px;
    padding-left:30px;
  }

  .about-company-list li::before{
    font-size:18px;
  }

  .about-company-btn{
    width:190px;
    height:54px;
    font-size:16px;
  }

  .about-company-image-box{
    height:220px;
  }

  .about-company-counter-box{
    padding:18px;
  }

  .about-company-counter-box h3{
    font-size:30px;
  }

  .about-company-counter-box p{
    font-size:16px;
  }
}
/* about page end */
/* top page design start */
/* ========== PREMIUM BANNER - FULLY CORRECTED & ENHANCED ========== */
    .premium-banner {
      position: relative;
      background: linear-gradient(115deg, #0a0c10 0%, #1a1d23 100%);
      padding: 100px 0 90px;
      overflow: hidden;
    }

    /* Premium background image overlay with better blend */
    .premium-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80') center/cover no-repeat;
      opacity: 0.12;
      z-index: 0;
      pointer-events: none;
    }

    /* Radial glow effect for luxury feel */
    .premium-banner::after {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 60%;
      height: 150%;
      background: radial-gradient(circle, rgba(244, 180, 0, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    /* Extra left subtle glow */
    .premium-banner .glow-left {
      position: absolute;
      bottom: -20%;
      left: -15%;
      width: 55%;
      height: 120%;
      background: radial-gradient(circle, rgba(244, 180, 0, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 0;
      pointer-events: none;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .banner-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(244, 180, 0, 0.12);
      backdrop-filter: blur(6px);
      padding: 8px 26px;
      border-radius: 60px;
      color: #f4b400;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 2px;
      margin-bottom: 28px;
      border: 1px solid rgba(244, 180, 0, 0.45);
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    .banner-badge i {
      font-size: 14px;
    }

    .premium-banner h1 {
      font-size: 4rem;
      font-weight: 800;
      color: white;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .premium-banner .highlight {
      background: linear-gradient(120deg, #f4b400, #ffd966);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      display: inline-block;
    }

    .premium-banner p {
      font-size: 1.18rem;
      color: rgba(255, 255, 255, 0.82);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.5;
      font-weight: 400;
      backdrop-filter: blur(2px);
    }

    /* subtle decorative line */
    .banner-divider {
      width: 70px;
      height: 3px;
      background: linear-gradient(90deg, #f4b400, #ffd966);
      margin: 28px auto 0;
      border-radius: 4px;
    }

    /* optional floating elements for premium depth */
    .banner-shape-1 {
      position: absolute;
      bottom: 20px;
      left: 5%;
      width: 120px;
      height: 120px;
      background: rgba(244, 180, 0, 0.03);
      border-radius: 50%;
      filter: blur(40px);
      z-index: 0;
    }
    .banner-shape-2 {
      position: absolute;
      top: 20%;
      right: 2%;
      width: 180px;
      height: 180px;
      background: rgba(244, 180, 0, 0.04);
      border-radius: 50%;
      filter: blur(50px);
      z-index: 0;
    }

    @media (max-width: 768px) {
      .premium-banner {
        padding: 70px 0 60px;
      }
      .premium-banner h1 {
        font-size: 2.2rem;
      }
      .premium-banner p {
        font-size: 1rem;
      }
      .banner-badge {
        padding: 6px 20px;
        font-size: 11px;
        margin-bottom: 20px;
      }
      .banner-divider {
        margin-top: 20px;
        width: 55px;
      }
    }

    @media (max-width: 480px) {
      .premium-banner h1 {
        font-size: 1.8rem;
      }
      .premium-banner {
        padding: 55px 0 50px;
      }
    }
/* top page design end */

/* main content start */
/* ================= SECTION ================= */

.business-about-section{
    width:100%;
    padding:50px 0;
    background:#f5f5f5;
}

.business-about-container{
    width:90%;
    margin:auto;
}

.business-about-row{
    display:flex;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}

/* ================= IMAGE SIDE ================= */

.business-about-image{
    flex:1;
    min-width:320px;
}

.business-about-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:16px;
}

/* ================= CONTENT SIDE ================= */

.business-about-content{
    flex:1;
    min-width:320px;
}

/* TAG */

.business-about-tag{
    display:inline-block;
    padding:10px 18px;
    border:1px solid #d9dff7;
    border-radius:12px;
    font-size:16px;
    color:#3158ff;
    margin-bottom:22px;
    background:#fff;
}

/* TITLE */

.business-about-title{
    font-size:40px;
    font-weight:800;
    line-height:1.15;
    color:#001c54;
    margin-bottom:22px;
}

/* TEXT */

.business-about-text{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:28px;
}

/* ================= TAB BOX ================= */

.business-about-tab-box{
    background:#fff;
    border:1px solid #dde4ff;
    border-radius:16px;
    padding:28px;
}

/* TAB BUTTONS */

.business-about-tabs{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
    border-bottom:1px solid #ddd;
    padding-bottom:14px;
}

.business-about-tab-btn{
    padding:10px 18px;
    border:none;
    background:transparent;
    font-size:16px;
    color:#3158ff;
    border-radius:10px 10px 0 0;
    cursor:pointer;
    transition:0.3s ease;
}

.business-about-tab-btn.active{
    background:#fff;
    border:1px solid #ddd;
    border-bottom:none;
    color:#000;
}

/* TAB CONTENT */

.business-about-tab-content{
    display:none;
    font-size:17px;
    line-height:1.8;
    color:#555;
}

.business-about-tab-content.active-tab{
    display:block;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .business-about-title{
        font-size:44px;
    }

    .business-about-image img{
        height:500px;
    }
}

@media(max-width:991px){

    .business-about-row{
        flex-direction:column;
    }

    .business-about-title{
        font-size:38px;
    }

    .business-about-image img{
        height:420px;
    }
}

@media(max-width:767px){

    .business-about-section{
        padding:40px 0;
    }

    .business-about-title{
        font-size:30px;
    }

    .business-about-text,
    .business-about-tab-content{
        font-size:15px;
    }

    .business-about-image img{
        height:300px;
    }

    .business-about-tabs{
        flex-wrap:wrap;
    }

    .business-about-tab-box{
        padding:22px;
    }
}

/* main content end */