
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #0B0016;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6{
  color:#ffffff;
}

a,
a:hover,
button:focus {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}

button {
  font-size: 13px !important;
}

button:active,
button:focus,
button,
a:active,
a:focus {
  outline: none !important;
}

p,
label {
  margin: 0px;
}

p {
  color:#1E1E1E;
  font-size:16px;
}

img {
  max-width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size:20px;
}

input {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin: 0px;
}

.navbar-brand img {
  height:45px;
}

.navbar-nav li a {
  font-size: 16px;
  padding:7px 10px;
  margin: 0px 10px;
  position: relative;
  font-weight:400;
  border-bottom:2px solid transparent;
  font-family: "Barlow", sans-serif;
  color:#ffffff;
  border-bottom:2px solid transparent;
  text-transform: uppercase;
}
.navbar-nav li a:focus{
  color:#ffffff;
}

.navbar-nav li a:hover, .navbar-nav li a.active{
  color:#ffffff!important;
  border-bottom:2px solid #EB2034;
}

h2{
  font-size:43px;
  text-transform: uppercase;
  color:#ffffff;
}
h2 span{
  color:#EB2034;
}
p{
  color:#DADBE2;
}


.button {
  font-size: 17px!important;
  font-weight: 400;
  border: 2px solid #4285F4;
  background-color: #ffffff;
  color: #4285F4;
  padding:9px 25px;
  height: 45px;
  position: relative;
  transition: 0.5s;
  white-space: nowrap;
  line-height: 10px;
  border-radius:5px;
  -webkit-border-radius:5px;
}
.button:hover {
  background: #4285F4;
  color: #ffffff;
}


.navbar-toggler:focus {
  box-shadow: inherit;
}


.animate-swipe-right.swipe {
  animation: swipeRight 0.5s;
  opacity: 1;
}
.animate-swipe-left.swipe {
  animation: swipeLeft 1s;
  opacity: 1;
}
.animate-swipe-up.swipe {
  animation: swipeDown 1.5s;
  opacity: 1;
}
.animate-swipe-down.swipe {
  animation: swipeUp 1.5s;
  opacity: 1;
}

@keyframes swipeRight {
  0% {
    transform: translate(30px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes swipeLeft {
  0% {
    transform: translate(-30px, 0px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes swipeDown {
  0% {
    transform: translate(0px, -30px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
@keyframes swipeUp {
  0% {
    transform: translate(0px, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}




header{
  padding:22px 0px 12px 0px;
  height:auto;
  position: absolute;
  top:0px;
  left: 0px;
  right: 15px;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
}
.header.active{
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  top: 0px;
}
.navbar-brand{
  padding-right: 20px;
}
.navbar-brand img{
  margin-top: -15px;
  margin-bottom: -5px;
}
.navbar-collapse{
  display: flex;
  justify-content:end;
}
.theme-btn{
  padding:10px 20px;
  font-size:14px !important;
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  font-weight:400;
  text-transform:uppercase;
  border:1px solid #EB2034;
  border-radius:3px;
  background:
    linear-gradient(90deg, #EB2034 0 0) left / 0% 100% no-repeat; /* start at 0% width */
  transition: background-size .35s ease, color .35s ease, border-color .35s ease;
}

/* Hover: animate the red fill from left → right */
.theme-btn:hover{
  background-size:100% 100%;
  color:#fff;                 /* keep text white when filled */
}

/* Icon subtle slide to the right */
.theme-btn i{
  font-size:18px;
  margin-left:10px;
  transition: transform .35s ease;
}
.theme-btn:hover i{
  transform: translateX(6px);
}

/* Optional: reduced-motion users get instant change */
@media (prefers-reduced-motion: reduce){
  .theme-btn{ transition:none; }
  .theme-btn i{ transition:none; }
}

.blog-outer .theme-btn{
  background:#EB2034;
  border-radius: 0px;
  -webkit-border-radius: 0px;
}

.banner-outer{
  /* background-image: url('../images/banner-img.png'); */
  background-size: cover;
  background-position: center bottom;
  width: 100%;
  height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-slider{
  position: relative;
}

.banner-content{
  position: absolute;
  top: 224px;
  left: calc(50% - 646px);
  color: #ffffff;
  width:40%;
  text-align: left;
}
.hero-title{
  font-size:28px;
  text-align: left;
  display: block;
  margin-bottom:20px;
  text-transform: uppercase;
  font-weight: 600;
}
.banner-content p{
  color:#ffffff;
  font-size:16px;
  display: block;
  width:100%;
  margin-bottom:30px;
  text-align: left;
}
.banner-content span{
  font-size:50px;
  display: block;
  text-transform: uppercase;
  /* font-weight: bold; */
}
.banner-content h1{
  font-size: 100px;
  text-transform: uppercase;
  background-image: url('../images/underline.png');
  background-repeat: no-repeat;
  background-position: bottom center;
  display: inline-block;
  padding-bottom:30px;
  margin-bottom: 20px;
  font-family: "Barlow", sans-serif;
}
.banner-content h1 label{
  color:#EB2034;
  /* font-weight: bold; */
}
.banner-content .watch-video{
  color: #ffffff;
  text-transform: uppercase;
  font-size: 27px;
  display: inline-flex;
  align-items: center;
}
.banner-content .watch-video img{
  margin-right: 10px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (9/16 = 0.5625 = 56.25%) */
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-outer{
  width: 100%;
  background-color: #20162A;
  display: flex;
  flex-direction: column;
  border-bottom:5px solid #EB2034;
  height:100%;
}
.blog-outer h4{
  display: block;
  margin-bottom: 20px;
}
.blog-outer p{
  margin-bottom: 20px;
  font-size: 16px;
} 
.blog-outer img{
  height: auto;
  width: 100%;
  object-fit: cover;
}
.blog-content{
  flex:1;
}
.testimonial{
  background:#20162A;
}
.testimonial h2{
  text-align: center;
  position: relative;
}
.testimonial h2::after{
  content:'';
  position: absolute;
  width: 150px;
  height: 2px;
  display: inline-block;
  background: #EB2034;
  top:calc(100% + 10px);
  left: 50%;
  margin-left: -75px;
}
.review-block{
  text-align: center;
  padding:40px 85px 20px;
  display: block;
  color:#ffffff;
  position: relative;
}
.review-block::after{
  content: '';
  position: absolute;
  left: 0px;
  top:0px;
  width: 75px;
  height: 146px;
  background-image: url('../images/quote-left.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size:auto 100px;
}
.review-block::before{
  content: '';
  position: absolute;
  right: 0px;
  bottom:0px;
  width: 75px;
  height: 146px;
  background-image: url('../images/quote-right.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size:auto 100px;
}
.review-block p{
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
}
.review-block label{
  font-weight: bold;
  display: block;
  margin-bottom:5px;
}
.review-block span{
  font-size:18px;
}
.gallery-img{
  border:10px solid #20162A;
  position: relative;
}
.gallery-img img{
  height:auto;
  width: 100%;
  object-fit: cover;
}
.gallery-overlay{
  display: flex;
  width: 100%;
  height: 100%;
  /* background: rgba(0,0,0,0.5); */
  z-index: 1;
  position: absolute;
  top:0px;
  left:0px;
  width:100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}
.gallery-overlay span{
  width:75px;
  height:75px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  border:1px solid #ffffff;
  align-items: center;
  justify-content: center;
  font-size:25px;
  color:#ffffff;
  display: inline-flex;
}
.gallery-overlay span:hover{
  background: rgba(0,0,0,0.5);
}

.get-in-touch form{
  background: #20162A;
  padding: 40px;
  display: block;
}
.form-field{
  display: block;
  margin-bottom:0px;
}
.form-field label{
  font-size:16px;
  color:#ffffff;
  display: block;
}
.form-field input, .form-field textarea{
  width: 100%;
  height: 50px;
  border:none;
  border-bottom:2px solid #6C757D;
  display: block;
  background: none;
  font-size: 16px;
}
.form-field input:focus, .form-field textarea:focus{
  border-bottom:2px solid #EB2034;
}
.form-field textarea{
  height: 120px;
  resize: none;
}
footer{
  padding: 40px 0px;
}
footer p{
  font-size: 16px;
  color:#9B9EAC;
}
.social{
  list-style: none;
}
.social a{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color:#ffffff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
}
.facebook-icon{
  background: #3B5998;
}
.youtube-icon{
  background: #FF0000;
}
.linkedin-icon{
  background: #0077B5;
}
.instagram-icon{
  background: #405DE6;
}
footer{
  padding: 0px 0px 50px;
}
footer a{
  color:#EB2034;
  font-size: 16px;
}
footer h4{
  margin-bottom: 22px;
}
.subscribe{
  border:1px solid #757575;
  height: 52px;
  width: 100%;
  display: block;
  margin:10px 0px;
  background: none;
  font-size: 16px;
  padding: 0px 15px;
  margin-bottom: 20px;
  color:#ffffff;
}
.copyright{
  border-top:1px solid #757575;
  display: block;
  padding: 20px 0px 0px;
  text-align: center;
  color:#9B9EAC;
  font-size: 15px;
  margin-top: 50px;
}
section{
  padding: 100px 0px;
}

.watch-video span{
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff; /* your text color */
  padding-bottom: 5px; /* space for the border */
  font-size:18px!important;
}

.watch-video span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; /* thickness of the border */
  background-color: #EB2034; /* color of the underline */
  transition: width 0.3s ease;
}

.watch-video:hover span::after {
  width: 100%;
}
.modal-content{
  background: #000000;
}
.btn-close, .btn-close:hover{
  color:#ffffff;
  font-size: 28px!important;
  padding: 0px!important;
}
.modal-header{
  border:none;
}
.about p{
  font-size: 16px;
}
.slick-dots li button{
  background: #ffffff;
  border-radius: 40px;
  -webkit-border-radius: 40px;
}
.slick-dots li.slick-active button{
  background-color: #EB2034;
}
.slick-dots li button:before{
  display: none;
}
.slick-dots li button{
  width: 15px;
  height: 15px;
}
.btn-close, .btn-close:hover{
  position: absolute;
  right: -13px;
  top: -21px;
  background: #fff;
  width: 40px;
  height: 40px;
  z-index: 1;
  opacity: 1;
  color:#000000;
}
#galleryModal .img-fluid{
  max-height:70vh;
  width: 100%;
}
.navbar-toggler{
  background-color: #ffffff;
}
.about strong{
  color: #ffffff;
  font-weight: 500;
  display: block;
  margin-bottom:5px;
}
.contact-right{
  position: relative;
}
.contact-right i{
  color:#ffffff;
}
.contact-right{
  position: relative;
}
.contact-right i{
  position: absolute;
  right: 15px;
  font-size: 25px;
}
.contact-right h4{
  margin-bottom: 10px;
  font-size: 20px;
}
.contact-right p{
  font-size: 16px;
}
.header-social{
  display: flex;
  border:1px solid #ffffff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  margin-left: 20px;
}
.header-social a{
  padding: 0px;
  margin: 0px 5px!important;
}
.navbar-nav .header-social a:hover{
  border:none!important;
  color:#EB2034!important;
}
.what-drives-me{
  color:#ffffff;
  font-size: 15px;
}
.what-drives-me span{
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  min-height:70px;
}
.what-drives-me span:after{
  content:'';
  width: 50px;
  height: 3px;
  display: inline-block;
  background: #ffffff;
  position: absolute;
  left: 0px;
  top:-15px;
  background-color: #EB2034;
}
.what-drives-me{
  width: 100%;
  min-height: 300px;
  padding:50px 37px;
  background-color: #20162A;
  display: block;
  height: 100%;
}
.what-drives-me p{
  color: #9B9EAC;
  font-size: 16px;
}
.what-drives-me ul,  ul.custom-ul{
  margin-top:7px;
  padding-left:0px;
  list-style: none;
  font-size: 16px;
  color: #9B9EAC;
}
.what-drives-me ul li,  ul.custom-ul li{
  position: relative;
  display: block;
  padding: 3px 0px;
  padding-left:25px;
}
.what-drives-me ul li:after,  ul.custom-ul li:after{
  content:'\F134';
  font-family: bootstrap-icons;
  position: absolute;
  left:0px;
  top:4px;
  width:15px;
  height:15px;
  /* border:2px solid #EB2034; */
  border-radius: 50px;
  -webkit-border-radius: 50px;
  color:#EB2034;
}
.what-drives-me ul strong{
  font-weight: 600;
  display: inline-block;
}
footer h6{
  color: #9B9EAC;
  line-height: 24px;
}
.featured-in img{
  background-color: #ffffff;
}
.modal-open{
  padding-right: 0px!important;
}


.home-banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-content {
  position: absolute;
  color: white;
}
.swiper-pagination-clickable .swiper-pagination-bullet{
  background: #ffffff;
}
.swiper-pagination-bullet-active{
  background: #EB2034;
}


/* Apply to all <p> tags inside the about section */
.about-text{
  transition: transform 0.3s ease;
  cursor: default;
  transform: scale(1);
}

.about-text:hover {
  animation: zoomInOut 1s ease-in-out;
  transform: scale(1.05);
}
.headline{
  text-transform: uppercase;
  font-size: 18px;
  color:#EB2034;
  display: block;
  margin-bottom: 10px;
}

.connect-content{
  color: #ffffff;
}
.connect-content ul{
  font-size: 17px;
  padding-left:0px;
  margin-bottom: 30px;
  display: block;
  list-style: none;
}
.connect-content ul li{
  padding: 4px 0px;
}
.connect-content p{
  font-style: italic;
}

  .home-banner .swiper-button-prev,
  .home-banner .swiper-button-next{
    width:44px;height:44px;border-radius:50%;
    background:rgba(0,0,0,.45); color:#fff;
    top:50%; transform:translateY(-50%); z-index:20;
  }
  .home-banner .swiper-button-prev{ left:20px; }
  .home-banner .swiper-button-next{ right:20px; }
  .home-banner .swiper-button-prev:after,
  .home-banner .swiper-button-next:after{ font-size:18px; font-weight:700; }

  .custom-ul li a{
        color: #9B9EAC;
  }
 .custom-ul li a:hover{
    color: #EB2034;
  }
  .contact-info i{
    color: #EB2034;
  }