/********** CSS **********/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
}

:root {
  --primary: #efbd35;
  --secondary: #9b9b9b;
  --light: #f5f5f5;
  --dark: #161616;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-brand img {
  height: 90px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: var(--dark);
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.navbar .btn:hover {
  color: #ffffff !important;
  background: var(--primary) !important;
}

/*** Header ***/

.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(75, 0, 130, 0.55);  */
  background: rgba(0, 0, 0, 0.55);
}

/* Feature section  */

.features-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.feature-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: #f4c430; /* Gold */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 35px;
}

.feature-number {
  font-size: 60px;
  font-weight: 700;
  color: #4b0082; /* Purple */
}

.feature-card h5 {
  margin-top: 20px;
  font-weight: 600;
  color: #333;
}

.feature-card span {
  color: #666;
  font-size: 15px;
}

.feature-card hr {
  width: 50px;
  border: 2px solid #f4c430;
  margin: 15px 0;
}

.feature-icon {
  width: 65px;
  height: 65px;
  background: #f4c430;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 28px;
  color: #4b0082;
}

/*** About ***/
@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }

  .about-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .about-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .about-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Service ***/

.service-item {
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Top Gradient Border Effect */
.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4b0082, gold);
  transition: 0.4s;
}

.service-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Icon Circle */
.service-item .btn-square {
  transition: 0.4s;
}

.service-item:hover .btn-square {
  background: #4b0082 !important;
}

.service-item:hover .btn-square i {
  color: #fff !important;
}

/* Title Hover */
.service-item h4 {
  transition: 0.3s;
}

.service-item:hover h4 {
  color: #4b0082;
}

/* Button Style */
.service-item .btn {
  background: #4b0082;
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
}

.service-item .btn:hover {
  background: gold;
  color: #000;
}

.service-row {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-item {
  border-color: rgba(0, 0, 0, 0.03) !important;
}

.service-item .btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 38px;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
}

.service-item:hover .btn {
  width: 140px;
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}


.feature-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-box i {
    width: 50px;
    height: 50px;
    background: gold;
    color: #4B0082;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.feature-box h6 {
    margin-bottom: 3px;
    font-weight: 600;
}

.feature-box small {
    color: #777;
}

.feature-image {
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}



/*** Project Portfolio ***/
#portfolio-flters li {
  display: inline-block;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
  color: var(--primary);
  border-color: var(--primary);
}

.portfolio-inner {
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.portfolio-inner img {
  transition: 0.5s;
  height: 380px;
}

.portfolio-inner:hover img {
  transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
  opacity: 0;
  transition: 0.5s;
}

.portfolio-inner:hover .portfolio-text {
  bottom: 0;
  opacity: 1;
}

/*** Quote ***/
@media (min-width: 992px) {
  .container.quote {
    max-width: 100% !important;
  }

  .quote-text {
    padding-right: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .quote-text {
    padding-right: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .quote-text {
    padding-right: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
  transition: 0.5s;
}

.team-item:hover img {
  transform: scale(1.1);
}

.team-item .team-social {
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 22, 22, 0.7);
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-social {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}

.team-item .team-social .btn {
  opacity: 0;
}

.team-item:hover .team-social .btn {
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel {
  display: flex !important;
  flex-direction: column-reverse;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel .owl-dots {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
  transition: 0.5s;
  opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
  border-radius: 60px;
  opacity: 0.4;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}


/* blog  */

.blog-item {
    transition: 0.3s;
}

.blog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-item img {
    transition: 0.4s;
    height: 400px;
}

.blog-item:hover img {
    transform: scale(1.05);
}


/*** Contact ***/
@media (min-width: 992px) {
  .container.contact {
    max-width: 100% !important;
  }

  .contact-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .contact-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .contact-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--secondary);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
  letter-spacing: 1px;
  box-shadow: none;
}


.img-sec {
      height: 600px;
  }

/* responsive adjustments   */


@media (max-width: 576px) {
  .navbar .navbar-brand img {
    height: 65px;
  }
  
  .video-banner {
      height: 50vh;
  }
  
   .banner-video {
    height: 50vh;
  }
  
  .about-sec{
      height: 370px !important;
  }
  
  .img-sec {
      height: 300px !important;
  }
  
  .feature-image {
      margin-top: 35px;
      min-height: 300px;
    }
    
    .portfolio-inner img {
     height: 300px;
    }
    
    .blog-item img {
     height: 300px;
    }

}

  .product-section {
            padding: 60px 20px;
            background: #f5f5f5;
            text-align: center;
        }

        .product-section h2 {
            font-size: 32px;
            margin-bottom: 40px;
        }

        .product-container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: auto;
            flex-wrap: wrap;
        }

        .product-card {
            background: #fff;
            width: 48%;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border-top: 4px solid transparent;
            border-image: linear-gradient(90deg, #5f0aa8, #ffcc00) 1;
            overflow: hidden;
            text-align: center;
            transition: 0.3s;
            padding-bottom: 25px;
        }

        .product-card:hover {
            transform: translateY(-6px);
        }

        .product-card img {
            width: 400px;
            height: 250px;
            object-fit: cover;
        }

        .product-content {
            padding: 20px;
        }

        .product-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #4b0082;
        }

        .product-content p {
            font-size: 14px;
            color: #777;
            margin-bottom: 15px;
        }

       .read-btn{
    display:inline-block;
    padding:10px 25px;
    background:#401a65;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

           .read-more-wrapper{
    text-align:center;
    margin-top:25px;
}

        .read-btn:hover {
            background: #fcde64;
            color: #000;
        }

        /* Mobile */

        @media(max-width:768px) {
            .product-card {
                width: 100%;
            }
        }
      /* inner-page  */
        .product-section {
        padding: 70px 0;
    }

    /* Gallery Layout */
    .gallery {
        display: flex;
        gap: 70px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    /* Image Side */
    .left {
        flex: 1;
    }

    .main-img-box {
        background: #fff;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    .main-img-box img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: 0.4s;
    }

    .main-img-box:hover img {
        transform: scale(1.05);
    }

    /* Content Side */
    .right {
        flex: 1;
        padding-top: 10px;
        text-align: left;
        /* content left side */
    }

    .right h1 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 18px;
        color: #222;
        position: relative;
    }

    /* Stylish underline */
    .right h1::after {
        content: "";
        width: 70px;
        height: 3px;
        background: #c59d5f;
        position: absolute;
        left: 0;
        bottom: -8px;
    }

    /* Paragraph */
    .right p {
        font-size: 16px;
        line-height: 1.8;
        color: #555;
        margin-top: 15px;
    }

    /* List Styling */
    .right ul {
        margin-top: 20px;
        padding-left: 18px;
    }

    .right ul li {
        font-size: 15px;
        color: #444;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    /* Thumbnails */
    .thumbnails {
        margin-top: 20px;
        display: flex;
        gap: 12px;
    }

    .thumbnails img {
        width: 80px;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        border: 2px solid transparent;
        transition: 0.3s;
    }

    .thumbnails img:hover {
        transform: scale(1.08);
    }

    .active-thumb {
        border: 2px solid #c59d5f;
    }

    /* Responsive */
    @media(max-width:768px) {

        .gallery {
            flex-direction: column;
        }

        .main-img-box img {
            height: 300px;
        }

    }

    /* banner  */

    .banner-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

/* Arrows */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.faq-section {
  padding: 60px;
  background: #f4f7f6;
  font-family: Arial, sans-serif;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 18px;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

.faq-content {
  display: none;
  padding: 0 18px 18px;
  color: #555;
}

.icon {
  font-size: 20px;
  transition: 0.3s;
}

/* Services  */

 .services-section {
            padding: 60px;
            background: #f4f7f6;
            font-family: Arial, sans-serif;
        }

        .services-container {
            max-width: 1100px;
            margin: auto;
            text-align: center;
        }

        .services-container h2 {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .subtitle {
            color: #666;
            margin-bottom: 40px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .service-card {
            background: #fff;
            padding: 25px;
            border-radius: 12px;
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            margin-bottom: 10px;
        }

        .service-card p {
            color: #555;
        }

        .service-highlight {
            margin-top: 50px;
            background: #fff;
            padding: 25px;
            border-radius: 12px;
        }