

@import url("https://fonts.googleapis.com/css?family=Montserrat:500,700|Open+Sans");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


*{
    border: 0;
    padding: 0;
    margin: 0;
}

:root {
    --primary: #e55c23;
    --second:#e55c23;
    --light: #EEF9FF;
    --dark:#127f9c;
  
}
.bg-c{
    background-color:var(--dark);
    color:var(--dark);
}

.text-c{
    color:var(--dark);
}

.mb-4, .pt-4{
  text-align: justify;
}

.bg-F{
    background-color: #eff5f7;
    color:var(--dark);
}
.navbar-brand h1{
   color: #e55c23;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
}
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
}

.navbar-light .navbar-nav .nav-link:hover{
/* .navbar-light .navbar-nav .nav-link.active { */
  color: var(--primary);
}


@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link  {
      margin-right: 0;
      padding: 10px 0;
  }

  .navbar-light .navbar-nav {
      border-top: 1px solid #EEEEEE;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-link.active {
  color: #e55c23;
}


.navbar-light.sticky-top {
  top: -100px;
  transition: .5s;
}



@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
      position: absolute;
      content: "";
      width: 0;
      height: 5px;
      top: -6px;
      left: 50%;
      background: #FFFFFF;
      transition: .5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
      width: 100%;
      left: 0;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
      display: none;
  }

  .navbar .nav-item .dropdown-menu {
      display: block;
      border: none;
      margin-top: 0;
      top: 150%;
      opacity: 0;
      visibility: hidden;
      transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
      top: 100%;
      visibility: visible;
      transition: .5s;
      opacity: 1;
  }
}

.border-primary {
  border-color: #e55c23 !important;
 

}


/* Overlay styling */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* transparent */
}


/* Main text */
.carousel-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #fff;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease both;
}

.carousel-title span {
  color: var(--primary);
}

/* Description text */
.carousel-desc {
  font-family: "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  animation: fadeInUp 1.3s ease both;
}

/* Modern button */
.btn-carousel {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 12px 36px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  animation: fadeInUp 1.6s ease both;
}

.btn-carousel:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* Navigation controls */
.header-carousel .owl-nav {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px; /* space between arrows */
}

/* Optional: Make them visible even on mobile */
@media (max-width: 768px) {
  .header-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    opacity: 1;
  }
}

.bi-chevron-left,.bi-chevron-right{
  color: white !important;
  
}

/* Image sizing */
.header-carousel .owl-carousel-item {
  height: 90vh;
  position: relative;
}

.header-carousel .owl-carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.1); /* makes image appear brighter */
}

.carousel-title {
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  width: 80%;
  margin: auto;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.2s ease both;
}

.carousel-title span {
  color: var(--primary);
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-title {
    font-size: 2rem;
  }
  .carousel-desc {
    font-size: 0.95rem;
  }
  .btn-carousel {
    padding: 10px 26px;
  }
}







/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


/*** contact ***/
.bg-contact-c{
    background-color: var(--dark);
}

.btn-contact{
    color: white;
    background-color: var(--second);
}
.btn-contact:hover {
  color: var(--primary);
  background-color: #DDDDDD;
}

.btn-about{
    background-color: var(--primary);
    color: white;
}

.btn-about:hover{
    background-color: var(--dark);
    color: white;
}

/*** contact ***/
.footer-bg{
    background-color: var(--dark);
}
.footer-bg {
    color: var(--primary);
}
.footer-icon i{
    color: var(--primary);
}

.footer-icon i:hover{
    color: #DDDDDD;
    background-color: var(--dark);
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 34px;
    color: var(--dark);
  }
  
  .about h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px;
    color:var(--dark);
  }
  
  .about i {
    font-size: 48px;
    margin-top: 15px;
    color: #f39e7a;
  }
  
  .about p {
    font-size: 15px;
    color: #5a6570;
    text-align: justify;
  }
  
  @media (max-width: 991px) {
    .about .about-img img {
      max-width: 70%;
    }
  }
  
  @media (max-width: 767px) {
    .about .about-img img {
      max-width: 90%;
    }
  }
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #fff;
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #fff;
  }
  
  .services .icon-box:hover {
    transform: translateY(-5px);
    border-color: #ef7f4d;
  }
  
  .services .icon i {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 15px;
    color: #ef7f4d;
  }
  
  .services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .services .title a {
    color:  var(--dark);
  }
  
  .services .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
  }
  


  
/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.Product {
  padding: 40px 0 40px 0;
}

.Product .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  border: 1px solid #eef0ef;
  transition: 0.3s;
  border-bottom: 3px solid #fff;
  transition: all 0.3s ease-in-out;
}
.Product .icon-box img{
 width: 150px;
 height: 60px;

 
}

.Product .icon-box:hover {
 
  transform: translateY(-5px);
  border-color: #ef7f4d;
}


/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.Service {
    padding: 0;
    margin-top: 40px;
  }
  
  .Service .container {
    background-color: rgb(252, 252, 252);
    padding: 60px 50px;
  }
  
  @media (max-width: 992px) {
    .Service .container {
      padding: 30px;
    }
  }
  



  /*--------------------------------------------------------------
# product section
--------------------------------------------------------------*/
/* .product-details .icon-box {
    padding: 30px;
    border-radius: 6px;
    background: #fff;
    transition: ease-in-out 0.3s;
  }
  
  .product-details .icon-box i {
    float: left;
    color: #3498db;
    font-size: 40px;
    line-height: 0;
  }
  
  .product-details .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .product-details .icon-box h4 a {
    color: #384046;
    transition: 0.3s;
  }
  
  .product-details .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
  }
  
  .product-details .icon-box:hover {
    box-shadow: 0px 2px 22px rgba(0, 0, 0, 0.08);
  }
  
  .product-details .icon-box:hover h4 a {
    color: #3498db;
  } */


  /*--------------------------------------------------------------
# img
--------------------------------------------------------------*/

  .imgopci{
    border-radius: 20%;
    opacity: 0.75;

  }
  .imglenier{
    position: relative;
  display: inline-block;
  }
.imglenier:before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(49%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(255, 255, 255, 1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* IE10+ */
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 49%, rgba(255, 255, 255, 1) 100%);
    /* W3C */
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
  }


  /*--------------------------------------------------------------
# Product-main
--------------------------------------------------------------*/
.product-main {
  padding:30px
}
.product-main .content {
    padding: 30px;
    background: #ffffff;
    border-radius: 4px;
    color: #0b0a0a;
  }
  /* ###############################################.product-main .content ################################### */
  /* .product-main .content img:first-child{
     width: 358px;
     height: 200px;  

  } */

  /* ############################################################################################################## */


  .product-main .content h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
  }
  
  .product-main .content p {
    margin-bottom: 30px;
    text-align: justify;
  }
  
  .product-main .content .more-btn {
    display: inline-block;
    background: rgba(26, 2, 2, 0.1);
    padding: 6px 30px 8px 30px;
    color: var(--second);
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
  }
  
  .product-main .content .more-btn i {
    font-size: 14px;
  }
  
  .garnet-size{
    font-weight: bold;
  }
  .product-main .content .more-btn:hover {
    background-color: #eff5f7;
    color:var(--dark);
    
  }
 
    /* #########################################  .product-main .icon-boxes .icon-box ############################################ */

    .product-main .icon-boxes .icon-box-saudi:first-child {
    /* width: 700px; */
    padding: 0;
    
    }
    .product-main .icon-boxes .icon-box-saudi:first-child img {
      /* object-fit: cover; */
      width: 600px;
      height: 340px;
    }


    .product-main .row{
      justify-content: space-evenly;
    }

/* ######################################################################################################################### */

  .product-main .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    /* width: 250px; */
   
    transition: 0.3s;
    border-bottom: 3px solid #fff;
    transition: all 0.3s ease-in-out;
    
  }
  .product-main .icon-boxes .icon-box img{
     height: 140px;
     width: 200px;
   
  }
  
  .product-main .icon-boxes .icon-box i {
    font-size: 40px;
    color: #009970;
    margin-bottom: 30px;
  }
  
  .product-main .icon-boxes .icon-box h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 30px 0;
  }
  
  .product-main .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
  }
  
  .product-main .icon-boxes .icon-box:hover {
    box-shadow: var(--dark);
    transform: translateY(-5px);
    border-color: #ef7f4d;
  }
 
  #product-main{
    background-color: #faf7f4;
  }

  .team-padding{
    padding: 17px;
  }
  /* @media screen and (-webkit-min-device-pixel-ratio:0) { 
    property: value;
  
  } */

  @media (max-width: 995px) {

    .product-main .icon-boxes{
      margin: 0 auto;
    }
  
  }

  @media (max-width: 767px) {
    .product-main .icon-boxes{
      margin: 0 auto;
    }
    .product-main .icon-boxes .icon-box-saudi:first-child img {
      /* object-fit: cover; */
      width: 450px;
      height: 300px;
    }
  }
  @media (max-width: 520px) {

    .product-main .icon-boxes{
      margin: 0 auto;
    }
    
    .product-main .icon-boxes .icon-box-saudi:first-child img {
      /* object-fit: cover; */
      width: 250px;
      height: 200px;
    }
  }



    .products-hero {
      background: linear-gradient(90deg, rgba(2,27,56,0.7), rgba(6,62,95,0.65)), url('img/hero_3.jpg') center/cover no-repeat;
      color: #fff;
      padding: 90px 0;
      position: relative;
    }

    .products-hero h1 {
      font-weight: 800;
      letter-spacing: -1px;
    }

    .product-tabs .nav-link {
      border-radius: 8px;
      padding: 12px 22px;
      margin-right: 8px;
      border: 1px solid transparent;
      transition: all .25s ease;
      background: #fff;
      color: #222;
      box-shadow: 0 6px 16px rgba(6, 62, 95, 0.06);
    }

    .product-tabs .nav-link.active {
      background: var(--dark);
      color: #fff;
      box-shadow: 0 12px 30px rgba(6, 62, 95, 0.12);
      transform: translateY(-4px);
    }

    .product-card {
      border-radius: 12px;
      overflow: hidden;
      transition: transform .25s ease, box-shadow .25s ease;
      box-shadow: 0 6px 18px rgba(14, 30, 50, 0.06);
      background: #fff;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 18px 40px rgba(14, 30, 50, 0.12);
    }

    .product-card .card-img-top {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .product-card .card-body {
      padding: 18px;
      flex-grow: 1;
    }

    .product-card .card-title {
      font-size: 1.03rem;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .product-card .card-text {
      color: #6c757d;
      font-size: 0.92rem;
      margin-bottom: 12px;
    }

    .product-actions {
      padding: 12px 18px 18px;
    }

    .badge-category {
      font-size: 0.8rem;
      padding: 6px 10px;
      border-radius: 999px;
    }

    /* Responsive tweaks */
    @media (max-width: 575px) {
      .product-card .card-img-top {
        height: 150px;
      }
      .product-tabs .nav-link {
        padding: 10px 12px;
        font-size: 14px;
      }
    }

    /* keep some of your old styles so page remains visually consistent */
    .section-box {
      background: #faf7f4 !important;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }




 .product-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.product-card img {
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.product-card .card-body {
  padding: 1.2rem;
}

.product-card .card-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.product-card .card-text {
  font-size: 0.9rem;
  color: #6c757d;
}

.product-actions {
  border-top: 1px solid #eee;
}



.category-card {
  background: #fff;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.icon-box i {
  transition: transform 0.3s ease-in-out;
}
.category-card:hover .icon-box i {
  transform: scale(1.15) rotate(5deg);
}



/* === Modern Tabs Styling === */
.product-tabs .nav-pills .nav-link {
  background: #ffffff;
  color: #555;
  border: 2px solid #e5e5e5;
  border-radius: 50px;
  font-weight: 600;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  transition: all 0.35s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.product-tabs .nav-pills .nav-link i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

/* Hover effect */
.product-tabs .nav-pills .nav-link:hover {
  border-color: transparent;
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.product-tabs .nav-pills .nav-link:hover i {
  transform: rotate(-10deg) scale(1.1);
}

/* Active Tab Style */
.product-tabs .nav-pills .nav-link.active {
  background-color: var(--primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
  transform: scale(1.05);
}

/* Responsive wrapping */
@media (max-width: 768px) {
  .product-tabs .nav-pills .nav-link {
    font-size: 0.9rem;
    padding: 8px 14px;
  }
}





.modal.fade .modal-dialog {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.modal.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

/* Glass/blur effect for description */
.blur-bg {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

/* Image hover zoom */
.modern-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .modern-img {
  transform: scale(1.05);
}

/* Floating modal style */
.modern-modal {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: glow-in 0.5s ease forwards;
}

/* Glow-in animation */
@keyframes glow-in {
  from {
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transform: scale(0.98);
  }
  to {
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    transform: scale(1);
  }
}




/* Smooth animation for collapse */
.collapse-box {
  background: rgba(0, 123, 255, 0.05);
  border-radius: 12px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: inset 0 0 8px rgba(0, 123, 255, 0.08);
}
.collapse.show.collapse-box {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/* Rotate chevron icon on open */
.toggle-btn[aria-expanded="true"] .toggle-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.toggle-btn[aria-expanded="false"] .toggle-icon {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* Button hover glow */
.toggle-btn:hover {
  background-color: #007bff;
  color: #fff !important;
  border-color: #007bff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

/* Card hover animation */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* List items inside collapse */
.collapse-box ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
}

.team-box {
  background: white;
  padding: 30px 20px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid #e5e5e5;
  transition: 0.3s;
  min-height: 300px;
}

.team-box:hover {
  transform: translateY(-8px);
  border-color: #b5b5b5;
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.team-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f2f2f2;
  background: white;
}

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

.name {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.role {
  font-size: 15px;
  color: #444;
  margin-bottom: 2px;
}

.extra {
  font-size: 14px;
  color: #777;
}


 .modal-backdrop.show {
    opacity: 1 !important;
    background-color: rgba(0, 0, 0, 0.9) !important;
  }

  /* Modal responsive width */
  @media (max-width: 576px) {
    #productModal .modal-content {
      margin: 10px;
      border-radius: 14px;
    }
    #productModal img {
      max-height: 200px !important;
    }
  }


.logo-fade {
  animation: fadeLogo 0.8s ease-out;
}
@keyframes fadeLogo {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

/* Black strong backdrop */
.modal-backdrop.show {
  opacity: 1 !important; 
  background: rgba(57, 57, 57, 0.6) !important; /* semi-transparent dark */
  backdrop-filter: blur(6px); /* blur effect */
  -webkit-backdrop-filter: blur(6px); /* Safari support */
}

/* Modal fade + slide-up */
.modal-animate {
  animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Inner fade */
.fade-content {
  animation: fadeIn 0.7s ease forwards;
  opacity: 0;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Image zoom animation */
.zoom-in-img {
  animation: zoomIn 0.6s ease;
}
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Right panel slide animation */
.slide-in-right {
  animation: slideRight 0.6s ease-out;
}
@keyframes slideRight {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Description fade animation */
.fade-in-text {
  animation: fadeText 0.8s ease-out;
}
@keyframes fadeText {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 12px;
  }
  #productImage {
    max-height: 200px;
    object-fit: contain;
  }
}




/* Smooth Fade + Upwards Slide Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Responsive Typography */
@media (max-width: 768px) {
  .slide-title-blur {
    font-size: 1.15rem;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .slide-title-blur {
    font-size: 1rem;
    padding: 8px 20px;
    bottom: 20px;
  }
}

/* Fade + Slide animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}




/* Make carousel images fully responsive */
/* Carousel Images */
.carousel-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: relative;
}





/* Tablet */
@media (max-width: 992px) {
  .carousel-img {
    height: 60vh;
  }
  .slide-title-blur {
    font-size: 1.7rem;
    padding: 14px 22px;
    bottom: 28px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .carousel-img {
    height: 45vh;
  }
  .slide-title-blur {
    font-size: 1.2rem;
    padding: 10px 15px;
    bottom: 18px;
    line-height: 1.35;
  }
}


/* ============================
   BASIC RESPONSIVE FIXES
   ============================ */

/* For tablets and mobiles */
@media (max-width: 768px) {

  /* Increase card width for carousel items */
  .testimonial-carousel .testimonial-item {
    width: 95% !important;
    margin: 0 auto !important;
    padding: 20px !important;
  }

  /* Spacing inside card */
  .team-padding {
    padding: 18px 12px !important;
  }

  /* Name size */
  .team-padding h6 {
    font-size: 1rem !important;
    margin-bottom: 6px !important;
  }

  /* Role / subtitle text */
  .team-padding p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
}

/* For small phones */
@media (max-width: 480px) {

  .testimonial-carousel .testimonial-item {
    width: 100% !important;
    padding: 18px !important;
  }

  .team-padding h6 {
    font-size: 0.95rem !important;
  }

  .team-padding p {
    font-size: 0.8rem !important;
  }
}


/* Team Box Styling */
.team-box {
  background: #ffffff;
  padding: 25px 15px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: inset 0 0 15px rgba(0,0,0,0.10);   /* Inner shadow */
  position: relative;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

/* Delay animation for each card (stagger effect) */
.team-box:nth-child(1) { animation-delay: 0.1s; }
.team-box:nth-child(2) { animation-delay: 0.2s; }
.team-box:nth-child(3) { animation-delay: 0.3s; }
.team-box:nth-child(4) { animation-delay: 0.4s; }

/* Image */
.team-img img {
  width: 100%;
  max-width: 120px;
  border-radius: 50%;
  transition: transform 0.4s ease;
}

/* Hover Effects */
.team-box:hover {
  transform: translateY(-10px);
  box-shadow: inset 0 0 18px rgba(0,0,0,0.18), 0 10px 25px rgba(0,0,0,0.15);
}

.team-box:hover .team-img img {
  transform: scale(1.1);
}

/* Text */
.team-box .name {
  margin-top: 15px;
  font-weight: 600;
}

.team-box .role {
  color: #666;
  font-size: 0.9rem;
}

/* Fade + Up Animation */
@keyframes fadeUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.testimonial-item img {
    width: 150px;   /* you can change this */
    height: 80px;   /* adjust as needed */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.testimonial-item .d-flex {
    justify-content: center;
    align-items: center;
    height: 150px; /* container height */
}
