* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  scroll-behavior: smooth;
}
html {
  scroll-padding-top: 180px;
}

:root {
  --Global-Width: 90%;
  --Red-Hat-Display: "Red Hat Display";
  --Rage: "Rage";
  --Neue-Montreal-Light: "Neue Montreal Light";
  --Neue-Montreal-Regular: "Neue Montreal Regular";
  --Neue-Montreal-Medium: "Neue Montreal Medium";
  --Neue-Montreal-Bold: "Neue Montreal Bold";

  --font-h1: clamp(2.5rem, 6vw, 90px);
  --font-h2: clamp(2rem, 4vw, 60px);
  --font-h3: clamp(1.8rem, 3.5vw, 50px);
  --font-h4: clamp(40px, 20vw, 300px);
  --font-h5: clamp(1.5rem, 3vw, 36px);
  --font-h6: clamp(1rem, 2vw, 26px);
  --font-body: clamp(1rem, 1.5vw, 20px);
  --font-nav: clamp(1rem, 1.5vw, 1.25rem);
  /* your .menu a */
}
/* Prevent background scrolling when menu is open */
body.no-scroll {
  overflow: hidden;
}
/* Header Start */
header {
  /* padding: 2% 0; */
  padding: 0% 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*   width: var(--Global-Width); */
  width: 100%;
  justify-self: center;
  column-gap: 30px;
  position: fixed;
  background: #0000004a;
  backdrop-filter: blur(4px);
  z-index: 100;
}
/* .header-active {
    position: fixed;
    z-index: 100;
    background: #fff;
    padding: 0 5%;
    width: 100%;
} */
.logo {
  width: 12%;
  z-index: 99;
}
.logo a {
  display: flex;
  width: 100%;
}

.menu {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Add these for mobile slide-in */
  transition: transform 0.35s ease;
  position: relative;
}
.menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 100%;
/*   column-gap: 20px; */
}

.location {
  width: 14%;
  display: flex;
  justify-content: end;
  align-items: center;
  column-gap: 2px;
  position: relative;
  column-gap: 12px;
}

.logo img {
  height: auto;
  width: 100%;
}

.menu a {
  font-size: 16px;
  font-weight: 500;
  /*   color: #1c1c1c; */
  color: #fff;
  font-family: var(--Red-Hat-Display);
  text-transform: uppercase;
}
.menu-item-has-children {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: center;
  gap: 12px;
}
.menu-item-has-children::before {
  content: "";
  position: relative;
  top: 50%;
  right: 0;
  /*   transform: translateY(-50%); */
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  /* border-top: 6px solid #333;  Arrow color */
  border-top: 6px solid #fff;
}

.menu-item-has-children:hover .sub-menu {
  display: flex;
}
.menu-item-has-children .sub-menu {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: absolute;
  top: 22px;
  left: 0;
  padding: 15px 0;
  /*   padding: 20% 10% 10% 10%; */
  background: #4c2a4f;
  width: 230px;
  /*   overflow: hidden; */
  z-index: 6;
}
.menu-item-has-children .sub-menu li {
  width: 100%;
  padding: 2% 6%;
  position: relative;
}
.menu-item-has-children .sub-menu li:hover {
  background: #925d96;
}
.menu-item-has-children .sub-menu a {
  color: #fff;
}

/* Menu Check */
.menu-item-has-children .sub-menu .menu-item-has-children::before {
  left: 80%;
  top: 12px;
  border-top: 6px solid #fff;
  position: absolute;
}
.menu-item-has-children .sub-menu .menu-item-has-children:hover .sub-menu {
  display: flex;
}
.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: -15px;
  padding: 15px 0;
  width: 370px;
}
.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li {
  padding: 1.3% 6%;
}
/* Apply the bottom-alignment ONLY to the Other Services dropdown */
.menu-item-820 > .sub-menu {
  bottom: -15px !important;
  top: auto !important;
  width: 300px !important;
}
/* Prevent the last couple of menu items from opening off the right edge of the screen */
.menu > ul > li:nth-last-child(-n+2) .sub-menu .menu-item-has-children .sub-menu {
  left: auto;
  right: 100%; /* Opens the nested menu to the left instead of right */
}
.location input {
  /*   border-color: #1c1c1c; */
  /*   border-width: 0 0 1px 0; */
  width: 88%;
  border: none;
  padding: 0 0 4px 0;
  font-size: 17px;
  border-bottom: 1px solid #fff;
  color: #fff;
  background: transparent;
  font-weight: 400;
  font-family: var(--Red-Hat-Display);
}
.location input:focus-visible {
  outline: none;
}
.location input::placeholder {
  color: #fff;
}

.location::before {
  content: url(/wp-content/uploads/2026/03/locatio-small-white.svg);
}

/* .location::after {
  content: url(/wp-content/uploads/2026/03/Down-arrow-White.svg);
  position: absolute;
  right: 0;
} */

.mobile {
  display: none;
  flex-direction: column;
  row-gap: 4px;
  width: 10%;
  align-items: end;
  cursor: pointer;
}

.mobile span {
  /*   background-color: #1c1c1c; */
  background-color: #fff;
  width: 24px;
  height: 4px;
  display: block;
  border-radius: 30px;
}
/* .sr7-module .sr7-layer{
	width:5% !important;
} */
/* Other Services */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000; /* Increased to stay above sticky headers */
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(3px); /* Adds a modern touch */
    overflow-y: auto; /* Allows scrolling if form is long */
}

.modal-content {
    background-color: #4C2A4F;
    margin: 30px auto;
    padding: 40px 40px;
    width: 90%; /* Responsive width */
    max-width: 500px; /* Maximum size on desktop */
    border-radius: 15px;
    position: relative;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- Tabs Styling --- */
.modal-tabs {
    display: flex;
    flex-wrap: wrap; /* Allows tabs to wrap on mobile */
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 25px;
    padding-bottom: 10px;
}
/* Hero Video */
#dynamic-trinity-slider {
    width: 100%;
    aspect-ratio: 16 / 9; /* Keeps a perfect 16:9 blank canvas open on load */
}

/* --- Form Centering & Heading --- */
.modal-form-container h3 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-family: var(--Red-Hat-Display);
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
/* Service Form Start */
.service-form {
  width: 80% !important;
  padding: 0% 0 4% 0 !important;
  font-family: var(--Red-Hat-Display);
  margin: 0;
}
.service-form .wpforms-field-label {
  color: #4c2a4f !important;
}
.service-form .wpforms-submit-container {
  display: flex;
  justify-content: center;
}
.service-form-button {
  background: #fff !important;
  border: 1px solid #fff !important;
	color:#333 !important;
}
.service-form .wpforms-field-large, .service-form .wpforms-field-medium {
  border: 1px solid #4c2a4f !important;
  color: #4c2a4f !important;
}
.service-form .wpforms-field-large:focus, .service-form .wpforms-field-medium:focus {
  box-shadow: none !important;
}
.service-form .wpforms-field-large::placeholder {
  color: #4c2a4f !important;
  opacity: 0.8 !important;
}
.service-form-button:hover {
  background: #fff !important;
  color: #4c2a4f !important;
}
/* Service Form End */
/* Force WPForms to be centered and clean inside modal */
.modal-form-container .wpforms-container {
    margin: 0 auto !important;
    width: 100% !important;
}

.modal-form-container .wpforms-submit-container {
    text-align: center !important; /* Centers the Submit button */
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}
/* other services Ends */
/* Form Conformation Messgae */
.wpforms-confirmation-container-full{
	background: #ffffff !important;
	font-family: var(--Red-Hat-Display);
	border: none !important;
}
.wpforms-confirmation-container-full p{
	color: #4C2A4F !important;
}
/* Form Conformation Ends */
/* footer section start form here  */
footer {
  background-color: #4c2a4f;
  padding: 4% 0% 0% 0%;
  color: #fff;
}
.footer_section {
  width: var(--Global-Width);
  margin: auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 4%;
}
.footer_container_1 {
  width: auto;
}
.footer_menus {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.footer_container h4 {
  font-family: var(--Red-Hat-Display);
  font-size: 26px;
  font-weight: 700;
}
.footer_container nav {
  flex-direction: column;
  display: flex;
  row-gap: 10px;
  margin-top: 5%;
}
.footer_container nav li {
  list-style: none;
}
.footer_container nav a {
  color: #fff;
  font-family: var(--Red-Hat-Display);
  font-size: 22px;
  font-weight: 300;
}
.footer_container_1 img {
  width: 160px;
  height: 100px;
}
.footer_container_4 {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  text-align: start;
}
.footer_container_4 div:first-child {
  align-items: flex-start;
}
.address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.address a {
  font-family: var(--Red-Hat-Display);
  font-size: 22px;
  font-weight: 300;
  color: #fff;
  align-self: center;
}
.copy_rights {
  text-align: center;
  font-family: var(--Neue-Montreal-Light);
  font-size: 22px;
  padding-bottom: 5px;
  padding-top: 10px;
  border-top: 0.5px solid #ffffff32;
}
.whatsapp-icon {
  border-radius: 10px 0 0 10px;
  position: fixed;
  bottom: 10%;
  right: 0;
  width: 60px;
  background-color: #28a219;
  padding: 6px;
  z-index: 10;
}
.whatsapp-icon img {
  width: 100%;
  height: auto;
}
/* footer section end form here  */

/* Pay Online Form Start */
.pay-online {
  margin: auto !important;
  width: 70% !important;
  padding: 12% 0 4% 0 !important;
  font-family: var(--Red-Hat-Display);
}
.pay-online .wpforms-field-label {
  color: #4c2a4f !important;
}
.pay-online .wpforms-submit-container {
  display: flex;
  justify-content: center;
}
.pay-online-button {
  background: #4c2a4f !important;
  border: 1px solid #4c2a4f !important;
}
.pay-online .wpforms-field-layout-rows .wpforms-field-large {
  border: 1px solid #4c2a4f !important;
  color: #4c2a4f !important;
}
.pay-online .wpforms-field-layout-rows .wpforms-field-large:focus {
  box-shadow: none !important;
}
.pay-online .wpforms-field-large::placeholder {
  color: #4c2a4f !important;
  opacity: 0.8 !important;
}
.pay-online-button:hover {
  background: #fff !important;
  color: #4c2a4f !important;
}
/* Pay Online Form End */

/* Footer Partner Logos */
.footer_partner_container {
    padding: 20px 0;
    max-width: 300px; /* Adjust based on your site width */
/*  margin: 0 auto; */
}

.partner_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns like the screenshot */
    gap: 10px 10px;
    justify-items: center;
    align-items: center;
}

.partner_logo_item {
    background: #fff; /* White background for the logos */
    padding: 2px;
    border: 1px solid #6f6f6f;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px; /* Adjust height as needed */
}

.partner_logo_item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* Footer Partner Ends */


/* responsive section start  */
@media (max-width: 1220px) {
  .menu,
  .location {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 20px;
    width: 100vw;
    /* slide panel width */
    max-width: 100vw;
    position: fixed;
    padding-top: 80px;
    padding-left: 5%;
	padding-bottom: 60px;
    top: 0;
    left: 0;
    height: 100vh;
	overflow-y: auto; /* THIS ALLOWS SCROLLING */
    background-color: #1c1c1c;
    transform: translateX(-100%);
    /* hidden off-screen to the left */
    transition: transform 0.35s ease;
    z-index: 1;
	-webkit-overflow-scrolling: touch; /* Smooth scrolling for iOS */
  }
  .menu ul {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 20px;
  }

  .menu-active {
    z-index: 9;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 20px;
    width: 100vw;
    position: fixed;
	overflow-y: auto;
    padding-top: 15%;
    padding-left: 5%;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #1c1c1c !important;
    transform: translateX(0);
  }

  .menu-active a {
    color: #fff;
  }

  .mobile {
    display: flex;
  }

  .logo {
    width: 12%;
  }

  .hamburger-active span {
    background-color: #fff;
    z-index: 99;
    transition: color 1s ease-in;
  }

  .hamburger-active {
    position: relative;
  }

  .hamburger-active span:nth-child(1) {
    rotate: 135deg;
    transition: rotate 0.3s ease;
    transition-delay: 0.2s;
    position: absolute;
  }

  .hamburger-active span:nth-child(2) {
    display: none;
  }

  .hamburger-active span:nth-child(3) {
    rotate: 225deg;
    transition: rotate 0.3s ease;
    transition-delay: 0.2s;
    position: absolute;
  }
/*   .menu-item-has-children {
    align-items: start;
    flex-direction: column;
  }
  .menu-item-has-children:hover .sub-menu {
    position: static;
    background: transparent;
    padding: 6% 0 0 2%;
  }
  .menu-item-has-children::before {
    position: absolute;
    color: #fff;
    left: 120px;
    top: 6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff; 
  }
  .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
  }
  .menu-item-has-children .sub-menu .menu-item-has-children::before {
    top: 10px;
    left: 88%;
  }
  .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li:hover {
    background: #1c1c1c;
  } */
  /* 1. Reset Parent Item */
  .menu-item-has-children {
	background-color: #1c1c1c !important; /* Keep it uniform */
    align-items: start;
    flex-direction: column;
    width: 100%; 
  }

  /* 2. Disable Desktop Hover on Mobile to prevent ghost behavior */
  .menu-item-has-children:hover > .sub-menu {
    display: none; 
  }

  /* 3. Show Sub-menu ONLY when JS adds the class */
  .menu-item-has-children.sub-menu-open > .sub-menu {
    display: flex;
    position: static; /* Pushes content down instead of floating over it */
    background: transparent;
    padding: 4% 0 0 4%; /* Indent slightly */
    width: 100%;
  }

  /* 4. Fix Nested 3rd-Level Menus (Solves the "half hidden" issue) */
  .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
    width: 100%;
    position: static; 
    padding: 2% 0 0 5%;
	background: transparent;
  }

  /* 5. Base Arrow Positioning */
  .menu-item-has-children::before {
    position: absolute;
    color: #fff;
    right: 100px; /* Aligned to the right instead of hardcoded 'left: 120px' */
    top: 10px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    transition: transform 0.3s ease; /* Smooth spin */
  }

  /* 6. Arrow Position for Nested Menus */
  .menu-item-has-children .sub-menu .menu-item-has-children::before {
    top: 10px;
    right: 10px;
  }

  /* 7. Spin Arrow when Open */
  .menu-item-has-children.sub-menu-open > ::before,
  .menu-item-has-children.sub-menu-open::before {
    transform: rotate(180deg); 
  }

  /* 8. Keep your hover state for list items */
  .menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li:hover {
    background: #1c1c1c;
  }
	/* Style the links for better visibility */
  .menu a {
    display: block;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .menu-active {
    padding-top: 20%;
  }
  .logo {
    width: 20%;
  }
  /* footer section start  */
  .footer_section {
    flex-direction: column;
    align-items: center;
/*     text-align: center; */
    gap: 30px;
  }

  .footer_container_1 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer_menus {
    justify-content: space-around;
  }

  .footer_container {
    width: calc(33%);
    min-width: 180px;
  }

  .footer_container h4 {
    text-align: start;
    font-size: 20px;
  }

  .footer_container nav {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 10px;
  }

  .footer_container nav a {
    font-size: 20px;
  }

  .address {
    justify-content: center;
  }

  .address a {
    text-align: start;
    font-size: 20px;
  }

  .copy_rights {
    text-align: center;
    padding: 16px;
  }
  /* footer section end  */
  /* Pay Online Form Start */
  .pay-online {
    padding: 17% 0 4% 0 !important;
    width: var(--Global-Width) !important;
  }
  /* Pay Online Form End */
 /* Other Services */
	.modal-content {
        margin: 180px auto;
        padding: 30px 30px;
    }
    
    .modal-tabs {
        gap: 8px;
    }
}

@media (max-width: 767px) {
  .menu-active {
    padding-top: 32%;
  }
  .logo {
    width: 34%;
  }
  /* footer section start  */
  .footer_section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 30px 20px 10px 20px;
  }

  .footer_container_1 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer_container_1 img {
    width: 130px;
    height: auto;
  }

  .footer_menus {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 28px;
  }

  .footer_container {
    width: 100%;
    min-width: auto;
  }
  .footer_container nav li {
    text-align: left;
  }
  .footer_container h4 {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .footer_container nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .footer_container nav a {
    font-size: 16px;
  }

  .footer_container_4 {
    align-items: start;
    gap: 10px;
    grid-column: span 2;
  }

  .address {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    /*   margin-bottom: 10px; */
  }

  .address img {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
  }

  .address a {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }

  .copy_rights {
    text-align: center;
    font-size: 13px;
    padding: 10px 20px 20px 20px;
  }
  /* 	what's app css  */
  .whatsapp-icon {
    width: 50px;
    padding: 4px;
  }
  /* 	what's app css  */
  /* footer section end  */
  /* Pay Online Form Start */
  .pay-online {
    width: var(--Global-Width) !important;
    padding: 26% 0 4% 0 !important;
  }
  /* Pay Online Form End */
  /* Other Services */
	.modal-content {
        margin: 40px auto;
        padding: 40px 15px 25px 15px;
        width: 95%;
    }

    .modal-form-container h3 {
        font-size: 1.2rem;
    }

    .close-modal {
        right: 10px;
        top: 5px;
    }
  /*  Other Services Ends  */
 /* Service Form Start */
	.experience-main {
    flex-direction: column;
}
	.experience-content{
		width: 100%;
		padding: 0px;
		margin-bottom:30px;
	}
	.experience-form {
    width: 100%;
}	
	/* Service Form End */
/* 	Hero Video */
#dynamic-trinity-slider {
    aspect-ratio: 4 / 5; 
}
}
/* Key Frame Start */
@keyframe submenu {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes rollup {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  45% {
    transform: translateY(-110%);
    opacity: 0;
  }

  55% {
    transform: translateY(110%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes rollright {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  45% {
    transform: translate(110%, -110%);
    opacity: 0;
  }

  55% {
    transform: translate(-110%, 110%);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes company-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Key Frame End */

/* Need to Move Cods Start */
/* Happy Customers Start */
.happy-customers {
  background: linear-gradient(
    to bottom,
    #080810 0%,
    #4c2a4f 8%,
    #4c2a4f 54%,
    #ffffff 86%
  );
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14% 0 0 0;
  row-gap: 50px;
}

.customers-title {
  width: 90%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
}

.customers-title h2 {
  font-family: var(--Red-Hat-Display);
  font-weight: 400;
  line-height: 1.2em;
  font-size: var(--font-h1);
  color: #ffff;
  text-align: center;
}

.customers-title p {
  width: 62%;
}
.customers-title p{
  font-size: var(--font-body);
  text-align: center;
}
.feedback-content p{
  font-size: 18px;
  text-align: left;
}
.customers-title p,
.feedback-content p {
  font-family: var(--Neue-Montreal-Regular);
  color: #ffff;
  line-height: 1.2em;
}

.customers-review {
  width: 92%;
  align-self: end;
  display: flex;
  justify-content: space-around;
  column-gap: 30px;
}

.customers-saying {
  width: 20%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 40px;
}
.customers-saying h3{
  font-size: var(--font-h5);
}
.customer-name h3{
  font-size: var(--font-h6);
}
.customers-saying h3,
.customer-name h3 {
  font-family: var(--Red-Hat-Display);
  font-weight: 500;
  color: #fff;
  line-height: 1.1em;
}

.customers-slider {
  overflow: hidden;
  width: 80%;
}

.customers-feed {
  width: 100%;
  display: flex;
  justify-content: start;
  column-gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  font-family: var(--Neue-Montreal-Regular);
  color:#ffff;
}

.customers-feed::-webkit-scrollbar {
  display: none;
}

.feedback {
  flex: 0 0 calc(100% / 3);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.feedback:first-child {
  padding-left: 2px;
}

.feedback:last-child {
  padding-right: 4px;
}

.feedback-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 60px;
  padding: 8%;
  border: 1px solid #ffffff3d;
  border-radius: 14px;
  min-height: 320px;
}

.customers-rating {
  display: flex;
  column-gap: 6px;
}

.customers-rating span {
  font-size: var(--font-body);
  color: #fff;
}

.customers-rating span.active {
  color: #fecc30;
}

.customer-detail {
  display: flex;
  column-gap: 20px;
  justify-content: start;
  align-items: center;
}

.customer-name span {
  color: #fff;
  font-family: var(--Neue-Montreal-Regular);
  font-weight: 400;
  font-size: 16px;
}

.customers-slide-control {
  width: max-content;
  display: flex;
  justify-content: start;
  align-items: center;
  column-gap: 10px;
  backdrop-filter: blur(12px);
  background: #ffffff1a;
  border-radius: 30px;
  padding: 1%;
  border: solid;
  border-color: #ffffff1a;
  border-width: 1px 1px 1px 1px;
}

.customers-slide-control .slider-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

#prevBtn,
#nextBtn {
  border: navajowhite;
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  background: transparent;
}

#prevBtn img,
#nextBtn img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.customers-slide-control .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1c1c1c;
  cursor: pointer;
}

.customers-slide-control .dot.active {
  background: #fff;
  width: 8px;
  height: 8px;
}
/* Google Popup Start */
#trinity-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trinity-popup-box {
    background: #fff;
    padding: 30px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.trinity-popup-box h3 {
    margin: 0 0 15px;
    font-size: 20px;
}

.trinity-popup-box p {
    color: #666;
    margin-bottom: 25px;
    font-size: 16px;
}

.trinity-popup-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.trinity-popup-actions button {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.allow-btn {
    background: #4CAF50;
    color: #fff;
}

.allow-btn:hover {
    background: #43a047;
}

.deny-btn {
    background: #f44336;
    color: #fff;
}

.deny-btn:hover {
    background: #e53935;
}
/* Google Popup End */

/* Happy Customers End */

/* Trinity Start */
.trinity-tree {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  height: 900px;
  position: relative;
  padding-top: 20%;
}
.quater-round {
  position: absolute;
  top: 0;
  left: 0;
  width: 36%;
}
.quater-round img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  margin-top: -6%;
}
.trinity-tree h4 {
  font-family: var(--Red-Hat-Display);
  font-weight: 700;
  color: #fff;
  font-size: var(--font-h4);
  line-height: 0;
  z-index: 2;
}
.tree {
  z-index: 1;
}
.tree img {
  width: 100%;
  margin-top: -6%;
  z-index: 1;
}
/* Trinity End */

/* section 7 start from here  */
.section_7_img {
  display: flex;
  background-color: #4c2a4f !important;
}
.section_7_img div img {
  width: 100%;
  display: flex;
  height: auto;
}
/* section 7 end from here  */

@media (max-width: 1024px) {
  /* Happy Customers &Trinity start */
  .happy-customers {
    padding-top: 10%;
    row-gap: 30px;
    background: linear-gradient(
      to bottom,
      #080810 1%,
      #4c2a4e 6%,
      #4c2a4f 57%,
      #ffffff 82%
    );
  }
  .customers-title {
    row-gap: 14px;
  }
  .customers-review {
    width: 93%;
    column-gap: 10px;
  }
  .customers-saying {
    width: 30%;
    row-gap: 20px;
  }
  .customers-slider {
    width: 70%;
  }
  .customers-feed {
    column-gap: 20px;
  }
  .feedback-content {
    min-height: 360px;
  }
  .feedback {
    flex: 0 0 calc(100% / 2);
  }
  .trinity-tree {
    height: 550px;
    padding-top: 22%;
  }
  .tree img {
    margin-top: -17%;
  }
  /* Happy Customers &Trinity End */
}

@media (max-width: 767px) {
  /* Happy Customers &Trinity start */
  .happy-customers {
    row-gap: 30px;
    background: linear-gradient(
      to bottom,
      #080810 0%,
      #4c2a4f 5%,
      #4c2a4f 62%,
      #ffffff 90%
    );
  }
  .customers-title {
    row-gap: 10px;
  }
  .customers-title p {
    width: 80%;
  }
  .customers-review {
    column-gap: 10px;
  }
  .customers-saying {
    width: 36%;
    row-gap: 20px;
  }
  .customers-slider {
    width: 64%;
  }
  .customers-feed {
    column-gap: 20px;
  }
  .feedback {
    flex: 0 0 calc(100% / 1.2);
  }
  .feedback-content {
    min-height: 260px;
    padding: 6%;
    row-gap: 30px;
  }
  .customers-saying h3 {
    font-size: 18px;
  }
  .feedback-content p {
    font-size: 14px;
  }
  .quater-round {
    width: 50%;
  }
  .trinity-tree {
    overflow: hidden;
    height: 400px;
    padding-top: 34%;
  }
  .tree img {
    width: auto;
    margin-top: -10%;
  }
  .trinity-tree h4 {
    font-size: 110px;
  }
  .quater-round img {
    margin: 0;
  }
}
/* Need to Move Cods End */
