@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");

body {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  font-weight: bold;
}

ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}

p {
  text-align: justify;
  margin-bottom: 0px;
  font-weight: bold;
}

h1 {
  margin-bottom: 0px;
}

h2,
h3,
h4 {
  margin-bottom: 0px;
}

:root {
  --black: #000;
  --white: #fff;
  --red: #ad1f22;
  --blue: #2a2568;
  --yellow: #fff5b0;
  --gray: #808080;
}

/* top button css start here */

.top {
  display: none;
  color: var(--white);
  background: var(--red);
  padding: 5px 10px;
  font-size: 24px;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 99999999;
}
.top:hover {
  color: var(--black);
}

@media screen and (max-width: 991px) {
  .top {
    display: none !important;
  }
}

/* top button css ends here */

/* fixed icons css start */
.fix-icons .whatsapp-icon {
  position: fixed;
  top: 80%;
  right: 1%;
  z-index: 999999;
}
.fix-icons .phone-icon {
  position: fixed;
  top: 70%;
  right: 1%;
  z-index: 999999;
}
.fix-icons .whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  background: #25d366;
  padding: 10px 15px;
  border-radius: 50%;
  /* box-shadow: rgba(37, 211, 101, 0.753) 0px 0px 5px 5px; */
}
.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: #00c300;
  padding: 10px 13px;
  border-radius: 50%;
  /* box-shadow: rgba(0, 195, 0, 0.733) 0px 0px 5px 5px; */
}

@media screen and (max-width: 1400px) {
  .fix-icons .whatsapp-icon {
    top: 75%;
  }
  .fix-icons .phone-icon {
    top: 60%;
  }
}

@media screen and (max-width: 1200px) {
  .fix-icons .whatsapp-icon {
    top: 75%;
  }
  .fix-icons .phone-icon {
    top: 65%;
  }

  .fix-icons .whatsapp-icon a {
    font-size: 18px;
    padding: 7px 10px;
  }
  .fix-icons .phone-icon a {
    font-size: 18px;
    padding: 7px 10px;
  }
}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* end of fixed icons css */

/* section css */
section {
  padding: 50px 0px;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .heading {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  color: var(--blue);

  position: relative;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 12px;
  }

  section {
    padding: 20px 0px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head .heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 575px) {
  .section-head .heading {
    font-size: 20px;
  }
}

/* section css */

/* footer css */
.footer {
  padding: 50px 0px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0px;
  }
}

/* footer css */

/* ------------ custom css start --------------- */

/* ----------- navbar css start here ----------- */

.navbar {
  padding: 5px 0px;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.navbar .logo {
  width: 200px;
}
.navbar .navbar-nav .nav-item .nav-link {
  color: gray;
  font-size: 22px;
  font-weight: bold;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--blue);
}

.navbar .navbar-nav .nav-item {
  position: relative;
}

.navbar .navbar-nav .nav-item::after {
  content: "";
  position: absolute;
  width: 0%;
  left: 0;
  bottom: 0%;
  height: 2px;
  background: var(--blue);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.navbar .navbar-nav .nav-item:hover::after {
  opacity: 1;
  width: 100%;
  transition: 0.5s ease-in-out;
}

.navbar-light .navbar-toggler {
  font-size: 1rem;
  border-color: black;
}
.navbar-light .navbar-toggler:focus {
  border: 1px solid var(--red);
  box-shadow: none;
}

/* responsive navbar */

@media screen and (max-width: 1400px) {
   .navbar .logo {
    width: 170px;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 18px;
  }
}


@media screen and (max-width: 1200px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }



  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .navbar .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 20px;
  }
  .navbar .logo {
    width: 130px;
  }
}

.dropdown .dropdown-menu {
  display: block;
  position: absolute;
  border: none !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 300px;
  overflow-y: scroll;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown .dropdown-menu li {
  font-size: 20px;
  padding: 10px 5px;
  transition: 0.2s ease-in-out;
  font-weight: bold;
}
.dropdown .dropdown-menu li a {
  color: var(--black);
  transition: 0.2s ease-in-out;
}

.dropdown .dropdown-menu li:hover {
  background: var(--red);
}

.dropdown .dropdown-menu li:hover a {
  color: var(--white);
}

.dropdown .dropdown-menu .dropdown-item {
  background: none;
}

@media screen and (max-width: 1200px) {
  .dropdown .dropdown-menu li {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }

  .dropdown .dropdown-menu li {
    font-size: 13px;
    padding: 5px 2px;
  }
}

@media screen and (max-width: 767px) {
  .dropdown .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 5px !important;
  }

  .dropdown .dropdown-menu li {
    font-size: 12px;
    padding: 5px 2px;
  }
}





/* search-bar css start */

.navbar .search-bar input:focus{
  box-shadow: none !important;
  border: 1px solid var(--red);
}



.navbar .search-bar .btn-outline-success{
 border: 1px solid var(--blue);
 color: var(--blue);
 font-weight: bold;
    
}

.navbar .search-bar .btn-outline-success:hover{
  border: 1px solid var(--red);
 background: var(--red);
 color: var(--white);
}


@media screen and (max-width:1200px) {

  .navbar .search-bar .form-control {
    width: 150px;
    padding: 2px 5px !important;
   }
   .navbar .search-bar .btn-outline-success{
    padding: 5px 10px !important;
    font-size: 12px;
  }
}


@media screen and (max-width:991px) {
  .navbar .search-bar{
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
  }
  .navbar .search-bar .form-control {
    width: 250px;
    padding: 5px 10px !important;
   }

    .navbar .search-bar .btn-outline-success{
      font-size: 16px;
    }

}


@media screen and (max-width:767px) {

 
 .navbar .search-bar .form-control {
    width: 180px;
    padding: 2px 5px !important;
  }
  .navbar .search-bar .btn-outline-success{
    padding: 5px 10px !important;
    font-size: 12px;
  }
}


/* search-bar css end */






/* --------------- end of navbar css here ------------- */

/*----------------- banner ------------------ */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: url(../img/banner/left-red.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

.carousel-control-next-icon {
  background-image: url(../img/banner/right-red.png);
}

@media screen and (max-width: 767px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 15px;
    height: 15px;
  }
}


/*--------------------- banner -------------------------------- */

/* sub banner css start here */

.sub-banner {
  background: #fef5ae86;
  padding: 150px 0px;
}

.sub-banner .sub-banner-content {
  position: relative;
}

.sub-banner .sub-banner-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sub-banner .sub-banner-text h1 {
   text-align: center;
    font-weight: bold;
}

.sub-banner .sub-banner-text span {
  font-size: 48px;
  font-weight: bold;
}

.sub-banner .sub-banner-text p {
  font-size: 22px;
  font-weight: bold;
}
.sub-banner .sub-banner-text p a {
  color: var(--black);
}

@media screen and (max-width: 767px) {

  .sub-banner {
 
  padding: 80px 0px;
}

  .sub-banner .sub-banner-text h1 {
    font-size: 24px;
  }
  .sub-banner .sub-banner-text p {
    font-size: 18px;
  }
}

/* sub banner css ends here */

/* -------------------------------- basic products css start here -------------------------------- */

.basic-products {
  background: linear-gradient(#f7f7f78e, #e2e0e0a9);
}

.basic-products .basic-product-card {
  background: var(--white);
  padding: 15px;
  margin-bottom: 30px;
}

.basic-products .basic-product-card p {
  margin-top: 5px;
  text-align: center;
  color: var(--red);
}

.basic-products .basic-product-card:hover p {
  color: var(--blue);
}

@media screen and (max-width: 420px) {
  .basic-products .basic-product-card {
    min-height: 165px;
  }
}

/* -------------------------------- end of basic products css here -------------------------------- */

/* -----------------about us css start here ----------------- */

.about-section {
  background: linear-gradient(135deg, #1e3a8a, #0f172a);
  color: #fff;
}

/* TITLE */
.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #facc15; /* gold */
}

/* TEXT */
.about-text {
  color: #d1d5db;
  line-height: 1.8;
}

/* GLASS CARDS */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
  height: 100%;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: #facc15;
}

.about-section .glass-card h2 {
  font-size: 20px;
}

/* ICON STYLE */
.icon-box {
  font-size: 28px;
  color: #facc15;
  margin-bottom: 10px;
}

/* COMPANY TAG */
.company-tag {
  display: inline-block;
  background: #b91c1c; /* red */
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

/* ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .left-content {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .about-title {
    font-size: 18px;
  }
  .left-content {
    margin-bottom: 10px;
  }

  .glass-card {
    padding: 15px;
  }
}

/* responsive css ends */

/* ----------------- about us css ends here ----------------- */

/* ----------------- products category css start here ----------------- */

.product-category {
  background: #f9fafc;
}

.main-title {
  color: var(--blue);
  font-size: 32px;
}

.subtitle {
  color: #666;
  font-size: 15px;
}

/* CARD */
.category-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  border: 1px solid #eee;
}

/* subtle yellow glow */
.category-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s;
  z-index: 0;
}

.category-card:hover::before {
  opacity: 0.25;
}

/* hover effect */
.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.card-img {
  overflow: hidden;
}

.card-img img {
  object-fit: cover;
  transition: 0.5s;
  width: 100%;
}

.category-card:hover img {
  transform: scale(1.08);
}

/* BODY */
.card-body {
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-body h3 {
  color: var(--blue);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 5px;
}

/* BUTTON */
.card-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 22px;
  background: var(--red);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.card-btn:hover {
  background: var(--blue);
  color: var(--white);
}

/* responsive css start */

@media screen and (max-width: 1400px) {
  .category-card {
    min-height: 495px;
  }
}

@media screen and (max-width: 1200px) {
  .category-card {
    min-height: 435px;
  }
}

@media screen and (max-width: 991px) {
  .category-card {
    min-height: 475px;
  }
}

@media screen and (max-width: 767px) {
  .category-card {
    min-height: auto;
  }

  .main-title {
    font-size: 20px;
  }

  .subtitle {
    font-size: 14px;
  }
}

/* responsive css ends */

/* ----------------- end of products category css here --------------------- */



/* -------------- all-products list section css start here ------------- */


.leadership-heading {
  padding: 20px;
  text-align: center;
  background-color: #f7f7f7;
}
.leadership-heading p {
  margin-top: 20px;
  text-align: center;
}

.team-members {
  background-color: #f7f7f7;
}

.team-members .member-card {
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  cursor: pointer;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.team-members .member-card .member-detail {
  padding: 6px;
}

.team-members .member-card .member-detail h4 {
  font-size: 22px;
  font-weight: 600;
  transition: .4s ease-in-out;
  color: var(--black);
}

.team-members .member-card:hover .member-detail h4{
  color: var(--red);
}


@media screen and (max-width: 991px) {
  .team-members .member-card {
    margin-bottom: 20px;
  }

  .team-members .member-card .member-detail h4 {
    font-size: 16px;
  }
}

     
/* nav-tab css start */


.team-members .nav-tabs .nav-link{
    border: none;
    color: #666;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    position: relative;
    transition: 0.3s;
    margin-bottom: 20px;
}

.team-members .nav-tabs .nav-link.active{
    color: #000;
    background: transparent;
}

.team-members .nav-tabs .nav-link.active::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: var(--red);
}

@media screen and (max-width:420px) {
  .team-members .nav-tabs .nav-link{
    font-size: 14px;
    padding: 5px 15px;
  }
}


/* nav-tab css end */


@media  screen and (max-width:767px) {
  .leadership-heading{
    display: none;
  }
  .team-members{
    display: none;
  }
}
/* ----------------------- all-products list section css ends here ----------------------- */






/* ---------------- why choose us css start here ---------------- */

.why-section {
  background: linear-gradient(135deg, #2a2568 0%, #1a174a 100%);
  color: white;
}

/* LEFT SIDE */
.why-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-text {
  color: #ddd;
  margin-bottom: 20px;
}

.why-highlight span {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--yellow);
}

/* RIGHT CARDS */
.why-box {
  background: white;
  color: #333;
  padding: 25px;
  border-radius: 16px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* TOP RED LINE EFFECT */
.why-box::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 0%;
  background: var(--red);
  top: 0;
  left: 0;
  transition: 0.4s;
}

.why-box:hover::before {
  width: 100%;
}

/* HOVER */
.why-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ICON */
.icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--red);
}

/* TEXT */
.why-box h3 {
  color: var(--blue);
  font-weight: 600;
  font-size: 20px;
}

.why-box p {
  font-size: 14px;
  color: #555;
}

/* animation */

/* FLOAT */
@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* FADE IN */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* APPLY */
.why-box {
  opacity: 0;
  animation:
    fadeSlideUp 0.8s ease forwards,
    floatUpDown 4s ease-in-out infinite;
}

/* STAGGER USING CUSTOM CLASS */
.why-item:nth-child(1) .why-box {
  animation-delay: 0s, 0s;
}
.why-item:nth-child(2) .why-box {
  animation-delay: 0.2s, 0.5s;
}
.why-item:nth-child(3) .why-box {
  animation-delay: 0.4s, 1s;
}
.why-item:nth-child(4) .why-box {
  animation-delay: 0.6s, 1.5s;
}

/* animation */

/* responsive css start */

@media screen and (max-width: 1200px) {
  .why-box h5 {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .why-heading {
    font-size: 20px;

    margin-bottom: 10px;
  }

  .why-highlight span {
    font-size: 12px;
  }

  .why-box {
    padding: 15px;
  }
}

/* responsive css end */

/* ---------------- end of why choose us css here ---------------- */

/* ------------------------ latest product css start here --------------------------- */

/* CARD BASE */
.latest-products .latest-product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  padding-bottom: 10px;
  margin: 20px 0px;
}

/* TOP ACCENT LINE (BRAND FEEL) */
.latest-products .latest-product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

/* IMAGE */
.latest-products .latest-product-img {
  padding: 15px 5px;
  background: #f8f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.latest-products .latest-product-img img {
  width: 100%;
  /* height: 180px; */
  object-fit: contain;
}

/* PRODUCT NAME AREA */
.latest-products .product-name {
  padding: 10px 12px 0;
  text-align: center;
}

/* PRODUCT TITLE */
.latest-products .product-name p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.4;
  min-height: 40px;
  text-align: center;
}

/* SUBTLE BOTTOM LINE */
.latest-products .product-name::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  margin: 8px auto 0;
  border-radius: 2px;
}

/* CLEAN SHADOW (NO HOVER) */
.latest-products .latest-product-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* ------------------------ end of latest product css ------------------------------- */

/* ------------------ blogs css start here ------------------ */

/* SECTION */
.blog-section {
  background: #f9fafc;
}

.blog-title {
  color: var(--blue);
  font-weight: 700;
  font-size: 32px;
}

.blog-subtitle {
  color: #666;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  min-height: 430px;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.blog-img img {
  width: 100%;
  object-fit: cover;
}

/* CONTENT */
.blog-content {
  padding: 20px;
}

.blog-date {
  font-size: 13px;
  color: var(--red);
  font-weight: 500;
}

.blog-content h3 {
  margin: 10px 0;
  color: var(--blue);
  font-weight: 600;
  font-size: 20px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
}

/* READ MORE */
.read-more {
  text-decoration: none;
  color: var(--red);
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

.read-more:hover {
  color: var(--blue);
}

/* responsive css start */

@media screen and (max-width: 1400px) {
  .blog-card {
    min-height: 420px;
  }
}

@media screen and (max-width: 1200px) {
  .blog-card {
    min-height: auto;
  }

  .blog-content h5 {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .blog-card {
    min-height: 410px;
  }
  .blog-content h5 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .blog-title {
    font-size: 20px;
  }

  .blog-card {
    min-height: auto;
  }

  .blog-content {
    padding: 10px;
  }
  .blog-content h5 {
    font-size: 18px;
    margin: 5px 0px;
  }
}

/* responsive css ends */

/* ------------------ end of blogs css here ------------------ */

/* ------------------ faq css start here ------------------ */

.faq-section {
  background: #f9fafc;
}

.faq-title {
  color: var(--blue);
  font-weight: 700;
}

.faq-subtitle {
  color: #666;
}

/* ACCORDION */
.custom-faq .accordion-item {
  border: none;
  margin-bottom: 15px;

  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* QUESTION */
.custom-faq .accordion-button {
  background: white;
  color: var(--blue);
  font-weight: 600;
  padding: 18px;
  transition: 0.3s;
}

/* ACTIVE STATE */
.custom-faq .accordion-button:not(.collapsed) {
  background: var(--yellow);
  font-weight: 700;
}

/* ICON COLOR */
.custom-faq .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(88%) saturate(400%)
    hue-rotate(340deg);
}

/* ANSWER */
.custom-faq .accordion-body {
  background: #fff;
  color: #555;
  padding: 20px;
}

/* HOVER */
.custom-faq .accordion-button:hover {
  background: var(--yellow);
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .faq-title {
    font-size: 20px;
  }
  .custom-faq .accordion-button {
    font-size: 14px;
    padding: 8px;
  }

  .custom-faq .accordion-body {
    padding: 10px;
    font-size: 12px;
  }
}

/* responsive css ends */

/* ------------------ end of faq css here ------------------ */

/* ------------------- testimonial css start here ------------------- */

/* SECTION */
.testimonial-section {
  background: linear-gradient(135deg, #2a2568 0%, #1a174a 100%);
  color: white;
  position: relative;

  overflow: hidden;
}

/* subtle pattern */
.testimonial-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--yellow);
  opacity: 0.08;
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

/* TITLE */
.testi-title {
  font-size: 32px;
  font-weight: 700;
}

.testi-subtitle {
  color: #ddd;
}

/* CARD FULL HEIGHT */
.testi-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* CARD */
.testi-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 30px 25px;
  margin: 30px 0px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}
.testi-card p {
  text-align: center;
}

/* TOP RED LINE */
.top-line {
  height: 4px;
  width: 40px;
  background: var(--red);
  margin: 0 auto 15px;
  border-radius: 2px;
  transition: 0.4s;
}

/* QUOTE */
.quote {
  font-size: 35px;
  color: var(--red);
  margin-bottom: 10px;
}

/* TEXT */
.testi-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* CLIENT */
.client h3 {
  color: var(--blue);
  font-weight: 600;
  margin: 0;
  font-size: 16px;
}

.client span {
  font-size: 13px;
  color: var(--red);
}

/* HOVER EFFECT (SMOOTH & PREMIUM) */
.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.testi-card:hover .top-line {
  width: 80px;
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .testi-title {
    font-size: 20px;
  }

  .testi-card {
    padding: 10px 5px;
  }
}

/* responsive css ends */

/* ------------------- end of testimonial css here ------------------- */

/* -------------------  contact us css start here --------------- */
.contact-us {
  background: rgba(245, 243, 243, 0.822);
  /* background: url(../img/running-water/call-action.gif) no-repeat center center/cover; */
}

/* form css start */

.contact-us .contact-form .form-control:focus {
  border-color: var(--gray);
  box-shadow: none;
}

.contact-us .contact-form .btn {
  box-shadow: none;
  border: 1px solid #ced4da !important;
}

.contact-us .contact-form .send {
  background: var(--red);
  border: 1px solid var(--red);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}

.contact-us .contact-form .send:hover {
  background: var(--yellow);
  color: var(--red);
}

/* responsive css start here */

@media screen and (max-width: 767px) {
  .contact-us .sub-head {
    margin-bottom: 10px;
  }
  .contact-us .sub-head h3 {
    font-size: 16px;
  }
}

/* end of responsive css here */

/* form css ends */

/* --------------- end of contact us section here --------------- */

/* ------------------- footer css start here ------------------- */
.footer {
  background: linear-gradient(#00000010);
}

.footer .footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.footer .logo-img img {
  width: 200px;
}

.footer .footer-top .social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-top .social-icons img {
  width: 40px;
}

.footer .part .head h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer .part {
  font-size: 18px;
}

.footer .part-1 p {
  text-align: justify;
  margin-bottom: 10px;
}

.footer .part-1 .view-more {
  display: inline-block;
  background: var(--red);
  padding: 5px 10px;
  margin-bottom: 10px;

  transition: 0.5s ease-in-out;
}

.footer .part-1 .view-more a {
  color: var(--white);
  transition: 0.5s ease-in-out;
}

.footer .part-1 .view-more:hover {
  background: var(--blue);
}

.footer .part-2 {
  margin-left: 100px;
}

.footer .part-2 ul li {
  margin-bottom: 10px;
}

.footer .part-2 ul li a {
  color: #000;
  transition: 0.4s ease-in-out;
}

.footer .part-2 ul li i {
  margin-right: 10px;
}

.footer .part-2 ul li:hover a {
  color: var(--red);
}

.footer .part-3 .address h4 {
  font-size: 20px;
  margin-top: 20px;
}

.footer .part-3 .address a {
  color: #1e1e1e;
  display: inline-block;
  font-size: 18px;
}

.footer-widget {
  padding: 5px 0px;
  color: #fff;
  background: var(--blue);
}

.footer-widget .widget-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-widget .widget-text p {
  font-size: 14px;
  margin-bottom: 0px;
}

.footer-widget .widget-text p span {
  font-weight: 600;
}

.footer-widget .widget-text a {
  color: #fff;
}

/* responsive css start */

@media screen and (max-width: 1400px) {

  .footer .logo-img img {
  width: 170px;
}

  .footer .part {
    font-size: 16px;
  }
  .footer .part-3 .address a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1200px) {
  .footer .part {
    font-size: 14px;
  }

  .footer .part-2 {
    margin-left: 50px;
  }

  .footer .part-3 .address a {
    font-size: 14px;
  }
}

@media screen and (max-width: 991px) {
  .footer .footer-top .social-icons img {
    width: 30px;
  }

  .footer .part .head h3 {
    margin-bottom: 10px;
  }

  .footer .part {
    margin-bottom: 20px;
    font-size: 16px;
  }

  .footer .part-2 {
    margin-left: 50px;
  }

  .footer .part-3 .address h4 {
    font-size: 16px;
    margin-top: 10px;
  }

  .footer .part-3 .address a {
    font-size: 16px;
  }

  .footer-widget .widget-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-widget .widget-text p {
    text-align: center;
  }

  .footer-widget .widget-text .t-4-a {
    margin-top: 10px;
  }
}

@media screen and (max-width: 819px) {
  .footer .part-2 {
    margin-left: 0px;
  }
}

@media screen and (max-width: 767px) {
  .footer .footer-top {
    margin-bottom: 10px;
  }

  .footer .logo-img img {
    width: 130px;
  }

  .footer .footer-top .social-icons {
    gap: 5px;
  }

  .footer .footer-top .social-icons img {
    width: 20px;
  }

  .footer .part {
    margin-bottom: 20px;
  }

  .footer .part .head h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .footer .part-1 .view-more {
    padding: 2px 8px;
    font-size: 14px;
  }

  .footer .part-2 ul li {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .footer .part-3 .address h4 {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 2px;
  }

  .footer .part-3 .address a {
    font-size: 12px;
  }

  .footer-widget .widget-text .t-4-a {
    margin-top: 10px;
  }
}

@media screen and (max-width: 460px) {
  .footer-widget .widget-text p {
    font-size: 10px;
  }
}

/* ------------------ end of footer css here ------------------- */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* --------------------- contact page css start here --------------------- */

/* card css start */

/* CARD BASE */
.contact-us .contact-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 30px 20px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.4s ease;
  text-align: center;

  min-height: 295px;

}

/* LEFT COLOR BAR */
.contact-us .contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
  transition: 0.4s;
  z-index: 0;
  pointer-events: none; /* IMPORTANT */
}

/* SOFT YELLOW SHAPE */
.contact-us .contact-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 120px;
  height: 120px;
  background: #e9d120;
  border-radius: 50%;
  opacity: 0.3;
  transition: 0.4s;
}

/* ICON (CENTER TOP NOW) */
.contact-us .contact-card i {
  width: 60px;
  height: 60px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 15px;
  transition: 0.4s;
}

/* TITLE */
.contact-us .contact-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

/* TEXT */
.contact-us .contact-card p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.contact-us .contact-card i,
.contact-us .contact-card h3,
.contact-us .contact-card p {
  position: relative;
  z-index: 2;
}

/* LINKS */
.contact-us .contact-card p a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}

/* 🔥 HOVER EFFECT (UNCHANGED STYLE) */

/* expand left bar */
.contact-us .contact-card:hover::before {
  width: 100%;
  opacity: 0.05;
}

/* move yellow shape */
.contact-us .contact-card:hover::after {
  transform: scale(1.3);
  opacity: 0.4;
}

/* icon color change */
.contact-us .contact-card:hover i {
  background: var(--red);
}

/* heading color shift */
.contact-us .contact-card:hover h3 {
  color: var(--red);
}

/* border highlight */
.contact-us .contact-card:hover {
  border-color: var(--red);
}

/* RESPONSIVE */

@media screen and (max-width: 1400px) {
   .contact-us .contact-card {
    min-height: 350px;
  }
}

@media screen and (max-width: 1200px) {
   .contact-us .contact-card {
    min-height: 380px;
  }
}

@media screen and (max-width: 991px) {
  .contact-us .contact-card {
    margin-bottom: 20px;
    padding: 25px 15px;
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .contact-us .contact-card {
    min-height: auto;
  }

  .contact-us .contact-main-heading {
    font-size: 22px;
  }

  .contact-us .contact-card i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .contact-us .contact-card h3 {
    font-size: 22px;
  }
  .contact-us .contact-card p {
    font-size: 16px;
  }
}

/* card css end */

/* map location css */

.map-location,
.map-location iframe {
  width: 100%;
  height: 100%;
  height: 400px;
  border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {
  .map-location,
  .map-location iframe {
    height: 200px;
    margin-bottom: 20px;
  }
}

/* map location css */

/* --------------------- contact page css ends here --------------------- */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* --------------------- blog page css start here --------------------- */

@media screen and (max-width: 767px) {
  .blog-section .blog-main-title {
    font-size: 22px;
  }
}

/* --------------------- blog page css ends here --------------------- */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* --------------------- blog detail page css start here --------------------- */

.blog-detail .blog-detail-img {
  margin-bottom: 10px;
}

.blog-detail .blog-text h1 {
  margin-bottom: 5px;
  font-weight: bold;
}

.blog-detail .blog-text h2 {
  margin-bottom: 5px;
  font-weight: bold;
}

.blog-detail .blog-text p {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .blog-detail .blog-text h1 {
    font-size: 22px;
  }
  .blog-detail .blog-text h2 {
    font-size: 18px;
  }

  .blog-detail .blog-text p {
    margin-bottom: 30px;
  }
}

/* --------------------- blog detail page css ends here --------------------- */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* --------------------- basic products page css start here --------------------- */

.basic-product-page .basic-product-card .basic-product-name p {
  font-size: 22px;
  font-weight: 600;
}

@media screen and (max-width: 1200px) {
  .basic-product-page .basic-product-card .basic-product-name p {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .basic-product-page .basic-product-card .basic-product-name p {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .basic-product-page .basic-products-main-heading {
    font-size: 24px;
  }

  .basic-product-page .basic-product-card .basic-product-name p {
    font-size: 16px;
  }
}

/* --------------------- basic products page css ends here --------------------- */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* --------------------- main products page css start here --------------------- */

.main-product-page .main-products-sub-heading {
  font-size: 20px;
  margin-top: 10px;
}

.main-product-page .category-card {
  min-height: 445px;
}

@media screen and (max-width: 1400px) {
  .main-product-page .category-card {
    min-height: 400px;
  }
}

@media screen and (max-width: 1200px) {
  .main-product-page .category-card {
    min-height: 435px;
  }
}

@media screen and (max-width: 991px) {
  .main-product-page .category-card {
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .main-product-page .main-products-main-heading {
    font-size: 24px;
  }

  .main-product-page .main-products-sub-heading {
    font-size: 16px;
    margin-top: 5px;
  }
}

/* related product category css */

.main-product-page-category .category-card {
  min-height: auto;
  margin: 40px 0px;
}

/* related product category css */

/* --------------------- main products page css ends here --------------------- */

/* ====================================================================================================== */
/* ====================================================================================================== */

/* ------------------------------------ enquiry page css start here ------------------------------------ */

.enquiry-page .product-detail .product-text p {
  text-align: justify;
  margin-bottom: 20px;
}

.enquiry-page .product-detail .detail {
  text-align: justify;
}
.enquiry-page .product-detail .detail p {
  margin-bottom: 20px;
}

.enquiry-page .product-detail .detail .features h2 {
  text-align: center;
  margin: 50px 0px;
  color: var(--black);
}
.enquiry-page .product-detail .detail .features h3 {
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 10px;
}

/* responive product detail */

@media screen and (max-width: 1200px) {
  .enquiry-page .product-detail p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .enquiry-page .product-detail .product-img {
    margin-bottom: 20px;
  }
  .enquiry-page .product-detail p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .enquiry-page .product-detail .enqury-product-name-heading {
    font-size: 20px;
  }

  .enquiry-page .product-detail p {
    font-size: 12px;
  }
  .enquiry-page .product-detail .detail .features h2 {
    font-size: 20px;
    margin-top: 0px;
    margin-bottom: 20px;
  }

  .enquiry-page .product-detail .detail .features h3 {
    font-size: 16px;
  }
  .enquiry-page .product-detail .detail .features p {
    margin-bottom: 20px;
  }
}

/* responsive product detail */

/* ------------------------------------ end of enquiry page css here ------------------------------------ */

/* ========================================================================================================= */
/* ========================================================================================================= */

/* --------------------------------- about page css start here ------------------------------------ */

.about-company-alt {
  background: linear-gradient(135deg, var(--blue) 0%, #1a174a 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* HEADING */
.about-alt-heading {
  font-size: 38px;
  font-weight: 600;
}

.about-alt-sub {
  color: var(--yellow);
  font-size: 22px;
}

/* LEFT TEXT */
.about-alt-content p {
  color: #ddd;
  line-height: 1.7;
  font-size: 18px;
  margin-bottom: 16px;
}

/* RIGHT CARDS GRID */
.about-alt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD STYLE */
.about-alt-card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

/* RED TOP BORDER ANIMATION */
.about-alt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: lineAnim 3s infinite;
}

/* CARD TEXT */
.about-alt-card h3 {
  font-size: 24px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 5px;
}

.about-alt-card p {
  color: #4d4b4b;
}

/* FLOAT ANIMATION */
.about-alt-card {
  animation: floatCard 5s ease-in-out infinite;
}

.about-alt-card:nth-child(2) {
  animation-delay: 0.5s;
}
.about-alt-card:nth-child(3) {
  animation-delay: 1s;
}
.about-alt-card:nth-child(4) {
  animation-delay: 1.5s;
}

/* KEYFRAMES */
@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes lineAnim {
  0% {
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* BACKGROUND SHAPE */
.about-company-alt::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.2;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-alt-cards {
    grid-template-columns: 1fr;
  }
}

/* STRONG POINTS */
/* STRONG POINTS CARD */
.strong-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  border: 1px solid #eee;
  height: 100%;
  transition: 0.3s ease;
  position: relative;
}

/* subtle left accent */
.strong-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: 40px;
  width: 4px;
  background: var(--red);
  border-radius: 2px;
}

/* heading */
.strong-card h4 {
  font-size: 22px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 10px;
}

/* text */
.strong-card p {
  color: #555;
  line-height: 1.4;
  padding-left: 10px;
}

/* very subtle hover (not flashy) */
.strong-card:hover {
  border-color: var(--red);
}

@media screen and (max-width: 767px) {
  .about-alt-heading {
    font-size: 24px;
  }

  .about-alt-sub {
    font-size: 16px;
  }

  /* LEFT TEXT */
  .about-alt-content p {
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .about-alt-card p {
    font-size: 14px;
  }

  .strong-card p {
    font-size: 14px;
  }
}

/* our capabilities css start here */

.capabilities-section {
  background: #f8f9fc;
}

/* HEADING */
.capabilities-heading {
  font-size: 38px;
  font-weight: 700;
  color: var(--blue);
}

.capabilities-sub {
  color: #666;
  font-size: 22px;
}

/* CARD */
.capability-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  height: 100%;
  position: relative;
  transition: 0.3s ease;
}

/* hover effect (different from your usual) */

.capability-card:hover {
  border-color: var(--red);
}

/* TEXT */
.capability-card h3 {
  font-size: 22px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.capability-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .capabilities-heading {
    font-size: 24px;
  }

  .capabilities-sub {
    color: #666;
    font-size: 16px;
  }
}

/* our capabilities css ends here */

/* -------------- mission vision css start here ------------- */

.mission-vision {
  background:
    linear-gradient(rgba(42, 37, 104, 0.993)),
    url(../img/contact/contactbg.jpg) no-repeat center center/cover;
  backdrop-filter: blur(10px);
  color: #fff;
}

.mission-vision .mission-border {
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 20px 0px;
  margin-bottom: 20px;
}

.mission-vision .vision-border {
  border-bottom: 2px solid #fff;
  padding: 20px 0px;
}

.mission-vision .mission-vision-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.mission-vision h2 {
  margin-bottom: 10px;
}

.mission-vision p {
  text-align: justify;
  font-size: 18px;
}

/* responsive css start */

@media screen and (max-width: 991px) {
  .mission-vision img {
    margin-bottom: 10px;
  }
  .mission-vision .mission-border {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 767px) {
  .mission-vision p {
    font-size: 14px;
  }
}

/* end of responsive */

/* -------------- end of mission vision css ----------------- */

/* --------------------------------- about page css ends here ------------------------------------ */







