/**
* Template Name: Arsha - v4.3.0
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
::selection{
    background:#650015;
    color:#fff;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #650015;
  text-decoration: none;
}

/*a:hover {
  color: #73c5eb;
  text-decoration: none;
}*/

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

a:hover{
    color:#650015 !important
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #650015;
        border-top-color: #fff;
        border-bottom-color: #fff;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #650015;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.whatsapp-float {
    position: fixed;
    bottom: 65px;
    right: 15px;
    z-index: 1000;
    cursor: pointer;
    transition:.5s ease-in-out
}
.whatsapp-float:hover {
   transform:translateY(-5px)
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #fff;
  color: #650015;
  border:1px solid #650015
}
.back-to-top:hover i {
  color: #650015;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.1s;
  z-index: 997;
  padding: 15px 0;
}

    #header.header-scrolled, #header.header-inner-pages {
        /*background: rgba(40, 58, 90, 0.9);*/
        /*background: rgb(214 214 214);*/
        background-color: #d4d4d4;
        border-bottom: 1px solid rgb(214 214 214); 
    }

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-size: 13px;
        font-weight: 500;
        color: #000;
        white-space: nowrap;
        font-family: "Jost", sans-serif;
        transition: 0.3s;
        text-transform:uppercase;
    }

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #650015;
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #650015;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #650015ae !important;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #000;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #650015 !important;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #650015;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  /*background: rgba(40, 58, 90, 0.9);*/
  background:#650015;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;

}
textarea{
    resize:none !important;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #650015;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 35px;
  color: #fff;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #650015 !important;
  background-color:#fff;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #650015;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #650015;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  /*background: #650015;*/
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #000;
}

#hero h2 {
  /*color: rgba(255, 255, 255, 0.6);*/
  color: #010101;
  margin-bottom: 50px;
  font-size: 24px;
}

    #hero .btn-get-started {
        font-family: "Jost", sans-serif;
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px 11px 28px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px 0 0 0;
        color: #fff;
        background: #650015;
    }

        #hero .btn-get-started:hover {
            background: #fff;
            color:#650015
        }

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #000;
  line-height: 1;
}
    #hero .btn-watch-video:hover {
        color: #650015;
    }
    #hero .btn-watch-video i {
        line-height: 0;
        color: #000;
        font-size: 32px;
        transition: 0.3s;
        margin-right: 8px;
    }

#hero .btn-watch-video:hover i {
  color: #650015;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding:35px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #650015;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #650015;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
  
}

.cliens img {
  max-width: 100%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.cliens img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cliens img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #650015;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #650015;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #650015;
}

.about .content .btn-learn-more:hover {
  background: #650015;
  color: #fff !important;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #650015;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #650015;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #650015;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #650015;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #650015;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #650015;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #650015;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #650015;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #650015;
}

.ser-btn {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #650015;
}
.ser-btn:hover {
    background: #fff;
    color: #650015 !important;
    border:1px solid #650015
}
}
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(#650015, rgba(40, 58, 90, 0.9)), url(../img/cta-bg.jpg) fixed center center;
    background-size: cover;
    padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #650015;
  border: 2px solid #fff;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #650015;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #650015;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #650015;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #650015;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:10px 5px 10px 5px;
    border:none
}
.card-text{
    color:#650015;
    text-transform:capitalize;
    font-size:12px
}
.team-card .card-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transition: .3s ease-in-out;
    position: relative;
    overflow: hidden;
}
        .team-card .card-img-wrapper img {
            width: 100%;
            height: 100%;
            border: none;
            transition: .3s ease-in-out;
            object-fit: cover; 
        }

    .team-card .overlay-icons {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #650015cc;
        position: absolute;
        top: 100%; 
        left: 50%;
        transform: translateX(-50%); /* Center the icons horizontally */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        opacity: 0; /* Initially hidden */
        visibility: hidden; /* Initially hidden */
        transition: top 0.3s ease, opacity 0.3s ease, visibility 0.3s ease; /* Transition for top and opacity */
    }
        .team-card .overlay-icons a {
            font-size: 24px;
            color: #fff;
            text-decoration: none;
        }
            .team-card .overlay-icons a:hover i {
                background-color: #fff;
                padding: 4px;
                color: #650015;
                border-radius: 50%;
                transition: .3s ease-in-out;
            }
.sr-only{
    color:#650015 !important;
    position:absolute;
    /*left:30px;*/
    opacity:1;
    /*right:50px;*/
    bottom:0;
    font-weight:1000
}
.team-card .card-img-wrapper:hover .overlay-icons {
    top: 0%; /* Move the icons up to the center of the image */
    opacity: 1; /* Make the icons visible */
    visibility: visible;
}

/*    team end*/
.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

    .sec-title .title {
        position: relative;
        display: block;
        font-size: 18px;
        line-height: 24px;
        color: #650015;
        font-weight: 500;
        margin-bottom: 15px;
    }

    .sec-title h2 {
        position: relative;
        display: block;
        font-size: 40px;
        line-height: 1.28em;
        color: #222222;
        font-weight: 600;
        padding-bottom: 18px;
    }
    .sec-title h2:before {
            position: absolute;
            content: '';
            left: 0px;
            bottom: 0px;
            width: 50px;
            height: 3px;
            background-color: #d1d2d6;
    }

    .sec-title .text {
        position: relative;
        font-size: 16px;
/*        line-height: 26px;*/
        color: #848484;
        font-weight: 400;
        margin-top: 35px;
    }

    .sec-title.light h2 {
        color: #ffffff;
    }

    .sec-title.text-center h2:before {
        left: 50%;
        margin-left: -25px;
    }
.about-section {
    position: relative;
    /*padding: 120px 0 70px;*/
}

    .about-section .sec-title {
        margin-bottom: 45px;
    }

    .about-section .content-column {
        position: relative;
        margin-bottom: 50px;
    }

        .about-section .content-column .inner-column {
            position: relative;
            padding-left: 30px;
        }

    .about-section .text {
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 26px;
        color: #848484;
        font-weight: 400;
    }

    .about-section .list-style-one {
        margin-bottom: 45px;
    }

    .about-section .btn-box {
        position: relative;
    }

        .about-section .btn-box a {
            padding: 15px 50px;
        }

    .about-section .image-column {
        position: relative;
    }

     

        .about-section .image-column .inner-column {
            position: relative;
          
        }

            .about-section .image-column .inner-column .author-desc {
                position: absolute;
                bottom: 16px;
                z-index: 1;
                background: orange;
                padding: 10px 15px;
                left: 96px;
                width: calc(100% - 152px);
                border-radius: 50px;
            }

                .about-section .image-column .inner-column .author-desc h2 {
                    font-size: 21px;
                    letter-spacing: 1px;
                    text-align: center;
                    color: #fff;
                    margin: 0;
                }

                .about-section .image-column .inner-column .author-desc span {
                    font-size: 16px;
                    letter-spacing: 6px;
                    text-align: center;
                    color: #fff;
                    display: block;
                    font-weight: 400;
                }

            .about-section .image-column .inner-column:before {
                content: '';
                position: absolute;
                width: calc(50% + 80px);
                height: calc(100% + 160px);
                top: -80px;
                left: -3px;
                background: transparent;
                z-index: 0;
                /*border: 25px solid #650015;*/
            }

        .about-section .image-column img{
            position: relative;
            width:350px;
            height:400px
        }

          
        .about-section .image-column .image-2 {
            position: absolute;
            left: 0;
            bottom: 0;
        }

            .about-section .image-column .image-2 img,
            .about-section .image-column .image-1 img {
                box-shadow: 0 30px 50px rgba(8,13,62,.15);
                border-radius: 46px;
                height:100%;
                width:100%;
            }

        .about-section .image-column .video-link {
            position: absolute;
            left: 70px;
            top: 170px;
        }

            .about-section .image-column .video-link .link {
                position: relative;
                display: block;
                font-size: 22px;
                color: #191e34;
                font-weight: 400;
                text-align: center;
                height: 100px;
                width: 100px;
                line-height: 100px;
                background-color: #ffffff;
                border-radius: 50%;
                box-shadow: 0 30px 50px rgba(8,13,62,.15);
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .about-section .image-column .video-link .link:hover {
                    background-color: #191e34;
                    color: #650015
                }
.btn-team-more {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    color: #650015;
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: "Jost", sans-serif;
    transition: 0.3s;
    border: 1px solid #650015;
}
.btn-team-more:hover{
    background-color:#650015;
    color:#FFF
}
/*About section end            */
/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
    padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #650015;
}

.pricing h4 {
  font-size: 48px;
  color: #650015;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #650015;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #650015;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #650015;
}

.pricing .buy-btn:hover {
  background: #650015;
  color: #fff !important;
}

.pricing .featured {
  border-top-color: #650015;
}

.pricing .featured .buy-btn {
  background: #650015;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #fff;
  color:#650015 !important;
  border:1px solid #650015;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #650015;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #650015;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #650015;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-info {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.contact-info-icon {
    margin-bottom: 15px;
}

.contact-info-item {
    background: #650015;
    padding: 30px 0px;
    height: 190px;
}

.contact-page-sec .contact-page-form h2 {
    color: #071c34;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 700;
}

.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
    padding-left: 0;
}

.contact-page-form.contact-form input {
    margin-bottom: 5px;
}

.contact-page-form.contact-form textarea {
    height: 110px;
    resize:none !important;
}

.contact-page-form.contact-form input[type="submit"] {
    background: #071c34;
    width: 150px;
    border-color: #071c34;
}

.contact-info-icon i {
    font-size: 48px;
    color: #fda40b;
}

.contact-info-text p {
    margin-bottom: 0px;
}

.contact-info-text h2 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-text span {
    color: #fff;
    font-size: 16px;
    font-weight:;
    display: inline-block;
    width: 100%;
}

.contact-page-form input {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    margin-bottom: 20px;
    padding: 12px 16px;
    width: 100%;
    border-radius: 4px;
}

.contact-page-form .message-input {
    display: inline-block;
    width: 100%;
    padding-left: 0;
}

.single-input-field textarea {
    background: #f9f9f9 none repeat scroll 0 0;
    border: 1px solid #f9f9f9;
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    border-radius: 4px;
}

.single-input-fieldsbtn input[type="submit"] {
    background: #650015 none repeat scroll 0 0;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 10px 0;
    text-transform: capitalize;
    width: 150px;
    margin-top: 20px;
    font-size: 16px;
}

    .single-input-fieldsbtn input[type="submit"]:hover {
        background: #fff;
        color:#650015;
        border:1px solid #650015;
        transition: all 0.4s ease-in-out 0s;
        
    }

.single-input-field h4 {
    color: #464646;
    text-transform: capitalize;
    font-size: 14px;
}

.contact-page-form {
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}

.contact-page-map {
    margin-top: 36px;
}

.contact-page-form form {
    padding: 20px 15px 0;
}




/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #650015;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}
 
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #650015;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #650015;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 15px;
  padding: 0 20px;
  background: #650015;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition:0.3s ease-in; 
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #fff;
  color:#650015;
  border:1px solid #650015
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #650015;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #650015;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #650015;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul 
{
  text-decoration: none;
  color: #650015;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #650015;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #fff;
    color: #650015;
    text-decoration: none;
    border: 1px solid #650015;
    animation: rotation .3s ease-out
   
}
#footer .footer-top .social-links a i:hover {
    
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(180deg);
    }
}
#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}
.copyright-a{
    color:#fff !important;

}.copyright-a:hover{
    color:#f0f0f0 !important;

}
#footer .credits {
    float: right;
    padding-left: .5rem;
    font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
  color:#fff ;
  font-size:14px;
  text-transform:uppercase;
  font-weight:1000;
}
.credits a:hover{
    text-decoration:underline;
   color:#f1f1f1!important
}


@media (max-width: 768px) {
    #footer .footer-bottom {
    padding-top: 20px;

  }
  
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
    #footer .credits {
        padding-top: 10px;
        padding-bottom: 10px;
    } #footer .credits span {
        display:none
    }
    #footer .credits a {
        color: #650015
    }
}
.clearfix {
    height: 30px;
    width: 100%;

}

/*career start*/
.Career-section {
    width: 100%;
}

/* First Section */
.testcontainer {
    width: 100%;
    /*height: 500px;*/
    margin: 0 auto;
    padding-top: 30px;
}

.textpostion {
    position: relative;
    background-color: white;
}

.flextwo {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.blfovrly {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.75);
    text-align: center;
    color: black;
}

h2.blfo {
    font-size: 2em;
    color: #650015;
    font-weight: normal;
    padding-bottom: 10px;
}

.overlaytwo p {
    font-size: 1.2em;
}
h2.sh {
    text-align: left;
    font-weight: normal;
    font-size: 2em;
    color: #650015;
    text-decoration-line:none;
    padding: .5em;
    margin-bottom: -10px;
}
.submit-btn {
    background-color: #650015;
    color: #fff;
    transition: all 200ms ease-in;
}
.submit-btn:hover, .submit-btn:active{
    background-color:#fff;
    color:#650015;
    border:1px solid #650015;
}
/* Beliefs Section */
.beliefcon {
    width: 100%;
    padding: 40px 0;
    background-color: #f4f4f4;
}

.bdiv {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.bcards {
    width: 220px;
    height: 250px;
    background-color: #650015;
    color: white;
    border: 2px solid white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 20px;
}

    .bcards h3 {
        font-size: 1.5em;
        margin-bottom: 10px;
        font-weight: normal;
    }

    .bcards p {
        font-size: 11px;
        line-height: 1.5em;
    }

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
    .testcontainer {
        width: 90%;
    }

    .flextwo {
        height: auto;
    }

    .blfovrly {
        width: 80%;
        top: 35%;
    }

    .bcards {
        width: 45%;
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .testcontainer {
        width: 100%;
        height: auto;
    }

    .blfovrly {
        width: 90%;
        top: 30%;
    }

    .flextwo {
        height: auto;
    }

    .bdiv {
        justify-content: center;
        gap: 10px;
    }

    .bcards {
        width: 100%;
        margin: 10px 0;
    }

    .bdiv {
        padding: 20px;
    }

    .overlaytwo p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .testcontainer {
        height: 300px;
    }

    .blfovrly {
        font-size: 0.9em;
    }

    .flextwo {
        height: 250px;
    }

    .bcards {
        width: 100%;
        height: auto;
    }

    .bdiv {
        flex-direction: column;
        justify-content: flex-start;
    }
}

#jobs {
    background: #f8f8fa;
    padding: 50px 0;
}

.company-details {
    box-shadow: 0 2px 70px 0 rgba(110, 130, 208, 0.18);
    border-radius: 5px;
    margin-bottom: 20px;
}

.job-update {
    background: white;
    padding: 10px 20px;
    border-radius: 5px;
}

    .job-update h4 strong {
        font-size: 30px;
        
    }

    .job-update .bx {
        margin-top: 5px;
        margin-right: 10px;
        color: #650015;
    }
    .job-update .bx:hover {
        animation: rotation .3s ease-out;
        border:1px solid #650015;border-radius:50%;padding:2px;background-color:#650015;color:#fff
    }

.price {
    color: #0d834d;
}

.location {
    color: red;
}

/* .description {
  display: none;
}
.company-details :hover .description {
  display: block;
}
 */

.description {
    overflow: hidden;
    max-height: 0; /* Use max-height to allow smooth transition */
    opacity: 0;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-in;
}

/* Show the description on hover */
.company-details:hover .description {
    max-height: 1000px; /* Set a max height large enough to contain the content */
    opacity: 1;
    transition: max-height 0.6s ease-in, opacity 0.6s ease-out; /* Smooth transition on hover */
}


    .bookmark p {
        margin-left: 5px;
        font-size: 20px;
        cursor: pointer;
    }


.job-update small {
    background: #efefef;
    padding: 1px 5px;
    margin: 0 5px;
}

    .job-update small:hover {
        cursor: pointer;
        background: #650015;
        z-index: 2;
        transition: all 200ms ease-in;
        transform: scale(1.1);
        color: #fff;
    }

.job-update p {
    margin-bottom: 0 !important;
}

.job-update a {
    text-decoration: none !important;
    color: #b6bed2;
    float: right;
}

    .job-update a:hover {
        text-decoration: none !important;
        color: rgb(0, 95, 238);
        float: right;
    }

.apply-btn {
    height: 80px;
  /*  background-image: linear-gradient(to right, #6db9ef, #111136);*/
    padding: 5px;
    border-bottom-left-radius: 5px;
}

    .apply-btn .btn-primary {
        padding: 0 30px;
        float: right;
        box-shadow: none !important;
      border:none;
        
        width: 100px;
      

         font-family: "Jost", sans-serif;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 10px 28px 11px 28px;
        border-radius: 50px;
        transition: 0.5s;
        margin: 10px 0 0 0;
        color: #fff;
        background: #650015;
    } 
    .apply-btn .btn-primary:hover {
        
       background-color:#fff;
       color:#650015;
       border:2px solid #650015
    }

.pagelink li {
    height: 25px;
    list-style: none;
    width: 25px;
    display: inline-block;
    cursor: pointer;
}

    .pagelink li:hover,
    .activa {
        color: #fff;
        background-image: linear-gradient(to right, #6db9ef, #7ce08a);
    }

.left-arrow {
    color: #999;
}

.right-arrow {
    color: #29b929;
}

.modal-backdrop {
    display: none !important; /* Hide the backdrop if it's not being dismissed properly */
}

.modal.fade {
    display: none; /* Ensures modal does not stay visible */
}

.modal.show {
    display: block; /* Modal will only be visible when the class `show` is added */
}
.modal-body {
    max-height: 50vh; /* Limit height of the modal body to 70% of the viewport height */
    overflow-y: auto; /* Enable vertical scrolling if content overflows */
}

.modal-dialog {
    max-width: 800px; /* Optionally adjust the modal width */
}

.modal-content {
    border-radius: 8px; /* Add rounded corners to the modal */
}



/* Optional: Make the modal backdrop (overlay) responsive */

.modal {
    z-index: 1050 !important; /* Ensure modal content is above backdrop */
}

/*Career page end */
/*Product page start */


.product-cont {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

/* Product card style */
.product {
    width: 100%;
    max-width: 300px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Added transition for hover */
}

    .product:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
    }

/* Image style */
.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out; /* Transition for image */
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.3s ease-in-out; /* Smooth transition for image */
    }

/* Hover effect for image */
.product:hover .product-image img {
    transform: scale(1.1); /* Slight zoom effect when hovering on the product */
}

/* Description section */
.product-description {
    padding: 15px;
}

    .product-description h2 {
        font-size: 1.2em;

    }

    .product-description p {
        font-size: 13px;
        color: #555;
        line-height: 14px
    }

.view-details {
    background-color: #650015;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1em;
    margin-top: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Button transition */
}

    .view-details:hover {
        background-color: #fff;
        color:#000;
        border:1px solid #650015;
        transform: translateY(-3px); /* Slight movement effect on hover */
    }

/* Modal Styles */

/* Close button style */
.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    float: right;
    cursor: pointer;
}

    .close-btn:hover,
    .close-btn:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

#modal-title {
    font-size: 2em;
    margin-bottom: 15px;
}

#modal-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

#modal-description {
    font-size: 1.1em;
    color: #444;
}

/* Prevent body from scrolling when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .product {
        max-width: 48%;
    }
}

@media (max-width: 480px) {
    .product {
        max-width: 100%;
    }
}

/*Product page end */


