/**
 * @file
 * Subtheme specific CSS.
 */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');
@import url(https://db.onlinewebfonts.com/c/771c49f7c4367802d13ab202d164204b?family=Outfit);
@import url(https://db.onlinewebfonts.com/c/b22bc1a9c9f1ee6fa9c2a1de69be7903?family=Syncopate);
@import url(https://db.onlinewebfonts.com/c/4abc7b446177a4b533468cd3635fe0b6?family=Abril+Fatface);

* {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}

body {
  font-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}


:root {
  --bs-primary: #EE8D5A;
  --bs-secondary: #e53637;
  --secondary-color-green: #666666;
  --secondary-color-sandal: #FAF3ED;
  --secondary-color-black: #111111;
  --footer-text-color: rgba(255, 255, 255, 0.55);
}

h1 {
  font-size: 35px;
  font-weight: 800;
  line-height: 47px;
  font-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}

h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 40px;
  font-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}

h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 36px;
  font-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  ffont-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}

h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 25px;
  font-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}

h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  font-family: 'Outfit', 'Syncopate', 'Abril+Fatface';
}

p {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  color: var(--secondary-color-green);
}

p span {
  font-size: 20px;
  font-weight: 500;
  font-family: 'Outfit';
  line-height: 28px;
  color: var(--bs-secondary);
}

#page-wrapper {
  margin-top: -20px;
}

footer {
  padding-top: 100px;
  background-color: var(--secondary-color-black);
}

.btn {
  width: 185px;
  height: 62px;
  padding: 16px 0;
  border: 2px solid var(--secondary-color-black);
  border-radius: 0;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  text-transform: uppercase;
  background-color: transparent;
  position: relative;
}

.quarter {
  width: 20px;
  height: 20px;
  border-top-right-radius: 0;
  border-top-left-radius: 100%;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--secondary-color-black);
  position: absolute;
  right: 0;
  bottom: 0;
}

.btn-outline-primary {
  color: var(--secondary-color-black);
  border: 2px solid #000;
  background-image: linear-gradient(300deg, #000 50%, transparent 50%);
  background-size: 500px;
  background-repeat: no-repeat;
  background-position: 20%;
  transition: background 300ms ease-in-out;
}

.btn-outline-primary:hover {
  background-position: 100%;
  color: #fff;
  border: 2px solid #000;
  background-color: transparent;
}

.btn-outline-primary:focus {
  box-shadow: none;
}

.btn-outline-primary:active {
  background-color: transparent;
  border: none;
}

.outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
  box-shadow: none;
}

#top-spacing {
  padding-top: 104px;
}

body {
  font-family: 'Outfit', serif;
}

/* From this onwards we will use Style for our site */

@media (max-width: 992px) {
  #CollapsingNavbar {
    position: fixed;
    top: 80px;
    right: -320px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    padding: 1rem;
    overflow-y: auto;
    transition: transform 0.3s ease-in;
    transform: translateX(100%);
  }

  #CollapsingNavbar.show {
    left: 0;
    transform: translateX(0);
  }

  body.menu-opened {
    overflow: hidden;
  }

  .navbar-toggler {
    padding: 7px 23px 0px 8px;
  }

  .navbar-toggler-icon {
    background-image: none;
    color: black;
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .nav-item {
    padding-bottom: 10px;
  }

  .navbar-nav {
    padding: 10px 0;
  }
}

#block-tts-mainnavigation .nav-item {
  position: relative;
  display: inline-block;
}

.nav-item span {
  cursor: pointer
}


@media (max-width: 992px) {
  .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item.open .submenu {
    max-height: 300px;
    /* Large enough to reveal all items */
  }

  .dropdown-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
    cursor: pointer;
  }

  .nav-item.open .dropdown-arrow {
    transform: rotate(180deg);
  }
}

.menu-close {
  text-align: right;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .close-menu-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1051;
    display: none;
  }
}

.close-menu-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 767px) {
  #CollapsingNavbar {
    top: 0;
  }
}

.nav-item.active-trail>.nav-link {
  font-weight: bold;
  color: #000;
}

@media (min-width:992px) {
  ul.submenu.dropdown-menu {
    display: none;
    min-width: 180px;
    background-color: transparent;
    border: none;
    padding: 20px 25px;
    border-radius: 6px;

  }
}

@media (max-width:992px) {
  .submenu.dropdown-menu {
    display: block;
    border: none;
    padding-left: 50px;
    padding-top: 0px;
  }
}

li.nav-item:hover>ul.submenu.dropdown-menu {
  display: block;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  list-style: circle;
  margin: 0;
}

@media (max-width:991px) {

  li.nav-item:hover>ul.submenu.dropdown-menu {
    border: none;
    box-shadow: none;
  }
}

@media (min-width:992px) {
  .dropdown-arrow {
    display: none;
  }
}


.submenu.dropdown-menu a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}

#navbar-main {
  background-color: transparent !important;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  width: 100%;
}

.navbar-brand {
  margin-right: auto;
  margin-left: 35px;
}

.navbar-brand img {
  max-height: 100px;
}

.navbar-nav .nav-link {
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 25px !important;
  margin: 0 10px;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (min-width:992px) {
  .navbar-nav .nav-link:hover {
    background-color: black;
    color: white;
  }

}

@media (max-width:992px) {
  .navbar-nav .nav-link:hover {
    color: black;
  }
}

.nav-link--contactus {
  background-color: black;
  color: white !important;
}


#header {
  position: relative;
  top: 45px;
  z-index: 10;
}

#navbar-top {
  background-color: transparent !important;
}

.navbar-collapse {
  flex-basis: unset !important;
  flex-grow: 0 !important;
  align-items: center;
  margin-right: 75px;
}

@media (max-width: 991px) {
  #navbar-main {
    position: absolute;
    top: -15px;
    border-bottom: 1px solid #000
  }

  .navbar-brand {
    margin-left: 0;
  }

  .navbar-brand img {
    max-height: 60px;
  }

}

@media (max-width: 767px) {
  #navbar-main {
    position: absolute;
    top: -15px;
    border-bottom: none;
    padding: 0 10px;
  }

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

@media (min-width: 992px) and (max-width: 1450px) {

  .navbar-collapse {
    margin-right: 0;
  }

  .navbar-brand img {
    max-height: 60px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 8px 10px !important;
  }
}

/* Syncopate overall font load */

.syn-text {
  font-family: Syncopate;
}

/* Home Banner Styles */
.home-banner {
  position: relative;
  width: 99.6vw;
  height: 100vh;
  min-height: 500px;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: -120px;
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.home-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  padding: 0 60px;
  margin-left: calc(50vw - 50%);
}

.home-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #333;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: 'Abril+Fatface';
}

.home-title span {
  font-family: 'Abril+Fatface';
}

.gradient-word {
  background: linear-gradient(to right, #000000, #6aaa4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}

.home-btn {
  margin-top: 2rem;
}

.home-btn a,
.home-btn button {
  display: inline-block;
  padding: 15px 35px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  border: 2px solid #000;
  box-shadow: 0 4px 10px rgba(0, 128, 0, 0.4);
  transition: all 0.3s ease;
}

.home-btn a:hover,
.home-btn button:hover {
  background-color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #000;
}

.home-btn a:focus {
  color: #000;
}

@media (min-width: 993px) and (max-width: 1199px) {
  .home-banner {
    height: 70vh;
    margin-top: -80px;
    width: 99.1vw;
  }
}

/* Tablet Styles */
@media (max-width: 992px) {
  .home-banner {
    min-height: 550px;
    height: 60vh;
    width: 99.1vw;
    margin-top: -10px;
  }

  .home-content {
    padding: 0 40px;
  }

  .home-title {
    font-size: 3.5rem;
  }

  .home-btn a,
  .home-btn button {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .home-banner {
    min-height: 400px;
    height: 70vh;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .home-content {
    padding: 0 20px;
    text-align: center;
  }

  .home-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .home-btn a,
  .home-btn button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .home-banner {
    min-height: 300px;
  }

  .home-content {
    padding: 0 15px;
  }

  .home-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .home-btn a,
  .home-btn button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (min-width: 1400px) {
  .home-content {
    max-width: 950px;
    padding: 0 80px;
  }

  .home-title {
    font-size: 5rem;
  }
}


/* About US Section */

.about-us-section {
  width: 99.6vw;
  height: 75vh;
  margin-left: calc(-50vw + 50%);
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.about-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

.about-title {
  padding-top: 0px;
  padding-right: 200px;
  margin-left: 138px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .about-title {
    padding-top: 35px;
  }

}

.about-title h2 {
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.about-content-section {
  position: relative;
  z-index: 3;
  margin-top: -123px;
  border-radius: 20px 20px 0 0;
  padding: 80px 0;
}

.about-content-grid {
  display: grid;
  padding-left: 80px;
  margin-left: -7px;
  grid-template-columns: 1fr 1fr;
}

.about-image-column {
  animation: fadeInUp 0.8s ease-out;
}

.about-front-image-wrapper img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-left: 50px;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .about-front-image-wrapper img {
    margin-left: 0;
  }
}

.about-front-image-wrapper img:hover {
  transform: translateY(-10px);
}

.about-front-image {
  width: 60%;
  height: 80%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .about-front-image {
    width: 100%;
    height: auto;
  }

}

.about-text-column {
  padding-left: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-body-content {
  color: #000000;
  padding-right: 53px;
  margin-right: 114px;
  font-family: 'Open Sans', sans-serif;
  text-shadow: 1.5px 1.5px 8px rgba(0, 0, 0, 0.25);
  margin-left: -100px;
  margin-top: -30px;
}

@media screen and (max-width: 767px) {
  .about-body-content {
    margin-left: 0;
    margin-top: 15px;
  }

}

.about-body-content p {
  font-size: 1.1rem;
  line-height: 2.4;
  margin-bottom: 20px;
  text-align: justify;
  /* text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); */
}

.about-body-content strong {
  color: #000000;
  font-size: 24px;
  font-weight: 500;
  line-height: 46px;
}

.about-body-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 20px 0;
}

.about-body-content ul li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for About Us Section */

@media (max-width: 1600px) and (min-width: 1200px) {
  .about-us-section {
    height: 90vh;
  }

  .about-title {
    padding-right: 150px;
    margin-left: 100px;
    padding-bottom: 100px;
  }

  .about-content-grid {
    padding-left: 60px;
    margin-left: -60px;
  }

  .about-body-content {
    padding-right: 40px;
    margin-right: 20px;
  }
}

/* Medium Desktop (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 1025px) {
  .about-us-section {
    height: 75vh;
    padding: 50px 0;
    width: 99.1vw;
  }

  .about-title {
    padding-right: 100px;
    margin-left: 80px;
    padding-bottom: 80px;
  }

  .about-title h2 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }

  .about-content-section {
    margin-top: -100px;
    padding: 60px 0;
  }

  .about-content-grid {
    padding-left: 40px;
    margin-left: -40px;
    gap: 20px;
  }


  .about-body-content {
    padding-right: 30px;
    margin-right: 60px;
  }

  .about-body-content p {
    font-size: 1.05rem;
    line-height: 2.5;
  }

  .about-body-content strong {
    font-size: 20px;
    line-height: 40px;
  }
}

/* Small Desktop/Large Tablet (768px - 991px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .about-us-section {
    height: auto;
    min-height: 70vh;
    padding: 40px 0;
    width: 99.1vw;
  }

  .container {
    padding: 0 20px;
  }

  .about-title {
    padding-right: 50px;
    margin-left: 40px;
    padding-bottom: 60px;
    text-align: center;
  }

  .about-title h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
  }

  .about-content-section {
    margin-top: -80px;
    padding: 50px 0;
  }

  .about-content-grid {
    display: block;
    padding-left: 20px;
    margin-left: -20px;
    gap: 25px;
  }

  .about-front-image-wrapper {
    display: flex;
    justify-content: center;
  }

  .about-front-image-wrapper img {
    margin-left: 8px;
  }

  .about-text-column {
    padding-left: 165px;
    margin-top: 94px;
  }

  .about-body-content {
    padding-right: 20px;
    margin-right: 40px;
  }

  .about-body-content p {
    font-size: 1rem;
    line-height: 2.3;
  }

  .about-body-content strong {
    font-size: 18px;
    line-height: 36px;
  }

  .about-body-content ul li {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .about-us-section {
    width: 100vw;
    height: auto;
    min-height: 80vh;
    padding: 30px 0;
  }

  .container {
    padding: 0 15px;
  }

  .about-title {
    padding-right: 20px;
    margin-left: 20px;
    padding-bottom: 40px;
    text-align: center;
  }

  .about-title h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .about-content-section {
    margin-top: -60px;
    padding: 40px 0;
  }

  .about-content-grid {
    display: block;
    padding-left: 0;
    margin-left: 0;
  }

  .about-image-column {
    margin-bottom: 30px;
  }

  .about-front-image-wrapper {
    margin-right: 0;
    margin: 0 auto 30px auto;
    max-width: 400px;
    display: flex;
    justify-content: center;
  }

  .about-text-column {
    padding-left: 130px;
    margin-top: 85px;
  }

  .about-body-content {
    padding-right: 0;
    margin-right: 0;
    padding: 0 20px;
  }

  .about-body-content p {
    font-size: 0.95rem;
    line-height: 2.1;
    text-align: left;
  }

  .about-body-content strong {
    font-size: 17px;
    line-height: 34px;
  }

  .about-body-content ul li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
}

@media (max-width: 575px) and (min-width: 481px) {
  .about-us-section {
    width: 100vw;
    height: auto;
    min-height: 85vh;
    padding: 25px 0;
  }

  .container {
    padding: 0 15px;
  }

  .about-title {
    padding-right: 15px;
    margin-left: 15px;
    padding-bottom: 30px;
    text-align: center;
  }

  .about-title h2 {
    font-size: clamp(1.3rem, 7vw, 2.2rem);
  }

  .about-content-section {
    margin-top: -50px;
    padding: 35px 0;
  }

  .about-content-grid {
    display: block;
    padding-left: 0;
    margin-left: 0;
  }

  .about-image-column {
    margin-bottom: 25px;
  }

  .about-front-image-wrapper {
    margin: 0 auto 25px auto;
    max-width: 350px;
  }

  .about-text-column {
    padding-left: 0;
  }

  .about-body-content {
    padding: 0 15px;
    margin-right: 0;
  }

  .about-body-content p {
    font-size: 0.9rem;
    line-height: 2;
    text-align: left;
  }

  .about-body-content strong {
    font-size: 16px;
    line-height: 32px;
  }

  .about-body-content ul li {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) and (min-width: 360px) {
  .about-us-section {
    width: 100vw;
    height: auto;
    min-height: 80vh;
    padding: 20px 0;
    text-align: justify;
  }

  .container {
    padding: 0 12px;
  }

  .about-title {
    padding-right: 10px;
    margin-left: 10px;
    padding-bottom: 25px;
    text-align: center;
  }

  .about-title h2 {
    font-size: clamp(1.2rem, 8vw, 2rem);
  }

  .about-content-section {
    margin-top: -40px;
    padding: 30px 0;
  }

  .about-content-grid {
    display: block;
    padding-left: 0;
    margin-left: 0;
  }

  .about-image-column {
    margin-bottom: 20px;
  }

  .about-front-image-wrapper {
    margin: 0 auto 20px auto;
    max-width: 300px;
  }

  .about-text-column {
    padding-left: 0;
  }

  .about-body-content {
    padding: 0 12px;
    margin-right: 0;
  }

  .about-body-content p {
    font-size: 0.85rem;
    line-height: 1.9;
    text-align: justify;
    margin-bottom: 15px;
  }

  .about-body-content strong {
    font-size: 15px;
    line-height: 30px;
  }

  .about-body-content ul {
    padding-left: 15px;
  }

  .about-body-content ul li {
    font-size: 0.85rem;
    margin-bottom: 8px;
  }
}

@media (max-width: 360px) {
  .about-us-section {
    width: 100vw;
    height: auto;
    min-height: 95vh;
    padding: 15px 0;
  }

  .container {
    padding: 0 10px;
  }

  .about-title {
    padding-right: 5px;
    margin-left: 5px;
    padding-bottom: 20px;
    text-align: center;
  }

  .about-title h2 {
    font-size: clamp(1.1rem, 9vw, 1.8rem);
    letter-spacing: 0.5px;
  }

  .about-content-section {
    margin-top: -35px;
    padding: 25px 0;
  }

  .about-content-grid {
    display: block;
    padding-left: 0;
    margin-left: 0;
  }

  .about-image-column {
    margin-bottom: 15px;
  }

  .about-front-image-wrapper {
    margin: 0 auto 15px auto;
    max-width: 280px;
  }

  .about-text-column {
    padding-left: 0;
  }

  .about-body-content {
    padding: 0 10px;
    margin-right: 0;
    text-shadow: none;
  }

  .about-body-content p {
    font-size: 0.8rem;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 12px;
    text-shadow: none;
  }

  .about-body-content strong {
    font-size: 14px;
    line-height: 28px;
  }

  .about-body-content ul {
    padding-left: 12px;
    margin: 15px 0;
  }

  .about-body-content ul li {
    font-size: 0.8rem;
    margin-bottom: 6px;
    line-height: 1.4;
  }
}

/* ===== TESTIMONIAL SECTION ===== */

.testimonials-section {
  width: 99.6vw;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 120px 0;
  position: relative;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  overflow: hidden;
}

.testimonials-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.testimonials-bg-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  margin-top: -20px;
}

.testimonials-title {
  font-size: 4rem;
  font-weight: bold;
  color: #000000;
  margin: 0 0 20px 0;
  letter-spacing: 3px;
  font-family: Syncopate;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

.testimonials-subtitle {
  font-size: 2.8rem;
  color: #000000;
  margin: 0;
  font-weight: 300;
  font-family: Arial, sans-serif;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  margin-top: 100px;
}

.testimonial-card {
  background: linear-gradient(135deg, #848484, #d1d1d1);
  border-radius: 20px;
  padding: 40px 35px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-content {
  font-size: 10rem;
  line-height: 1.6;
  color: #2c2c2c;
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
  text-align: left;
  flex-grow: 1;
}

.testimonial-content p {
  font-size: 20px;
  color: #000000;
  text-align: justify;
  margin: 0;
}

.testimonial-author {
  font-size: 20px;
  color: #000000;
  text-align: right;
  margin-top: auto;
}

.author-company {
  color: #000000;
  text-align: right;
  font-size: 20px;
  font-family: Arial, sans-serif;
  font-weight: normal;
}

/* Testimonial Responsive */

@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-section {
    padding: 60px 0 80px 0;
  }

  .testimonials-container {
    max-width: 90%;
    padding: 0 20px;
  }

  .testimonials-title {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  .testimonials-subtitle {
    font-size: 2.2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 80px;
    max-width: 600px;
  }

  .testimonial-card {
    padding: 35px 30px;
    min-height: 250px;
    border-radius: 18px;
  }

  .testimonial-content p {
    font-size: 18px;
    line-height: 1.5;
  }

  .testimonial-author {
    font-size: 18px;
    margin-top: 20px;
  }

  .author-company {
    font-size: 18px;
  }
}

@media (min-width: 429px) and (max-width: 767px) {
  .testimonials-section {
    padding: 50px 0 70px 0;
    width: 100vw;
  }

  .testimonials-container {
    max-width: 95%;
    padding: 0 15px;
  }

  .testimonials-header {
    margin-bottom: 50px;
    margin-top: 0;
  }

  .testimonials-title {
    font-size: 2.4rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }

  .testimonials-subtitle {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    gap: 0px;
    margin-top: 60px;
    max-width: 500px;
  }

  .testimonial-card {
    padding: 30px 25px;
    min-height: 220px;
    border-radius: 15px;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-content {
    margin-bottom: 25px;
  }

  .testimonial-content p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
  }

  .testimonial-author {
    font-size: 16px;
    margin-top: 15px;
  }

  .author-company {
    font-size: 16px;
  }

  .testimonials-bg-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
}

@media (min-width: 389px) and (max-width: 430px) {
  .testimonials-container {
    max-width: 100%;
    padding: 0 12px;
  }

  .testimonials-title {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }

  .testimonials-subtitle {
    font-size: 1.6rem;
  }

  .testimonials-grid {
    gap: 0px;
    margin-top: 50px;
    max-width: 400px;
  }

  .testimonial-card {
    padding: 25px 20px;
    min-height: 200px;
    border-radius: 12px;
  }

  .testimonial-content p {
    font-size: 15px;
    line-height: 1.4;
  }

  .testimonial-author {
    font-size: 15px;
  }

  .author-company {
    font-size: 15px;
  }
}

@media (min-width: 359px) and (max-width: 390px) {
  .testimonials-section {
    padding: 40px 0 60px 0;
  }

  .testimonials-container {
    padding: 0 10px;
  }

  .testimonials-header {
    margin-bottom: 40px;
  }

  .testimonials-title {
    font-size: 2.2rem;
    letter-spacing: 0.8px;
    line-height: 1.1;
  }

  .testimonials-subtitle {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .testimonials-grid {
    gap: 0px;
    margin-top: 45px;
    max-width: 350px;
  }

  .testimonial-card {
    padding: 22px 18px;
    min-height: 190px;
    border-radius: 10px;
  }

  .testimonial-content {
    margin-bottom: 20px;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.4;
  }

  .testimonial-author {
    font-size: 14px;
    margin-top: 12px;
  }

  .author-company {
    font-size: 14px;
  }

  .testimonials-bg-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
}

@media screen and (max-width: 360px) {

  .testimonials-container {
    padding: 0 8px;
  }

  .testimonials-header {
    margin-bottom: 35px;
  }

  .testimonials-title {
    font-size: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.1;
  }

  .testimonials-subtitle {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .testimonials-grid {
    gap: 0px;
    margin-top: 40px;
    max-width: 320px;
  }

  .testimonial-card {
    padding: 20px 15px;
    min-height: 180px;
    border-radius: 8px;
  }

  .testimonial-content {
    margin-bottom: 18px;
  }

  .testimonial-content p {
    font-size: 13px;
    line-height: 1.3;
  }

  .testimonial-author {
    font-size: 13px;
    margin-top: 10px;
  }

  .author-company {
    font-size: 13px;
  }
}


/* Footer Starts Here */

.site-footer {
  background-color: #2c3e50;
  color: #ffffff;
  padding: 100px;
}

.footer-logo {
  width: 90%;
  margin-bottom: 10px;
}

.footer-description {
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 25px;
  margin-left: 10px;
  background: linear-gradient(90deg, #a3f94e, white, #cfcfcf);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.socialmedia_icons img {
  width: 35px;
}

.socialmedia_icons a {
  text-decoration: none;
  gap: 10px;
}

.socialmedia_icons {
  margin-left: 11px;
  display: flex;
}

.site-footer h3 {
  color: #a3f94e;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer_second {
  line-height: 20px;
  margin-left: 40px;
  margin-right: -40px;
}

@media (min-width:769px) and (max-width:1299px) {
  .footer_second {
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px;
  }

  .footer_third h3 {
    margin-left: 0;
  }

  .footer_third ol,
  ul {
    padding-left: 0;
  }

  .footer_fourth h3 {
    margin-left: 0;
  }
}

.footer_third {
  line-height: 30px;
}

.footer_fourth h3 {
  margin-left: -40px;
}

.footer_third h3 {
  margin-left: 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  display: inline-block
}

.site-footer ul li {
  margin-bottom: 12px;
  margin-top: -5px;
}

.site-footer ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 19px;
  transition: color 0.3s ease;
}

.site-footer ul li a:hover {
  color: #a3f94e;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 18px;
  color: #a3f94e;
}

@media (min-width:1025px) and (max-width:1600px) {
  .contact-info p {
    font-size: 14px;
  }

}

@media (min-width: 770px) and (max-width: 1299px) {
  .site-footer .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .footer_first,
  .footer_second,
  .footer_third,
  .footer_fourth {
    text-align: center;
  }

}


.contact-info a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #a3f94e;
}

.fa-envelope {
  color: #ffffff;
  margin-right: 8px;
  margin-left: -22px;
}

.fa-phone {
  color: #ffffff;
  margin-right: 8px;
  margin-left: -22px;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  margin-top: 50px;
  padding-top: 20px;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 30px;
  justify-content: end;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a3f94e;
}

.footer-third .footer-menu {
  line-height: 30px;
}

/*Responsive Footer Design */

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .site-footer {
    padding: 60px 40px;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
    grid-template-areas:
      "footer-first footer-second footer-third"
      "footer-fourth footer-fourth footer-fourth";
  }

  .footer_first {
    grid-area: footer-first;
  }

  .footer_second {
    grid-area: footer-second;
    margin-left: 20px;
    margin-right: 0;
  }

  .footer_third {
    grid-area: footer-third;
  }

  .footer_fourth {
    grid-area: footer-fourth;
    text-align: center;
    margin-top: 20px;
  }

  .footer_fourth h3 {
    margin-left: 0;
  }

  .footer-description {
    font-size: 22px;
    margin-left: 5px;
  }

  .site-footer h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .site-footer ul li a {
    font-size: 17px;
  }

  .contact-info p {
    font-size: 16px;
  }

  .footer-links {
    justify-content: center;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .site-footer {
    padding: 36px 18px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    text-align: left;
  }

  .footer_first,
  .footer_second,
  .footer_third,
  .footer_fourth {
    margin: 0 !important;
    padding: 0 12px;
    box-sizing: border-box;
  }

  .footer_fourth h3,
  .footer_third h3,
  .footer_second h3,
  .footer_first h3 {
    margin-left: 0 !important;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .site-footer ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer_third ul li {
    margin: 0 0 14px 0;
    line-height: 32px;
  }

  .footer_first ul,
  .footer_second ul,
  .footer_third ul,
  .footer_fourth ul {
    line-height: 1.9;
  }

  .site-footer ul li a {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
  }

  .socialmedia_icons {
    /* margin: 8px 0; */
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    padding-bottom: 20px;
  }

  .socialmedia_icons img {
    width: 30px;
    height: auto;
  }

  .contact-info .fa-envelope,
  .contact-info .fa-phone {
    margin-left: 0 !important;
    margin-right: 8px;
  }

  .contact-info {
    text-align: left;
    margin: 8px 0 0 0;
  }

  .contact-info p,
  .contact-info a {
    font-size: 16px;
    margin: 12px 0;
  }

  .footer-links {
    margin-top: 12px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px solid #34495e;
    text-align: left;
  }

  .footer-second ul {
    margin-left: -16px;
  }
}

/* Style for DETAILED SERVICES PAFE starts here */

.detailed-title {
  background: linear-gradient(to right, #000000, #6aaa4c);
  background-clip: text;
  color: transparent;
  margin-top: 100px;
  font-size: 40px;
  font-weight: bold;
}

/* Banner Section */
.detailed-banner {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  font-family: 'Outfit';
}

.detailed-banner-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin-top: -45px;
}

.detailed-banner-image img {
  /* max-width: 100%; */
  height: 310px;
  border-radius: 6px;
}

.detailed-banner-text {
  font-size: 1.2rem;
  line-height: 1.5;
}

.detailed-banner-text p {
  font-size: 25px;
  font-weight: 400;
  line-height: 35px;
  color: #010101;
  text-align: left;
}

.detailed-banner-button {
  margin-top: -5rem;
}

/* Description Section */
.detailed-description-wrapper {
  display: flex;
  gap: 3rem;
  margin: 5rem 0;
  align-items: flex-start;
}

.detailed-description-inner {
  display: block;
  flex: 1;
}

.detailed-description-image {
  margin-bottom: 10px;
}

.detailed-description-image img {
  width: 89%;
  height: 100%;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  margin-bottom: 20px;

}

.detailed-description-image img:hover {
  transform: translateY(-10px);
}

.detailed-description2 {
  flex: 1;
  margin-top: -20px;
}

.detailed-description-text p {
  font-size: 22px;
  color: #000000;
  line-height: 50px;
  text-align: justify;
}

.detailed-description2 p {
  font-size: 22px;
  color: #000000;
  line-height: 50px;
  margin-top: 50px;
  text-align: justify;
}

.detailed-description2 p:nth-of-type(2) {
  margin-top: 100px;
}

.detailed-description2 p:nth-of-type(3) {
  margin-top: 67px;
}

/* Choose Us Section */
.detailed-choose-us {
  margin-top: 5rem;
  color: #000000;
}

.detailed-choose-us p {
  font-size: 22px;
  font-weight: 400;
  line-height: 25px;
  color: #000;
}

.detailed-choose-us ul {
  font-size: 20px;
  margin-left: 45px;
}

/* Primary Button */
.detailed-banner-button a,
.btn-primary {
  display: inline-block;
  padding: 0.4rem 1.6rem;
  background-color: #ffffff;
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
  border: 3px solid #333333;
}

.detailed-banner-button a:hover,
.btn-primary:hover {
  background-color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  color: white;
}

.detailed-banner-button a:focus {
  color: rgb(0, 0, 0);
}

.detailed-banner-button a:active,
.btn-primary:active {
  background-color: #000000;
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: white;
}



/* RESPONSIVE FOR DETAILED PAGES STARTS HERE */

/* @media (min-width:320) and (max-width:767){
} */
@media screen and (max-width: 767px) {

  .detailed-title {
    text-align: center;
    margin-top: 100px;
  }

  .detailed-banner {
    margin-top: 15px;
  }

  /* Banner Section */
  .detailed-banner-content {
    display: block;
    text-align: center;
    margin-top: 0;
  }

  .detailed-banner-text {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .detailed-banner-text p {
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
    padding-left: 15px;
    padding-right: 15px;
  }

  .detailed-banner-image img {
    height: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }

  .detailed-banner-button {
    margin-top: 1.5rem;
    text-align: center;
  }

  /* Description Section */
  .detailed-description-wrapper {
    display: block;
    margin: 3rem 1rem;
  }

  .detailed-description-inner {
    display: block;
    margin-bottom: 2rem;
    text-align: center;
  }

  .detailed-description-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px auto;
    display: block;
  }

  .detailed-description-text p,
  .detailed-description2 p {
    font-size: 17px;
    line-height: 33px;
    margin-top: 20px;
    text-align: justify;
  }

  .detailed-description-text {
    margin-top: 42px;
  }

  .detailed-description2 p:nth-of-type(2) {
    margin-top: 15px;
  }

  .detailed-description2 p:nth-of-type(3) {
    margin-top: 15px;
  }

  .detailed-description2 {
    margin-top: -7px;
  }

  /* Choose Us Section */
  .detailed-choose-us {
    margin-top: 3rem;
    padding: 0 1rem;
    text-align: center;
  }

  .detailed-choose-us p {
    font-size: 18px;
    line-height: 26px;
  }

  .detailed-choose-us ul {
    font-size: 18px;
    margin: 1rem auto;
    text-align: justify;
    max-width: 320px;
  }

  /* Button adjustment on mobile */
  .detailed-banner-button a,
  .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  }
}

/* Service Section */

.what-we-do-section {
  width: 99.6vw;
  height: auto;
  margin-left: calc(-50vw + 50%);
  position: relative;
  padding: 80px 20px 100px;
  background: linear-gradient(to bottom, #e8f5e9, #ffffff);
  overflow: hidden;
}

.service-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
  min-height: 35vh;
}

.content-section {
  padding-right: 40px;
}

.content-section p {
  font-size: 2.3rem;
  line-height: 1.8;
  color: #CCCCCC;
  margin-bottom: 40px;
  font-weight: 400;
}

.button-section {
  text-align: center;
  position: relative;
  z-index: 2;
  /* Ensure it is above the background */
}

.explore-btn {
  display: inline-block;
  background: #342f3c;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgb(144 144 144 / 40%);

}

.explore-btn a {
  text-decoration: none;
  color: white;
  font-size: 20px;
}

.explore-btn:hover {
  transform: scale(1.05);
}

.explore-btn a:hover,
.explore-btn a:focus {
  transform: translateY(-2px);
  color: white;
}

.title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* Align all children to the right */
  justify-content: flex-start;
  position: relative;
}

.title-section h2 {
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -2px;
  font-size: 70px;
  color: #fff;
  margin-top: -20px;
  margin-right: 200px;
  position: relative;
  z-index: 4;
  text-align: right;
  display: inline;
  font-size: 50px;
}

/* Ensure it is above the background */

.title-section h2 span {
  font-family: Syncopate;
}

.title-section span {
  font-size: 50px;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 80px;
  position: relative;
  top: -30px;
  left: 0;
  width: 100%;
  z-index: 2;

}

.swiper-wrapper {
  transition-timing-function: linear !important;
}


/* Desktop (≥1024px): split into two lines */
@media (min-width: 1024px) {
  .title-section h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}

.gradient-wording {
  background: linear-gradient(to right, #ffffff, #6aaa4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 70px;
}

@media (max-width: 1200px) {
  .title-section h2 {
    margin-right: unset;
  }
}

.what-we-do-section .container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 3;
}

#orb-root {
  position: absolute;
  z-index: 3;
  /* Ensure it is above the background */
  width: 600px;
  height: 385px;
  top: -50px;
  right: 0;
}

.orb-container canvas {
  width: 600px !important;
  height: 400px !important;
}

#orb-root .App>div {
  width: unset !important;
  height: unset !important;
}

@media (min-width: 1200px) and (max-width: 1400px) {

  .what-we-do-section {
    height: auto;
  }

  .content-section p {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .orb-container canvas {
    width: 600px !important;
    height: 300px !important;
  }

  .service-grid {
    top: -65px
  }

  .button-section {
    bottom: 20px;
  }
}

@media (min-width: 992px) and (max-width: 1100px) {
  .what-we-do-section {
    width: 99.1vw;
    height: auto;
  }
}

@media (min-width: 320px) and (max-width: 991px) {
  .content-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    margin-bottom: 0;
  }

  .title-section h2 {
    margin-right: 0;
    text-align: center;
  }

  .content-section {
    padding-right: 0;
    text-align: center;
  }

  .what-we-do-section {
    height: auto;
    width: 99.1vw;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .what-we-do-section {
    width: 100vw;
    height: auto;
  }

  .content-section p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0;
  }

  .title-section h2 {
    font-size: 40px;
  }

  .content-wrapper {
    gap: 25px;
    min-height: 25px;
  }

  .service-grid {
    top: -50px;
  }

  .button-section {
    top: -20px;
  }

}

@media (min-width: 320px) and (max-width: 375px) {
  .what-we-do-section {
    width: 100vw;
    height: auto;
  }

  .service-grid {
    top: -50px;
  }

  .content-wrapper {
    gap: 15px;
    min-height: 25px;

  }


}

@media (max-width:992px) {
  #orb-root {
    display: none;
  }
}

@media (width: 1024px) {
  #orb-root {
    width: 500px;
  }
}

@media (min-width: 374px) and (max-width: 400px) {
  .content-wrapper {
    margin-top: -30px;
  }

  .title-section h2 {
    font-size: 40px;
  }

  .what-we-do-section .container {
    padding: 0 1px;
  }
}

@media (max-width: 767px) {
  .title-section span {
    font-size: 40px;
  }
}

/* Service Cards Grid */
.service-card {
  background: rgba(40, 40, 55, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(80, 80, 100, 0.3);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 180px;
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(50, 50, 65, 0.8);
  border-color: rgba(143, 255, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.services-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 20px;
  border: none;
  transition: all 0.3s ease;
}

.service-card:hover .services-image {
  border-color: rgba(100, 255, 218, 0.4);
  transform: scale(1.05);
}

/* .services-description p{
    color: #AAAAAA;
    line-height: 1.5;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 400;
  } */

.service-card p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}


/*Service Page  */

.services-list {
  margin-top: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.services-title {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 60px;
  background: linear-gradient(to right, #000000, #6aaa4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 50px;
  font-family: 'outfit';

}

.service-item {
  margin-bottom: 80px;
}

.service-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-text {
  flex: 1;
}

.service-image {
  flex: 1;
  text-align: center;
}

.service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #5FD47A;
}

.service-title a,
a:hover,
a:active {
  text-decoration: none;
  color: black;
}


.service-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #000;
}

.service-description p {
  margin-bottom: 20px;
  color: #000;
  line-height: 35px;
  font-size: 18px;
}

.service-description ul {
  list-style: none;
  padding: 0;
}

.service-description li {
  padding: 8px 0;
  position: relative;
  padding-left: 20px;
}

.service-description li:before {
  content: "•";
  color: #000000;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.service-buttons :hover {
  /* background: linear-gradient(90deg, #9c27b0, #673ab7); */
  transform: scale(1.05);
  opacity: 0.9;
  color: #000000;
  background: white;
}

.service-buttons :focus {
  transform: scale(1.05);
  opacity: 0.9;
  color: #000000;
  background: rgb(0, 0, 0);
}

.service-buttons a {
  display: inline-block;
  padding: 12px 40px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  border: 2px black solid;
  transition: all 0.3s ease;
  min-width: 120px;
  color: black;
}

.service-buttons a:hover {
  background-color: #000000;
  color: white;
  transform: translateY(-2px);
}

.service-buttons a:focus {
  color: white;
}

.service-buttons :focus {
  color: white;
}

.services-list .service-title a:hover,
.services-list .service-title a:focus {
  color: #5FD47A;
}

/* Alternate layout for right-align */
.service-item.right-align .service-content {
  flex-direction: row-reverse;
}

/* Responsive design */
@media (max-width: 768px) {
  .service-content {
    flex-direction: column !important;
    gap: 30px;
  }

  .services-title {
    font-size: 2rem;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-description {
    font-size: 1rem;
  }

  .service-buttons {
    justify-content: center;
  }

  .service-buttons a {
    flex: 1;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .services-list {
    padding: 0 15px;
  }

  .service-item {
    margin-bottom: 50px;
  }

  .services-title {
    margin-bottom: 40px;
  }
}

/* STYLE FOR CONTACT US FORM STARTS HERE */

.contact-page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  margin-top: 100px;
}

.contactus-wrapper {
  background: linear-gradient(135deg, #b3b5b0 0%, #ffffff 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
}

.contact-header-content {
  position: relative;
  z-index: 1;
  color: #000;
}

.contactus-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.contact-description {
  font-size: 20px;
  line-height: 1.6;
  color: #000;
}

.contact-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  font-size: 17px;
}

.contact-features ul,
.contact-features ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-features li {
  font-size: 20px;
  /* font-weight: 500; */
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-features .field__item::before {
  content: "✓";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 8px;
  color: black;
}


.contactus-formwrapper {
  background: #ffffff;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;

}

.contactus-formwrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  margin-top: 30px;
  color: black;
}

.contactus-formwrapper p {
  font-size: 22px;
  text-align: center;
  color: black;
  padding: 5px;
}

.form-description {
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contactus-form {
  width: 100%;
}

.contactus-form form {
  display: grid;
  gap: 24px;
}

.contactus-form .form-item {
  margin: 0;
}

.contactus-form .form-item label {
  display: block;
  /* font-weight: 600; */
  color: #000000;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Form Grid Layout */
.contactus-form .form-item:nth-child(1),
.contactus-form .form-item:nth-child(2) {
  display: inline-block;
  width: calc(50% - 12px);
  vertical-align: top;
}

.contactus-form .form-item:nth-child(1) {
  margin-right: 24px;
}

/* Input Styles */
.contactus-form input[type="text"],
.contactus-form input[type="email"],
.contactus-form input[type="tel"],
.contactus-form select,
.contactus-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contactus-form input[type="text"]:focus,
.contactus-form input[type="email"]:focus,
.contactus-form input[type="tel"]:focus,
.contactus-form select:focus,
.contactus-form textarea:focus {
  outline: none;
  border-color: #5FD47A;
  box-shadow: 0 0 0 3px rgba(95, 212, 122, 0.1);
}

.contactus-form textarea {
  min-height: 120px;
  resize: vertical;
}

/* Checkbox/Radio Styles */
.contactus-form .form-checkboxes,
.contactus-form .form-radios {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
}

.contactus-form .form-item.form-type-checkbox,
.contactus-form .form-item.form-type-radio {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contactus-form input[type="checkbox"],
.contactus-form input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #5FD47A;
  margin-right: 10px;
}

.contactus-form .form-type-checkbox label,
.contactus-form .form-type-radio label {
  margin: 0;
  font-weight: 500;
  cursor: pointer;
}

.field--type-list-string {
  display: flex;
  gap: 35px;
}

.field--type-list-string .field_item {
  border-radius: 10px;
}

.contactus-form input[type="submit"],
.contactus-form button[type="submit"] {
  background: white;
  color: rgb(0, 0, 0);
  border: 2px black solid;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(173, 173, 173, 0.3);
  margin: 20px auto 0;
  display: block;
  min-width: 200px;
}

.contactus-form input[type="submit"]:hover,
.contactus-form button[type="submit"]:hover {
  background: black;
  transform: translateY(-2px);
  color: rgb(255, 255, 255);
}

.contactus-form input[type="submit"]:active,
.contactus-form button[type="submit"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Error and Status Messages */
.contactus-form .form-item.error input,
.contactus-form .form-item.error select,
.contactus-form .form-item.error textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.contactus-form .error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 8px;
}

.messages {
  margin-bottom: 30px;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 500;
}

.messages.status {
  background: #d4edda;
  border: 2px solid #c3e6cb;
  color: #155724;
}

.messages.error {
  background: #f8d7da;
  border: 2px solid #f5c6cb;
  color: #721c24;
}

#webform-submission-contact-node-9-add-form label {
  color: black;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE STYLE FOR  CONTACTUS FORM STARTS HERE */

@media (max-width: 767px) {

  .contact-page-container {
    /* border-radius: 0; full width look on mobile */
    box-shadow: none;
  }

  .contactus-wrapper {
    padding: 40px 20px;
    /* reduce padding */
    text-align: center;
  }

  .contactus-wrapper h2 {
    font-size: 24px;
    /* smaller heading */
    margin-bottom: 15px;
  }

  .contact-description {
    font-size: 12px;
    line-height: 1.5;
    /* padding: 0 10px; */
  }

  /* Features section */
  .contact-features {
    flex-direction: row;
    gap: 10px;
    font-size: 13px;
  }

  .contact-features ul,
  .contact-features ol {
    flex-direction: column;
    gap: 16px;
  }

  .contact-features li {
    justify-content: center;
    /* center align on mobile */
    font-size: 16px;
  }

  .field--type-list-string {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }

  /* Form wrapper */
  .form-container {
    padding: 0 15px;
  }

  .contactus-formwrapper h2 {
    font-size: 24px;
    margin-top: 20px;
  }

  .contactus-formwrapper p {
    font-size: 16px;
    padding: 0 10px;
  }

  .form-description {
    font-size: 14px;
    padding: 0 10px;
  }

  /* Form grid → single column on mobile */
  .contactus-form form {
    display: block;
  }

  .contactus-form .form-item:nth-child(1),
  .contactus-form .form-item:nth-child(2) {
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
  }

  /* Inputs */
  .contactus-form input[type="text"],
  .contactus-form input[type="email"],
  .contactus-form input[type="tel"],
  .contactus-form select,
  .contactus-form textarea {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .contactus-form textarea {
    min-height: 100px;
  }

  /* Checkboxes & radios */
  .contactus-form .form-checkboxes,
  .contactus-form .form-radios {
    padding: 15px;
    gap: 10px;
  }

  .contactus-form input[type="checkbox"],
  .contactus-form input[type="radio"] {
    width: 16px;
    height: 16px;
  }

  /* Submit button */
  .contactus-form input[type="submit"],
  .contactus-form button[type="submit"] {
    /* min-width: 100%; */
    /* margin-top: 15px; */
    font-size: 1rem;
    /* padding: 14px; */
  }

  /* Messages */
  .messages {
    font-size: 14px;
    padding: 12px 15px;
  }
}

.leadership-section {
  width: 99.6vw;
  height: auto;
  margin-left: calc(-50vw + 50%);
  position: relative;
  padding: 250px 0;
  overflow: hidden;
  margin-top: -176px;
}

.leader-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.leader-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Leadership Title Styling */
.leadership-section .leadership-title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 60px;
  background: linear-gradient(to right, #000000, #6aaa4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 85px;
}


/* Leaders Container */
.leadership-section .leaders-container .field--name-field-leaders {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.leadership-section .leader-image-wrapper img {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  object-fit: cover;
  border: 4px solid #000;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.leadership-section .leader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  padding: 0 20px
}

.leader-content p {
  margin-top: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

@media (max-width: 768px) {
  .leadership-section {
    height: auto;
    min-height: 100vh;
    margin-top: -200px;
  }

  .leadership-section .field--name-field-leaders {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.package-section {
  width: 99.6vw;
  height: 100vh;
  margin-left: calc(-50vw + 50%);
  position: relative;
  padding: 250px 0;
  overflow: hidden;
  margin-top: 35px;
  background: #000;
}

.package-bg-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.package-bg-image-wrapper img {
  object-fit: cover;
  opacity: 0.4;
}

.package-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  width: 80%;
  margin: 0 auto;
}

.package-title {
  font-size: clamp(2.5rem, 5vw, 6rem);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.package-title .highlight {
  color: #4ade80;
  display: block;
}

.package-description p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  color: #fff;
}

.package-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.feature-icon {
  width: 16px;
  height: 16px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
}

.feature-icon::before {
  content: '✓';
}

/* Responsive Design */

@media (min-width:992px) and (max-width:1450px) {
  .package-section {
    margin-top: 35px;
  }
}

@media (max-width: 991px) {
  .package-section {
    height: auto;
    margin-top: 85px;
  }
}

@media (min-width:401px) and (max-width: 768px) {
  .package-wrapper {
    padding: 0 15px;
    margin-top: -110px
  }
}

@media (min-width: 360px) and (max-width: 400px) {
  .package-wrapper {
    margin-top: -210px
  }

}

@media (max-width: 768px) {

  .package-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .package-features .field__item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .package-section {
    height: auto;
  }

  .package-features {
    gap: 0.75rem;
  }

  .package-description {
    font-size: 1rem;
  }
}


/* Pricing Section Styling */
.pricing-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

@media (min-width:1420px) {
  .pricing-section {
    /* padding: 0; */
    margin: 0 -30px;
  }

}

.pricing-header {
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pricing-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout for Field List */
.field--name-field-list {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: nowrap;
}

/* Responsive Design */

/* Large screens (1200px and down) - 4 columns */
@media (max-width: 1200px) {
  .field--name-field-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .pricing-header h2 {
    font-size: 2.2rem;
  }
}

/* Medium screens (992px and down) - 3 columns */
@media (max-width: 992px) {

  .pricing-section {
    padding: 30px 15px;
  }

  .pricing-header {
    margin-bottom: 40px;
  }

  .pricing-header h2 {
    font-size: 2rem;
  }
}

/* Small screens (768px and down) - 2 columns */
@media (max-width: 768px) {

  .pricing-header h2 {
    font-size: 1.8rem;
  }

  .pricing-header p {
    font-size: 1rem;
  }
}

/* Extra small screens (480px and down) - 1 column */
@media (max-width: 480px) {
  .pricing-section {
    padding: 20px 10px;
  }

  .pricing-header {
    margin-bottom: 30px;
  }

  .pricing-header h2 {
    font-size: 1.6rem;
  }

  .pricing-header p {
    font-size: 0.95rem;
  }
}

/* Very small screens (360px and down) */
@media (max-width: 360px) {
  .pricing-section {
    padding: 15px 8px;
  }

  .pricing-header h2 {
    font-size: 1.4rem;
  }
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
  border-top: 5px solid transparent;
  /* Highlight line */
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

/* Title */
.plan-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
}

.pricing-card p {
  color: #000000;
}

/* Features list */
.field--name-field-packages-feature {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  text-align: left;
}

.field--name-field-packages-feature .field__item {
  margin: 10px 0;
  position: relative;
  padding-left: 25px;
  font-size: 1.2rem;
  color: #444;
}

.field--name-field-packages-feature .field__item::before {
  content: "✔";
  color: #00c853;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Button */
.plan-button a {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0px 4px 10px rgba(0, 123, 255, 0.3);
}

.plan-button a:hover,
.plan-button a:focus {
  background: linear-gradient(135deg, #0056b3, #0099cc);
  transform: scale(1.05);
  color: #fff;
}

.card-blue {
  border-top: 6px solid #2196f3;
}

.card-blue .plan-button a {
  background: #2196f3;
}

.card-orange {
  border-top: 6px solid #ff9800;
}

.card-orange .plan-button a {
  background: #ff9800;
}

.card-red {
  border-top: 6px solid #f44336;
}

.card-red .plan-button a {
  background: #f44336;
}

.card-green {
  border-top: 6px solid #4caf50;
}

.card-green .plan-button a {
  background: #4caf50;
}

.card-purple {
  border-top: 6px solid #9c27b0;
}

.card-purple .plan-button a {
  background: #9c27b0;
}

/* SEO Package starts here */
.seo-package-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  max-width: 350px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border 0.3s;
}

.seo-title {
  font-size: 29px;
  font-weight: 700;
  color: #6a1b9a;
  /* primary color */
  margin-bottom: 10px;
}

.seo-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.seo-section {
  text-align: left;
  margin-bottom: 15px;
}

.seo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seo-list li {
  font-size: px;
  margin: 6px 0;
  position: relative;
  padding-left: 22px;
}

.seo-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  background: linear-gradient(90deg, #9c27b0, #673ab7);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.seo-package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

.seo-package-card a:hover,
.seo-package-card a:focus {
  background: linear-gradient(90deg, #9c27b0, #673ab7);
  transform: scale(1.05);
  opacity: 0.9;
  color: #fff;
}

.seo-package-card a:hover {
  color: #fff;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.15);
}

.field--name-field-seo-wrapper-package {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}

.seo-subtitle .field--name-field-title {
  font-size: 21px;
}

.seo-list .field__item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.seo-list .field__item::before {
  content: "✔";
  color: #00c853;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.seo-subtitle .field__item {
  color: black;
  font-weight: 600;
  margin: 10px 0;
}

.seo-package-card-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.seo-package-card-wrapper .field--name-field-body P {
  color: #000000;
  font-size: 19px;
}

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .field--name-field-seo-wrapper-package {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .seo-package-card {
    max-width: 320px;
    margin: 15px;
    padding: 18px;
  }

  .seo-title {
    font-size: 26px;
  }

  .seo-subtitle .field--name-field-title {
    font-size: 19px;
  }

  .seo-package-card-wrapper .field--name-field-body P {
    font-size: 17px;
  }
}

/* Mobile and Small Devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  .field--name-field-seo-wrapper-package {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .seo-package-card {
    max-width: 100%;
    width: 100%;
    margin: 15px auto;
    padding: 20px 15px;
    box-sizing: border-box;
  }

  .seo-title {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .seo-description {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .seo-subtitle .field--name-field-title {
    font-size: 18px;
  }

  .seo-list li {
    font-size: 13px;
    margin: 5px 0;
    padding-left: 20px;
  }

  .seo-list .field__item {
    padding-left: 22px;
    margin-bottom: 6px;
  }

  .seo-btn {
    padding: 12px 24px;
    margin-top: 18px;
    font-size: 14px;
    width: auto;
    display: inline-block;
  }

  .seo-package-card-wrapper .field--name-field-body P {
    font-size: 16px;
  }

  .seo-section {
    margin-bottom: 12px;
  }
}

/* Extra Small Devices (max-width: 480px) */
@media screen and (max-width: 480px) {
  .seo-package-card {
    margin: 10px auto;
    padding: 15px 12px;
    border-radius: 10px;
  }

  .seo-title {
    font-size: 22px;
  }

  .seo-description {
    font-size: 12px;
  }

  .seo-subtitle .field--name-field-title {
    font-size: 17px;
  }

  .seo-list li {
    font-size: 12px;
  }

  .seo-list .field__item {
    padding-left: 20px;
  }

  .seo-btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .seo-package-card-wrapper .field--name-field-body P {
    font-size: 15px;
  }
}

.socialmedia_icons a {
  padding: 8px
}

/* =========================
   Blog Banner
   ========================= */

.blog-banner {
  background: linear-gradient(to bottom right, #f0fdf4, #eff6ff);
  padding: 5rem 1.5rem;
  text-align: center;
}

.blog-banner__container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Main title */
.blog-banner__title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  background: linear-gradient(to right, #22c55e, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.blog-banner__body {
  font-size: 9.125rem;
  line-height: 1.7;
  color: #000000;
  max-width: 820px;
  margin: 0 auto 2rem;
}

/* .blog-banner__body p {
  margin: 0;
  color: #000;
} */

.blog-banner__features {
  display: block;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.blog-banner__features .field__item {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding-right: 10px;
}

.icon-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  /* font-size: 0.95rem; */
  color: #000000;
  font-weight: 500;
  white-space: nowrap;
}

.icon-title__icon img,
.icon-title__icon svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}


/* =========================
   Responsive Breakpoints
   ========================= */

/* Large Tablets and Small Desktops (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .blog-banner {
    padding: 4rem 1.5rem;
  }

  .blog-banner__title {
    font-size: 2.5rem;
  }

  .blog-banner__body {
    font-size: 1.0625rem;
    max-width: 700px;
  }

  .blog-banner__features {
    gap: 2rem;
  }
}

/* Tablets and Mobile Landscape (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
  .blog-banner {
    padding: 3.5rem 1.25rem;
  }

  .blog-banner__title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .blog-banner__body {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 1.75rem;
  }

  .blog-banner__features {
    gap: 1.5rem;
    margin-top: 1.75rem;
  }

  .icon-title {
    font-size: 0.9rem;
  }

  .icon-title__icon img,
  .icon-title__icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Mobile Devices (376px - 480px) */
@media (min-width: 376px) and (max-width: 480px) {
  .blog-banner {
    padding: 3rem 1rem;
  }

  .blog-banner__title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .blog-banner__body {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .blog-banner__features {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }

  .icon-title {
    font-size: 0.875rem;
  }

  .icon-title__icon img,
  .icon-title__icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Small Mobile Devices (320px - 375px) */
@media (min-width: 320px) and (max-width: 375px) {
  .blog-banner {
    padding: 2.5rem 0.875rem;
  }

  .blog-banner__title {
    font-size: 1.625rem;
    margin-bottom: 0.875rem;
    line-height: 1.3;
  }

  .blog-banner__body {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .blog-banner__features {
    gap: 1rem;
    margin-top: 1.25rem;
    flex-direction: column;
  }

  .icon-title {
    font-size: 0.8125rem;
  }

  .icon-title__icon img,
  .icon-title__icon svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra Small Devices (below 320px) */
@media (max-width: 319px) {
  .blog-banner {
    padding: 2rem 0.75rem;
  }

  .blog-banner__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .blog-banner__body {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }

  .blog-banner__features {
    gap: 0.875rem;
    margin-top: 1rem;
    flex-direction: column;
  }

  .icon-title {
    font-size: 0.75rem;
  }

  .icon-title__icon img,
  .icon-title__icon svg {
    width: 14px;
    height: 14px;
  }
}


/* Blog Style Starts Here */

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

/* Image */
.blog-image-wrapper {
  position: relative;
}

.blog-image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Tag */
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2ecc71;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Body */
.blog-body {
  padding: 18px 20px 22px;
}

/* Title */
.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-title a {
  color: #111827;
  text-decoration: none;
}

.blog-title a:hover {
  color: #16a34a;
}

/* Summary */
.blog-summary {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Meta */
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 14px;
}

/* Read More */
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: #16a34a;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* Blog Grid Container */
.blog-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .blog-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 30px 15px;
  }
}

@media (max-width: 768px) {
  .blog-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 10px;
  }

  .blog-card {
    max-width: 500px;
    margin: 0 auto;
  }
}