@import url(https://fonts.googleapis.com/css?family=Poppins:400,300,500,600,700);
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');


@tailwind base;
@tailwind components;
@tailwind utilities;

/* font-family: "Poppins", sans-serif; */

/* ==============================================
    General
============================================== */
:root {
  --color-p-1: #0497da;
  --color-p-2: #e6f7ff;
  --color-p-2-hover: #ccefff;

  --color-s-1: #14181f;

  --color-b-1: #222222;
  --color-b-2: #666666;

  --color-g-1: #f9f9f9;
  --color-g-2: #8b8e8f;
  --color-g-3: #b7b7b7;

  --color-w-1: #ffffff;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  padding: 0;
  margin: 0;
  line-height: 1.3;
  color: var(--color-b-2);
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: var(--color-p-1);
  color: var(--color-w-1);
}

/* pppppppppp  */
p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--color-b-2)
}

p:last-child {
  margin-bottom: 0;
}

/* aaaaaaaaa */
a {
  outline: none !important;
  text-decoration: none;
  transition: 0.3s all ease-in-out;
  -webkit-transition: 0.3s all ease-in-out;
  -moz-transition: 0.3s all ease-in-out;
  -ms-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
}

a:hover,
a:focus,
select:focus,
button:focus {
  outline: none;
  text-decoration: none;
  color: var(--color-p-1);
}

a:hover {
  color: var(--color-p-2);
}

img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  margin-bottom: 10px;
  outline: none !important;
  color: var(--color-b-2);
  font-weight: 400;
  font-size: 36px;
}

h1,
h2 {
  @apply text-3xl xl:text-2xl md:text-xl font-bold font-grotesk text-b-1;
}

h3 {
  @apply text-xl sm:text-lg font-semibold text-b-1;
}

h4 {
  @apply text-md md:text-sm;
}

h5 {
  @apply text-sm;
}

h6 {
  @apply text-xs tracking-widest uppercase;
}

.dark-sec {
  @apply text-w-1;
}

.my-sec {
  @apply py-[90px] xl:py-[75px] md:py-[60px] sm:py-[50px];
}

/* basic css end  */

/* css start */

.btn-p {
  @apply bg-[#0497da] text-white text-[16px] py-[15px] px-[26px] rounded-full inline-block text-center font-bold font-grotesk transition-all duration-300 ease-in-out md:py-[10px] md:px-[15px] md:text-[14px];
}

.btn-p:hover {
  @apply bg-[#20aef0];
}

.btn-p2 {
  @apply bg-[#0497da] text-w-1 text-[11px] py-[4px] px-[10px] rounded-full inline-block text-center font-bold font-grotesk transition-all duration-300 ease-in-out;
}


.btn-outline {
  @apply border border-w-1 py-[15px] px-[26px] rounded-full text-[16px] font-bold font-grotesk transition-all duration-300 ease-in-out md:py-[10px] md:px-[15px] md:text-[14px];
}

.btn-outline:hover {
  background: rgba(87, 87, 87, 0.4);
  @apply text-white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.catalogue-btn {
  @apply inline-block px-8 py-3 border border-[#cbcbcb] text-b-1 font-bold text-md font-grotesk rounded-full transition duration-300;
}

.catalogue-btn:hover {
  @apply bg-p-1 text-w-1 border-p-1;
}

/* --- NAV LINK EFFECT --- */

.nav-link {
  @apply relative transition duration-300;
}

.nav-link::before {
  content: "";
  @apply absolute left-0 -top-[31px] w-0 h-[2px] bg-p-1 transition-all duration-300;
}

.nav-link:hover::before {
  @apply w-full;
}

.nav-link.active::before {
  @apply w-full;
}

.nav-link.active {
  @apply text-w-1;
}



/* ===== Browes by Category ===== */
.browse-grid {
  @apply grid grid-cols-3 md:grid-cols-2 sm:grid-cols-1 gap-8;
}

.browse-image {
  @apply rounded-xl overflow-hidden bg-gray-100;
}

.browse-image img {
  @apply w-full h-64 object-cover transition duration-300 group-hover:scale-105;
}

.browse-header {
  @apply flex justify-between mt-4 items-center;
}

.browse-variant {
  @apply text-p-1 text-sm font-medium;
}


/* ----Industries Section ---- */

.industries-grid {
  @apply grid grid-cols-3 sm:grid-cols-1 md:grid-cols-2 gap-6 md:gap-4;
}


.industry-card {
  @apply bg-w-1 rounded-2xl p-8 border border-gray-200 transition duration-300 cursor-pointer;
}

.industry-card:hover,
.industry-card.active {
  @apply border-[#cde9f6] shadow-lg shadow-[#e2f0f7];
}

.industry-icon {
  @apply w-14 h-14 flex items-center justify-center rounded-[10px] bg-p-2 text-p-1 text-xl mb-6 transition duration-300;
}

/* ===== why section ===== */

.why-grid {
  @apply grid grid-cols-12 gap-16 items-center lg:grid-cols-1;
}

.why-features {
  @apply grid grid-cols-2 sm:grid-cols-1 gap-3;
}

.feature-btn {
  @apply flex items-center gap-3 bg-[#20242a] backdrop-blur-md border border-[#2d3037] px-5 py-4 rounded-xl text-sm text-w-1 transition duration-300 mb-3;
}

.feature-btn:hover {
  @apply bg-[#2d3037]/10 border-[#2d3037];
}

.feature-icon {
  @apply w-5 h-5 flex items-center justify-center rounded-full bg-p-1 text-[#20242a] text-xs;
}

/* manufacturing section */

.manufacturing-grid {
  @apply grid grid-cols-4 sm:grid-cols-1 lg:grid-cols-2 gap-6 md:gap-4;
}

.manufacturing-card {
  @apply bg-w-1 rounded-2xl p-6 border border-gray-200 transition duration-300 cursor-pointer;
}

.manufacturing-card:hover,
.manufacturing-card.active {
  @apply border-[#cde9f6] shadow-lg shadow-[#e2f0f7];
}


.pogoSlider {
  padding-bottom: 36% !important;
}

.pogoSlider-dir-btn--next {
  right: 0;
}

.pogoSlider-dir-btn--prev {
  left: 0;
}

/* owl-slider */

/* owl nav buttons customisation start */

.owl-carousel {
  position: relative;
}

.owl-nav button span {
  display: none;
}

/* .owl-nav {
  position: absolute;
} */

.owl-nav button {
  background: var(--color-g-1) !important;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 22px);
  left: -70px;
}

.owl-nav button:hover {
  background: var(--color-q-2) !important;
}

.owl-nav button.owl-next {
  left: unset;
  right: -70px;
}

.owl-nav button::after {
  content: "";
  width: 60px;
  height: 60px;
  background: url(../images/arrow-right.png) no-repeat center center;
  display: inline-block;
  border-radius: 50%;
}

.owl-nav button.owl-prev::after {
  transform: rotate(180deg);
}

/* owl nav buttons customisation end */

.product-card {
  @apply bg-g-1 rounded-2xl shadow-md p-6 transition-all duration-300 hover:shadow-xl;
}

.arrow-btn {
  @apply inline-flex items-center justify-center w-8 h-8 bg-p-1 rounded-full;
}

.arrow-btn:hover {
  @apply bg-b-2;
}

.main-sec-box {
  @apply lg: !bg-none;
}

.product-main-sec .left-sec {
  @apply !py-[150px] xl: !py-10 lg: !pt-20 lg: !pb-16 md: !pb-10 lg:text-center
}

.product-main-sec .left-sec h2 {
  @apply !text-b-1 mb-8
}

.product-main-sec .left-sec p {
  @apply mb-8 leading-8
}

.right-sec img {
  @apply lg:pb-16
}

.advantage-card {
  transition: all 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
}

.advantage-card img {
  @apply w-full mx-auto;
}

.list-item {
  display: flex;
  align-items: start;
}

.list-item i {
  @apply mr-2;
}

.our-gallery-sec img {
  @apply rounded-xl;
}

/* ===== Footer Section ===== */
.footer-section {
  @apply bg-s-1 pt-20 sm:pt-16 mt-24;
}

.footer-grid {
  @apply grid grid-cols-4 sm:grid-cols-1 lg:grid-cols-2 gap-12 pb-12;
}

.footer-logo {
  @apply flex items-center gap-3 text-white font-semibold text-lg mb-6;
}

.footer-links h5,
.footer-contact h5 {
  @apply font-grotesk uppercase font-bold text-w-1 mb-6;
}

.footer-links ul {
  @apply space-y-4 text-xs;
}

.footer-links a {
  @apply transition duration-300 text-g-2 text-xs;
}

.footer-links a:hover {
  @apply text-p-1;
}

.contact-item a {
  @apply flex items-start gap-2 text-xs mb-4 leading-relaxed font-normal;
}

.contact-item a:hover {
  @apply text-p-1;
}

.footer-bottom {
  @apply border-t border-white/10 py-4 flex sm:flex-col justify-between items-center text-xs;
}

.footer-policy {
  @apply flex gap-6;
}

.footer-policy a {
  @apply transition duration-300 text-xs;
}

.footer-policy a:hover {
  @apply text-p-1;
}

@media (max-width: 991px) {
  .why-grid {
    display: flex !important;
    flex-direction: column;
  }

}

/*991px*/

.counter-sec {
  /* margin-top: -97px; */
  background: #d3d0c9 !important;
}

.counter-sec * {
  color: #222 !important;
}

.counter-sec::before,
.counter-sec::after {
  display: none;
}

.logos-sec img {
  height: 40px;
  width: auto;
}

.ready-sec {
  /* background: url(../images/img.jpeg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed; */
  position: relative;
  overflow: hidden;
}

.ready-sec::after {
  content: "";
  /* Required for pseudo-elements to render */
  position: absolute;
  /* Positions the pseudo-element relative to the container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -2;

}

.ready-sec::before {
  content: "";
  /* Required for pseudo-elements to render */
  position: absolute;
  /* Positions the pseudo-element relative to the container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img.jpeg) no-repeat center center;
  background-attachment: fixed;
  /* Your background image */
  background-size: cover;
  /* Optional: ensures image covers the container */
  opacity: 0.5;
  /* Adjust the transparency here (0.0 to 1.0) */
  z-index: -1;
  /* Puts the background behind the content */
}