@import "tailwindcss";

:root {
  /* ================= Fonts ================= */
  /* --font-body: var(--font-inter);
  --font-heading: var(--font-playfair); */
  --bg-color: #000097;
}

/* =====================================
   Base Styles
===================================== */
html,
body {
  /* background-color: #0d111a; */
   /* font-family: "Roboto", sans-serif; */
    font-family: "Manrope", sans-serif;
    color: #000033;
    background: url(../../img/bg-1.jpg);
    background-size: cover;
}

.font-algerian {
  font-family: "Algerian", "Playfair Display", Georgia, serif;
}

/* =====================================
   Typography (Responsive)
===================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--font-heading), serif; */
}

/* Mobile first */
h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
}

h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}

/* Tablet */
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }
}

/* Body Text */
p {
  line-height: 25px;
  font-size: 16px;
   /* font-family: "Roboto", sans-serif; */
}

@media (max-width: 640px) {
  p {
    font-size: 14px;
  }
}

.companey-name {
  font-family: "Vast Shadow", serif;
  font-size: 55px;
  color: #2d2db3;
  text-shadow: 0 1px 0 #CCCCCC, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, .1), 0 0 5px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .3), 0 3px 5px rgba(0, 0, 0, .2), 0 5px 10px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .2), 0 20px 20px rgba(0, 0, 0, .15);
}

.contact input,
.contact textarea {
  border: 1px solid var(--border-default);
  width: 100%;
  border-radius: 2px;
  margin-bottom: 13px;
  background-color: #f0f0f0;
  padding: 15px 15px;
}


/* =====================================
   Inputs & Labels
===================================== */


@media (max-width: 640px) {

  input,
  textarea,
  select {
    font-size: 14px;
    padding: 10px;
  }
}

/* =====================================
   Utilities
===================================== */
.bg-blush {
  background: #000097;
  background: linear-gradient(0deg, #0b0bd8 0%, #020919 100%);
  color: #fff;
}

/* =====================================
   Container (unchanged, correct)
===================================== */
.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1250px;
  }
}

/* span{
  color: var(--text-primary);
  font-family: var(--font-heading), serif;
} */


/* ================= Site Header ================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.site-header--inner {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.site-header--home {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.9) 100%);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.site-header nav {
  padding: 0.35rem 0;
}

.site-header .logo img {
  max-height: 72px;
}

.site-header .logo .site-brand-name {
  display: inline-block;
  font-family: "Algerian", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #0067b8;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.site-header__social {
  gap: 0.55rem;
}

.site-header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 9999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.site-header__social-link:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  filter: brightness(1.08);
}

.site-header__social-link svg {
  width: 1.2rem;
  height: 1.2rem;
}

.site-header__social-link--facebook svg {
  width: 1.28rem;
  height: 1.28rem;
}

.site-header__social-link--facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0f5bd7 100%);
}

.site-header__social-link--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
}

.site-header__social-link--linkedin {
  background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
}

.site-header__social-link--youtube {
  background: linear-gradient(135deg, #ff4040 0%, #cc0000 100%);
}

.site-header__social-link--whatsapp {
  background: linear-gradient(135deg, #34eb7a 0%, #128c7e 100%);
}

.page-breadcrumb-inner {
  padding-top: 165px;
  padding-bottom: 4.5rem;
  background: rgba(0, 0, 0, 0.86);
}

@media (max-width: 1023px) {
  .page-breadcrumb-inner {
    padding-top: 135px;
    padding-bottom: 3.25rem;
  }

  .site-header .logo img {
    max-height: 56px;
  }
}

@media (max-width: 639px) {
  .page-breadcrumb-inner {
    padding-top: 115px;
    padding-bottom: 2.5rem;
  }
}

nav ul li {
  position: relative;
  font-size: 15px;
  padding: 15px 0;
  color: #343434;
}

.page-inner nav ul li > a {
  color: #fff;
}

.page-inner nav ul li:hover > a {
  color: #007bff;
}

.site-header .has-dropdown:hover > a {
  color: #007bff !important;
}

nav ul li:hover {
  color: #000097;
}

.sub-menu {
  position: absolute;
  left: 0;
  top: 200%;
  background: #fff;
  border-radius: 8px;
  margin-top: 10px;
  width: max-content;
  min-width: 230px;
  max-width: min(320px, 90vw);
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 1100;
  opacity: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  padding: 6px 0;
}

@media (max-width: 1023px) {
  .sub-menu {
    display: none !important;
  }
}

.sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eee;
  transition: all 0.5s ease;
  position: relative;
}

.sub-menu li:last-child {
  border-bottom: none;
}

.sub-menu li a {
  display: block;
  padding: 10px 30px;
  color: #333 !important;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  text-decoration: none;
}

nav ul li:hover>.sub-menu {
  top: 85%;
  visibility: visible;
  z-index: 1100;
  opacity: 1;
}

.sub-menu li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0%;
  width: 100%;
  background: linear-gradient(0deg, #0b0bd8 0%, #020919 100%);
  transition: all 0.5s ease;
  z-index: 1;
}

nav .sub-menu li:hover > a {
  color: #fff !important;
}

.sub-menu li:hover::after {
  height: 100%;
}

.sub-menu .sub-menu {
  left: 101%;
  top: 0 !important;
}


.select_service:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 50%;
  height: 1px;
  background-color: #E6E6E6;
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq.open .faq-answer {
  max-height: 200px;
}

.faqs .faq .faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  transition: all 0.2s ease;
}

.faqs .faq.open .faq-question::after {
  content: "-";
}

.main-title {
  font-size: 35px;
  display: block;
  /* background: -webkit-linear-gradient(#2484fe, #000097); */
  background-color: #2484fe;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   font-family: "Merienda", cursive;
  /* text-shadow: 1px 1px 2px #3800ff70; */
  margin-bottom: 10px;
}

.main-title-2 {
  background: -webkit-linear-gradient(top, rgb(255 255 255), rgb(255 255 255)) text;
  -webkit-text-fill-color: transparent;
  text-shadow: rgb(255 255 255 / 52%) 1px 1px 2px;
  margin-bottom: 10px;
   font-family: "Merienda", cursive;
  font-size: 35px;
  display: block;
}

.btn {
  display: inline-block;
  padding: 11px 33px;
  background-color: #000097;
  background: linear-gradient(0deg, #0b0bd8 0%, #2484fe 100%);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background-color: #000097;
  background: linear-gradient(0deg, #2484fe 0%, #0b0bd8 100%);
}

.heroBannner {
  overflow: hidden;
  max-width: 100%;
}

.heroBannner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000078;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.419) 0%, rgba(0, 0, 0, 0.761) 100%);
  z-index: 9;
}

.banner_title {
  top: 42%;
  transform: translateY(120px);
  opacity: 0;
  font-family: "Afacad", sans-serif;
}

.hero-banner-heading {
  font-size: clamp(1.35rem, 4.5vw, 3.75rem);
  line-height: 1.2;
}

.hero-banner-subtitle {
  font-size: clamp(0.875rem, 2.2vw, 1.25rem);
  line-height: 1.5;
}

.hero-banner-img {
  min-height: 240px;
  height: 55vw;
  max-height: 520px;
}

@media (min-width: 768px) {
  .hero-banner-img {
    min-height: 420px;
    height: auto;
    max-height: none;
  }

  .banner_title {
    top: 40%;
  }
}

.hero .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active img {
  animation: bannerimg 10s ease-in-out;
  transform-origin: center center;
}

@media (max-width: 767px) {
  .hero .swiper-slide img,
  .hero-banner-img {
    animation: none !important;
    transform: none !important;
  }
}

.hero .swiper-slide.swiper-slide-visible.swiper-slide-fully-visible.swiper-slide-active .banner_title {
  animation: stickySlideDown 1.5s ease-in-out forwards;
}

@keyframes stickySlideDown {
  0% {
    transform: translateY(120px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bannerimg {
  0% {

    transform: scale(1);
  }

  100% {

    transform: scale(1.2);
  }
}

.quality-video {
  position: relative;
  padding: 80px 0px;
}

.play-now .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 65px;
  width: 65px;
  text-align: center;
  line-height: 65px;
  background-color: #1c63b8;
  color: #fff;
  z-index: 1;
  font-size: 20px;
  padding-left: 5px;
  display: block;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.5);
}


.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 65px;
  width: 65px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform-origin: center;
  transform-origin: center center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 #2d2db3;
  -moz-box-shadow: 0 0 0 0 #2d2db3;
  -ms-box-shadow: 0 0 0 0 #2d2db3;
  -o-box-shadow: 0 0 0 0 #2d2db3;
  box-shadow: 0 0 0 0 #2d2db3;
  -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.ripple {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  max-width: 600px;
  margin: 0px auto;
  background-color: #2d2db3;
  z-index: -1;
}



@keyframes ripple {
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.mfp-video {
  text-align: center;
  margin: auto;
  display: flex;
  justify-content: center;
}

.fontFamily {
 font-family: "Playfair Display", serif;
}

.slide_1 .swiper-slide-active {
  border: 2px solid #fff;
  padding: 5px;
  transition: ease-in-out .5s;
  border-radius: 20px;
}

.counter_img {
  margin: 0 0 0 auto;
}

.countBox {
  text-align: left;
}

.countBox::after {
  content: "";
  border: 10px solid #fff;
  border-color: #fff #fff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  position: absolute;
  bottom: -19px;
  right: 0;
}

.prodetaisls ul {
  padding-left: 15px;
  margin-left: 10px;
}
.prodetaisls ul li{
  list-style: disc;
  font-weight: 600;
  margin: 4px 0;
}

.quality p{
  font-size: 14px;
  margin-bottom: 10px;
}
.quality ul{
  padding-left: 15px;
  margin: 20px 0;
  margin-left: 10px;
}
.quality ul li{
  list-style: disc;
  font-weight: 600;
  margin: 8px 0;
  font-size: 15px;
}

@media only screen and (max-width: 550px) {
  .main-title,.main-title-2{
    font-size: 25px;
  }
}
.detail-page p,
.detail-page div,
.detail-page span,
.detail-page b,
.detail-page strong,
.detail-page h1,
.detail-page h2,
.detail-page h3,
.detail-page h4,
.detail-page h5,
.detail-page h6,
.detail-page ul li,
.detail-page ul{
  background: transparent !important;
}

/* ================= Site Footer ================= */
.site-footer .footer-logo {
  max-width: 120px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer p {
  max-width: 36rem;
  line-height: 1.6;
}

.pd-detail-short p,
.pd-detail-short div,
.pd-detail-short span,
.pd-detail-short b,
.pd-detail-short strong,
.pd-detail-short h1,
.pd-detail-short h2,
.pd-detail-short h3,
.pd-detail-short h4,
.pd-detail-short h5,
.pd-detail-short h6,
.pd-detail-short ul li,
.pd-detail-short ul{
  color: rgb(168, 165, 165) !important;
}

.aboutpage p{
  font-size: 15px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #808080;
  text-align: left;
  padding: 8px;
  font-size: 14px;
}

/* tr:nth-child(even) {
  background-color: #f0f0f0;
} */