/* @import removed */

/* ==========================================================================
   Global improvements – better UX, accessibility, performance
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

/* Visible focus for keyboard users (accessibility) */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible,
.dropdown-link:focus-visible,
.mega-menu-link:focus-visible,
.mobile-nav-link:focus-visible,
.mobile-menu-toggle:focus-visible,
.hero-nav-prev:focus-visible,
.hero-nav-next:focus-visible,
.brochure-btn-modern:focus-visible,
.about-company-btn:focus-visible,
.a-btn:focus-visible {
  outline: 2px solid #012a40;
  outline-offset: 2px;
}

/* Premium text selection */
::selection {
  background: rgba(1, 42, 64, 0.15);
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Modern Header Styles - Responsive & User-Friendly
   ========================================================================== */

#viterra-header-placeholder {
  min-height: 80px;
}

.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1095;
  transition: all 0.3s ease;
}

.modern-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo Styles */
.header-logo-wrapper {
  flex-shrink: 0;
  z-index: 10;
}

.header-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.header-logo-link:hover {
  transform: scale(1.05);
}

.header-logo-img {
  height: 45px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.modern-header.scrolled .header-logo-img {
  height: 40px;
}

/* Desktop Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
}

.nav-item {
  position: relative;
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 6px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 20px;
  width: 0;
  height: 2px;
  background-color: #012a40;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #012a40;
  background-color: rgba(1, 42, 64, 0.05);
}

.nav-link:hover::after {
  width: calc(100% - 40px);
}

.nav-link-dropdown {
  padding-right: 35px;
}

.dropdown-icon {
  position: absolute;
  right: 15px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-icon,
.nav-item-mega:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 10px 0;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-item {
  margin: 0;
}

.dropdown-link {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-link:hover {
  background-color: rgba(1, 42, 64, 0.05);
  color: #012a40;
  border-left-color: #012a40;
  padding-left: 30px;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 15px;
}

.nav-item-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
  width: 100%;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 5px;
}

.mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-item {
  margin: 0;
}

.mega-menu-link {
  display: block;
  padding: 6px 12px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border-radius: 4px;
  border-left: 3px solid transparent;
}

.mega-menu-link:hover {
  background-color: rgba(1, 42, 64, 0.08);
  color: #012a40;
  border-left-color: #012a40;
  transform: translateX(5px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  z-index: 1001;
}

.mobile-menu-overlay.active .mobile-nav {
  right: 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 100px 0 30px;
}

.mobile-nav-item {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
  display: block;
  padding: 18px 30px;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background-color: rgba(1, 42, 64, 0.05);
  color: #012a40;
  padding-left: 40px;
}

/* Mobile Accordion */
.mobile-nav-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  background: transparent;
  border: none;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.mobile-nav-accordion-btn:hover {
  background-color: rgba(1, 42, 64, 0.05);
  color: #012a40;
}

.accordion-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f8f8f8;
}

.mobile-nav-subitem {
  border-bottom: 1px solid #e8e8e8;
}

.mobile-nav-sublink {
  display: block;
  padding: 15px 30px 15px 50px;
  color: #555;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.mobile-nav-sublink:hover {
  background-color: rgba(1, 42, 64, 0.08);
  color: #012a40;
  padding-left: 60px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }

  .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }

  .mega-menu {
    min-width: 500px;
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    height: 70px;
    padding: 0 20px;
  }

  .header-logo-img {
    height: 38px;
  }

  .header-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .modern-header.scrolled .header-logo-img {
    height: 35px;
  }
}

@media screen and (max-width: 480px) {
  .header-container {
    padding: 0 15px;
    height: 65px;
  }

  .header-logo-img {
    height: 35px;
  }

  .mobile-nav {
    width: 90%;
  }

  .mobile-nav-link,
  .mobile-nav-accordion-btn {
    padding: 16px 20px;
    font-size: 15px;
  }

  .mobile-nav-sublink {
    padding: 12px 20px 12px 40px;
    font-size: 13px;
  }
}

/* Legacy Support - Keep old classes working */
.mega-header {
  display: none;
}

.a-btn {
  position: relative;
  display: inline-block;
  background-color: #012a40;
  text-align: center;
  height: 45px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px 10px;
  border-radius: 24px;
  color: #fff !important;
  font-size: 18px;
  padding-top: 7px;
}

.a-btn i {
  vertical-align: middle;
}

.mega-header .mega {
  background-color: #fff;
  max-width: 100%;
  width: calc(100% - 200px);
  z-index: 10;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 20px;
}

.mega-header .mega ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mega-header .mega ul li {
  margin: 10px 22px;
  display: inline-block;
  position: relative;
}

.mega-header .mega ul li:hover .mega-item {
  display: block;
}

.mega-header .mega ul li .mega-item {
  display: none;
}

.mega-header .mega ul a:not(.a-btn) {
  color: #000;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.mega-header .left-10 {
  -webkit-transform: translateX(-10%);
  transform: translateX(-10%);
}

.mega-header .left-50 {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mega-header .mega-item.max-width {
  min-width: 250px;
}

.mega-header .mega-item {
  position: absolute;
  min-width: 600px;
  text-align: left !important;
  top: 20px;
}

.mega-header .mega-item .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 24px rgba(66, 27, 27, 0.1);
  box-shadow: 0 0 24px rgba(66, 27, 27, 0.1);
  margin-top: 30px;
}

.mega-header .mega-item .row .col-sm-8 {
  max-width: 60%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  position: relative;
  overflow: hidden;
}

.mega-header .mega-item .row .col-sm-4 {
  max-width: 40%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
}

.mega-header .mega-item ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.mega-header .mega-item ul a {
  text-transform: capitalize !important;
}

.mega-header .mega-item .mega-preview {
  position: relative;
}

.mega-header .mega-item .thumb {
  position: relative;
}

.mega-header .mega-item .thumb img {
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  top: 0;
  left: 0;
  height: inherit;
  /*height: -moz-available;
  height: stretch;*/
  opacity: 0;
  max-height: 280px;
}

.mega-header .mega-item .thumb .visible {
  opacity: 1;
}

.contact-social li {
  margin: 10px 20px;
}

.contact-social li i {
  font-size: 30px;
  color: #000;
}

.padding-10 {
  padding: 10px;
}

.custome-banner-in-design {
  position: relative;
  overflow: visible;
}

.custome-banner-in-design .one-pies {
  position: absolute;
  top: -100px;
  max-width: 300px;
  right: 10%;
}

.un-list li {
  padding-left: 0 !important;
  margin-bottom: 15px;
  margin-top: 15px;
}

.un-list li p {
  font-size: 14px;
  font-weight: bold;
}

.un-list li::before {
  display: none;
}

.product-inner-slider .swiper-slide img {
  width: 100%;
  min-height: 500px;
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-inner-slider .swiper-container {
  position: relative;
}

.product-inner-slider img {
  min-height: 380px;
}

.product-inner-slider .btn {
  opacity: 1 !important;
  padding: 10px 0;
  position: absolute !important;
}

.product-inner-slider .btn::after {
  display: none;
}

.product-inner-slider .swiper-button-prev {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.product-inner-slider .swiper-button-next {
  top: 50% !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
  right: 0 !important;
}

.min-logo {
  text-align: center;
}

.min-logo img {
  max-width: 250px;
  display: block;
  margin: 20px auto;
}

.min-logo img:last-child {
  margin-top: 50px;
  max-width: 180px;
}

.design-innovation .img-box img {
  max-width: 80%;
}

.custome-arrow .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.custome-arrow .img-box img {
  max-width: 80%;
}

.rimless-gif {
  position: relative;
}

.rimless-gif .arrow.is-inview img {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  opacity: 1;
}

.rimless-gif .arrow.is-inview .rimless-line {
  right: 30px;
  top: 22%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.rimless-gif .arrow.is-inview .rimaway-line {
  right: 30px;
  top: 40%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.rimless-gif .arrow.is-inview .simphony-line {
  left: 0;
  bottom: 42%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.rimless-gif .arrow.is-inview .outlet-line {
  right: 420px;
  top: 65%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.rimless-gif .arrow.is-inview .bowl-line {
  right: 112px;
  top: 53%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.rimless-gif .arrow.is-inview .trapway-line {
  left: 217px;
  bottom: 45%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.rimless-gif .arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rimless-gif .arrow img {
  position: absolute;
  max-width: 300px;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  opacity: 0;
}

.rimless-gif .arrow .rimless-line {
  right: 30px;
  top: 22%;
  max-width: 120px;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
}

.rimless-gif .arrow .rimaway-line {
  right: 30px;
  top: 40%;
  max-width: 300px;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}

.rimless-gif .arrow .simphony-line {
  left: 0;
  bottom: 42%;
  max-width: 200px;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
}

.rimless-gif .arrow .outlet-line {
  right: 30px;
  top: 44%;
  max-width: 100px;
  -webkit-transform: translateY(300px);
  transform: translateY(300px);
}

.rimless-gif .arrow .bowl-line {
  right: 30px;
  top: 40%;
  max-width: 250px;
  -webkit-transform: translateX(300px);
  transform: translateX(300px);
}

.rimless-gif .arrow .trapway-line {
  left: 0;
  bottom: 42%;
  max-width: 200px;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
}

.tornado-gif {
  position: relative;
}

.tornado-gif .arrow.is-inview img {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  opacity: 1;
}

.tornado-gif .arrow.is-inview .tornado-line {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tornado-gif .arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.tornado-gif .arrow .tornado-line {
  -webkit-transform: translateY(-200px);
  transform: translateY(-200px);
}

.tornado-gif .arrow img {
  position: absolute;
  max-width: 300px;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
}

.hiiden-gif {
  position: relative;
}

.hiiden-gif .arrow.is-inview img {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
}

.hiiden-gif .arrow.is-inview .line-1 {
  opacity: 1;
  top: 40%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.hiiden-gif .arrow.is-inview .line-2 {
  opacity: 1;
  top: 63%;
  left: 30px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.hiiden-gif .arrow.is-inview .line-3 {
  opacity: 1;
  top: 85%;
  left: 30px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.hiiden-gif .arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hiiden-gif .arrow img {
  position: absolute;
  max-width: 200px;
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
  left: 0;
  opacity: 0;
}

.hiiden-gif .arrow .line-1 {
  opacity: 1;
  top: 40%;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
}

.hiiden-gif .arrow .line-2 {
  opacity: 1;
  top: 63%;
  left: 30px;
  -webkit-transform: translateX(-350px);
  transform: translateX(-350px);
}

.hiiden-gif .arrow .line-3 {
  opacity: 1;
  top: 85%;
  left: 30px;
  -webkit-transform: translateX(-500px);
  transform: translateX(-500px);
}

.about-box-content img {
  margin-right: 0;
  display: block;
}

.about-box-content p {
  padding-top: 20px;
  border-top: 3px solid #012a40;
}

.about-box-content-white img {
  margin-right: 0;
  display: block;
}

.about-box-content-white p {
  padding-top: 20px;
  border-top: 3px solid #fff;
}

/*====================================================================================== */
.detailsBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-img {
  width: 10rem;
}

.imgBox {
  height: 25rem;
  width: 25rem;
  overflow: hidden;
}

.fullImg {
  position: relative;
  top: -4rem;
}


.pedestalBox {
  display: flex;
  flex-wrap: wrap;
}

.pedestalBoxItem {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.techImg {
  transform: scale(0.8);
}

img {
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .pedestalBox {
    display: block;
  }

  .techImg {
    transform: scale(1);
  }
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
}

.mega a.icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .mega-header .mega ul {
    display: none !important;
  }

  .mega-header .mega a.icon {
    float: right;
    display: block !important;
  }

  .topnav a {
    padding: 14px 16px;
  }

  .mega-header .mega-item {
    position: relative;
    top: 0px;
  }

  .mega-header .mega-item .row .col-sm-8 {
    display: none;
  }

  .mega-header .mega-item .row {
    -webkit-box-shadow: 0 0 0px rgba(66, 27, 27, 0.1);
    box-shadow: 0 0 0px rgba(66, 27, 27, 0.1);
    padding: 0px;
  }

  .mega-header .mega ul a:not(.a-btn) {
    line-height: 0px;
  }

  .mega-header .left-10 {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .mega-header .left-50 {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  .mega-header .mega ul li {
    margin: 4px 22px;
    width: 100%;
  }

  .mega-header .mega-item {
    min-width: 650px;
  }
}

@media screen and (max-width: 600px) {
  .mega-header .mega.responsive {
    margin-bottom: 30px;
    transform: translateX(0);
    height: auto;
    transition-delay: 0.4s;
    position: fixed;
    z-index: 1000;
    top: 0;
    padding-top: 35px;
    padding-bottom: 35px;
    right: 0;
    padding-right: 40px;
    padding-left: 0;
  }

  .mega-header .mega.responsive .icon {
    right: 0;
  }

  .mega-header .mega.responsive ul {
    float: none;
    display: block !important;
    text-align: left;
  }
}

.display-block {
  display: block;
}

/* Brochure Section - Modern Redesign */
.brochure-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.brochure-bg-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.brochure-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.brochure-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.brochure-header {
  text-align: center;
  margin-bottom: 70px;
}

.brochure-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 25px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.brochure-grid-modern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 100px;
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}

.brochure-card-modern {
  position: relative;
  perspective: 1000px;
  width: 350px;
  max-width: 100%;
  min-height: 0;
  flex-grow: 0;
  flex-shrink: 0;
  margin-bottom: 40px;
}

.brochure-card-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.brochure-card-modern:hover .brochure-card-inner {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.5);
  z-index: 10;
}

.brochure-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.brochure-card-modern:hover .brochure-icon-wrapper {
  transform: scale(1);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

.brochure-icon {
  font-size: 32px;
  color: #fff;
  z-index: 2;
  position: relative;
}

.brochure-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brochure-card-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
  min-height: 40px;
}

.brochure-btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.brochure-btn-modern::before {
  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 ease;
}

.brochure-btn-modern:hover::before {
  left: 100%;
}

.brochure-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.brochure-btn-modern i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.brochure-btn-modern:hover i {
  transform: translateY(0);
}

.brochure-card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(220, 38, 38, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 20px;
}

.brochure-card-modern:hover .brochure-card-hover-effect {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .brochure-grid-modern {
    max-width: 1000px;
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .brochure-section {
    padding: 80px 0;
  }

  .brochure-bg-wrapper {
    background-attachment: scroll;
  }

  .brochure-header {
    margin-bottom: 50px;
  }

  .brochure-subtitle {
    font-size: 16px;
    padding: 0 20px;
  }

  .brochure-grid-modern {
    max-width: 100%;
    gap: 20px;
  }

  /* Make cards slightly smaller on tablet if needed, or let them wrap naturally */
  .brochure-card-modern {
    width: 45%;
    min-width: 280px;
  }

  .brochure-card-inner {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .brochure-section {
    padding: 60px 0;
  }

  .brochure-container {
    padding: 0 15px;
  }

  .brochure-header {
    margin-bottom: 40px;
  }

  .brochure-subtitle {
    font-size: 15px;
    margin-top: 20px;
  }

  .brochure-grid-modern {
    flex-direction: column;
    align-items: center;
  }

  .brochure-card-modern {
    width: 100%;
    max-width: 400px;
  }

  .brochure-card-inner {
    padding: 30px 25px;
    border-radius: 15px;
  }

  .brochure-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .brochure-icon {
    font-size: 28px;
  }

  .brochure-card-title {
    font-size: 20px;
  }

  .brochure-card-desc {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .brochure-btn-modern {
    padding: 12px 25px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .brochure-section {
    padding: 50px 0;
  }

  .brochure-header {
    margin-bottom: 35px;
  }

  .brochure-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .brochure-card-inner {
    padding: 25px 20px;
  }

  .brochure-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .brochure-icon {
    font-size: 24px;
  }

  .brochure-card-title {
    font-size: 18px;
  }

  .brochure-card-desc {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .brochure-btn-modern {
    padding: 11px 22px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
}

/* Legacy support for old class names */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.brochure-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-title {
  display: block;
  color: #1a1a1a;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brochure-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  border: none;
}

.brochure-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  color: #fff;
}

/* Product Showcase Grid */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  border: 1px solid #eee;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.product-img-box {
  padding: 20px;
  height: 300px;
  /* Fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}

.product-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  /* Override width 100% force */
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  border-top: 1px solid #f0f0f0;
  flex-grow: 1;
  /* Pushes content to fill */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.product-line {
  width: 40px;
  height: 2px;
  background: #000;
  margin: 15px auto 0;
  transition: width 0.3s ease;
}

.product-card:hover .product-line {
  width: 80px;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
  .product-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-img-box {
    height: 250px;
  }
}

/* Section Header Redesign */
.section-title-box {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-top: 20px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title-line {
  width: 60px;
  height: 3px;
  background: #000;
  margin: 0 auto;
  border-radius: 2px;
}

@media (max-width: 575px) {
  .section-title {
    font-size: 28px;
  }
}

/* Technology Grid Component */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.tech-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-img-box {
  height: 250px;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.tech-img-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.tech-card:hover .tech-img-box img {
  transform: scale(1.05);
}

.tech-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tech-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.tech-link {
  margin-top: auto;
  /* Push to bottom */
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s;
}

.tech-link i {
  margin-left: 5px;
  transition: margin-left 0.3s;
}

.tech-link:hover {
  color: #555;
  text-decoration: none;
}

.tech-link:hover i {
  margin-left: 10px;
}

/* Tech Grid Responsiveness */
@media (max-width: 991px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-img-box {
    height: 200px;
  }
}

/* ==========================================================================
   Premium Features Section - Ultra Modern & Beautiful Design
   ========================================================================== */

.premium-features-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.premium-features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(1, 42, 64, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(1, 42, 64, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.premium-features-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(1, 42, 64, 0.15),
    transparent
  );
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Features Header - Enhanced */
.features-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.features-main-title {
  font-size: 52px;
  font-weight: 900;
  background: linear-gradient(135deg, #1a1a1a 0%, #012a40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  line-height: 1.2;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.title-accent {
  background: linear-gradient(135deg, #012a40 0%, #004d73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.title-accent::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(
    90deg,
    rgba(1, 42, 64, 0.25),
    rgba(1, 42, 64, 0.1),
    transparent
  );
  z-index: -1;
  border-radius: 5px;
}

.features-subtitle {
  font-size: 19px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.title-decoration {
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, transparent, #012a40, transparent);
  margin: 0 auto;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 2px 10px rgba(1, 42, 64, 0.2);
}

.title-decoration::before,
.title-decoration::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #012a40, #004d73);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(1, 42, 64, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.title-decoration::before {
  left: -25px;
  animation-delay: 0s;
}

.title-decoration::after {
  right: -25px;
  animation-delay: 1s;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.8;
  }
}

/* Modern Features Grid - 4 Columns */
.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
}

/* Feature Card Modern - Ultra Beautiful */
.feature-card-modern {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.feature-card-inner {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 24px;
  padding: 45px 35px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(1, 42, 64, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.feature-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #012a40, transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card-modern:hover .feature-card-inner {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(1, 42, 64, 0.25);
  background: #fff;
}

.feature-card-modern:hover .feature-card-inner::before {
  opacity: 1;
}

/* Icon Wrapper - Enhanced with Glow */
.feature-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 42, 64, 0.12) 0%,
    rgba(1, 42, 64, 0.06) 100%
  );
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: inset 0 2px 10px rgba(1, 42, 64, 0.1),
    0 5px 20px rgba(1, 42, 64, 0.1);
}

.feature-card-modern:hover .feature-icon-bg {
  background: linear-gradient(135deg, #012a40 0%, #004d73 50%, #012a40 100%);
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 20px rgba(1, 42, 64, 0.2);
}

/* Animation removed */

.feature-icon {
  position: relative;
  font-size: 40px;
  color: #012a40;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(1, 42, 64, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.feature-card-modern:hover .feature-icon {
  color: #ffffff;
}

/* Feature Content */
.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-title-modern {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #1a1a1a 0%, #012a40 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.4px;
  transition: all 0.4s ease;
  position: relative;
}

.feature-card-modern:hover .feature-title-modern {
  background: linear-gradient(135deg, #012a40 0%, #004d73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-description {
  font-size: 15px;
  color: #555;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.7;
  min-height: 48px;
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* Feature List Modern */
.feature-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-list-modern li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 8px 12px;
  border-radius: 8px;
  background: transparent;
}

.feature-list-modern li:hover {
  color: #012a40;
  background: rgba(1, 42, 64, 0.05);
}

.feature-list-modern li i {
  color: #012a40;
  font-size: 18px;
  margin-right: 14px;
  margin-top: 1px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 1px 2px rgba(1, 42, 64, 0.2));
}

.feature-card-modern:hover .feature-list-modern li i {
  color: #012a40;
}

.feature-list-modern li span {
  flex: 1;
}

/* Hover Effect - Enhanced */
.feature-hover-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(1, 42, 64, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  border-radius: 50%;
  transform: scale(0);
}

/* Animation removed */

/* Responsive Design */
@media (max-width: 1400px) {
  .features-grid-modern {
    gap: 20px;
  }

  .feature-card-inner {
    padding: 38px 25px;
  }

  .feature-icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .feature-icon {
    font-size: 36px;
  }
}

@media (max-width: 1200px) {
  .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature-card-inner {
    padding: 40px 30px;
  }

  .features-main-title {
    font-size: 46px;
  }

  .feature-icon-wrapper {
    width: 95px;
    height: 95px;
  }

  .feature-icon {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .premium-features-section {
    padding: 80px 0;
  }

  .features-header {
    margin-bottom: 50px;
  }

  .features-main-title {
    font-size: 36px;
  }

  .features-subtitle {
    font-size: 16px;
  }

  .features-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature-card-inner {
    padding: 38px 28px;
  }

  .feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin-bottom: 28px;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-title-modern {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .premium-features-section {
    padding: 60px 0;
  }

  .features-container {
    padding: 0 20px;
  }

  .features-header {
    margin-bottom: 40px;
  }

  .features-main-title {
    font-size: 32px;
  }

  .features-subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-card-inner {
    padding: 30px 25px;
  }

  .feature-title-modern {
    font-size: 20px;
  }

  .feature-description {
    font-size: 13px;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .premium-features-section {
    padding: 50px 0;
  }

  .features-main-title {
    font-size: 28px;
  }

  .features-subtitle {
    font-size: 14px;
  }

  .feature-card-inner {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-icon {
    font-size: 28px;
  }

  .feature-title-modern {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .feature-description {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .feature-list-modern li {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .feature-list-modern li i {
    font-size: 14px;
    margin-right: 10px;
  }
}

/* Scroll Animation - Enhanced */
.features-grid-modern .feature-card-modern {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: fadeInUpScale 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.features-grid-modern .feature-card-modern:nth-child(1) {
  animation-delay: 0.1s;
}
.features-grid-modern .feature-card-modern:nth-child(2) {
  animation-delay: 0.2s;
}
.features-grid-modern .feature-card-modern:nth-child(3) {
  animation-delay: 0.3s;
}
.features-grid-modern .feature-card-modern:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUpScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Legacy Support - Keep old classes working */
.feature-grid {
  display: none;
}

/* ==========================================================================
   HERO SECTION REDESIGN
   ========================================================================== */

.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-section .swiper-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.hero-section .swiper-wrapper {
  height: 100%;
  width: 100%;
}

.hero-slide {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  z-index: 1;
  transition: transform 10s ease;
  /* Smooth zoom effect */
  min-height: 100%;
  min-width: 100%;
  display: block;
  visibility: visible;
  opacity: 1;
}

/* Ensure background images are always loaded and visible */
.hero-bg[style*="background-image"] {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.js-parallax-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.js-parallax-slide-bg .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.swiper-slide-active .hero-bg {
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  /* Align left for a modern look */
  align-items: center;
  height: 100%;
}

.hero-text-box {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  padding: 0;
  max-width: 900px;
  box-shadow: none;
  transform: translateY(30px);
  opacity: 0;
  margin-left: 5%;
}

.hero-title {
  color: #ffffff;
  font-size: 3.5rem;
  /* Large and bold */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  /* font-family: 'Playfair Display', serif;  -- Removed to use inherited font or standard */
}

.hero-subtitle {
  color: #fff;
  font-size: 2.5rem; /* Increased size as it seems to be the main text now */
  font-weight: 700; /* Made bolder */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 0;
  display: block;
  border-left: none;
  padding-left: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); /* Added text shadow for readability since bg is gone */
}

.hero-desc {
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 35px;
  background: #ffffff;
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.hero-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover i {
  transform: translateX(5px);
}

/* Custom Navigation */
.hero-nav-prev,
.hero-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
  background: #fff;
  color: #000;
}

.hero-nav-prev {
  left: 30px;
}

.hero-nav-next {
  right: 30px;
}

/* Pagination */
.hero-pagination {
  position: absolute;
  bottom: 40px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  width: auto !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 5px !important;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* Scroll Down Button */
.scroll-down-btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  cursor: pointer;
}

.scroll-arrow {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations for Active Slide */
.swiper-slide-active .hero-text-box {
  animation: fadeInUp 1s ease-out forwards 0.5s;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
  }

  .hero-slide {
    height: 100%;
    min-height: 600px;
    max-height: 800px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .hero-text-box {
    margin-left: 0;
    max-width: 100%;
    margin: 0 20px;
    padding: 0 15px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-nav-prev,
  .hero-nav-next {
    display: none;
  }

  /* Hide arrows on tablets/mobile */
}

@media (max-width: 768px) {
  .hero-section {
    height: 100vh;
    min-height: 500px;
    max-height: 700px;
  }

  .hero-slide {
    height: 100%;
    min-height: 500px;
    max-height: 700px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.4;
    word-wrap: break-word;
  }

  .hero-text-box {
    padding: 20px 15px;
    text-align: center;
    margin: 0 15px;
  }

  .hero-content {
    justify-content: center;
    padding: 0 10px;
  }

  .hero-subtitle {
    border-left: none;
    border-bottom: 2px solid #fff;
    padding-left: 0;
    padding-bottom: 10px;
    display: inline-block;
    max-width: 100%;
  }

  .hero-bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    min-height: 100% !important;
    min-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .js-parallax-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 100vh;
    min-height: 450px;
    max-height: 600px;
  }

  .hero-slide {
    height: 100%;
    min-height: 450px;
    max-height: 600px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
    padding: 0 10px 10px 10px;
  }

  .hero-text-box {
    padding: 15px 10px;
    text-align: center;
    margin: 0 10px;
  }

  .hero-content {
    padding: 0 5px;
    align-items: center;
  }

  .hero-bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100% !important;
    min-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .js-parallax-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.05) 100%
    );
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 100vh;
    min-height: 400px;
    max-height: 550px;
  }

  .hero-slide {
    height: 100%;
    min-height: 400px;
    max-height: 550px;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding: 0 8px 8px 8px;
  }

  .hero-text-box {
    padding: 10px 8px;
    text-align: center;
    margin: 0 8px;
  }

  .hero-content {
    padding: 0;
  }
}

/* Fix for mobile browsers with address bar */
@media (max-width: 768px) and (orientation: portrait) {
  .hero-section {
    height: 100vh;
    height: -webkit-fill-available;
  }

  .hero-slide {
    height: 100vh;
    height: -webkit-fill-available;
  }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
  .hero-section .swiper-container {
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .js-parallax-slide-bg {
    will-change: transform;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
  }

  .js-parallax-slide-bg .hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100% !important;
    min-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
  }

  .hero-bg {
    will-change: transform;
    transform-origin: center center;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100% !important;
    min-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* Disable parallax on mobile for better performance but keep image visible */
  .hero-bg[data-scroll] {
    transform: translate3d(0, 0, 0) !important;
  }

  .swiper-slide-active .hero-bg {
    transform: scale(1.05) translate3d(0, 0, 0) !important;
  }

  /* Ensure all slides show images */
  .swiper-slide .hero-bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
}

@media (max-width: 480px) {
  /* Further optimize for small screens */
  .js-parallax-slide-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
  }

  .js-parallax-slide-bg .hero-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100% !important;
    min-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1 !important;
  }

  .hero-bg {
    background-attachment: scroll;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100% !important;
    min-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .swiper-slide-active .hero-bg {
    transform: scale(1) translate3d(0, 0, 0) !important;
  }

  /* Ensure all slides show images */
  .swiper-slide .hero-bg {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
  }
}

.mins-logo img {
  margin-top: 50px;
  max-width: 180px;
}

/* Separator Section with Background Image */
.section-separator {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 80px 0;
  background-image: url("includes/assets/images/separator-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.separator-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.separator-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.separator-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0.9;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-separator {
    min-height: 500px;
    padding: 60px 0;
    background-attachment: scroll;
  }

  .separator-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .separator-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* Mission and Vision Styles */
.mission-vision-container {
  margin-top: 80px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-vision-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mission-vision-icon {
  font-size: 56px;
  color: #fff;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.mission-vision-card:hover .mission-vision-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.2);
}

.mission-vision-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mission-vision-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  text-align: left;
  margin: 0;
}

@media (max-width: 968px) {
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-vision-container {
    margin-top: 60px;
  }

  .mission-vision-card {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .section-separator {
    min-height: auto;
    padding: 60px 0;
  }

  .mission-vision-container {
    margin-top: 50px;
  }

  .mission-vision-card {
    padding: 25px;
  }

  .mission-vision-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    padding: 15px;
  }

  .mission-vision-title {
    font-size: 24px;
  }

  .mission-vision-text {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Modern About Company Section - Redesigned */
.about-company-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
  overflow: hidden;
}

.about-company-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(220, 38, 38, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(26, 26, 26, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-company-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-company-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-company-header {
  position: relative;
}

.about-company-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 30px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  animation: fadeInUp 0.6s ease-out;
}

.about-company-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.about-company-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 2px;
}

/* Unified Section Title Style - Applied to All Sections */
.unified-section-header {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.unified-section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(220, 38, 38, 0.25);
  animation: fadeInUp 0.6s ease-out;
}

.unified-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0 auto;
  position: relative;
  display: inline-block;
  animation: fadeInUp 0.8s ease-out;
  letter-spacing: -0.5px;
}

.unified-section-title::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #dc2626 50%,
    transparent 100%
  );
  border-radius: 2px;
}

/* Left alignment variant for About section */
.unified-section-header.left {
  text-align: left;
}

.unified-section-header.left .unified-section-title {
  margin-left: 0;
  padding-left: 20px;
}

.unified-section-header.left .unified-section-title::after {
  left: 20px;
  transform: none;
  width: 60px;
  background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
}

.unified-section-header.left .unified-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .unified-section-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .unified-section-header {
    margin-bottom: 50px;
  }

  .unified-section-title {
    font-size: 32px;
  }

  .unified-section-title::after {
    width: 60px;
    height: 3px;
    bottom: -15px;
  }

  .unified-section-header.left .unified-section-title {
    padding-left: 15px;
  }

  .unified-section-header.left .unified-section-title::before {
    width: 3px;
  }

  .unified-section-header.left .unified-section-title::after {
    left: 15px;
    width: 50px;
  }

  .unified-section-badge {
    font-size: 10px;
    padding: 5px 15px;
    margin-bottom: 18px;
  }
}

@media (max-width: 480px) {
  .unified-section-header {
    margin-bottom: 40px;
  }

  .unified-section-title {
    font-size: 28px;
  }

  .unified-section-title::after {
    width: 50px;
    height: 3px;
    bottom: -12px;
  }

  .unified-section-header.left .unified-section-title {
    padding-left: 12px;
  }

  .unified-section-header.left .unified-section-title::after {
    left: 12px;
    width: 40px;
  }

  .unified-section-badge {
    font-size: 9px;
    padding: 4px 12px;
    margin-bottom: 15px;
  }
}

/* Brochure Section Specific Styles */
.brochure-section .unified-section-title {
  color: #fff !important;
}

.brochure-section .unified-section-title::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    #dc2626 50%,
    transparent 100%
  );
}

.brochure-section .unified-section-badge {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  box-shadow: 0 3px 12px rgba(220, 38, 38, 0.4);
}

.about-company-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.highlight-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  flex-shrink: 0;
}

.highlight-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.about-company-content {
  position: relative;
}

.about-company-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s ease-out;
}

.about-company-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-company-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.about-company-text:last-of-type {
  margin-bottom: 35px;
}

.about-company-cta {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.about-company-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
}

.about-company-btn::before {
  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 ease;
}

.about-company-btn:hover::before {
  left: 100%;
}

.about-company-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.about-company-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.about-company-btn:hover i {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-company-wrapper {
    gap: 50px;
  }

  .about-company-title {
    font-size: 40px;
  }

  .about-company-card {
    padding: 40px;
  }
}

@media (max-width: 968px) {
  .about-company-section {
    padding: 80px 0;
  }

  .about-company-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-company-title {
    font-size: 36px;
    padding-left: 15px;
  }

  .about-company-title::before {
    width: 3px;
  }

  .about-company-highlights {
    margin-top: 30px;
  }

  .highlight-item {
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .about-company-section {
    padding: 60px 0;
  }

  .about-company-container {
    padding: 0 15px;
  }

  .about-company-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .about-company-card {
    padding: 30px 25px;
    border-radius: 15px;
  }

  .about-company-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .about-company-highlights {
    flex-direction: column;
    gap: 15px;
  }

  .highlight-item {
    min-width: 100%;
    padding: 12px 18px;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .about-company-btn {
    padding: 14px 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-company-section {
    padding: 50px 0;
  }

  .about-company-title {
    font-size: 28px;
    padding-left: 12px;
  }

  .about-company-badge {
    font-size: 11px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .about-company-card {
    padding: 25px 20px;
  }

  .about-company-text {
    font-size: 14px;
  }

  .highlight-item {
    padding: 10px 15px;
  }

  .highlight-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .highlight-text {
    font-size: 13px;
  }
}

/* ==========================================================================
   Responsive About Section
   ========================================================================== */
.bg-cover-responsive {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

@media screen and (max-width: 991px) {
  .about-content-responsive {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
    text-align: center !important;
  }

  /* Override the flex-justify-end */
  .mobile-justify-center {
    justify-content: center !important;
  }

  /* Adjust padding */
  .mobile-padding-adjust {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  
  /* Also adjust the outer container padding if needed */
  .bg-cover-responsive.padding-top-bottom-100 {
      padding-top: 60px !important;
      padding-bottom: 60px !important;
  }

  .mobile-text-center {
    text-align: center !important;
  }
  
  /* Ensure the white box content doesn't have weird margins/padding */
  .about-box-content-white {
      padding: 0 20px !important;
  }
  
  /* If four-columns width is problematic, override it */
  .four-columns.about-content-responsive {
      width: 100% !important;
      flex: 0 0 100% !important;
  }
  
  /* Button centering */
  .about-content-responsive .border-btn {
      margin-left: auto;
      margin-right: auto;
      display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .bg-cover-responsive.padding-top-bottom-100 {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
  }
  
  .mobile-padding-adjust {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

/* ==========================================================================
   Footer Section Redesign - Ultra Compact (5-Column)
   ========================================================================== */
.footer-section {
    padding: 30px 0 10px !important; /* Reduced top/bottom padding */
    background-color: #0f0f0f;
    color: #e0e0e0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.9fr 0.9fr 1.2fr 1fr;
    gap: 25px; /* Tighter gap */
    margin-bottom: 20px; /* Reduced margin */
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 24px; /* Smaller logo */
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px; /* Reduced margin */
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-desc {
    color: #999;
    font-size: 13px; /* Smaller font */
    line-height: 1.4;
    margin-bottom: 15px; /* Reduced margin */
    max-width: 95%;
}

.footer-heading {
    font-size: 15px; /* Smaller heading */
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px; /* Reduced margin */
    padding-bottom: 6px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 2px;
    background: #e31e24;
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 6px; /* Tighter list items */
}

.footer-link {
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-link::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 9px;
    margin-right: 6px;
    color: #555;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-link:hover::before {
    color: #e31e24;
}

.footer-address {
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
    font-style: normal;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: #aaa;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 8px; /* Reduced margin */
    transition: all 0.2s ease;
}

.footer-contact-item i {
    width: 20px;
    color: #e31e24;
    font-size: 13px;
    display: flex;
    justify-content: center;
    margin-right: 8px;
}

.footer-contact-item:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px; /* Reduced padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    color: #666;
    font-size: 12px;
    margin: 0;
}

.scroll-top-btn {
    width: 30px; /* Smaller button */
    height: 30px;
    border-radius: 4px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.scroll-top-btn:hover {
    background: #e31e24;
    border-color: #e31e24;
    transform: translateY(-2px);
}

/* Social Icons - Compact */
.footer-social-updated {
    display: flex;
    gap: 10px;
}

.social-circle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-size: 16px;
}

.social-circle-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.social-circle-btn.facebook-btn:hover { background-color: #1877f2; border-color: #1877f2; }
.social-circle-btn.instagram-btn:hover { background: linear-gradient(45deg, #f09433, #bc1888); border-color: transparent; }


/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr); /* Wrap Contact to next line or combine? */
    }
    /* Hide specific breakdown if needed OR grid-auto-flow */
}

@media (max-width: 991px) {
    .footer-section { padding: 40px 0 20px !important; }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 Columns Layout */
        row-gap: 40px;
    }
    
    /* Make the brand col span full width on tablet vertical? No, 3 cols is fine */
    .footer-col:first-child {
        grid-column: span 3; /* Brand takes full width top */
        text-align: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-col:first-child .footer-desc {
        text-align: center;
        max-width: 600px;
    }
    .footer-social-updated { justify-content: center; }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cols */
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-section { padding: 30px 0 20px !important; }

    .footer-grid {
        grid-template-columns: 1fr; /* 1 col */
        gap: 30px; 
    }
    
    .footer-col:first-child { grid-column: span 1; }
    
    .footer-col {
        text-align: center;
        align-items: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-address {
        padding: 0 20px;
    }
}

/* Hero Section Height Adjustment */
.hero-section,
.hero-slide {
    height: 130vh;
    min-height: 1000px;
}

.swiper-container.js-home-slider {
    height: 100%;
}

.hero-bg {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .hero-section,
    .hero-slide {
        height: 110vh;
        min-height: 750px;
    }
}

/* =========================================
   MODERN LUXURY THEME OVERRIDES
   ========================================= */

:root {
  --color-primary: #012a40;
  --color-secondary: #c5a059; /* Elegant Gold */
  --color-text-dark: #1a1a1a;
  --color-text-light: #666666;
  --color-bg-light: #fcfcfc;
  --color-bg-dark: #0b0f19;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6,
.unified-section-title,
.hero-subtitle,
.product-title,
.brochure-card-title,
.feature-title-modern,
.mission-vision-title,
.tech-title {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* Elegant Section Headers */
.unified-section-title {
  font-size: 3rem;
  font-weight: 500; /* Playfair looks good at 400/500 */
  color: var(--color-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.unified-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 15px auto 0;
}

/* Enhanced Product Cards */
.product-card {
  background: #fff;
  border-radius: 4px; /* Minimal radius */
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-img-box {
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

.product-img-box img {
  transition: transform 0.6s ease;
}

.product-card:hover .product-img-box img {
  transform: scale(1.05);
}

.product-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 15px;
}

.product-line {
  background-color: var(--color-secondary) !important;
  height: 2px;
  width: 40px;
  margin: 10px auto 0;
  transition: width 0.3s ease;
}

.product-card:hover .product-line {
  width: 60px;
}

/* Tech/Feature Cards (Why Choose Us) */
.tech-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border-radius: 4px;
  transition: all 0.4s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: rgba(197, 160, 89, 0.3); /* Gold hint on hover */
}

.tech-title {
  color: var(--color-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* Luxury Buttons */
.btn-luxury,
.about-company-btn,
.brochure-btn-modern {
  font-family: var(--font-body);
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: 14px 35px;
  border-radius: 0; /* Boxy looks more premium */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--color-primary);
  box-shadow: none !important;
}

.btn-luxury:hover,
.about-company-btn:hover,
.brochure-btn-modern:hover {
  background: #fff !important;
  color: var(--color-primary) !important;
  border-color: var(--color-primary);
}

/* Mission & Vision Cards */
.mission-vision-card {
  background: #161515;
  padding: 40px;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mission-vision-icon i {
  color: var(--color-secondary);
}

/* Hero Text Enhancement */
.hero-subtitle {
  font-size: 4rem; 
  font-style: italic; 
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .unified-section-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 2.5rem;
  }
}





/* =========================================
   DESIGN REFINEMENT: Spacing & Typography
   ========================================= */

/* 1. Spacing: Generous white space for premium feel */
.brochure-section,
.about-company-section {
    padding: 100px 0;
}

/* Responsive adjustment for mobile to keep it breathable but not excessive */
@media (max-width: 768px) {
    .brochure-section,
    .about-company-section {
        padding: 60px 0;
    }
}

/* 2. Typography: Strict enforcement */
/* Body Text - Outfit */
body, 
p, 
a, 
li, 
span, 
.about-company-text, 
.brochure-subtitle, 
.brochure-card-desc, 
.tech-desc, 
.mission-vision-text, 
.seo-text, 
.gallery-subtitle {
    font-family: 'Outfit', sans-serif;
}

/* Headings - Playfair Display */
h1, h2, h3, h4, h5, h6,
.unified-section-title,
.hero-subtitle,
.product-title,
.brochure-card-title,
.feature-title-modern,
.mission-vision-title,
.tech-title, 
.gallery-title, 
.gallery-name, 
.gallery-category {
    font-family: 'Playfair Display', serif;
}

/* ==========================================================================
   SEO Brand Overview Styles
   ========================================================================== */

.seo-brand-overview {
    padding: 100px 0;
    text-align: center;
}

.seo-brand-overview.white-bg {
    background-color: #ffffff;
}

.seo-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.seo-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.seo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    color: #444; 
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 300;
}

.seo-text strong {
    color: #012a40;
    font-weight: 600;
}

@media (max-width: 768px) {
    .seo-brand-overview {
        padding: 60px 0;
    }

    .seo-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .seo-text {
        font-size: 15px;
    }
}
