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

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans&display=swap');
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background: #FFFFFF;
}

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

a:hover {
  color: black;
  text-decoration: none;
}

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

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


/* Preloader Container */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.loading.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Text Style */
.loading-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Quattrocento Sans', sans-serif;
}

.loading-text span {
  color: #fff;
  font-size: 40px;
  margin: 0 5px;
  display: inline-block;
  animation: blur-text 0.2s infinite linear alternate;
}

.loading-text span:nth-child(1) { animation-delay: 0s; }
.loading-text span:nth-child(2) { animation-delay: 0.1s; }
.loading-text span:nth-child(3) { animation-delay: 0.1s; }
.loading-text span:nth-child(4) { animation-delay: 0.1s; }
.loading-text span:nth-child(5) { animation-delay: 0.1s; }
.loading-text span:nth-child(6) { animation-delay: 0.2s; }
.loading-text span:nth-child(7) { animation-delay: 0.2s; }
.loading-text span:nth-child(8) { animation-delay: 0.2s; }
.loading-text span:nth-child(9) {color: red; animation-delay: 0.2s; }

/* Blur Animation */
@keyframes blur-text {
  0% {
    filter: blur(0px);
  }
  100% {
    filter: blur(4px);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FF3131;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: black;
  color: #fff;
}

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

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

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.5);
}

#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: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.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: #FF3131;
}

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

.navbar .getstarted:hover {
  color: #fff;
  background: #FF3131;
}

.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(31, 0, 0, 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: black;
}

.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: #FF3131;
}

.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: #fff;
  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 ul li .switch11 {*/
  /*  display: block;*/
  /*}*/
  
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.549);
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 25px;
  color: black;
}

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

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

.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(48, 5, 5, 0.416);
}

.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: #FF3131;
}

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

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

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

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

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  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: #FF3131;
}

#hero .btn-get-started:hover {
  background: #ff8484;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

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

#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: 100%;
  }
}

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

@media (max-width: 575px) {
  #hero {
    height: auto;
    text-align: center;
  }
  #hero .hero-img img {
    width: 100%;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 4px 11px 4px;
  }
}

@-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: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: black;
}

.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: black;
}

.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: #FF3131;
  bottom: 0;
  left: calc(50% - 20px);
}

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

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

.cliens img {
  max-width: 45%;
  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: #47b2e4;
  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: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

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

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

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

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

.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: whitesmoke;
  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: #FF3131;
  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: #FF3131;
}

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

.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: #FF0000;
  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: #47b2e4;
}

.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: #37517e;
}

.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: #47b2e4;
  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: #37517e;
  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: #47b2e4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), 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: #47b2e4;
  border: 2px solid #47b2e4;
}

@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: #FF3131;
  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(44, 44, 44, 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: #FF3131;
}

.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 black;
}

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

.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 .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# 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: #37517e;
}

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

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

.pricing h4 span {
  color: #47b2e4;
  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: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}

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

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

.pricing .featured .buy-btn:hover {
  background: #FF3131;
}

@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: #FF3131;
}

.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: black;
  transition: 0.3s;
}

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

.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 {
  border-top: 3px solid black;
  border-bottom: 3px solid black;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: b;
  float: left;
  width: 44px;
  height: 44px;
  background: #fbe7e7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #FF3131;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: black;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

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

.contact .info .social-links a:hover {
  background: #FF3131;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #FF3131;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #FF3131;
  border-bottom: 3px solid #FF3131;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #FF3131;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: black;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #FF3131;
}

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

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

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

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

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

.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: #FF3131;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: black;
}

#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: black;
}

#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: 16px;
  padding: 0 20px;
  background: #FF3131;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: black;
}

#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: #FF3131;
}

#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: #FF3131;
  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: red;
  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: black;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #FF3131;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: black;
  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: #FF3131;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

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

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}




.card1{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-wrap: wrap;
  background: #ffffff;
}
.card{
  position: relative;
  width: 350px;
  height: 350px;
  /* background: #333; */
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
}
.card:hover{
  width: 600px;
  transition-delay: 0.5s;
}
.card .circle{
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card .circle::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 8px solid var(--clr);
  background: #000000;
  transition: 0.5s, background 0.5s;
  transition-delay: 0.75s,1s;
  filter: drop-shadow(0 0 10px var(--clr)) drop-shadow(0 0 60px var(--clr));
}
.card:hover .circle::before{
  width: 100%;
  transition-delay: 0.5s;
  height: 100%;
  border-radius: 20px;
  background: var(--clr);
}
.card .circle .logo{
  position: relative;
  width: 250px;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.card:hover .circle .logo{
  transform: scale(0);
  transition-delay: 0s;
}
.card .product_img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0) rotate(315deg);
  height: 300px;
  transition: 0.5s ease-in-out;
}
.card:hover .product_img{
  transition-delay: 0.75s;
  transform: translate(-50%,-50%) scale(1) rotate(15deg);
  top: 45%;
  left: 75%;
  height: 400px;
}
.card .content{
  position:absolute;
  width: 50%;
  left: 20%;
  padding: 20px 20px 20px 40px;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}
.card:hover .content{
  transition-delay: 0.75s;
  opacity: 1;
  visibility: visible;
  left: 0;
}
.card .content h2{
  color: #fff;
  text-transform: uppercase;
  font-size: 2.4em;
  line-height: 1em;
}
.card .content p{
  color: #fff;
}
.card .content a{
  position: relative;
  color: #111;
  background: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}



@media (max-width: 768px) {
  .card1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Allows cards to wrap onto the next line */
    min-height: 100vh;
    background: #ffffff;
  }

  .card {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    margin: 10px; /* Adds space between cards */
  }

  .card.card:onclick {
    width: 600px;
    transition-delay: 0.5s;
  }

  .card .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card .circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid var(--clr);
    background: #000000;
    transition: 0.5s, background 0.5s;
    transition-delay: 0.75s, 1s;
    filter: drop-shadow(0 0 10px var(--clr)) drop-shadow(0 0 60px var(--clr));
  }

  .card:hover .circle::before {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: var(--clr);
    transition-delay: 0.5s;
  }

  .card .circle .logo {
    position: relative;
    width: 190px;
    transition: 0.5s;
    transition-delay: 0.5s;
  }

  .card:hover .circle .logo {
    transform: scale(0);
    transition-delay: 0s;
  }

  .card .product_img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(315deg);
    height: 200px;
    transition: 0.5s ease-in-out;
  }

  .card:hover .product_img {
    transition-delay: 0.75s;
    transform: translate(-50%, -50%) scale(1) rotate(15deg);
    top: 45%;
    left: 75%;
    height: 200px;
  }

  .card .content {
    position: absolute;
    width: 50%;
    left: 20%;
    padding: 20px 20px 20px 40px;
    opacity: 0;
    transition: 0.5s;
    visibility: hidden;
  }

  .card:hover .content {
    transition-delay: 0.75s;
    opacity: 1;
    visibility: visible;
    left: 0;
  }

  .card .content h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5em;
    line-height: 1em;
  }

  .card .content p {
    color: #fff;
    font-size: 10px;
    line-height: 10px;
  }

  .card .content a {
    position: relative;
    color: #111;
    background: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
  }
}


/* bulb switch */
/* Add this CSS code to your stylesheet */
.custom-background {
  background-color: #000000; /* Change this color as needed */
  padding: 20px; /* Adjust padding if necessary */
}

.l {
	/* minFontSize + (maxFontSize - minFontSize) * (100vw - minVWidth)/(maxVWidth - minVWidth) */
	font-size: calc(40px + (40 - 32) * (50vw - 110px)/(960 - 320));
}


.l {
	background-color: white;
	border-radius: 0.75em;
	box-shadow: 0.125em 0.125em 0 0.125em rgba(0,0,0,0.3) inset;
	color: #FF3131;
	display: inline-flex;
	align-items: center;
	margin: auto;
	padding: 0.15em;
	width: 3em;
	height: 1.5em;
	transition: background-color 0.1s 0.3s ease-out, box-shadow 0.1s 0.3s ease-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.l:before, .l:after {
	content: "";
	display: block;
}
.l:before {
	background-color: #545050;
	border-radius: 50%;
	width: 1.2em;
	height: 1.2em;
	transition: background-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
	z-index: 1;
}
.l:after {
	background:
		linear-gradient(transparent 50%, rgba(0, 0, 0, 0.15) 0) 0 50% / 50% 100%,
		repeating-linear-gradient(90deg,#bbb 0,#bbb,#bbb 20%,#999 20%,#999 40%) 0 50% / 50% 100%,
		radial-gradient(circle at 50% 50%,#888 25%, transparent 26%);
	background-repeat: no-repeat;
	border: 0.25em solid transparent;
	border-left: 0.4em solid #545050;
	border-right: 0 solid transparent;
	transition: border-left-color 0.1s 0.3s ease-out, transform 0.3s ease-out;
	transform: translateX(-22.5%);
	transform-origin: 25% 50%;
	width: 1.2em;
	height: 1em;
}
/* Checked */
.l:checked {
	background-color: wheat;
	box-shadow: 0.125em 0.125em 0 0.125em rgba(0,0,0,0.1) inset;
}
.l:checked:before {
	background-color: currentColor;
	transform: translateX(125%)
}
.l:checked:after {
	border-left-color: currentColor;
	transform: translateX(-2.5%) rotateY(180deg);
}
/* Other States */
.l:focus {
	/* Usually an anti-A11Y practice but set to remove an annoyance just for this demo */
	outline: 0;
}

/* logo font */
.logo .black {
  color: white; /* Set default text color to black */
}
.logo .black1 {
  color: black; /* Set default text color to black */
}

.logo .red {
  color: red; /* Set color for X to red */
}

/* logo font */


/* bulb switch */



/* Wrapper to center the card */
.cytronicx-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40vh;
}

.cytronicx-card {
    width: 90%;
    max-width: 500px;
    height: 300px;
    color: #fff;
    cursor: pointer;
    perspective: 1000px;
    margin: 0 auto;
}

.cytronicx-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 1s;
    transform-style: preserve-3d;
}

.cytronicx-front, .cytronicx-back {
    width: 100%;
    height: 100%;
    background-image: none;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 30px;
    border-radius: 0px;
    overflow: hidden;
    z-index: 1;
    backface-visibility: hidden;
}

.cytronicx-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cytronicx-map-img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.cytronicx-card-no {
    font-size: 28px;
    margin-top: 50px;
}

.cytronicx-card-holder {
    font-size: 12px;
    margin-top: 40px;
}

.cytronicx-name {
    font-size: 18px;
    margin-top: 20px;
}

.cytronicx-bar {
    background: #222;
    margin-left: -30px;
    margin-right: -30px;
    height: 60px;
    margin-top: 10px;
}

.cytronicx-card-cvv {
    margin-top: 20px;
}

.cytronicx-card-cvv div {
    flex: 1;
}

.cytronicx-card-cvv img {
    width: 100%;
    display: block;
    line-height: 0;
}

.cytronicx-card-cvv p {
    background: #fff;
    color: #000;
    font-size: 20px;
    padding: 10px 20px;
}

.cytronicx-card-text {
    margin-top: 30px;
    font-size: 14px;
}

.cytronicx-signature {
    margin-top: 30px;
}

.cytronicx-back {
    transform: rotateY(180deg);
}

.cytronicx-card:hover .cytronicx-card-inner {
    transform: rotateY(-180deg);
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .cytronicx-card {
        width: 80%;
        height: 400px;
    }

    .cytronicx-card-no {
        font-size: 24px;
        margin-top: 40px;
    }

    .cytronicx-name {
        font-size: 16px;
    }

    .cytronicx-bar {
        height: 50px;
    }

    .cytronicx-card-cvv p {
        font-size: 18px;
    }

    .cytronicx-card-holder {
        font-size: 10px;
        margin-top: 30px;
    }
}




/* mobile video */

.device {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  top: 1rem;
  width: 376px;
  height: 812px;
  border-radius: 39px;
  box-sizing: border-box;
  transform: rotate(6deg) scale(0.85);
  box-shadow: 25px 60px 125px -25px rgba(13, 13, 13, 0.5), 20px 40px 75px -35px rgba(13, 13, 13, 0.6), 0 0 0 20px #0d0d0d, 0 0 0 22px #1a1a1a;
  
}
.wrapper {
  display:flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.ringer-switch {
  position: absolute;
  top: 110px;
  left: -25px;
  height: 30px;
  width: 3px;
  background: #0d0d0d;
  border-radius: 3px 0 0 3px;
}

.volume {
  position: absolute;
  left: -25px;
  height: 65px;
  width: 3px;
  background: #0d0d0d;
  border-radius: 3px 0 0 3px;
}
.volume.plus {
  top: 170px;
}
.volume.minus {
  top: 250px;
}

.side-button {
  position: absolute;
  top: 180px;
  right: -25px;
  height: 95px;
  width: 3px;
  background: #0d0d0d;
  border-radius: 0 3px 3px 0;
}

.display {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FDFCF5;
  overflow: hidden;
  border-radius: 39px;
}

.notch {
  position: absolute;
  left: 0;
  right: 0;
  width: 206px;
  height: 30px;
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 0 0 20px 20px;
}
.notch span {
  position: absolute;
  width: 6px;
  height: 6px;
  display: block;
  overflow: hidden;
}
.notch span:nth-child(1) {
  left: -6px;
  background: radial-gradient(circle at bottom left, transparent 6px, #0d0d0d 3px);
}
.notch span:nth-child(2) {
  right: -6px;
  background: radial-gradient(circle at bottom right, transparent 6px, #0d0d0d 3px);
}

.speaker,
.camera {
  position: absolute;
  top: 7px;
  height: 8px;
  z-index: 1;
}

.speaker {
  display: block;
  left: 0;
  right: 0;
  width: 45px;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: inset 0 0 1px 2px rgba(0, 0, 0, 0.3);
  background: #262626;
}

.camera {
  right: 140px;
  width: 8px;
  border: 2px solid #171717;
  border-radius: 50%;
  box-sizing: border-box;
  background: MidnightBlue;
}

.icons-top {
  position: absolute;
  top: 18px;
  left: 292px;
  width: 70px;
  height: 12px;
  z-index: 1;
}
.icons-top::after {
  content: "";
  display: block;
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  width: 50px;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.icons-top .cell {
  display: flex;
  height: 100%;
}
.icons-top .cell span {
  display: block;
  align-self: flex-end;
  width: 3px;
  background: black;
  border-radius: 1px;
}
.icons-top .cell span:not(:last-child) {
  margin-right: 2px;
}
.icons-top .cell span:nth-child(1) {
  height: 4px;
}
.icons-top .cell span:nth-child(2) {
  height: 6px;
}
.icons-top .cell span:nth-child(3) {
  height: 8px;
}
.icons-top .cell span:nth-child(4) {
  height: 10px;
  opacity: 0.5;
}
.icons-top .wifi {
  position: relative;
  transform: rotate(-45deg);
  position: absolute;
  left: 31px;
}
.icons-top .wifi span {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-color: black;
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-radius: 0 100% 0 0;
}
.icons-top .wifi span:nth-child(1) {
  width: 9px;
  height: 9px;
}
.icons-top .wifi span:nth-child(2) {
  width: 5px;
  height: 5px;
}
.icons-top .wifi span:nth-child(3) {
  width: 1px;
  height: 1px;
  background: black;
}
.icons-top .battery {
  position: absolute;
  left: 44px;
  top: 0;
  width: 22px;
  height: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 3px;
}
.icons-top .battery::after {
  content: "";
  position: absolute;
  top: 3px;
  right: -5px;
  width: 2px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-bottom-right-radius: 50%;
  border-top-right-radius: 50%;
}
.icons-top .battery span {
  position: absolute;
  left: 2px;
  top: 2px;
  height: 6px;
  width: 10px;
  background: black;
  border-radius: 1px;
}

.icon-lock {
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 24px;
  height: 22px;
  background: black;
  border-radius: 2px;
}
.icon-lock::before {
  content: "";
  display: block;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  width: 12px;
  height: 12px;
  margin: 0 auto;
  border: 3px solid black;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}

.date-time {
  position: absolute;
  top: 6.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
}
.date-time #time {
  font-size: 75px;
  font-weight: 200;
}

.button {
  position: absolute;
  width: 54px;
  height: 54px;
  bottom: 3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}
.button--left, .button--right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button--left {
  left: 3rem;
}
.button--right {
  right: 3rem;
}

.swipe {
  position: absolute;
  color: black;
  bottom: 1rem;
  width: 100%;
  font-size: 17px;
  text-align: center;
  opacity: 0;
  animation-name: swipe-p;
  animation-duration: 4s;
  animation-iteration-count: 100;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
}

.home-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  width: 130px;
  height: 5px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.75;
  border-radius: 5px;
  animation-name: swipe-bar;
  animation-duration: 4s;
  animation-iteration-count: 2;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
}

video {
  width: 100%;
  height: 100%;
}

@keyframes swipe-p {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  25% {
    opacity: 0;
    transform: translateY(1rem);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes swipe-bar {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
  75% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

/* General mobile responsive adjustments */
@media screen and (max-width: 413px) {
  /* CSS styles for the mobile view */

.wrapper {
  width: 90%;
  height: 100%;
  padding-left: 40px;
  padding-bottom: 10px;
  position: relative;
}

.device {
  width: 100%; /* Adjust device width */
  height: 100%; /* Adjust device height */
  position: relative;
}

.display {
  width: 100%; /* Adjust display width */
  height: 100%; /* Adjust display height */
  position: relative;
  overflow: hidden; /* Prevent overflow of video and other elements */
}

/* Video adjustments */
video {
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  object-fit: cover; /* Ensure video covers the display */
}

/* Additional adjustments for buttons, icons, etc. */
.button {
  width: 50px; /* Adjust button width */
  height: 50px; /* Adjust button height */
}
.date-time {
  position: absolute;
  top: 6.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
}
.date-time #time {
  font-size: 35px;
  font-weight: 200;
}
.icon-lock {
  position: absolute;
  top: 4.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 19px;
  height: 17px;
  background: black;
  border-radius: 2px;
}
.button {
  position: absolute;
  width: 44px;
  height: 44px;
  bottom: 3rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
}
.button--left, .button--right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.button--left {
  left: 2rem;
}
.button--right {
  right: 2rem;
}

.swipe {
  position: absolute;
  color: black;
  bottom: 1rem;
  width: 100%;
  font-size: 12px;
  text-align: center;
  opacity: 0;
  animation-name: swipe-p;
  animation-duration: 4s;
  animation-iteration-count: 100;
  animation-delay: 0.5s;
  animation-timing-function: ease-in-out;
}
.notch {
  position: absolute;
  left: 0;
  right: 0;
  width: 156px;
  height: 30px;
  margin: 0 auto;
  background: #0d0d0d;
  border-radius: 0 0 20px 20px;
}
}



/* mobile video */

.gallery {
  --s: 150px; /* control the size */
  --g: 10px; /* control the gap */
  --f: 1.5; /* control the scale factor */

  display: grid;
  gap: var(--g);
  width: calc(3 * var(--s) + 2 * var(--g));
  aspect-ratio: 1;
  grid-template-columns: repeat(3, auto);
}

.gallery > img {
  width: 0;
  height: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  cursor: pointer;
  filter: grayscale(0%);
  transition: 0.35s linear;
}

.gallery img:hover {
  filter: grayscale(0);
  width: calc(var(--s) * var(--f));
  height: calc(var(--s) * var(--f));
}

/* Responsive Styles */
@media (max-width: 768px) {
  .gallery {
    --s: 120px; /* Reduce size for tablets */
    --g: 8px; /* Smaller gap for smaller screens */
  }
}
@media (max-width: 1188px) {
  .gallery {
    --s: 130px; /* Reduce size for tablets */
    --g: 10px; /* Smaller gap for smaller screens */
  }
  
}

@media (max-width: 480px) {
  .gallery {
    --s: 100px; /* Reduce size further for mobile screens */
    --g: 5px; /* Smaller gap for mobile */
  }
}


/* about us */
/* about us */
.about-container {
  background-color: whitesmoke;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Use flexible grid layout */
  gap: 20px; /* Add space between columns */
  border-radius: 5px;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.356);
  margin: 10px;
  padding: 20px;
  margin-right: 30px; /* Add some padding */
}

.about-container img {
  width: 300px; /* Set a fixed width for images */
  height: auto; /* Set a fixed height for images */
  object-fit: cover; /* Ensure the image covers the area while maintaining aspect ratio */
  margin: 0 auto; /* Center the image */
}

/* .about-btn {
  position: absolute;
  bottom: -20px;
  right: -20px;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  background-color: #FF3131;
  color: white;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.294);
} */

.about-container__text {
  padding: 2rem;
}

.about-container__text h1 {
  font-size: 1.5rem;
}

.about-container__text__star span {
  font-size: 0.8rem;
  color: #FF3131;
  margin: -5px 0 20px;
}

.about-container__text p {
  font-size: 1rem;
}

.about-c {
  display: flex;
  margin: 20px 0 10px;
}

.about-container__text__timing-item {
  margin-right: 40px;
}

.about-container__text__timing-item h2 {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
  color: black;
}

.about-container__text__timing-item p {
  color: #FF3131;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Media Queries for Responsive Design */




/* For screens smaller than 1080px */
@media (max-width: 1080px) {
  .about-container {
    grid-template-columns: 1fr; /* Stack items vertically */
  }
  .about-container img {
  width: 100%; /* Ensure the image scales responsively */ /* Maintain aspect ratio */
  border-radius: 5px;
}

  /* .about-btn {
    font-size: 0.9rem; /* Adjust button size */
    padding: 1rem 1.5rem;
  } */

  .about-container__text h1 {
    font-size: 2.4rem;
  }

  .about-container__text p {
    font-size: 0.95rem;
  }
}

/* For screens smaller than 768px */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr; /* Stack items vertically on smaller screens */
    padding: 1rem; /* Adjust padding */
  }

  /* .about-btn {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px; /* Add spacing */
    padding: 1rem;
    font-size: 0.85rem;
  } */

  .about-container__text {
    padding: 1rem;
  }

  .about-container__text h1 {
    font-size: 1.25rem; /* Adjust heading size */
  }

  .about-container__text p {
    font-size: 0.9rem; /* Adjust paragraph size */
  }
}

/* For screens smaller than 480px */
@media (max-width: 480px) {
  .about-container {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }

  .about-btn {
    width: 100%; /* Make button full width */
    bottom: 0;
    right: 0;
    margin-top: 20px;
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }

  .about-container__text h1 {
    font-size: 1.1rem;
  }

  .about-container__text p {
    font-size: 0.85rem;
  }

  .about-container__text__timing-item {
    margin-right: 10px; /* Reduce margin for smaller screens */
  }

  .about-container__text__timing-item p {
    font-size: 1rem;
  }
}
/* about us */

/* Our Services */
.content-wrapper {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0.5rem;
}

.news-card {
  border: 0; /* Remove solid border */
  margin: 0.5rem;
  position: relative;
  height: 12rem; /* Mobile height */
  overflow: hidden;
  border-radius: 0.5rem;
  flex: 1;
  min-width: 290px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  backface-visibility: hidden; /* Vendor prefixes removed */
  transform: translate3d(0, 0, 0); /* Vendor prefixes removed */
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 80%);
  z-index: 0;
}

.news-card__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.news-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 3s ease;
  backface-visibility: hidden; /* Vendor prefixes removed */
  position: relative;
  z-index: -1;
}

.news-card__text-wrapper {
  position: absolute;
  bottom: 0;
  padding: 1rem;
  color: white;
  transition: background-color 1.5s ease;
}

.news-card__title {
  transition: color 1s ease;
  margin-bottom: 0.5rem;
}

.news-card__post-date {
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.news-card__details-wrapper {
  max-height: 0;
  opacity: 0;
  transition: max-height 1.5s ease, opacity 1s ease;
}

/* Media queries for large screens */
@media (min-width: 300px) {
  .news-card {
    height: 20rem; /* Large screen height */
  }

  }
  .news-card:hover .news-card__details-wrapper {
    max-height: 20rem; /* Show details on hover */
    opacity: 1;
  }

  .news-card:hover .news-card__text-wrapper {
    background-color: rgba(0, 0, 0, 0.6);
  }

  .news-card:hover .news-card__title {
    color: #FF3131;
  }

  .news-card:hover .news-card__image {
    transform: scale(1.2);
    z-index: -1;
  }


.news-card__excerpt {
  font-weight: 300;
}

.news-card__read-more {
  background: #FF3131;
  color: #bbb;
  display: block;
  padding: 0.4rem 0.6rem;
  border-radius: 0.3rem;
  margin-top: 1rem;
  border: 1px solid #444;
  font-size: 0.8rem;
  text-decoration: none;
  width: 7rem;
  margin-left: auto;
  position: relative;
  z-index: 5;
}

.news-card__read-more i {
  position: relative;
  left: 0.2rem;
  color: #888;
  transition: left 0.5s ease, color 0.6s ease;
}

.news-card__read-more:hover i {
  left: 0.5rem;
  color: #FF3131;
}

/* End of our services */


/* water wave */

.custom-hero-title {
  font-size: 8vw;
  line-height: 1em;
  font-weight: 900;
}

.custom-blend {
  mix-blend-mode: difference !important;
  color: #efefef;
  position: relative;
  z-index: 2;
}

.custom-gradient-overlay {
  bottom: 0;
  height: 50%;
  background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
  background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
  background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, #212121 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00212121", endColorstr="#212121", GradientType=0);
  z-index: 1;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

.custom-video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

#custom-video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 100%;
  background-position: center center;
  background-size: cover;
  object-fit: cover;
  transform: rotate(180deg);
}

article {
  min-height: 800px;
  height: 800px;
  width: 100%;
}

article.custom-hero {
  background-color: #212121;
  border-bottom-right-radius: 15vw;
  position: relative;
}

article.custom-hero:before {
  content: "";
  background-color: #212121;
  position: absolute;
  top: 100%;
  left: 0;
  width: 15vw;
  height: 15vw;
}

article.custom-hero:after {
  content: "";
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  width: 15vw;
  height: 15vw;
  border-top-left-radius: 15vw;
}

@media screen and (min-width: 1200px) {
  .custom-hero {
    height: 75vh;
  }
  .custom-hero #custom-video-bg {
    object-position: 0 5vw;
  }
}

@media screen and (max-width: 1199px) {
  .custom-hero #custom-video-bg {
    object-position: 0 15vw;
  }
}

@media screen and (max-width: 575px) {
  .custom-hero {
    min-height: 600px;
    height: 600px;
  }
  .custom-hero .custom-hero-title {
    font-size: 12vw;
  }
  .custom-hero #custom-video-bg {
    object-position: 0 30vw;
  }
}
/* water wave */

/* our team  */

:root {
	--clr-neon: #FF3131;
	--clr-white: rgba(255, 255, 255, 1);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

.teambutton {
	font-size: 2em;
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
	color: var(--clr-neon);
	border: var(--clr-neon) 4px solid;
	padding: 0.25em 1em;
	border-radius: 0.25em;

	text-shadow: 0 0 0.125em rgba(255, 255, 255, 0.55), 0 0 0.5em currentColor;

	box-shadow: inset 0 0 0.5em 0 var(--clr-neon), 0 0 0.5em 0 var(--clr-neon);

	position: relative;
}

.teambutton::before {
	pointer-events: none;
	content: "";
	position: absolute;
	background: var(--clr-neon);
	top: 120%;
	left: 0;
	width: 100%;
	height: 100%;

	transform: perspective(1.2em) rotateX(40deg) scale(1.5, 0.5);
	filter: blur(1.15em);
	opacity: 0.7;

	transition: transform 0.5s linear;
}

.teambutton::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	box-shadow: 0 0 4em 0.6em var(--clr-neon), 0 0 1em 0.2em var(--clr-white);
	opacity: 0;
	background: var(--clr-neon);
	z-index: -1;
	transition: opacity 0.5s linear;
}

.teambutton:hover,
.teambutton:focus {
	color: var(--clr-bg);
	text-shadow: none;
}

.teambutton:hover::before,
.teambutton:focus::before {
	opacity: 1;
	transform: perspective(1em) rotateX(40deg) scale(1.5, 0.6);
	transition: transform 0.5s linear;
}

.teambutton:hover::after,
.teambutton:focus::after {
	opacity: 1;
}

/* our team */

/* TEAM CARD */

/*@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;600&display=swap");*/


.teambody {
	font-family: "Oswald", sans-serif;
	background-color: rgb(53, 53, 53);
	.teamsection {
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		.row {
			align-items: center;
			height: auto;
      margin: 0px;
		}
	}
}
.cards {
	position: relative;
	height: 400px;
	width: 100%;
	margin: 10px 0;
	transition: ease all 2.3s;
	perspective: 1200px;
	&:hover {
		.cover {
			transform: rotateX(0deg) rotateY(-180deg);
			&:before {
				transform: translateZ(30px);
			}
			&:after {
				background-color: black;
			}
			h1 {
				transform: translateZ(100px);
			}
			.price {
				transform: translateZ(60px);
			}
			a {
				transform: translateZ(-60px) rotatey(-180deg);
			}
		}
	}

	.cover {
		position: absolute;
		height: 100%;
		width: 100%;
		transform-style: preserve-3d;
		transition: ease all 2.3s;
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		&:before {
			content: "";
			position: absolute;
			border: 5px solid rgba(255, 255, 255, 0.5);
			box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
			top: 20px;
			left: 20px;
			right: 20px;
			bottom: 20px;
			z-index: 2;
			transition: ease all 2.3s;
			transform-style: preserve-3d;
			transform: translateZ(0px);
		}
		&:after {
			content: "";
			position: absolute;
			top: 0px;
			left: 0px;
			right: 0px;
			bottom: 0px;
			z-index: 2;
			transition: ease all 1.3s;
			background: rgba(0, 0, 0, 0.4);
		}
		&.item-a {
			background-image: url("../../assets/img/team/kala.png");
		}
		&.item-b {
			background-image: url("../../assets/img/team/mdm.png");
		}
		&.item-c {
			background-image: url("../../assets/img/team/balaji.png");
		}
        &.item-d {
			background-image: url("../../assets/img/team/ro.png");
		}
        &.item-e {
			background-image: url("../../assets/img/team/j.png");
		}
		&.item-f {
			background-image: url("../../assets/img/team/ajay.png");
		}
        &.item-g {
			background-image: url("../../assets/img/team/karthick.png");
		}

		h1 {
			font-weight: 600;
			position: absolute;
			bottom: 55px;
			left: 50px;
			color: whitesmoke;
			transform-style: preserve-3d;
			transition: ease all 2.3s;
			z-index: 3;
			font-size: 2em;
			transform: translateZ(0px);
		}
		.price {
			font-weight: 200;
			position: absolute;
			top: 55px;
			right: 50px;
			color: whitesmoke;
			transform-style: preserve-3d;
			transition: ease all 2.3s;
			z-index: 4;
			font-size: 1em;
			transform: translateZ(0px);
		}
	}
	.card-back {
		position: absolute;
		height: 100%;
		width: 100%;
		background: #0b0f08;
		transform-style: preserve-3d;
		transition: ease all 2.3s;
		transform: translateZ(-1px);
		display: flex;
		align-items: center;
		justify-content: center;
		a {
			transform-style: preserve-3d;
			transition: ease transform 2.3s, ease background 0.5s;
			transform: translateZ(-1px) rotatey(-180deg);
			background: transparent;
			border: 1px solid white;
			font-weight: 200;
			font-size: 1.3em;
			color: white;
			padding: 14px 32px;
			outline: none;
			text-decoration: none;
			&:hover {
				background-color: white;
				color: #0b0f08;
			}
		}
	}
}


/* TEAM CARD END*/



/* new bulb START */
.switch {
  position: relative;
}
.switch input {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 100;
  cursor: pointer;
}
.switch label {
  height:60px;
  width: 120px;
  background-color: #FF3131;
  border-radius: 100px;
  display: block;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2), inset 0 0 5px -2px rgba(0,0,0,0.4);
}
.switch label .bulb {
  height: 55px;
  width: 55px;
  background-color: #FF3131;
  border-radius: 50%;
  position: relative;
  top: 2.5px;
  left: 2px;
  display: block;
  transition: 0.7s;
  box-shadow: inset 0 0 1px 3px #6b4242, inset 0 0 6px 8px #633939, 0 20px 30px -10px rgba(0,0,0,0.4);
}
.switch label .bulb .bulb-center {
  position: absolute;
  display: block;
  height: 36px;
  width: 36px;
  background-color: #7b5252;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transition: 0.7s;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 4px #845a5a;
}
.switch label .bulb .bulb-center:after {
  content: "";
  display: block;
  height: 14px;
  width: 14px;
  background-color: #947373;
  border-radius: 50%;
  position: absolute;
  transition: 0.7s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 2px 4px #734a4a;
}
.switch label .bulb .filament-1,
.switch label .bulb .filament-2 {
  position: absolute;
  display: block;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.switch label .bulb .filament-1:after,
.switch label .bulb .filament-2:after,
.switch label .bulb .filament-1:before,
.switch label .bulb .filament-2:before {
  content: "";
  display: block;
  height: 6px;
  width: 17px;
  border-radius: 50%;
  border: 2px solid #6b4242;
  position: absolute;
  transition: 0.7s;
  top: -4px;
  left: -2px;
  transform: rotate(-10deg);
}
.switch label .bulb .filament-1:before,
.switch label .bulb .filament-2:before {
  left: 15px;
  transform: rotate(10deg);
}
.switch label .bulb .filament-2 {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}
.reflections {
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  z-index: 90;
  perspective: 70px;
}
.reflections span {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-image: linear-gradient(-135deg, transparent 10%, rgba(255,255,255,0.3));
  position: absolute;
  left: -40px;
  bottom: -45px;
}
.reflections span:after {
  content: "";
  display: block;
  height: 35px;
  width: 20px;
  position: absolute;
  top: -36px;
  right: -40px;
  border-radius: 50%;
  box-shadow: 4px -2px 0 -3px rgba(255,255,255,0.4);
  filter: blur(1px);
  transform: rotate(-10deg);
}
.reflections:after {
  content: "";
  display: block;
  height: 80px;
  width: 50px;
  background-image: linear-gradient(80deg, rgba(255,255,255,0.05) 45%, rgba(255,255,255,0.5));
  border-radius: 10% 20% 50% 30%/30% 60% 30% 40%;
  position: absolute;
  transform-style: preserve-3d;
  transform: rotateX(-25deg) rotate(-35deg) skewx(-15deg) translate(10px, -20px);
  top: -8px;
  left: -5px;
}
.reflections:before {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  width: 30px;
  background-image: linear-gradient(to right, transparent, rgba(255,255,255,0.15));
  bottom: 10px;
  right: 0px;
  transform: rotate(45deg);
}
.sparks .spark1 {
  display: block;
  height: 1px;
  width: 1px;
  background-color: #d1b82b;
  position: absolute;
  right: -5px;
  border-radius: 50%;
  bottom: 23px;
  transition: 0.4s;
  opacity: 0;
}
.sparks .spark2 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #d1b82b;
  position: absolute;
  right: 20px;
  border-radius: 50%;
  bottom: 80px;
  transition: 0.4s;
  opacity: 0;
}
.sparks .spark3 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #d1b82b;
  position: absolute;
  left: 20px;
  border-radius: 50%;
  bottom: 80px;
  transition: 0.4s;
  opacity: 0;
}
.sparks .spark4 {
  display: block;
  height: 3px;
  width: 3px;
  background-color: #d1b82b;
  position: absolute;
  left: 20px;
  border-radius: 50%;
  bottom: 20px;
  transition: 0.4s;
  opacity: 0;
}
.switch input:checked ~ label .bulb {
  left: 63px;
  background-color: #a7694a;
  box-shadow: inset 0 0 1px 3px #a56758, inset 0 0 6px 8px #6b454f, 0 20px 30px -10px rgba(0,0,0,0.4), 0 0 30px 50px rgba(253,184,67,0.1);
}
.switch input:checked ~ label .bulb > .bulb-center {
  background-color: #feed6b;
  box-shadow: inset 0 0 0 4px #fdec6a, 0 0 12px 10px #bca83c, 0 0 20px 14px #a1664a;
}
.switch input:checked ~ label .bulb > .bulb-center:after {
  background-color: #fef401;
  box-shadow: 0 0 2px 4px #fdb843;
}
.switch input:checked ~ label .bulb >.filament-1:before,
.switch input:checked ~ label .bulb >.filament-2:before,
.switch input:checked ~ label .bulb >.filament-1:after,
.switch input:checked ~ label .bulb >.filament-2:after {
  border-color: #fef4d5;
}
.switch input:checked ~ label .bulb > .sparks .spark1 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark1 2s ease-in-out;
          animation: spark1 2s ease-in-out;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.switch input:checked ~ label .bulb > .sparks .spark2 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark2 2.4s ease-in-out;
          animation: spark2 2.4s ease-in-out;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.switch input:checked ~ label .bulb > .sparks .spark3 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark3 2s ease-in-out;
          animation: spark3 2s ease-in-out;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.switch input:checked ~ label .bulb > .sparks .spark4 {
  height: 1px;
  width: 1px;
  -webkit-animation: spark4 1.7s ease-in-out;
          animation: spark4 1.7s ease-in-out;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes spark1 {
  0% {
    right: -5px;
    height: 1px;
    width: 1px;
    opacity: 0;
  }
  20% {
    height: 3px;
    width: 3px;
    right: 0px;
    opacity: 1;
  }
  30% {
    right: -5px;
    opacity: 1;
    height: 3px;
    width: 3px;
  }
  70% {
    height: 3px;
    width: 3px;
  }
  100% {
    right: -60px;
    bottom: 40px;
    opacity: 0;
  }
}
@keyframes spark1 {
  0% {
    right: -5px;
    height: 1px;
    width: 1px;
    opacity: 0;
  }
  20% {
    height: 3px;
    width: 3px;
    right: 0px;
    opacity: 1;
  }
  30% {
    right: -5px;
    opacity: 1;
    height: 3px;
    width: 3px;
  }
  70% {
    height: 3px;
    width: 3px;
  }
  100% {
    right: -60px;
    bottom: 40px;
    opacity: 0;
  }
}
@-webkit-keyframes spark2 {
  0% {
    height: 3px;
    width: 3px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    right: -20px;
    bottom: 100px;
    opacity: 0;
  }
}
@keyframes spark2 {
  0% {
    height: 3px;
    width: 3px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    right: -20px;
    bottom: 100px;
    opacity: 0;
  }
}
@-webkit-keyframes spark3 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: 0px;
    bottom: 100px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@keyframes spark3 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: 0px;
    bottom: 100px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@-webkit-keyframes spark4 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: -20px;
    bottom: -10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
@keyframes spark4 {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
    height: 2px;
    width: 2px;
  }
  100% {
    left: -20px;
    bottom: -10px;
    opacity: 0;
    height: 3px;
    width: 3px;
  }
}
/* new bulb end */



/* book Browchers */

.containers {
  width:100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book {
  width: 225px;
  height: 350px;
  position:relative;
  text-align: center;
  margin:2.5%;
}

.book-cover {
  position: absolute;
  z-index:1;
  width: 100%;
  height: 100%;
  transform-origin: 0 50%;
  -webkit-transform-origin: 0 50%;
  background: #111;
  background-size:cover;
  border-radius: 3px;
  box-shadow: 
    inset 4px 1px 3px #ffffff60,
    inset 0 -1px 2px #00000080;
  transition: all .5s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
}

.cover1 {
  background: url('../img/smarthomeimage/1.png');
}

.cover2 {
  background: url('../img/webapplication/1.png');
}

.cover3 {
  background: url('../img/iotimage/1.png');
}

.cover4 {
  background: url('../img/iotimage/5.jpg');

}.cover5 {
  background: url('../img/iotimage/6.jpg');

}.cover6 {
  background: url('../img/iotimage/7.jpg');

}.cover7 {
  background: url('../img/iotimage/8.jpg');

}.cover8 {
  background: url('../img/iotimage/9.jpg');

}.cover9 {
  background: url('../img/iotimage/10.jpg');

}



.book .book-cover {
  background-size: 100% 100%;
}


.effect {
  width: 20px;
  height: 100%;
  margin-left: 10px;
  border-left: 2px solid #00000010;
  background-image: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  transition: all .5s ease;
}

.light {
  width: 90%;
  height: 100%;
  position: absolute;
  border-radius: 3px; 
  background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 100%);
  top: 0;
  right:0;
  opacity: .1;
  transition: all .5s ease;
  -webkit-transition: all .5s ease;
}

.book:hover { cursor:pointer; }

.book:hover .book-cover {
  transform: perspective(2000px) rotateY(-30deg);
  -webkit-transform: perspective(2000px) rotateY(-30deg);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  box-shadow: 
    inset 4px 1px 3px #ffffff60,
    inset 0 -1px 2px #00000080,
    10px 0px 10px -5px #00000030
}

.book:hover .effect {
  /* width: 40px;
 * margin-left:13px;
  opacity: 0.5; * */
}

.book:hover .light {
  opacity: 1;
  width: 70%;
}

.book-inside{
  width: calc(100% - 2px);
  height:96%;
  position:relative;
  top: 2%;
  border: 1px solid grey;
  border-radius:3px;
  background: white;
  box-shadow: 
  10px 40px 40px -10px #00000030,
  inset -2px 0 0 grey,
  inset -3px 0 0 #dbdbdb,
  inset -4px 0 0 white,
  inset -5px 0 0 #dbdbdb,
  inset -6px 0 0 white,
  inset -7px 0 0 #dbdbdb,
  inset -8px 0 0 white,
  inset -9px 0 0 #dbdbdb;
}

.title {
  font-size:22px;
  width: 100%;
  color: #333;
  text-align: center;
  position: absolute;
  top:-30px;
  height: 1px;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.title p {
  width: 100%;
  margin:0;
  line-height:1.3;
}


.btn {
  position:relative;
  background: #aaa;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  font-size: 16px;
  letter-spacing:1px;
  border-radius: 50px;
  bottom: -50px;
  display: inline-block;
  opacity: 0;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
}

.book:hover .btn, .book:hover .title {
  opacity: 1;
}

@media (max-width: 690px) and (min-width:500px) {
  .containers {
    height: auto;
  }
  .book  {
    scale: 0.8;
  }
  .title {
    scale: 0.8;

  }
  .btn{
    scale: 0.8;
  }
}

@media (max-width: 499px) and (min-width:300px) {
  .containers {
    height: auto;
  }
  .book  {
    scale: 0.7.5;
  }
  .title {
    scale: 0.8;

  }
  .btn{
    scale: 0.8;
  }
}

@media (max-width: 299px) and (min-width:200px) {
  .containers {
    height: auto;
    width: auto;
  }
}
/* book Browchers */

/* our client */

/* Slider */
.partner-logos-slider {
  margin: 0; /* No margins since there's no container */
}
.partner-logos-slider .slick-slide {
  margin: 0 10px; /* Margin for each slide */
}
.partner-logos-slider .slick-slide img {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
}
.slick-arrow.slick-hidden {
  display: none;
}
.slides {
  padding: 10px; /* Padding around the content */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Light border for visibility */
  border-radius: 5px; /* Rounded corners */
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent black background */
  display: flex; /* Center the content */
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  backdrop-filter: blur(10px); /* Blur effect for the background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow for depth */
  color:none;  /* Text color for visibility */
}

/* our client */

/*   connect user cheack box*/

.switch11 {
    --button-width: 2em; /* Reduced width */
    --button-height: 1.2em; /* Reduced height */
    --toggle-diameter: 0.8em; /* Reduced toggle diameter */
    --button-toggle-offset: calc((var(--button-height) - var(--toggle-diameter)) / 2);
    --toggle-shadow-offset: 3px; /* Further reduced shadow offset */
    --toggle-wider: 1.5em; /* Adjusted wider width for smaller size */
    --color-grey: #cccccc;
    --color-green: #FF3131;
}

.sliders {
    display: inline-block;
    width: var(--button-width);
    height: var(--button-height);
    background-color: var(--color-grey);
    border-radius: calc(var(--button-height) / 2);
    position: relative;
    transition: 0.3s all ease-in-out;
    vertical-align: bottom;
}

.sliders::after {
    content: "";
    display: inline-block;
    width: var(--toggle-diameter);
    height: var(--toggle-diameter);
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: var(--button-toggle-offset);
    transform: translateX(var(--button-toggle-offset));
    box-shadow: var(--toggle-shadow-offset) 0 calc(var(--toggle-shadow-offset) * 3) rgba(0, 0, 0, 0.1);
    transition: 0.3s all ease-in-out;
}

.switch11 input[type="checkbox"]:checked + .sliders {
    background-color: var(--color-green);
}

.switch11 input[type="checkbox"]:checked + .sliders::after {
    transform: translateX(calc(var(--button-width) - var(--toggle-diameter) - var(--button-toggle-offset)));
    box-shadow: calc(var(--toggle-shadow-offset) * -1) 0 calc(var(--toggle-shadow-offset) * 3) rgba(0, 0, 0, 0.1);
}

.switch11 input[type="checkbox"] {
    display: none;
}

.switch11 input[type="checkbox"]:active + .sliders::after {
    width: var(--toggle-wider);
}

.switch11 input[type="checkbox"]:checked:active + .sliders::after {
    transform: translateX(calc(var(--button-width) - var(--toggle-wider) - var(--button-toggle-offset)));
}

.sync-label {
    font-size: 9px; /* Further reduced font size */
    color: white;
    margin: 0;
    padding-left: 3px; /* Adjusts spacing between toggle and label */
    vertical-align: bottom;
}




@media screen and (max-width: 991px) {
    /* Hides all content */
    .navbar ul .switch11 {
        display: none;
    }
    .navbar ul .sync-label{
        display:none;
    }
}

@media screen and (min-width: 991px) {
    /* Hides all content */
    .switch11f {
        display: none;
    }
  
}
/*message out put*/
    .success-message {
            display: none; /* Hidden by default */
            color: white; /* Text color */
            background-color: green; /* Green background */
            padding: 15px; /* Some padding */
            margin: 20px 0; /* Space around the box */
            border-radius: 5px; /* Rounded corners */
        }




