@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Space+Grotesk:wght@300..700&display=swap');


body
{
  font-family: "DM Sans", sans-serif;
}


:root {
  --primary-color: #cf8f47;
  --light-primary-color: rgba(207, 143, 71, 0.5);
  --heading-font: "PT Serif", serif;
  --text-color: #c6ab72;
  --grey-color: rgba(0, 0, 0, 0.5);
}


::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--grey-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--grey-color);
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  overflow: hidden;
}


button:focus,
button:active {
  outline: none !important;
  box-shadow: none !important;
}


.form-control:focus {
  border-color: rgba(207, 143, 71, 0.9);
  box-shadow: 0 6px 6px -4px rgba(207, 143, 71, 0.6); /* More subtle and bottom-only */
  outline: none;
}




a
{
  color: var(--primary-color);
  text-decoration: none;
}


a:hover
{
  color: var(--primary-color);
  text-decoration: none;
}

.slide-container {
  height: 100vh;
  width: 100%;
  position: relative;
}

.slide {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.7s ease;
}

.slide:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../img/slide1.jpg") center/cover no-repeat;
}

.slide:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../img/slide2.jpg") center/cover no-repeat;
}
.slide:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../img/slide3.jpg") center/cover no-repeat;
}
.slide:nth-child(4) {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../img/slide4.jpg") center/cover no-repeat;
}
.slide:nth-child(5) {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../img/slide6.jpeg") center/cover no-repeat;
}

.slide:nth-child(6) {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../img/cutsomer-exp-bg.jpeg") center/cover no-repeat;
}

.slide:nth-child(7) {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../img/slide2.jpg") center/cover no-repeat;
}

/* Vertical MENU Button */
.menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: transparent;
  color: var(--primary-color);
  border: none;
  font-size: 10px;
  cursor: pointer;
  z-index: 1001;
  padding: 10px 5px;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  letter-spacing: 1px;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 100%;
  background-color: var(--primary-color);
  color: white;
  transition: right 0.4s ease;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sidebar.open {
  right: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
  width: 100%;         /* 👈 make nav take full sidebar width */
  padding-right: 50px; /* 👈 optional: adds spacing from the right edge */
}

.sidebar nav a {
  color: white;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  transition: opacity 0.3s, transform 0.3s ease; /* Add transform to transition */
}

.sidebar nav a:hover {
  opacity: 0.6;
  transform: translateX(-10px); /* Move to the left on hover */
}


.indicator-container {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.indicator {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: transparent;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 7px 0;
  font-weight: bold;
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.4);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.indicator.active {
  background: rgba(255, 255, 255, 0.4);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.vertical-line {
  position: fixed;
  top: 90px;
  right: 31px;
  width: 1px;
  height: 82.5%;
  background-color: var(--light-primary-color);
  z-index: 999;
}

.transition-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: 10000;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.7s ease;
}

.transition-box.show-down {
  transform: translateY(0%);
}

.transition-box.show-up {
  transform: translateY(0%);
}


.slid-inner-box {
  position: relative;
  width: 92%;
  height: 89%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  border-left: 1px solid var(--light-primary-color);
  border-right: 1px solid var(--light-primary-color);
}

/* Top border gap */
.border-gap.top-left,
.border-gap.top-right {
  position: absolute;
  top: 0;
  height: 1px;
  background-color: var(--light-primary-color);
  width: 45%;
}

.border-gap.top-left {
  left: 0;
}

.border-gap.top-right {
  right: 0;
}

/* Bottom border gap */
.border-gap.bottom-left,
.border-gap.bottom-right {
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--light-primary-color);
  width: 45%;
}

.border-gap.bottom-left {
  left: 0;
}

.border-gap.bottom-right {
  right: 0;
}

/* Center logo on top */
.logo-center {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  z-index: 1;
}

.logo-center img {
  height: 70px;
}

/* Center scroll at bottom */
.scroll-center {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  z-index: 1;
  text-align: center;
}

.scroll-center img {
  height: 60px;
}

.scroll-center span {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--light-primary-color);
}



.slid-inner-box h1
{
  font-size: 60px;
  letter-spacing: 2px;
  font-family: var(--heading-font);
  text-align: center;
}

.slid-inner-box p
{
  font-size: 22px;
  margin-top: 15px;
  letter-spacing: 2px;
  text-align: center;
}



.slid-inner-box a
{
  font-size: 22px;
  background: none;
  border: none;
  color: var(--primary-color);
  margin-top: 35px;
  text-decoration: none;
  text-align: center;
}


@keyframes fadeDwon {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(40px);
  }
}

.slide-button {
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.slide-button.animate {
  animation: fadeDwon 0.8s ease forwards;
}



.services-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 88vh;
  width: 100%;
  gap: 10px;
  padding: 5px;
  position: relative;
  bottom: 35px;
}

.service-link {
  display: flex;
  text-decoration: none;
  height: 100%;
  width: 100%;
}

.box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.box-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center !important;
  text-align: left;
  padding: 25px;
  width: 100%
}



.box-content h1
{
  font-size: 38px;
  font-family: var(--heading-font);
  color: var(--primary-color);
}


.box-content p {
  font-size: 18px;
  color: var(--text-color);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.box-content p.fade-down-active {
  opacity: 1;
  transform: translateY(0);
}

.box-content h1,
.box-content p {
  text-align: left;
}

/* Backgrounds */
.box1 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/home-interior.jpeg") center/cover no-repeat;
}

.box3 {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.box3 img
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box2 {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/office-space-bg.jpeg") center/cover no-repeat;
}

.box4 {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}


.box5 {
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0));
}


.box6 {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slide4.jpg") center/cover no-repeat;
}


.box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 0%;
  width: 0%;
  border-top: 8px solid transparent;
  border-left: 8px solid transparent;
  transition: 
    width 0.7s ease,
    height 0.7s ease,
    border-color 0.2s ease;
  z-index: 1;
}

.box::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 0%;
  width: 0%;
  border-bottom: 8px solid transparent;
  border-right: 8px solid transparent;
  transition: 
    width 0.7s ease,
    height 0.7s ease,
    border-color 0.2s ease;
  z-index: 1;
}

/* On hover: animate size AND color */
.service-link:hover .box::before {
  width: 100%;
  height: 100%;
  border-top-color: var(--light-primary-color);
  border-left-color: var(--light-primary-color);
}

.service-link:hover .box::after {
  width: 100%;
  height: 100%;
  border-bottom-color: var(--light-primary-color);
  border-right-color: var(--light-primary-color);
}


.btn-primary {
  background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
  color: var(--primary-color);
  padding: 15px 28px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-primary:hover {
  transform: scale(1.05); /* Subtle zoom effect */
  background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
  color: var(--primary-color);
}

.service-link:hover .btn-primary {
  transform: scale(1.05);
}

.btn-founder
{
  width: 100%;
  display: block;
  position: relative;
  bottom: -45%;
  padding: 25px !important;
}


.slide-services {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../img/slide3.jpg") center/cover no-repeat !important;
}




.features-section {
  height: 88vh;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

.features-section h1 {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row by default */
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px;
}

.feature-card {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.feature-card p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.5;
}

.contact-form-control
{
  padding: 10px;
  margin-top: 30px;
  background: none;
  color: #fff !important;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  border-radius: 0px;
}


.contact-form-control::placeholder {
  color: #fff;
}


.btn-primary-contact {
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--primary-color);
  padding: 15px 28px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0px;
  border: none;
  font-weight: 500;
  text-transform: uppercase;
}

.btn-primary-contact:hover {
  transform: none !important; /* Subtle zoom effect */
  background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
  color: var(--primary-color);
}



.contact-form-control:focus
{
  background: none;
  color: var(--primary-color);
}


.contact-info-container
{
  width: 90%;
  margin: 0 auto;
}


.contact-info-box
{
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  height: 120px;
}


.contact-info-box h5
{ 
  color: var(--primary-color);
  font-size: 16px;
}


.contact-info-box h6
{ 
  color: var(--text-color);
}


.contact-info-container iframe
{
  border:0;
  width: 100%;
  height: 300px;
  margin-top: 20px; 
}


.about-contnet
{
  text-align: left;
  align-items: flex-start;

}


.contnet-bx
{
  text-align: center;
}

.contnet-bx a
{
  display: inline-block;
  margin-top: 10px !important;
}




.box-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-center !important;
  justify-content: center !important;
  text-align: left;
  padding: 25px;
  width: 100%
}


.box-contact h1
{
  color: var(--primary-color);
}



.projects-container
{
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../img/slide1.jpg") center/cover no-repeat;
    overflow: hidden;
    
}

.project-grid
{
  border: 1px solid var(--light-primary-color);
  height: 91.5vh;
  width: 92%;
  margin: 0 auto;
  margin-top: 35px;
  padding: 10px 20px;
  overflow-y: auto;
}


.projects-box {
  height: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex; /* Enables flexbox */
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  position: relative; /* In case you need to position other elements inside */
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
              url("assets/img/slide1.jpg") center/cover no-repeat;
}


.project-logo
{
  position: absolute;
  left: 48%;
  top: 0px;
  z-index: 99;
}

.project-logo img
{
  width: 70px;
}


.project-heading
{
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-family: var(--heading-font);;
}



.project-btn-primary {
  background-color: rgba(0, 0, 0, 0.7); /* Transparent black */
  color: var(--primary-color);
  padding: 15px 28px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
}


.project-link:hover .project-btn-primary {
  transform: scale(1.05);
  background-color: rgba(0, 0, 0, 0.9);
}


.project-btn-primary:hover {
  transform: scale(1.05); /* Subtle zoom effect */
  background-color: rgba(0, 0, 0, 0.9); /* Transparent black */
  color: var(--primary-color);
}

.project-heading h1
{
  text-transform: uppercase;
}


.project-img {
  height: 300px;
  border: 2px solid var(--primary-color);
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 10px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}




.container-service {
  margin: 0 auto;
  padding: 60px 20px;
}

.title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--light-primary-color);
  margin-bottom: 40px;
}

.section {
  margin-bottom: 40px;
}

.section h2 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.section p {
  font-size: 1rem;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.3rem;
  }
}



.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}

.testimoni-text-card {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
}


.testimoni-quote-left
{
  text-align: left;
}

.testimoni-quote-left img
{
  width: 45px;
}



.testimoni-quote-right
{
  text-align: right;
}

.testimoni-quote-right img
{
  width: 45px;
}

.testimoni-message p
{
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 20px;
}


.testimoni-message i
{
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}



.container-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    height: 100vh;
    padding: 10px;
    width: 100%;
}

/* Child service box */
.service-box {
    width: 48%; /* Two items per row */
    height: 40vh; /* Adjust height of each box on desktop */
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-box:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/free-consultation-bg.jpeg") center/cover no-repeat;
}


.service-box:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)),
    url("../img/vastu-bg.jpeg") center/cover no-repeat;
}


.service-box:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/3d-bg.jpeg") center/cover no-repeat;
}

.service-box:nth-child(4) {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/slide1.jpg") center/cover no-repeat;
}



.service-box .btn-primary {
  background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
  color: var(--primary-color);
  padding: 15px 28px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 0px;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
  text-transform: uppercase;
}

.service-box .btn-primary:hover {
  transform: scale(1.05); /* Subtle zoom effect */
  background-color: rgba(0, 0, 0, 0.5); /* Transparent black */
  color: var(--primary-color);
}

.service-box:hover .btn-primary {
  transform: scale(1.05);
}


/* Mobile view adjustments */
@media screen and (max-width: 768px) {
  .container-services {
      height: 80vh;
      flex-direction: column;
      justify-content: space-evenly;
      padding: 10px;
  }

  .service-box {
      width: 100%;
      height: 45%;
      margin: 10px auto;
      flex: 1;
  }
}


.sub-ser-box
{
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}


.sub-ser-box:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Pop-up shadow */
}

.sub-ser-box img
{
  width: 60px;
}


.sub-ser-box h4
{
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 20px;
}



.abt-img img
{ 
  width: 100%;
  height: 500px;
  object-fit: cover;
}


.abt-content {
  height: 500px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}

.abt-content p {
  color: var(--text-color);  
}


.abt-content h1 {
  color: var(--primary-color);  
  font-size: 38px;
  font-weight: 700;
  font-family: var(--heading-font);
}


.abt-content h1,
.abt-content p {
  text-align: left;
}


.abt-box
{
  padding: 30px;
  border: 1px solid var(--primary-color);
  padding-bottom: 30px;
  margin-top: 30px;
  height: 220px;
}


.abt-box h2
{
  color: var(--primary-color);
}


.abt-box p
{
  color: var(--text-color);
}


.team-card
{
  border: 3px solid var(--primary-color);
  margin-top: 20px;
}

.team-img img
{
  width: 100%;
  height: 300px;
  object-fit: cover;
}


.team-con
{
  background: var(--primary-color);
  color: black;
  padding: 10px;
}


.team-con h4
{
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.team-con i
{
  line-height: 0.5;
}


.abt-contnet-bx
{
  color: var(--primary-color);
  margin-top: 50px;
  padding: 200px;
  border: 1px solid var(--primary-color);
}

.abt-contnet-bx a
{
  display: inline-block;
  margin-top: 10px !important;
  font-size: 18px;

}


.contact-section {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.box-cnt
{
  height: auto;
  padding: 10px;
}

.box-cnt h1
{
  color: var(--primary-color);
  font-size: 80px;
  font-family: var(--heading-font);
  line-height: 1;
}

.box-cnt small
{
  color: var(--primary-color);
}

.border-lft
{
  border-left: 1px solid #ccc;
  margin-top: 5px;
  margin-left: 60px;
}

.border-lft h6
{
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  padding-top: 10px;
  padding-left: 10px;
}

.border-lft p
{
  color: var(--primary-color);
  line-height: 1;
  padding-bottom: 10px;
  padding-left: 10px;
}

.border-lft iframe
{
  height: 60%;
  width: 80%;
  padding-left: 10px;
  border: none;
}


.whats-app-btn
{
  position: absolute;
  z-index: 999;
  bottom: 20px;
  right: 60px;
}


.whats-app-btn img
{
  width: 55px;
}


.border-lft-soc
{
  margin-bottom: 15px; 
}

.border-lft img
{
  width: 30px;
  margin-left: 10px;
}


.blog-box
{
  border: 1px solid var(--primary-color);
  margin-top: 30px;
}

.blog-img img
{
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.blog-content
{
  padding: 10px;
}

.blog-content h2
{
  font-size: 22px;
  font-weight: 700px;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


.blog-content p {
    color: var(--text-color);
    font-size: 16px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-content a
{
  border: 1px solid var(--primary-color);
  padding: 15px 30px 15px 30px;
  border-radius: 0px;
}


.blog-single
{
  width: 70%;
  margin: 0 auto;
}


.blog-single-title
{
  margin-top: 70px;
  margin-bottom: 20px;
}

.blog-single-title h1
{
  color: var(--primary-color);
  font-family: var(--heading-font);
}


.blog-single-img img
{
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.blog-single-content
{
  color: var(--primary-color) !important;
  margin-top: 30px;
}


.blog-written-by
{
  color: var(--text-color);
  margin-top: 40px;
  margin-bottom: 40px;
}



.testimonic-container
{
  height: 100vh;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url("../img/cutsomer-exp-bg.jpeg") center/cover no-repeat;
    overflow: hidden;
    
}
