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

/*  
    font-family: "Poppins", sans-serif;
    font-family: "Montserrat", sans-serif;
*/
body {
  background: #fff;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}
a {
  text-decoration: none;
  background: transparent;
  color: #fff;
  transition: 0.4s all ease;
}
a:hover {
  color: #fff;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
  color: #fff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
p {
  margin-top: 0;
  font-size: 15px;
  margin-bottom: 0rem;
  font-family: "Montserrat", sans-serif;
  color: var(--s-black);
}
section {
  padding: 100px 0;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.site-btn {
  padding: 13px 30px 13px 30px;
  font-weight: 400;
  background-color: var(--s-primary);
  text-transform: uppercase;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid var(--s-primary);
  color: var(--s-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2px;
  transition-duration: 0.3s;
  font-family: "Montserrat", sans-serif;
}
.site-btn:hover {
  border-color: var(--s-secondary);
  background-color: var(--s-secondary);
  color: var(--white);
}
.revSite-btn {
  background-color: var(--s-secondary);
  color: var(--s-primary);
}
.site-outline-btn {
  background-color: transparent;
  border-color: var(--s-primary);
  color: var(--s-primary);
}
.titleBar {
  position: relative !important;
  margin-bottom: 20px;
}
.titleBar span {
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--s-primary);
  display: block;
  position: relative;
  font-family: var(--s-font-montserrat);
}
.titleBar h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--s-secondary);
  margin-bottom: 20px;
}
.titleBar p {
  font-size: 17px;
  color: var(--s-black);
  margin-bottom: 0;
}
.iconbg {
  background: var(--s-secondary);
  border-radius: 100px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
:root {
  --s-primary: #d22f25;
  --s-secondary: #023972;
  --s-third: #f2f1ec;
  --s-white: #ffffff;
  --s-black: #1b1b1b;
  --s-font-poppins: "Poppins", sans-serif;
  --s-font-montserrat: "Montserrat", sans-serif;
}
.bg-s-primary {
  background-color: var(--s-primary) !important;
}
.text-s-primary {
  color: var(--s-primary) !important;
}
.bg-s-secondary {
  background-color: var(--s-secondary) !important;
}
.text-s-secondary {
  color: var(--s-secondary) !important;
}
.text-s-white {
  color: var(--s-white) !important;
}
.bg-s-white {
  background-color: var(--s-white) !important;
}
.text-s-black {
  color: var(--s-black) !important;
}
.bg-s-black {
  background-color: var(--s-black) !important;
}
/*************************************/
/***     Header CSS Start Here     ***/
/*************************************/
/* Sticky Header CSS Start */
header .header-scrolled {
  transition: all 0.5s linear;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 99999;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header-scrolled .nav-link {
  color: var(--s-secondary) !important;
}
/* Main Header CSS */
header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}
/* Bottom Header Start Here */
.dropdown-menu {
  left: 15px;
  border-radius: 0;
  border: none;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.dropdown-item:hover {
  background-color: var(--s-primary);
  color: var(--s-white);
}
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
.bottom-header {
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999999;
}
.bottom-header nav .navbar-brand {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.navbar-brand img{
  width: 180px !important;
}
.bottom-header nav .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: var(--s-black);
  padding: 3px 2px;
  margin: 0 15px;
  border-radius: 50px;
  position: relative;
  font-family: var(--s-font-poppins);
}
.bottom-header nav .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0%;
  right: 0%;
  height: 1px;
  border-radius: 0px;
  border: 0 !important;
  background: currentColor;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.8s cubic-bezier(0.16, 1.08, 0.38, 0.98);
}
.bottom-header nav .navbar-nav .nav-item .nav-link:hover::after {
  transform: scale(1);
}

/* Banner section start here */
.banner {
  background-image: url(https://drm.homes/wp-content/uploads/2025/04/Heros01.jpg);
  background-color: #ffffff;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 70% auto;
  padding: 10em 0em 5em 0em;
  position: relative;
  display: block;
}
.video-banner {
  position: relative;
  width: 100%;
  height: 600px; /* Full viewport height */
  overflow: hidden;
}
/* .video-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0000007c;
  left: 0;
  top: 0;
  right: 0;
  z-index: 1;
} */
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%); /* Centers the video */
  z-index: 1;
  object-fit: cover; /* Ensures the video covers the entire banner area */
}
.bannerContent {
  top: 80px;
}
.bannerContent h1 {
  font-weight: 700;
  font-size: 47px;
  color: #ffffff !important;
  text-align: center;
  text-shadow: 0.09em 0.06em 0.12em rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}
.bannerContent p {
  font-size: 20px;
  color: #ffffff !important;
  line-height: 1.2em;
  text-shadow: 0.09em 0.06em 0.12em rgba(0, 0, 0, 0.4);
  text-align: center;
  margin-bottom: 30px;
}

/* Feature Products */
.featureProductsSection {
  background-image: url(https://drm.homes/wp-content/uploads/2025/04/background-image.jpg);
}
.feature-box {
  text-align: center;
  box-shadow: 0px 2px 18px 4px rgba(145, 145, 145, 0.35);
  background-color: #fff;
  border-radius: 3px 3px 3px 3px;
  padding: 25px 20px;
  margin: 25px 20px 20px 20px;
}
.feature-box img {
  width: 65px !important;
  margin: 0 auto;
}
.feature-box h3 {
  color: var(--s-secondary);
  font-size: 25px;
  font-weight: 500;
  margin-top: 18px;
}
.feature-box p {
  color: var(--s-secondary);
}

/* ABout Section */
.aboutImage img {
  height: 550px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.list li {
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--s-black);
}
.list li i {
  font-size: 15px;
  color: var(--s-black);
  font-weight: 500;
  margin-right: 5px;
}

/* Product Section */
.box-item {
  position: relative;
}
.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}
.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  min-height: 300px;
  -ms-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 20px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
}
.flip-box-header {
  font-size: 30px;
  font-weight: 500;
  color: var(--s-white);
  margin-bottom: 20px;
}
.flip-box p {
  font-size: 18px;
  color: var(--s-white);
  margin-bottom: 30px;
}
.inner a:hover {
  background-color: var(--s-white);
  color: var(--s-primary);
}

/* Terstimonial Section */
.testimnialSection {
  /* background-color: var(--s-secondary); */
}
.td-single-testimonial-item {
  background: #f4f4f0;
  padding: 40px;
  transition: 0.8s;
  border-radius: 20px;
}
.td-testimonial-rating {
  color: #fdcc0d;
}
.td-testimonial-rating ul li {
  margin: 0 1px;
}
.td-testimonial-header .td-testimonial-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 50px;
  width: 50px;
  margin-right: 15px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--s-primary);
}
.td-testimonial-image h3 {
  margin-bottom: 0;
  font-size: 25px;
}
.td-name-designation h6 {
  font-size: 18px;
  margin-bottom: 3px;
  font-weight: 400;
  color: var(--s-primary);
  transition: 0.3s;
}
.td-name-designation p {
  color: var(--s-secondary);
  font-weight: 300;
}
.td-testimonial-description {
  margin: 20px 0 30px 0;
}
.td-testimonial-description p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Footer Section Start Here */
footer {
  background-color: var(--s-secondary);
  position: relative;
  padding-top: 25px;
}
/* footer:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #222222f5;
        z-index: 0;
      } */
.footer-box h2 {
  font-weight: 400;
  font-size: 25px;
  margin-bottom: 17px;
  color: var(--s-white);
}
.footer-box p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--s-white);
}
.footer-box h3 {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--s-white);
  text-transform: uppercase;
}
.footer-box ul li {
  margin-bottom: 0.5rem;
}

.footer-box ul li a {
  font-size: 15px;
  color: var(--s-white);
}
.footer-box ul li a:hover {
  color: var(--s-primary);
  letter-spacing: 1px;
}
.footer1stRow {
  padding: 2rem 0 1.5rem 0;
  position: relative;
  z-index: 1;
  /* border-top: 1px solid #2525251e; */
}
.socialmediaicon ul li a i {
  background-color: var(--s-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 8px;
  padding: 0;
  color: var(--s-primary);
  transition: 0.3s;
  border-radius: 2px;
}
.socialmediaicon ul li a i:hover {
  transform: rotate(360deg);
  background-color: var(--s-primary);
  color: var(--s-white);
}
.SocialIcon h3 {
  font-size: 17px;
  margin-bottom: 15px;
  display: block;
  font-weight: 600;
}
.copyRight {
  border-top: 1px solid #ffffff5b;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

/* Back To Top CSS Start Here */
.button {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--s-primary);
  overflow: hidden;
  border-radius: 30px;
  color: var(--s-primary);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.btn-txt {
  z-index: 1;
}
.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--s-primary);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}
.button:hover {
  box-shadow: 1px 1px 200px var(--s-white);
  color: #fff;
  border: none;
}
.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}







/*=========================================  
       ABOUT US PAGE CSS START HERE 
============================================*/
.innerPagesBanner {
  background-color: #000000;
  background-image: url('https://drm.homes/wp-content/uploads/2025/05/innerpages.jpg');
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.innerpage-title {
  position: relative;
  z-index: 2;
  margin-top: 200px;
}
.innerpage-title h2 {
  font-size: 60px;
  font-style: normal;
  text-shadow: 0.09em 0.06em 0.12em rgba(0, 0, 0, 0.4);
  font-weight: 800;
  line-height: 78px;
  position: relative;
  display: block;
  color: var(--s-white);
  margin-bottom: 10px;
}
.breadcrumb-content ul li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-black);
  margin: 0 5px;
  text-shadow: 0.09em 0.06em 0.12em rgba(0, 0, 0, 0.4);

}
.breadcrumb-content ul li a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--s-primary);
  margin-right: 5px;
  text-shadow: 0.09em 0.06em 0.12em rgba(0, 0, 0, 0.4);
}
.accordion-item
{
  background-color: #F2F5F3;
}
.accordion-header .accordion-button {
  font-size: 18px;
  color: var(--s-secondary);
  /* padding: 20px 30px 20px 34px; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  font-weight: 500;
  background-color: #F2F5F3;

}
.accordion-button:not(.collapsed) {
  color: var(--s-primary);
  box-shadow: none;
}
.accordion-button:focus
{
  box-shadow: none;
}
/* Our Team Section Start here */
.ourTeam
{
  background-color: #fff;
}
.td-single-team-member
{
  margin-bottom: 30px;
  display: inline-block;
  transition: .3s;
	border-radius: 10px;
	overflow: hidden;
}
.td-member-image {
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: .3s;
}
.social-icon{
  position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px;
    transition: .3s;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
  background-color: var(--s-secondary);
  transition: .3s;
}
.social-icon ul li {
  margin: 0 5px;
  width: 35px;
  height: 35px;
  background: var(--s-primary);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}
.social-icon ul li a i
{
  font-size: 16px;
  color: var(--s-white);
  transition: .3s;
}
.social-icon ul li:hover a i
{
  color: var(--s-secondary);
}
.td-member-content
{
  background: var(--s-primary);
  padding: 20px;
  margin-top: -10px;
  transition: .3s;
}
.td-member-content h3
{
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--s-white);
  transition: .3s;

}
.td-member-content h5
{
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--s-white);

}
.td-member-image a img
{
  transform: scale(1);
  transition: .3s;
	height: 400px;
	width: 100%;
	object-fit: cover;
}
.td-single-team-member:hover .td-member-image a img
{
  transform: scale(1.1);
  transition: .3s;
	
}
.td-single-team-member:hover .social-icon
{
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}






/*============================================
     Inner Services Pages CSS STart Here 
=============================================*/
.innerServicesPage p
{
  margin-bottom: 20px;
}
.innerServicesImage img
{
  height: 420px;
  object-fit: cover;
}





/*============================================
         VIdeo Pages CSS STart Here 
=============================================*/
.videoBox{
  position: relative;
  width: 100%;
  height: 350px; 
  overflow: hidden;
  border-radius: 8px !important;
}
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%); /* Centers the video */
  z-index: 1;
  object-fit: cover; /* Ensures the video covers the entire banner area */
}






/*============================================
        Why Shoose US Page 
=============================================*/
.services-box
{
  padding: 35px 40px 27px;
}
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: var(--s-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.whyBox h3
{
  color: var(--s-secondary);
  margin-bottom: 12px;
  font-weight: 700;
}






/*========================================
     Blog Page CSS STart Here
========================================*/
/* .sec-pad {
  padding: 80px 0px;
} */
.news-block-two:hover .blog-image{
  transform: skew(1.1);
  transition: all .4s ease;
}
.image-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all .4s ease;
}
.blog-image{
  height: 250px;
  object-fit: cover;
  width: 100%;
  transition: all .4s ease;
}
.news-block-two .inner-box .image-box .post-date {
  position: absolute;
  left: 0px;
  bottom: -1px;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  color: var(--s-black);
  line-height: 34px;
  text-align: center;
  padding: 3.5px 25px;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%, 0px 0px);
  background-color: var(--s-white);
}
.sidebar-page-container .news-block-two .inner-box .lower-content {
  padding-top: 10px;
}
.post-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-block-two .inner-box .lower-content .post-info li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--s-white);
  margin-right: 22px;
  margin-bottom: 20px;
}
.news-block-two .inner-box .lower-content .post-info li a {
  color: var(--s-white);
  margin-left: 5px;
  font-size: 12px;
}
.news-block-two .inner-box .lower-content .post-info li i {
  font-size: 12px;
}
.inner-box {
  background: var(--s-secondary);
  padding: 15px;
  border-radius: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.news-block-two .inner-box .lower-content h2 a {
  position: relative;
  display: block;
  font-size: 25px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--s-white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.lower-content p {
  font-size: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  color: var(--s-white);
}
.lower-content .link a {
  color: var(--s-black);
  background-color: var(--s-white);
  border-style: solid;
  border-width: 0px 0px 0px 0px;
  border-color: var(--s-white);
  border-radius: 8px;
  font-size: 13px;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 20px;
}
.lower-content .link a:hover {
  background-color: var(--s-primary);
  border-color: var(--s-primary);
  color: var(--s-white);
}
.page-item:last-child .page-link,
.page-item:first-child .page-link {
  background-color: var(--s-secondary);
  color: var(--s-white);
}
.page-link {
  color: var(--s-secondary);
}
.page-link:hover {
  background-color: var(--s-secondary);
  color: var(--s-white);
}





/*================================================
            Mobile Responsive Start Here 
==================================================*/
@media (max-width: 991px){
  header{
    position: relative;
  }
  .navbar-nav
  {
    align-items: self-start !important;
    border-top: 1px solid #0000007e;
    margin-top: 10px;
    padding: 8px 0;
  }
  .bottom-header .container{
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .bannerContent h1 {
    font-size: 35px;
  }
  .bannerContent p {
    font-size: 15px;
  }
  .site-btn {
    padding: 10px 25px 10px 25px;
    font-size: 11px;
  }
  .titleBar h3 {
    font-size: 30px;
  }
  .titleBar span {
    font-size: 11px;
  }
  section {
    padding: 50px 0;
  }
  .video-banner {
    height: 430px;
  }
  .bannerContent {
    top: 20px;
  }
  .header-btn {
    margin-top: 20px;
  }

  /* ABout Page */
  .innerPagesBanner {
    height: 200px;
  }
  .innerpage-title h2 {
    font-size: 50px;
  }
}

