/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.6
Tested up to: 7.0
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned 
/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */

/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
b,
strong,
div,
span ul,
li body {
  font-family: "Funnel Sans", sans-serif !important;
}

a {
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*======================================
 Header
======================================*/

.header-area {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  /* Must stay below Bootstrap's offcanvas (1045),
     modal-backdrop (1050) and modal (1055). */
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid #e9edf2;
}

.navbar {
  min-height: 105px;
  padding: 0;
}

.container {
  max-width: 92% !important;
}

/*======================================
 Logo
======================================*/

.navbar-brand {
  padding: 0;
  margin-right: 80px;
}

.navbar-brand img {
  height: 90px;
  width: auto;
}

/*======================================
 Menu
======================================*/

.navbar-nav {
  gap: 5px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #081d3b !important;
  padding: 14px 22px !important;
  transition: 0.35s;
  border-radius: 50px;
}

.nav-link:hover {
  color: #0e738d !important;
}

.nav-item.active .nav-link,
.nav-link.active {
  border: 1px dashed #53c6d6;
  color: #08254f !important;
  border-radius: 50px;
}

/*======================================
 Dropdown
======================================*/

.dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: 2px;
  font-size: 13px;
}

.dropdown-menu {
  border: none;
  border-radius: 12px;
  padding: 10px;
  margin-top: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
  padding: 10px 18px;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
}

.dropdown-item:hover {
  color: #ffc100;
  background: linear-gradient(90deg, #4ba4a5, #2d2e66) !important;
}
ul.dropdown-menu a {
  color: #fff;
}
/*======================================
 Right Side Button
======================================*/

.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 165px;
  height: 52px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 60px;
  background: linear-gradient(90deg, #4ba4a5, #2d2e66);
  transition: 0.4s;
  /* Reset UA styles so <button> matches <a>. */
  border: none;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
}

.theme-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

/*======================================
 Circle Button
======================================*/
.navbar-expand-xl .navbar-nav .dropdown-menu {
  position: absolute;
  top: 22px !important;
  background: linear-gradient(90deg, #4ba4a5, #2d2e66) !important;
}
ul.dropdown-menu li {
  border-bottom: 1px solid #fff;
}
.circle-btn {
  width: 52px;
  height: 52px;
  background: #2d2e66;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -12px;
  transition: 0.4s;
  /* Reset UA styles so <button> matches <a>. */
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}

.circle-btn:hover {
  color: #fff;
  background: #12b4c8;
  transform: rotate(45deg);
}

.circle-btn i {
  font-size: 18px;
}

/*======================================
 Navbar Toggler
======================================*/

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler i {
  font-size: 28px;
  color: #2d2e66;
}

/*======================================
 Offcanvas
======================================*/

.offcanvas {
  width: 300px;
}

.offcanvas-header {
  padding: 25px;
}

.offcanvas-body {
  padding: 25px;
}

.offcanvas .nav-link {
  padding: 14px 0 !important;
  border-radius: 0;
}

.offcanvas .theme-btn {
  width: 100%;
  font-size: 18px;
  height: 50px;
}

/*======================================
 Hover Animation
======================================*/

.nav-link,
.theme-btn,
.circle-btn,
.dropdown-item {
  transition: all 0.35s ease;
}

/* Sticky Header Effect */
.header-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  animation: slideDown 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.hero-slider {
  position: relative;
}

.carousel-item {
  height: 100vh;
}

.hero-bg {
  position: relative;
  width: 100%;
  height: 100vh;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.18);
}

.hero-bg .container {
  position: relative;
  z-index: 2;
}

/*==================================
CONTENT BOX
==================================*/

.hero-content {
  width: 100%;
  max-width: 760px;
  padding: 30px;
  border-radius: 40px;
  background: linear-gradient(
    135deg,
    rgba(78, 177, 176, 0.95),
    rgba(49, 61, 113, 0.96)
  );
  color: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

/*==================================
SUBTITLE
==================================*/

.hero-subtitle {
  display: inline-block;

  color: #d8ffff;

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 15px;

  letter-spacing: 0.5px;
}

/*==================================
HEADING
==================================*/

.hero-content h1 {
  font-size: 45px;
  line-height: 1.1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 25px;
}

.hero-content h1 span {
  display: block;

  color: #bff8f4;

  font-style: italic;

  font-weight: 700;
}

/*==================================
PARAGRAPH
==================================*/

.hero-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #edf4f5;
  margin-bottom: 40px;
}

/*==================================
BOTTOM AREA
==================================*/

.hero-bottom {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 25px;
}

/*==================================
BUTTON
==================================*/

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 310px;
  height: 72px;
  background: #fff;
  color: #182238;
  font-size: 14px;
  font-weight: 600;
  border-radius: 80px;
  overflow: hidden;
  padding-left: 35px;
  transition: 0.35s;
}

.hero-btn span {
  width: 72px;

  height: 72px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: linear-gradient(135deg, #53b7b7, #314171);

  color: #fff;

  font-size: 24px;

  transition: 0.35s;
}

.hero-btn:hover {
  color: #111;

  transform: translateY(-4px);
}

.hero-btn:hover span {
  transform: rotate(45deg);
}

/*==================================
CALL BOX
==================================*/

.call-box {
  display: flex;

  align-items: center;

  gap: 18px;
}

.call-box .icon {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(255, 255, 255, 0.15);

  color: #fff;

  font-size: 22px;
}

.call-box small {
  display: block;

  font-size: 18px;

  color: #dbe9ef;

  margin-bottom: 3px;
}

.call-box h5 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/*==================================
RIGHT VERTICAL INDICATORS
==================================*/

.custom-indicators {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.custom-indicators button {
  width: 16px;
  height: 16px;

  border: none;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  transition: 0.35s;

  padding: 0;
}

.custom-indicators button.active {
  width: 18px;
  height: 18px;

  background: #d7ff6b;

  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.15);
}

/*==================================
CAROUSEL ANIMATION
==================================*/

.carousel-item.active .hero-content {
  animation: fadeLeft 0.9s ease;
}

.carousel-item.active h1 {
  animation: fadeUp 0.8s ease;
}

.carousel-item.active p {
  animation: fadeUp 1s ease;
}

.carousel-item.active .hero-bottom {
  animation: fadeUp 1.2s ease;
}

/*==================================
KEYFRAMES
==================================*/

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==================================
SLIDE TRANSITION
==================================*/

.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/*==================================
HOVER EFFECTS
==================================*/

.hero-content {
  transition: 0.4s;
}

.hero-content:hover {
  transform: translateY(-8px);
}

.call-box .icon {
  transition: 0.35s;
}

.call-box:hover .icon {
  background: #ffffff;

  color: #2d4478;
}

.hero-btn {
  transition: 0.35s;
}

.hero-btn:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}
.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 24px;

  background: linear-gradient(90deg, #53b6b5, #16374f);

  color: #fff;

  font-size: 15px;
  font-weight: 600;

  border-radius: 50px;

  margin-bottom: 20px;

  position: relative;
}

.section-tag::before {
  content: "";

  width: 8px;
  height: 8px;

  background: #f2d400;

  border-radius: 50%;

  position: absolute;

  left: 10px;
}

.section-title {
  font-size: 35px;
  font-weight: 800;
  color: #081d3d;
  margin-bottom: 0;
  line-height: 1.2;
}

.section-title span {
  color: #0a6d79;

  font-style: italic;

  text-decoration: underline;
}

/*=====================================
      SERVICE CARD
======================================*/

.service-card {
  position: relative;

  transition: 0.35s;
}

.service-image {
  overflow: hidden;

  border-radius: 20px;
}

.service-image img {
  height: 280px;

  object-fit: cover;

  transition: 0.6s;
}

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

/*=====================================
     CONTENT BOX
======================================*/

.service-content {
  position: relative;

  margin: -35px 18px 0;

  background: #fff;

  border-radius: 18px;

  padding: 16px 20px 16px 110px;

  min-height: 120px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  transition: 0.35s;
}

.service-card:hover .service-content {
  transform: translateY(-8px);
}

/*=====================================
      ICON
======================================*/

.service-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #56b8b8, #1c334c);
  color: #fff;
  font-size: 34px;
  transition: 0.35s;
}

.service-card:hover .service-icon {
  transform: translateY(-50%) rotate(10deg);
}

/*=====================================
      TEXT
======================================*/

.service-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0b1638;
  margin-bottom: 10px;
  transition: 0.3s;
}

.service-text p {
  font-size: 14px;
  color: #5d6b7b;
  line-height: 1.7;
  margin-bottom: 0;
}

.service-card:hover h4 {
  color: #0b7883;
}
/*=========================================
        COUNTER SECTION
=========================================*/

.counter-section {
  padding: 0px 0 70px 0 !important;
  background: #fff;
}

.counter-box {
  position: relative;
  background: #f7f9fc;
  border: 1px solid #e8edf4;
  border-radius: 22px;
  padding: 55px 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.35s ease;
}

/* Background Circular Pattern */

.counter-box::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(10, 109, 121, 0.06) 0px,
    rgba(10, 109, 121, 0.06) 10px,
    transparent 10px,
    transparent 28px
  );
  z-index: 0;
}

.counter-box > * {
  position: relative;
  z-index: 2;
}

/* Hover */

.counter-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  border-color: #53b6b5;
}

/* Counter Number */

.counter-box h2 {
  font-size: 45px;
  font-weight: 800;
  color: #081d3d;
  margin-bottom: 10px;
  line-height: 1;
}

.counter-box p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #4d6073;
}

/*=========================================
        SERVICE HOVER EFFECTS
=========================================*/

.service-card {
  overflow: visible;
}

.service-card:hover {
  transform: translateY(-10px);
}

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

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #0b6c78, #0f203f);
}

.service-card:hover .service-content {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.service-card:hover .service-text h4 {
  color: #0b6c78;
}

/*=========================================
        IMAGE OVERLAY
=========================================*/

.service-image {
  position: relative;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), transparent 50%);
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

/*======================================
REVEAL ANIMATION
======================================*/

.service-card,
.counter-box {
  opacity: 0;

  transform: translateY(50px);

  transition: all 0.7s ease;
}

.service-card.active,
.counter-box.active {
  opacity: 1;

  transform: translateY(0);
}
.about-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #171f27, #1d2d2c);
}

/* Left Background Circles */

.about-section::before {
  content: "";
  position: absolute;
  left: -280px;
  top: -120px;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0,
    rgba(255, 255, 255, 0.1) 18px,
    transparent 18px,
    transparent 90px
  );
  opacity: 0.25;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

/*=====================================
        IMAGE AREA
======================================*/

.about-image-wrapper {
  position: relative;
  min-height: 760px;
}

/* Main Image */

.main-image {
  width: 500px;
  height: 640px;
  border-radius: 260px;
  overflow: hidden;
  border: 5px solid #6fd6dc;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.main-image:hover img {
  transform: scale(1.08);
}

/* Small Image */

.small-image {
  position: absolute;
  left: -40px;
  bottom: 10px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #6fd6dc;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=====================================
        EXPERIENCE
======================================*/

.experience-text {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-align: center;
}

.experience-text span {
  font-size: 25px;
  font-weight: 800;
  color: #c8f248;
}

.experience-text p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.12);
  margin: 0;
}

/*=====================================
        CONTENT
======================================*/

.about-content {
  color: #fff;
}

.about-content h2 {
  font-size: 35px;
  line-height: 1.15;
  font-weight: 800;
  margin: 22px 0;
}

.about-content h2 span {
  color: #42d3d6;
  font-style: italic;
  text-decoration: underline;
}

.about-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #edf6f8;
  margin-bottom: 40px;
}
/*=====================================
        MISSION CARD
======================================*/

.mission-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 35px;
  color: #1d2342;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -120px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    rgba(0, 0, 0, 0.03) 0,
    rgba(0, 0, 0, 0.03) 15px,
    transparent 15px,
    transparent 35px
  );
}

.mission-card > * {
  position: relative;
  z-index: 2;
}

.mission-icon {
  width: 85px;
  height: 85px;
  min-width: 85px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #65d3d4, #4ba9b4);
  color: #0b203d;
  font-size: 34px;
}

.mission-text h4 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mission-text p {
  margin: 0;
  font-size: 14px;
  color: #4b566b;
  line-height: 1.8;
}
.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-list li i {
  width: 24px;
  height: 24px;

  border-radius: 50%;

  background: #fff;

  color: #0b6d79;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;

  flex-shrink: 0;
}

/*=====================================
        BUTTON
======================================*/

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
  width: 230px;
  height: 60px;
  padding: 0 0 0 30px;
  background: #fff;
  color: #0c1b3d;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.35s;
}

.about-btn span {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #55c6c6, #20345f);

  color: #fff;

  transition: 0.35s;
}

.about-btn:hover {
  color: #0c1b3c;

  transform: translateY(-5px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.about-btn:hover span {
  transform: rotate(45deg);
}

/*=====================================
      DECORATIVE SHAPES
======================================*/

.about-section::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 120px;

  top: -35px;
  right: -60px;

  border-radius: 0 0 0 60px;

  background: linear-gradient(120deg, #00bcd4, #9acd32);

  transform: rotate(8deg);

  opacity: 0.9;
}

/* Floating Dot */

.about-content::after {
  content: "";

  position: absolute;

  right: -70px;
  top: 170px;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: linear-gradient(135deg, #ffe600, #00c8d7);

  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

/*=====================================
        HOVER EFFECTS
======================================*/

.main-image,
.small-image {
  transition: 0.4s;
}

.about-image-wrapper:hover .main-image {
  transform: translateY(-10px);
}

.about-image-wrapper:hover .small-image {
  transform: translateY(10px);
}

.mission-card {
  transition: 0.35s;
}

.mission-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.18);
}

.mission-card:hover .mission-icon {
  transform: rotate(12deg);
}

.mission-icon {
  transition: 0.35s;
}
/*=====================================
      REVEAL ANIMATION
======================================*/

.about-content,
.main-image,
.small-image,
.mission-card,
.about-list li,
.about-btn {
  opacity: 0;

  transform: translateY(60px);

  transition: all 0.8s ease;
}

.about-content.show,
.main-image.show,
.small-image.show,
.mission-card.show,
.about-list li.show,
.about-btn.show {
  opacity: 1;

  transform: translateY(0);
}

/* Stagger Animation */

.about-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.about-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.about-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.about-list li:nth-child(4) {
  transition-delay: 0.4s;
}

/* Smooth Transitions */

.main-image,
.small-image,
.mission-card,
.about-btn span,
.about-image-wrapper {
  transition: all 0.35s ease;
}
.why-choose {
  padding: 70px 0 !important;
  background: #fff;
  position: relative;
  overflow: hidden;
}
section.services-section.py-5 {
  padding: 70px 0 !important;
}
/*==============================
        SECTION BADGE
==============================*/

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 26px;

  background: linear-gradient(90deg, #59c5c0, #18344c);

  color: #fff;

  border-radius: 50px;

  font-size: 18px;

  font-weight: 600;

  position: relative;
}

.section-badge::before {
  content: "";

  position: absolute;

  left: 12px;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ffd500;
}

/*==============================
        HEADING
==============================*/

.section-heading {
  font-size: 35px;
  font-weight: 800;
  color: #0a1638;
  line-height: 1.2;
  margin-top: 18px;
}

.section-heading span {
  color: #0b6b78;

  font-style: italic;

  text-decoration: underline;
}

/*==============================
        FEATURE CARD
==============================*/

.why-box {
  text-align: left;

  transition: 0.35s;
}

.why-box:hover {
  transform: translateY(-12px);
}

/*==============================
        ICON
==============================*/

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #045d63;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 48px;
  margin-bottom: 28px;
  transition: 0.35s;
}

.why-box:hover .why-icon {
  background: linear-gradient(135deg, #58c5c1, #17364f);

  transform: rotate(8deg);
}

/*==============================
        TITLE
==============================*/

.why-box h4 {
  font-size: 25px;
  font-weight: 700;
  color: #121d3d;
  margin-bottom: 16px;
  transition: 0.3s;
}
.why-box:hover h4 {
  color: #0a6c77;
}

/*==============================
        DESCRIPTION
==============================*/

.why-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #5d677d;
  margin-bottom: 0;
}

.why-box {
  padding: 15px;
  border-radius: 18px;

  transition: all 0.4s ease;
}

.why-box:hover {
  background: #fff;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.why-box:hover .why-icon {
  transform: translateY(-8px) rotate(8deg);

  box-shadow: 0 20px 35px rgba(5, 93, 99, 0.22);
}

.why-box:hover p {
  color: #3e4f69;
}

/*=========================================
        ICON ANIMATION
=========================================*/

.why-icon i {
  transition: 0.4s;
  font-size: 30px;
}

.why-box:hover .why-icon i {
  transform: scale(1.12);
}

/*=========================================
        REVEAL ANIMATION
=========================================*/

.why-box {
  opacity: 0;

  transform: translateY(60px);

  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    box-shadow 0.35s ease;
}

.why-box.active {
  opacity: 1;

  transform: translateY(0);
}

/* Delay Animation */

.why-box:nth-child(1) {
  transition-delay: 0.1s;
}

.why-box:nth-child(2) {
  transition-delay: 0.2s;
}

.why-box:nth-child(3) {
  transition-delay: 0.3s;
}

.why-box:nth-child(4) {
  transition-delay: 0.4s;
}
/*=========================================
        ACTIVE ANIMATION
=========================================*/

.why-box {
  opacity: 0;
  transform: translateY(60px);
}

.why-box.active {
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.why-icon {
  transition: all 0.35s ease;
}

.why-box,
.why-icon,
.why-box h4,
.why-box p {
  transition: all 0.35s ease;
}

/*=========================================
        PROCESS SECTION
=========================================*/

.process-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0 0;
  background: #f7fbff;
  font-family: "Outfit", sans-serif;
}

/*=========================================
        DNA BACKGROUND
=========================================*/

.process-section::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 330px;
  height: 430px;

  background: url("./images/works-img.png") no-repeat left top;

  background-size: contain;

  z-index: 1;
}

/*=========================================
        BLUR BACKGROUND
=========================================*/

.process-bg {
  position: absolute;

  inset: 0;

  overflow: hidden;

  z-index: 0;
}

.process-bg::before {
  content: "";

  position: absolute;

  width: 600px;
  height: 600px;

  right: -180px;
  top: -40px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(76, 204, 186, 0.28),
    rgba(76, 204, 186, 0.15),
    transparent 70%
  );

  filter: blur(70px);
}

.process-bg::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: 35%;
  bottom: -180px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(108, 215, 194, 0.28),
    transparent 70%
  );

  filter: blur(70px);
}

.process-section .container {
  position: relative;
  z-index: 2;
  padding: 0 0 50px 0;
}

/*=========================================
        SECTION TAG
=========================================*/

.section-tag {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 10px 25px;

  border-radius: 50px;

  color: #fff;

  background: linear-gradient(90deg, #57bfb8, #17384f);

  font-size: 15px;

  font-weight: 600;

  margin-bottom: 18px;
}

/*=========================================
        HEADING
=========================================*/

.section-title {
  font-size: 35px;
  font-weight: 800;
  color: #0a1638;
  margin-bottom: 18px;
}

.section-title span {
  color: #3e9f98;
}

.section-text {
  font-size: 16px;
  color: #667085;
  max-width: 650px;
  margin: auto;
}
.process-card.text-center.active {
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
}
/*=========================================
        PROCESS CARD
=========================================*/

.process-card {
  text-align: center;
  transition: 0.35s;
  padding: 50px 15px;
}

.process-card:hover {
  transform: translateY(-10px);
}

/*=========================================
        ICON
=========================================*/

.process-icon {
  width: 95px;

  height: 95px;

  margin: auto;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);

  margin-bottom: 28px;

  position: relative;
}

.process-icon::before {
  content: "";

  position: absolute;

  inset: -8px;

  border-radius: 50%;

  border: 2px dashed rgba(86, 189, 183, 0.3);
}

.process-icon i {
  font-size: 29px;
  color: #5a8f99;
}

/*=========================================
        STEP BADGE
=========================================*/
.step-badge {
  display: inline-block;
  background: #fff;
  padding: 10px 28px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

/*=========================================
        CONTENT
=========================================*/

.process-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #101b40;
  margin-bottom: 15px;
}

.process-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5b657b;
  margin: 0;
}

/*=========================================
        MARQUEE SECTION
=========================================*/

.process-marquee {
    position: relative;
    width: 105%;
    margin-left: -2.5%;
    overflow: hidden;
    background: #1d2628;
    padding: 18px 0;
    transform: rotate(
0deg);
    z-index: 5;
}
.process-marquee.green {
    background: #98e0aa;
    color: #111;
    transform: rotate(
0deg);
    margin-top: -5px;
}
.marquee-track {
  display: flex;

  align-items: center;

  white-space: nowrap;

  animation: marquee 28s linear infinite;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  margin-right: 70px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.process-marquee.green span {
  color: #111;
}

/*=========================================
        ANIMATION
=========================================*/

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/*=========================================
        PROCESS CARD
=========================================*/

.process-card {
  border-radius: 20px;

  transition: 0.35s;
}

.process-card:hover {
  background: #fff;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.process-card:hover .process-icon {
  transform: translateY(-10px) rotate(10deg);

  background: linear-gradient(135deg, #57c4be, #1d3650);
}

.process-card:hover .process-icon i {
  color: #fff;
}

.process-icon {
  transition: 0.35s;
}

.process-icon i {
  transition: 0.35s;
}

/*=========================================
        REVEAL
=========================================*/

.process-card {
  opacity: 0;

  transform: translateY(60px);
}

.process-card.active {
  opacity: 1;

  transform: translateY(0);

  transition: 0.7s;
}
/*=====================================
        REVEAL EFFECT
======================================*/

.process-card {
  opacity: 0;

  transform: translateY(60px);

  transition:
    transform 0.7s ease,
    opacity 0.7s ease,
    box-shadow 0.35s ease;
}

.process-card.active {
  opacity: 1;

  transform: translateY(0);
}

.process-icon,
.step-badge,
.process-card {
  transition: all 0.35s ease;
}

/* Optional hover glow */

.process-card:hover {
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
}
/*=========================================
        VIDEO SECTION
=========================================*/

.video-section {
  padding: 75px 0 100px 0 !important;
  background: #fff;
  overflow: hidden;
  position: relative;
  font-family: "Outfit", sans-serif;
}

/*=========================================
        SECTION BADGE
=========================================*/

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 24px;

  background: linear-gradient(90deg, #5cc7c1, #17354e);

  color: #fff;

  border-radius: 50px;

  font-size: 15px;

  font-weight: 600;

  position: relative;
}

.section-badge::before {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #ffd400;

  position: absolute;

  left: 12px;
}

/*=========================================
        HEADING
=========================================*/

.section-title {
  font-size: 35px;
  font-weight: 800;
  color: #111c3a;
  line-height: 1.2;
}

.section-title span {
  color: #4d9d98;
}

.section-desc {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #667085;
}

/*=========================================
        VIDEO CARD
=========================================*/

.video-card {
  background: #fff;

  border-radius: 26px;

  border: 1px solid #e9edf3;

  overflow: hidden;

  transition: 0.4s;

  cursor: pointer;

  height: 100%;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.video-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/*=========================================
        THUMBNAIL
=========================================*/

.video-thumb {
  position: relative;

  overflow: hidden;

  margin: 18px;

  border-radius: 20px;
}

.video-thumb img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.5s;
}

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

/*=========================================
        PLAY BUTTON
=========================================*/

.play-btn {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 84px;

  height: 60px;

  border-radius: 18px;

  background: #ff0000;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 30px;

  transition: 0.35s;

  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.3);
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

/*=========================================
        CONTENT
=========================================*/

.video-content {
  padding: 5px 22px 28px;

  text-align: center;
}

.video-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111c3a;
  margin-bottom: 14px;
}

.video-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #667085;
  margin-bottom: 0;
}

/*=========================================
        MODAL
=========================================*/

/* Scoped to the video modal only.
   As a global rule this made every other modal
   (e.g. #exampleModal) render invisible. */
#videoModal .modal-content {
  background: transparent;
  border: none;
}

#youtubeFrame {
  width: 100%;

  height: 100%;

  border: none;
}

.btn-close {
  z-index: 100;

  opacity: 1;
}
.business-section {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #4fa79f, #152529);
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  font-family: "Outfit", sans-serif;
}

/* Background Circle */

.business-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  left: -120px;
  top: -80px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

/*=========================================
        FLOATING TITLE
=========================================*/

.segment-title {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%);

  width: 450px;
  background: #fff;

  border-radius: 0 0 90px 90px;

  text-align: center;

  padding: 30px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);

  z-index: 10;
}

.segment-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #10233d;
  margin-bottom: 5px;
}

.segment-title p {
  color: #7c8798;
  font-size: 18px;
  margin: 0;
}

/*=========================================
        LEFT CARD
=========================================*/

.main-segment-card {
  background: #fff;

  border-radius: 32px;

  padding: 26px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);

  text-align: center;

  height: 100%;

  transition: 0.4s;
}

.main-segment-card:hover {
  transform: translateY(-8px);
}

.segment-image {
  overflow: hidden;

  border-radius: 24px;

  margin-bottom: 25px;
}

.segment-image img {
  width: 100%;

  height: 290px;

  object-fit: cover;

  transition: 0.5s;
}

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

/* Badge */

.segment-badge {
  display: inline-block;

  padding: 12px 28px;

  background: #ffe25a;

  border-radius: 40px;

  font-weight: 600;

  margin-bottom: 25px;
}

/* Heading */

.main-segment-card h3 {
  font-size: 35px;
  font-weight: 700;
  color: #10233d;
  margin-bottom: 20px;
}

.main-segment-card p {
  color: #5d6878;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}

/*=========================================
        BUTTONS
=========================================*/

.explore-btn,
.view-all-btn {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  background: linear-gradient(90deg, #52c7be, #4c95a2);

  color: #000;

  font-weight: 600;

  border-radius: 50px;

  padding: 15px 28px;

  transition: 0.35s;
}

.explore-btn span,
.view-all-btn span {
  width: 30px;
  height: 30px;

  background: #000;

  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
}

.explore-btn:hover,
.view-all-btn:hover {
  transform: translateY(-3px);
  color: #000;
}
.products-section {
  background: #fff;
}

.section-title {
  font-size: 35px;
  font-weight: 700;
  color: #08234d;
}

.view-btn {
  border: 1px solid #ddd;
  padding: 14px 30px;
  border-radius: 50px;
  color: #111;
  text-decoration: none;
  transition: 0.4s;
  font-weight: 600;
}

.view-btn:hover {
  background: #5c959c;
  color: #fff;
  border-color: #619fa2;
}
.view-btn i {
  margin-left: 8px;
  transition: 0.4s;
}

.view-btn:hover i {
  transform: translateX(6px);
}

.product-card {
  border: 1px solid #e7e7e7;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: 0.45s;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.product-image img {

  transition: 0.5s;
}

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

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 25px;
  font-weight: 700;
  color: #0d2245;
  margin-bottom: 5px;
}

.product-content p {
  color: #666;

  font-size: 18px;

  margin-bottom: 28px;
}

.read-btn {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 10px;

  background: #f3f5f8;

  border-radius: 50px;

  padding: 14px;

  color: #111;

  text-decoration: none;

  font-weight: 600;

  transition: 0.4s;
}
.manufacturing-section {
  position: relative;
  overflow: hidden;

  padding: 100px 0;

  background: linear-gradient(90deg, #1d7268, #063f39);

  color: #fff;
}

/* Background Circle */

.shape-circle {
  position: absolute;

  width: 380px;
  height: 380px;

  background: rgba(0, 255, 220, 0.1);

  border-radius: 50%;

  left: 120px;
  top: 150px;
}

/* Diagonal Strip */

.shape-line {
  position: absolute;

  width: 180px;
  height: 900px;

  background: #19d3c4;

  opacity: 0.65;

  left: 260px;

  top: -180px;

  transform: rotate(24deg);
}

.medicine-image {
  position: relative;
  z-index: 2;
  text-align: center;

  animation: float 5s ease-in-out infinite;
}

.medicine-image img {
  max-width: 79%;
  transition: 0.5s;
}
.medicine-image:hover img {
  transform: scale(1.05);
}
.testimonial-section {
  padding: 90px 0;
}

.subtitle {
  display: inline-block;
  padding: 10px 28px;
  background: #f5ebe1;
  color: #1b5f49;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
}

.faq-section {
  position: relative;
  background-attachment: fixed !important;
  padding: 70px 0;
  background: url(./images/bottlesbackgriund.png) center center/cover no-repeat;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.25);
}

.container {
  position: relative;
  z-index: 2;
}

.faq-title {
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 35px;
}

.custom-accordion .accordion-item {
  border: none;

  margin-bottom: 18px;

  border-radius: 18px;

  overflow: hidden;
}
.blog-section {
  padding: 30px 0 70px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #0b5d4d;

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 15px;
}

.sub-title i {
  font-size: 18px;
}

.section-heading h2 {
  font-size: 37px;
  font-weight: 700;
  color: #16203b;
}

.blog-card {
  transition: 0.45s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;

  overflow: hidden;

  border-radius: 30px;
}

.blog-image img {
  width: 100%;

  height: 260px;

  object-fit: cover;

  transition: 0.6s;
}

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

.date-box {
  position: absolute;

  top: 25px;

  right: 25px;

  width: 90px;

  text-align: center;

  background: #fff;

  border-radius: 14px;

  overflow: hidden;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.date-box h3 {
  margin: 0;
  padding: 14px 0;
  color: #14213d;
  font-size: 25px;
  font-weight: 700;
}

.date-box span {
  display: block;
  background: #0b6d60;
  color: #fff;
  padding: 10px;
  font-size: 18px;
}

.blog-content {
  padding-top: 20px;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
}
.footer-section {
  background: #101821;

  position: relative;

  overflow: hidden;

  color: #fff;

  padding: 90px 0 40px;
}

/* DNA */

.dna-left,
.dna-right {
  position: absolute;

  z-index: 0;
}

.dna-left {
  bottom: -50px;
  left: -80px;

  opacity: 0.15;
}

.dna-right {
  right: -40px;
  top: -40px;

  opacity: 0.9;
}

.dna-left img,
.dna-right img {
  width: 260px;
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

.footer-text {
  color: #d9d9d9;
  font-size: 16px;
  max-width: 430px;
}

.footer-logo {
  font-size: 80px;

  font-weight: 800;

  margin: 35px 0;

  background: linear-gradient(90deg, #18c2b6, #2563eb);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
}

.social-icons {
  display: flex;

  gap: 15px;
}

.social-icons a {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: #27303d;

  display: flex;

  justify-content: center;

  align-items: center;

  color: #fff;

  transition: 0.4s;
}

.social-icons a:hover {
  background: linear-gradient(45deg, #18c2b6, #2563eb);

  transform: translateY(-5px);
}

.footer-box {
  padding: 35px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.02);

  backdrop-filter: blur(10px);
}

.footer-box ul {
  padding: 0;

  list-style: none;
}

.footer-box li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 14px;
}

.footer-box span {
  width: 50px;

  height: 50px;

  border-radius: 50%;


  display: flex;

  justify-content: center;

  align-items: center;
}

.newsletter {
  position: relative;

  margin: 30px 0;
}

.newsletter input {
  width: 100%;

  border: none;

  outline: none;

  background: #222b36;

  color: #fff;

  border-radius: 50px;

  padding: 20px 75px 20px 25px;
}

.newsletter button {
  position: absolute;

  right: 8px;
  top: 8px;

  width: 55px;

  height: 55px;

  border: none;

  border-radius: 50%;

  color: #fff;

  background: linear-gradient(45deg, #18c2b6, #2563eb);
}

.footer-menu {
  display: flex;

  gap: 25px;

  flex-wrap: wrap;

  margin: 60px 0 30px;
}

.footer-menu a {
  color: #fff;

  text-decoration: none;
}

.footer-menu a:hover {
  color: #18c2b6;
}

.footer-bottom {
  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: 30px;
}

.footer-bottom a {
  color: #fff;

  margin-left: 25px;

  text-decoration: none;
}

.footer-bottom a:hover {
  color: #18c2b6;
}

#scrollTop {
  position: absolute;

  left: 50%;

  bottom: 80px;

  transform: translateX(-50%);

  width: 60px;

  height: 60px;

  border: none;

  border-radius: 50%;

  background: linear-gradient(45deg, #18c2b6, #2563eb);

  color: #fff;

  font-size: 22px;

  transition: 0.4s;
}

#scrollTop:hover {
  transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 991px) {
  .footer-logo {
    font-size: 55px;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 20px;

    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer-logo {
    font-size: 42px;
  }

  .footer-box {
    padding: 25px;
  }

  .footer-box h4 {
    font-size: 26px;
  }

  .footer-menu {
    justify-content: center;
  }
}
.blog-content a {
  color: #071d49;

  text-decoration: none;

  transition: 0.4s;
}

.blog-content a:hover {
  color: #0b6d60;
}

@media (max-width: 991px) {
  .section-heading h2 {
    font-size: 46px;
  }

  .blog-image img {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .sub-title {
    font-size: 18px;
  }

  .blog-content h4 {
    font-size: 22px;
  }

  .date-box {
    width: 75px;
  }

  .date-box h3 {
    font-size: 30px;
  }

  .date-box span {
    font-size: 18px;
  }
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #4ba4a5, #2d2e66);
  color: #fff;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, #4ba4a5, #2d2e66);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.custom-accordion .accordion-body {
  background: linear-gradient(90deg, #4ba4a5, #2d2e66);
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  padding: 0 28px 28px;
  border-top: 1px solid;
}

.accordion-button::after {
  display: none;
}

.accordion-button::before {
  content: "+";
  width: 42px;
  height: 42px;
  background: #fff;
  color: #004f47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

.accordion-button:hover {
  background: linear-gradient(90deg, #4ba4a5, #2d2e66);
  color: #fff;
  gap: 14px;
}
@media (max-width: 992px) {
  .faq-title {
    font-size: 42px;

    text-align: center;
  }

  .custom-accordion .accordion-button {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 70px 0;

    border-radius: 40px;
  }

  .faq-title {
    font-size: 32px;
  }

  .custom-accordion .accordion-button {
    font-size: 18px;

    padding: 20px;
  }

  .custom-accordion .accordion-body {
    font-size: 16px;
  }
}
.section-title {
  font-size: 35px;
  font-weight: 700;
  margin-top: 20px;
  color: #1d243b;
}

.section-title span {
  color: #2e6f56;

  font-style: italic;
}

.testimonial-card {
  border: 1px solid #dde4ec;

  border-radius: 18px;

  overflow: hidden;

  transition: 0.4s;

  background: #fff;
}

.testimonial-card:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.video-box {
  position: relative;

  overflow: hidden;

  border-radius: 15px;

  margin: 20px;
}

.video-box img {
  width: 100%;

  transition: 0.5s;
}

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

.play-btn {
  position: absolute;

  left: 50%;

  top: 50%;

  transform: translate(-50%, -50%);

  width: 82px;

  height: 58px;

  background: #ff0000;

  border-radius: 16px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 28px;

  text-decoration: none;

  transition: 0.4s;

  animation: pulse 2s infinite;
}

.play-btn:hover {
  background: #e00000;

  color: #fff;

  transform: translate(-50%, -50%) scale(1.12);
}

.card-body {
  padding: 0 25px 30px;
}

.card-body h3 {
  font-size: 22px;

  font-weight: 700;

  color: #1c2238;
}

.card-body p {
  color: #59657d;

  font-size: 18px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 34px;
  }

  .subtitle {
    font-size: 16px;
  }
}
.manufacturing-section h2 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
}

.manufacturing-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #f2f2f2;
  margin-bottom: 25px;
}
.card-body p {
  color: #59657d;
  font-size: 14px;
}
/* Floating Animation */

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Responsive */

@media (max-width: 991px) {
  .manufacturing-section {
    padding: 70px 0;
  }

  .manufacturing-section h2 {
    font-size: 42px;
  }

  .manufacturing-section p {
    font-size: 18px;
  }

  .shape-circle {
    width: 250px;
    height: 250px;
    left: 30px;
  }

  .shape-line {
    left: 120px;
  }
}

@media (max-width: 767px) {
  .manufacturing-section {
    text-align: center;
  }

  .manufacturing-section h2 {
    font-size: 32px;
  }

  .manufacturing-section p {
    font-size: 16px;
  }

  .shape-circle,
  .shape-line {
    display: none;
  }
}
.read-btn:hover {
  background: linear-gradient(90deg, #4ba4a5, #2d2e66);
  color: #fff;
}
.read-btn i {
  transition: 0.4s;
}

.read-btn:hover i {
  transform: rotate(-15deg) scale(1.2);
}

@media (max-width: 991px) {
  .section-title {
    font-size: 34px;
  }

  .product-content h3 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .view-btn {
    padding: 12px 20px;

    font-size: 14px;
  }

  .section-title {
    font-size: 28px;
  }

}
/*=========================================
        CATEGORY CARD
=========================================*/

.category-card {
  background: #fff;

  border-radius: 24px;

  padding: 18px;

  display: flex;

  align-items: center;

  gap: 18px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);

  transition: 0.35s;

  height: 100%;
}

.category-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.16);
}

.category-card img {
  width: 140px;

  height: 100px;

  object-fit: cover;

  border-radius: 16px;

  flex-shrink: 0;
}

.category-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #10233d;
  margin-bottom: 10px;
}

.category-card p {
  font-size: 17px;

  color: #667085;

  line-height: 1.7;

  margin-bottom: 12px;
}

.category-card a {
  color: #10233d;

  text-decoration: none;

  font-weight: 700;

  transition: 0.3s;
}

.category-card:hover a {
  color: #0e9188;
}
/* Reveal Animation */

.card-item {
  opacity: 0;

  transform: translateY(40px);

  transition: 0.7s;
}

.card-item.show-card {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1200px) {
  .segment-title {
    width: 380px;
  }

  .segment-title h2 {
    font-size: 32px;
  }

  .main-segment-card h3 {
    font-size: 32px;
  }

  .category-card h4 {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .business-section {
    padding-top: 180px;
  }

  .segment-title {
    width: 90%;
  }

  .main-segment-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .segment-title {
    position: relative;

    top: auto;

    left: auto;

    transform: none;

    width: 100%;

    border-radius: 30px;

    margin-bottom: 40px;
  }

  .segment-title h2 {
    font-size: 28px;
  }

  .segment-title p {
    font-size: 16px;
  }

  .main-segment-card h3 {
    font-size: 28px;
  }

  .category-card {
    flex-direction: column;

    text-align: center;
  }

  .category-card img {
    width: 100%;

    height: 220px;
  }

  .category-card h4 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .business-section {
    border-radius: 0;
  }

  .segment-image img {
    height: 220px;
  }

  .main-segment-card {
    padding: 20px;
  }

  .main-segment-card h3 {
    font-size: 24px;
  }

  .main-segment-card p {
    font-size: 15px;
  }

  .category-card {
    padding: 15px;
  }

  .category-card img {
    height: 180px;
  }

  .category-card h4 {
    font-size: 20px;
  }

  .category-card p {
    font-size: 15px;
  }

  .explore-btn,
  .view-all-btn {
    width: 100%;

    justify-content: center;
  }
}
/*=========================================
        RESPONSIVE
=========================================*/

@media (max-width: 1200px) {
  .section-title {
    font-size: 48px;
  }

  .video-thumb img {
    height: 230px;
  }
}

@media (max-width: 992px) {
  .video-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 40px;
  }

  .video-content h4 {
    font-size: 22px;
  }

  .video-content p {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .video-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-desc {
    font-size: 16px;
  }

  .video-thumb img {
    height: 220px;
  }

  .play-btn {
    width: 70px;

    height: 50px;

    font-size: 24px;
  }

  .video-content {
    padding: 0 18px 22px;
  }

  .video-content h4 {
    font-size: 20px;
  }

  .video-content p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .video-thumb {
    margin: 14px;
  }

  .video-thumb img {
    height: 200px;
  }

  .play-btn {
    width: 62px;

    height: 45px;

    font-size: 20px;
  }

  .video-content h4 {
    font-size: 18px;
  }

  .video-content p {
    font-size: 14px;
  }
}
/*=========================================
        LAPTOP
=========================================*/

@media (max-width: 1200px) {
  .section-title {
    font-size: 48px;
  }

  .process-card h4 {
    font-size: 30px;
  }

  .process-card p {
    font-size: 18px;
  }

  .marquee-track span {
    font-size: 28px;
  }
}

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

@media (max-width: 992px) {
  .process-section {
    padding: 80px 0 0;
  }

  .process-section::before {
    width: 220px;

    height: 300px;
  }

  .section-title {
    font-size: 40px;
  }

  .process-card {
    padding: 20px;
  }

  .process-card h4 {
    font-size: 28px;
  }

  .process-card p {
    font-size: 17px;
  }

  .marquee-track span {
    font-size: 24px;

    margin-right: 45px;
  }
}

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

@media (max-width: 768px) {
  .process-section {
    padding: 70px 0 0;
  }

  .process-section::before {
    opacity: 0.25;

    width: 170px;

    height: 240px;
  }

  .section-title {
    font-size: 32px;

    line-height: 1.35;
  }

  .section-text {
    font-size: 16px;
  }

  .process-icon {
    width: 75px;

    height: 75px;
  }

  .process-icon i {
    font-size: 28px;
  }

  .step-badge {
    padding: 8px 20px;

    font-size: 15px;
  }

  .process-card h4 {
    font-size: 24px;
  }

  .process-card p {
    font-size: 15px;
  }

  .marquee-track span {
    font-size: 20px;

    margin-right: 30px;
  }

  .process-marquee {
    padding: 12px 0;
  }
}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .process-card {
    padding: 15px;
  }

  .process-icon {
    width: 65px;

    height: 65px;
  }

  .process-icon i {
    font-size: 24px;
  }

  .marquee-track span {
    font-size: 17px;

    margin-right: 25px;
  }
}

/*=========================================
        LARGE DESKTOP
=========================================*/

@media (max-width: 1400px) {
  .section-heading {
    font-size: 56px;
  }

  .why-box h4 {
    font-size: 34px;
  }

  .why-box p {
    font-size: 20px;
  }
}

/*=========================================
        LAPTOP
=========================================*/

@media (max-width: 1199px) {
  .why-choose {
    padding: 80px 0;
  }

  .section-heading {
    font-size: 48px;
  }

  .why-icon {
    width: 90px;
    height: 90px;

    font-size: 40px;
  }

  .why-box h4 {
    font-size: 30px;
  }

  .why-box p {
    font-size: 18px;
  }
}

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

@media (max-width: 991px) {
  .section-heading {
    font-size: 40px;
  }

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

  .why-icon {
    margin: auto auto 25px;
  }

  .why-box h4 {
    font-size: 28px;
  }

  .why-box p {
    font-size: 17px;
  }
}

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

@media (max-width: 767px) {
  .why-choose {
    padding: 70px 0;
  }

  .section-heading {
    font-size: 32px;

    line-height: 1.35;
  }

  .section-heading span {
    display: block;
  }

  .section-badge {
    font-size: 15px;

    padding: 8px 20px;
  }

  .why-icon {
    width: 78px;
    height: 78px;

    font-size: 34px;
  }

  .why-box h4 {
    font-size: 24px;
  }

  .why-box p {
    font-size: 16px;

    line-height: 1.7;
  }
}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 575px) {
  .section-heading {
    font-size: 28px;
  }

  .why-box {
    padding: 10px;
  }

  .why-icon {
    width: 70px;
    height: 70px;

    font-size: 30px;
  }

  .why-box h4 {
    font-size: 22px;
  }

  .why-box p {
    font-size: 15px;
  }
}

/*=====================================
      LARGE DESKTOP
======================================*/

@media (max-width: 1400px) {
  .main-image {
    width: 460px;
    height: 610px;
  }

  .about-content h2 {
    font-size: 50px;
  }
}

/*=====================================
         LAPTOP
======================================*/

@media (max-width: 1199px) {
  .about-section {
    padding: 80px 0;
  }

  .main-image {
    width: 390px;
    height: 540px;
  }

  .small-image {
    width: 220px;
    height: 220px;

    left: -10px;
  }

  .experience-text {
    right: -70px;
  }

  .experience-text span {
    font-size: 56px;
  }

  .about-content h2 {
    font-size: 42px;
  }

  .about-desc {
    font-size: 18px;
  }

  .mission-text h4 {
    font-size: 30px;
  }

  .mission-text p {
    font-size: 17px;
  }
}

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

@media (max-width: 991px) {
  .about-image-wrapper {
    min-height: auto;
    text-align: center;
  }

  .main-image {
    width: 100%;
    max-width: 450px;

    height: 560px;

    margin: auto;
  }

  .small-image {
    position: absolute;

    left: 20px;
    bottom: -20px;

    width: 200px;
    height: 200px;
  }

  .experience-text {
    display: none;
  }

  .about-content {
    margin-top: 80px;
  }

  .about-content h2 {
    font-size: 38px;
  }

  .about-desc {
    font-size: 17px;
  }

  .mission-card {
    padding: 22px;
  }

  .about-content::after {
    display: none;
  }
}

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

@media (max-width: 991px) {
  .section-title {
    font-size: 40px;
  }

  .service-image img {
    height: 240px;
  }

  .service-content {
    padding: 18px 20px 18px 95px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }

  .service-text h4 {
    font-size: 28px;
  }

  .service-text p {
    font-size: 17px;
  }

  .counter-box {
    padding: 45px 20px;
  }

  .counter-box h2 {
    font-size: 50px;
  }

  .counter-box p {
    font-size: 18px;
  }
}

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

@media (max-width: 767px) {
  .services-section {
    padding: 60px 0;
  }

  .counter-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 30px;
    line-height: 1.35;
  }

  .section-tag {
    font-size: 14px;
    padding: 8px 18px;
  }

  .service-image img {
    height: 220px;
  }

  .service-content {
    margin: -30px 12px 0;
    padding: 16px 16px 16px 85px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    left: 15px;
  }

  .service-text h4 {
    font-size: 24px;
  }

  .service-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .counter-box {
    padding: 35px 20px;
  }

  .counter-box h2 {
    font-size: 42px;
  }

  .counter-box p {
    font-size: 17px;
  }
}

/*=========================================
        SMALL MOBILE
=========================================*/

@media (max-width: 575px) {
  .section-title {
    font-size: 26px;
  }

  .section-title span {
    display: block;
  }

  .service-image img {
    height: 200px;
  }

  .service-content {
    min-height: auto;
    padding: 15px 15px 15px 78px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .service-text h4 {
    font-size: 22px;
  }

  .service-text p {
    font-size: 14px;
  }

  .counter-box h2 {
    font-size: 36px;
  }

  .counter-box p {
    font-size: 16px;
  }
}
/*==================================
TABLET
==================================*/

@media (max-width: 1199px) {
  .hero-content {
    max-width: 650px;

    padding: 50px;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-btn {
    width: 260px;
    height: 64px;
    font-size: 20px;
  }

  .hero-btn span {
    width: 64px;
    height: 64px;
  }

  .call-box h5 {
    font-size: 22px;
  }
}

/*==================================
991px
==================================*/

@media (max-width: 991px) {
  .hero-bg {
    padding: 100px 0;

    height: auto;
  }

  .carousel-item {
    height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 40px;
    border-radius: 25px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .custom-indicators {
    right: 20px;
  }
}

/*==================================
767px
==================================*/

@media (max-width: 767px) {
  .hero-content {
    padding: 30px 25px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    width: 100%;
    font-size: 18px;
    height: 58px;
    padding-left: 25px;
  }

  .hero-btn span {
    width: 58px;
    height: 58px;
  }

  .call-box {
    margin-top: 10px;
  }

  .call-box h5 {
    font-size: 18px;
  }

  .call-box small {
    font-size: 14px;
  }
  .pageheader {
    padding: 20px 0 0 0 !important;
  }
  ul.dropdown-menu a {
    color: #000000 !important;
  }
  section.pageheader h1 {
    display: unset !important;
    font-size: 30px;
  }
  .breadcrumb_new {
    display: unset !important;
    float: left !important;
    height: 45px !important;
  }
  span.breadcrumb_new {
    margin: 15px 0 0 0 !important;
  }
  span.breadcrumb_new a {
    color: #fff !important;
  }
  .custom-indicators {
    display: none;
  }
}

/*==================================
576px
==================================*/

@media (max-width: 576px) {
  .hero-content {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content h1 span {
    display: inline;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero-btn {
    height: 55px;
  }

  .hero-btn span {
    width: 55px;
    height: 55px;
  }

  .call-box {
    gap: 12px;
  }

  .call-box .icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
}

.pageheader {
  background: rgb(229, 255, 247);
  background: linear-gradient(90deg, rgb(52 104 107) 0%, rgb(0 0 0) 100%);
  margin-bottom: 26px;
  padding: 10px 0 0 0 !important;
}
.breadcrumb_new {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  font-weight: bold;
  color: #fff;
}
span.breadcrumb_new a {
  color: #fff;
}
p {
  font-size: 16px !important;
  line-height: 30px !important;
}
.bshades {
  font-size: 30px;
  width: 100%;
  float: left;
  text-align: center;
  font-weight: 300;
  line-height: 48px;
  margin: 30px 0 30px 0;
  letter-spacing: 1.5px;
  background: linear-gradient(to right, #448b92, #060b2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.resecont {
  width: 100%;
  float: left;
  font-size: 21px;
  margin: 0 0 7px 0;
  background: #fcfcfc;
  padding: 0 15px;
}
.resecontp {
  text-align: left;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin: 0 0 30px 0;
  padding: 0 15px;
}
.form-control {
  margin: 0 0 20px 0 !important;
}

/*======================================
 Responsive
======================================*/

@media (max-width: 1399px) {
  .navbar-brand {
    margin-right: 40px;
  }

  .navbar-nav {
    gap: 8px;
  }

  .nav-link {
    font-size: 17px;
    padding: 12px 16px !important;
  }

  .theme-btn {
    width: 150px;
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .navbar {
    min-height: 90px;
  }

  .navbar-brand img {
    height: 75px;
  }
}

@media (max-width: 991px) {
  .navbar {
    min-height: 85px;
  }

  .navbar-brand img {
    height: 70px;
  }
}

@media (max-width: 767px) {
  .navbar {
    min-height: 75px;
  }

  .navbar-brand img {
    height: 58px;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 50px;
  }

  .navbar {
    padding: 8px 0;
  }
}

@media (min-width: 1367px) and (max-width: 1500px) {
  .hero-content h1 {
    font-size: 40px !important;
  }
  .section-heading {
    font-size: 40px !important;
  }
  .why-box h4 {
    font-size: 24px !important;
  }
  .why-box p {
    font-size: 16px !important;
  }
  .footer-logo {
    font-size: 65px !important;
  }
}

@media (min-width: 767px) and (max-width: 1367px) {
  .theme-btn {
    width: 115px !important;
  }
  .theme-btn {
    font-size: 14px !important;
  }
  .nav-link {
    font-size: 14px !important;
  }
  ul.dropdown-menu a {
    font-size: 14px !important;
  }
  .hero-content h1 {
    font-size: 35px !important;
  }
  .section-title {
    font-size: 28px !important;
  }
  .about-content h2 {
    font-size: 35px !important;
  }
  .section-heading {
    font-size: 40px !important;
  }
  .about-desc {
    font-size: 16px !important;
  }
  .why-box h4 {
    font-size: 20px !important;
  }
  .why-box p {
    font-size: 16px !important;
  }
  .marquee-track span {
    font-size: 18px !important;
  }
  .section-desc {
    font-size: 14px !important;
  }
  .video-content p {
    font-size: 14px !important;
  }
  .main-segment-card h3 {
    font-size: 24px !important;
  }
  .main-segment-card p {
    font-size: 14px !important;
  }
  .category-card p {
    font-size: 14px !important;
  }
  .category-card h4 {
    font-size: 16px !important;
  }
  .manufacturing-section p {
    font-size: 14px !important;
  }
  .card-body p {
    font-size: 14px !important;
  }
  .footer-text {
    font-size: 14px !important;
  }
  .footer-logo {
    font-size: 60px !important;
  }
  .footer-box span {
    background: unset !important;
  }
  .footer-box h4 {
    margin-bottom: 30px !important;
    font-size: 20px !important;
  }
  .footer-box p {
    font-size: 14px !important;
  }
}

.offcanvas .nav-link {
  color: #222;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
}

.offcanvas .collapse .nav-link {
  font-size: 15px;
  color: #666;
  padding: 8px 0;
}

.offcanvas .fa-chevron-down {
  font-size: 12px;
  transition: 0.3s;
}

.offcanvas .nav-link[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.offcanvas .navbar-nav .nav-item {
  border-bottom: 1px solid #eee;
}

/*====================================
WooCommerce Archive
=====================================*/

.product-archive {
  background: #fafafa;
  padding: 80px 0;
}

/*=====================
Section Title
======================*/

.section-title {
  margin-bottom: 35px;
  position: relative;
  padding-left: 18px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2f3478;
  margin: 0;
}

/*=====================
Product Card
======================*/

.product-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #ececec;
  padding: 25px;
  height: 100%;
  transition: 0.35s;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/*=====================
Content
======================*/

.product-content {
  padding-right: 15px;
}

.company-badge {
  display: inline-block;
  background: #f0b33d;
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.product-title {
  font-size: 33px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}

.product-title a {
  color: #1b1b1b;
  text-decoration: none;
}

.product-title a:hover {
  color: #2f3478;
}

.product-content p {
  font-size: 20px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 16px;
}

.product-content strong {
  font-weight: 700;
}

/*=====================
Price
======================*/

.price-area {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 25px;
}

.price {
  color: #ef6c33;
  font-size: 30px;
  font-weight: 700;
}

.price del {
  font-size: 20px;
  color: #999;
}

.price ins {
  text-decoration: none;
}

.gst {
  color: #ef6c33;
  font-weight: 700;
  font-size: 24px;
}

/*=====================
Image Box
======================*/

.image-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  position: relative;
  min-height: 280px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box img {
  width: 100%;
  max-width: 180px;
  height: auto;
  transition: 0.4s;
}

.product-card:hover .image-box img {
  transform: scale(1.06);
}

/*=====================
Category Badge
======================*/

.category-badge {
  position: absolute;
  top: 18px;
  right: 18px;

  background: #edf3ff;
  border: 1px solid #c7d3ff;

  color: #2d3e88;

  padding: 10px 20px;

  border-radius: 40px;

  font-size: 15px;

  font-weight: 500;
}

/*=====================
Sidebar
======================*/

.category-sidebar {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 35px;
  top: 110px;
}

.category-sidebar h4 {
  font-size: 34px;
  font-weight: 700;
  color: #2f3478;
  margin-bottom: 30px;
}

.category-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-sidebar li {
  margin-bottom: 22px;
}

.category-sidebar li:last-child {
  margin-bottom: 0;
}

.category-sidebar a {
  display: block;
  color: #333;
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s;
}

.category-sidebar a:hover {
  color: #ef6c33;
  padding-left: 10px;
}

/*=====================
Pagination
======================*/

.woocommerce-pagination {
  margin-top: 50px;
  text-align: center;
}

.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 12px;
  border: 0 !important;
}

.woocommerce-pagination li {
  border: 0 !important;
}

.woocommerce-pagination a,
.woocommerce-pagination span {
  width: 45px;
  height: 45px;

  border-radius: 50%;

  background: #fff;

  border: 1px solid #ddd;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #222;

  font-weight: 600;
}

.woocommerce-pagination .current {
  background: #f0b33d;
  color: #fff;
  border-color: #f0b33d;
}

/*=====================
WooCommerce
======================*/

.woocommerce-result-count,
.woocommerce-ordering {
  display: none;
}

.woocommerce-products-header {
  display: none;
}

.product-card a {
  text-decoration: none;
}

/*=====================
Image Height
======================*/

.image-box img {
  max-height: 180px;
  object-fit: contain;
}

/*=====================
Animation
======================*/

.product-card,
.image-box,
.category-sidebar {
  transition: all 0.35s ease;
}

.category-sidebar {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

/*==================================================
RESPONSIVE CSS
==================================================*/

/* ---------- Large Screen ---------- */

@media (min-width: 1400px) {
  .product-card {
    min-height: 350px;
  }

  .image-box {
    min-height: 300px;
  }
}

/* ---------- Laptop ---------- */

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 36px;
  }

  .product-title {
    font-size: 28px;
  }

  .product-content p {
    font-size: 18px;
  }

  .price {
    font-size: 28px;
  }

  .gst {
    font-size: 20px;
  }

  .category-sidebar h4 {
    font-size: 30px;
  }

  .category-sidebar a {
    font-size: 20px;
  }
}

/* ---------- Tablet ---------- */

@media (max-width: 991px) {
  .product-archive {
    padding: 60px 0;
  }

  /* Sidebar First */

  .category-sidebar {
    position: relative !important;

    top: 0;

    margin-top: 40px;
  }

  .section-title h2 {
    font-size: 34px;
  }

  .product-card {
    margin-bottom: 30px;
  }

  .image-box {
    min-height: 230px;
  }
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {
  .product-archive {
    padding: 40px 0;
  }

  .section-title {
    padding-left: 14px;
    margin-bottom: 25px;
  }

  .section-title::before {
    width: 4px;
    height: 30px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .product-card {
    padding: 18px;
  }

  .product-content {
    padding-right: 0;
  }

  .company-badge {
    font-size: 12px;

    padding: 8px 14px;

    margin-bottom: 12px;
  }

  .product-title {
    font-size: 22px;

    margin-bottom: 12px;
  }

  .product-content p {
    font-size: 15px;

    line-height: 1.7;
  }

  .price-area {
    gap: 20px;

    margin-top: 15px;
  }

  .price {
    font-size: 22px;
  }

  .gst {
    font-size: 16px;
  }

  .image-box {
    margin-top: 20px;

    min-height: 180px;

    padding: 15px;
  }

  .image-box img {
    max-height: 120px;
  }

  .category-badge {
    right: 12px;
    top: 12px;

    padding: 6px 14px;

    font-size: 12px;
  }

  .category-sidebar {
    margin-top: 35px;

    padding: 22px;
  }

  .category-sidebar h4 {
    font-size: 24px;
  }

  .category-sidebar a {
    font-size: 17px;
  }
}

/* ---------- Extra Small ---------- */

@media (max-width: 575px) {
  .product-card .row {
    flex-direction: column;
  }

  .product-card .col-7,
  .product-card .col-5 {
    width: 100%;

    max-width: 100%;
  }

  .image-box {
    margin-top: 18px;
  }

  .price-area {
    flex-wrap: wrap;

    gap: 10px;
  }
}

/*==================================================
WooCommerce Fixes
==================================================*/

.woocommerce ul.products,
.woocommerce-page ul.products {
  margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product {
  width: 100% !important;

  margin: 0 !important;

  float: none !important;
}

.woocommerce-loop-product__title {
  display: none;
}

.woocommerce ul.products li.product a img {
  margin: 0;

  box-shadow: none;
}

.woocommerce img {
  border-radius: 12px;
}

/*==================================================
Sticky Sidebar
==================================================*/

@media (min-width: 992px) {
  .category-sidebar {
    position: sticky;

    top: 120px;
  }
}

/*==================================================
Hover Effect
==================================================*/

.product-card:hover .company-badge {
  background: #2d3478;
}

.product-card:hover .category-badge {
  background: #2d3478;

  color: #fff;

  border-color: #2d3478;
}

.product-card:hover .product-title a {
  color: #f2a72d;
}

/*==================================================
Equal Height
==================================================*/

.product-card {
  display: flex;

  align-items: center;

  height: 100%;
}

.product-card > .row {
  width: 100%;
}

/*==================================================
Smooth Animation
==================================================*/

.product-card,
.image-box img,
.category-sidebar,
.company-badge,
.category-badge {
  transition: 0.35s ease;
}
#sequence a,
#sequence button {
  width: 33.3333%;
  float: left;
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none !important;
  border: none;
  border-right: 1px solid;
  cursor: pointer;
}

#sequence {
  width: 100%;
  float: left;
  background: #ed702d;
  position: fixed;
  bottom: 0;
  /* Below the modal backdrop (1050) so it cannot
     sit on top of an open modal. */
  z-index: 100;
  padding: 0;
  color: #000 !important;
}
-bottom:0;
}

.category-sidebar a{
    display:block;
    color:#333;
    font-size:24px;
    text-decoration:none;
    transition:.3s;
}

.category-sidebar a:hover{
    color:#ef6c33;
    padding-left:10px;
}

/*=====================
Pagination
======================*/

.woocommerce-pagination{
    margin-top:50px;
    text-align:center;
}

.woocommerce-pagination ul{
    display:flex;
    justify-content:center;
    gap:12px;
    border:0 !important;
}

.woocommerce-pagination li{
    border:0 !important;
}

.woocommerce-pagination a,
.woocommerce-pagination span{

    width:45px;
    height:45px;

    border-radius:50%;

    background:#fff;

    border:1px solid #ddd;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#222;

    font-weight:600;

}

.woocommerce-pagination .current{
    background:#f0b33d;
    color:#fff;
    border-color:#f0b33d;
}

/*=====================
WooCommerce
======================*/

.woocommerce-result-count,
.woocommerce-ordering{
    display:none;
}

.woocommerce-products-header{
    display:none;
}

.product-card a{
    text-decoration:none;
}

/*=====================
Image Height
======================*/

.image-box img{
    max-height:180px;
    object-fit:contain;
}

/*=====================
Animation
======================*/

.product-card,
.image-box,
.category-sidebar{
    transition:all .35s ease;
}

.category-sidebar{
    box-shadow:0 12px 35px rgba(0,0,0,.04);
}


/*==================================================
RESPONSIVE CSS
==================================================*/

/* ---------- Large Screen ---------- */

@media (min-width:1400px){

.product-card{
    min-height:350px;
}

.image-box{
    min-height:300px;
}

}

/* ---------- Laptop ---------- */

@media (max-width:1199px){

.section-title h2{
    font-size:36px;
}

.product-title{
    font-size:28px;
}

.product-content p{
    font-size:18px;
}

.price{
    font-size:28px;
}

.gst{
    font-size:20px;
}

.category-sidebar h4{
    font-size:30px;
}

.category-sidebar a{
    font-size:20px;
}

}

/* ---------- Tablet ---------- */

@media (max-width:991px){

.product-archive{
    padding:60px 0;
}

/* Sidebar First */

.category-sidebar{

    position:relative !important;

    top:0;

    margin-top:40px;

}

.section-title h2{
    font-size:34px;
}

.product-card{
    margin-bottom:30px;
}

.image-box{

    min-height:230px;

}

}

/* ---------- Mobile ---------- */

@media (max-width:767px){

.product-archive{
    padding:40px 0;
}

.section-title{

    padding-left:14px;
    margin-bottom:25px;

}

.section-title::before{

    width:4px;
    height:30px;

}

.section-title h2{

    font-size:28px;

}

.product-card{

    padding:18px;

}

.product-content{

    padding-right:0;

}

.company-badge{

    font-size:12px;

    padding:8px 14px;

    margin-bottom:12px;

}

.product-title{

    font-size:22px;

    margin-bottom:12px;

}

.product-content p{

    font-size:15px;

    line-height:1.7;

}

.price-area{

    gap:20px;

    margin-top:15px;

}

.price{

    font-size:22px;

}

.gst{

    font-size:16px;

}

.image-box{

    margin-top:20px;

    min-height:180px;

    padding:15px;

}

.image-box img{

    max-height:120px;

}

.category-badge{

    right:12px;
    top:12px;

    padding:6px 14px;

    font-size:12px;

}

.category-sidebar{

    margin-top:35px;

    padding:22px;

}

.category-sidebar h4{

    font-size:24px;

}

.category-sidebar a{

    font-size:17px;

}

}

/* ---------- Extra Small ---------- */

@media(max-width:575px){

.product-card .row{

    flex-direction:column;

}

.product-card .col-7,
.product-card .col-5{

    width:100%;

    max-width:100%;

}

.image-box{

    margin-top:18px;

}

.price-area{

    flex-wrap:wrap;

    gap:10px;

}

}

/*==================================================
WooCommerce Fixes
==================================================*/

.woocommerce ul.products,
.woocommerce-page ul.products{

    margin:0;

}

.woocommerce ul.products::before,
.woocommerce ul.products::after{

    display:none;

}

.woocommerce ul.products li.product{

    width:100% !important;

    margin:0 !important;

    float:none !important;

}

.woocommerce-loop-product__title{

    display:none;

}

.woocommerce ul.products li.product a img{

    margin:0;

    box-shadow:none;

}

.woocommerce img{

    border-radius:12px;

}

/*==================================================
Sticky Sidebar
==================================================*/

@media(min-width:992px){

.category-sidebar{

    position:sticky;

    top:120px;

}

}

/*==================================================
Hover Effect
==================================================*/

.product-card:hover .company-badge{

    background:#2d3478;

}

.product-card:hover .category-badge{

    background:#2d3478;

    color:#fff;

    border-color:#2d3478;

}

.product-card:hover .product-title a{

    color:#f2a72d;

}
button#scrollTop {
    display: none !important;
}
/*==================================================
Equal Height
==================================================*/

.product-card{

    display:flex;

    align-items:center;

    height:100%;

}

.product-card>.row{

    width:100%;

}

/*==================================================
Smooth Animation
==================================================*/

.product-card,
.image-box img,
.category-sidebar,
.company-badge,
.category-badge{

    transition:.35s ease;

}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff!important;
    font-weight: 600;
    text-decoration: none!important;
    border-right: 1px solid;
}
#sequence {
    width: 100%;
    float: left;
    background: #ed702d;
    position: fixed;
    bottom: 0;
    z-index: 100;
    padding: 0;
    color: #000!important;
}