@import url("reset.css");

@import url("https://fonts.googleapis.com/css?family=Inter:regular,500,600,700&display=swap");

/* ************COMMON************ */

.logo {
  font-weight: 700;
  font-size: 2.25rem;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #303a4d;
}

[class*="__container"] {
  max-width: 72.624rem;
  margin: 0 auto;
  padding: 0 0.938rem;
}

.button {
  font-weight: 600;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: #303a4d;
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.button:hover::after {
  opacity: 1;
  transform: scale(1);
}

.title {
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  position: relative;
  background: linear-gradient(45deg, #3498db, #2ecc71, #e74c3c, #f1c40f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
  0% {
    width: 60px;
    opacity: 1;
  }
  50% {
    width: 100px;
    opacity: 0.8;
  }
  100% {
    width: 60px;
    opacity: 1;
  }
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}

/* Video Hero Styles */
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-video.active {
  opacity: 1;
}

/* ************HEADER************ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(129, 199, 132, 0.85);  /* Lighter eco-green with more transparency */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.header__container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.header__logo:hover {
  transform: scale(1.05);
}

.header__logo img {
  max-width: 140px;
  height: auto;
  transition: filter 0.3s ease;
}

.header__logo:hover img {
  filter: brightness(1.2);
}

.header__navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu__body {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(102, 187, 106, 0.85);  /* Slightly darker but still light green */
  padding: 0.25rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(5px);
}

.menu__list {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu__link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.menu__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);  /* Slightly transparent white */
  transition: width 0.3s ease;
}

.menu__link:hover {
  color: #f1f8e9;  /* Very light green on hover */
}

.actions-header__button {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);  /* Slightly transparent white */
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  z-index: 10;
  position: relative;
}

.actions-header__button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #81C784;  /* Light green */
}

@media (max-width: 768px) {
  .header__container {
    padding: 1rem;
  }
  
  .header__logo img {
    max-width: 140px;
  }
  
  .menu__body {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    padding: 1rem;
    background: rgba(129, 199, 132, 0.95);  /* Light eco-green with slight transparency */
    border-radius: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .menu__body.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .menu__list {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .menu__link {
    display: block;
    padding: 0.75rem;
  }
}

/* ****************PAGES**************** */
.page {
  flex: 1 1 auto;
}

.page__main {
  padding-bottom: 160px;
  min-height: 80vh;
}

/* *****************HOME**************** */

.main {
  position: relative;
  min-height: 100vh;
}

.main__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 19.188rem;
  position: relative;
  z-index: 2;
}

.main__caption {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.main__title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main__text {
  margin-bottom: 3.5rem;
  max-width: 33.375rem;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.main__button {
  font-weight: 600;
  display: inline-block;
  padding: 1.25rem 3rem;
  border-radius: 30px;
  transition: all 0.3s;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  letter-spacing: 0.02em;
  font-size: 1.375rem;
  line-height: 110%;
  position: relative;
  overflow: hidden;
}

.main__button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: translateX(-100%) skewX(-30deg);
  top: 0;
  left: -30px;
  transition: transform 0s;
}

.main__button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.main__button:hover::before {
  transform: translateX(300%) skewX(-30deg);
  transition: transform 1s ease;
}

.outro_home {
  background: url("../img/home/hero_placeholder.jpg") center / cover no-repeat;
}

/* ************ABOUT**************** */

.main_about {
  position: relative;
}

.page__about {
  position: relative;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(34, 139, 34, 0.2) 100%);
  overflow: hidden;
}

.page__about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='700' viewBox='0 0 1440 700'%3E%3Cg opacity='0.3'%3E%3Ccircle cx='200' cy='100' r='80' fill='%23FFFFFF'/%3E%3Ccircle cx='150' cy='80' r='60' fill='%23FFFFFF'/%3E%3Ccircle cx='300' cy='90' r='70' fill='%23FFFFFF'/%3E%3Ccircle cx='900' cy='180' r='120' fill='%23FFFFFF'/%3E%3Ccircle cx='850' cy='150' r='80' fill='%23FFFFFF'/%3E%3Ccircle cx='1100' cy='130' r='100' fill='%23FFFFFF'/%3E%3Cpath d='M0 400 Q 200 300 400 360 Q 600 420 800 380 Q 1000 340 1200 390 Q 1400 440 1440 400 L 1440 700 L 0 700 Z' fill='%2387CEEB' opacity='0.1'/%3E%3Cpath d='M0 450 Q 200 380 400 420 Q 600 460 800 430 Q 1000 400 1200 440 Q 1400 480 1440 450 L 1440 700 L 0 700 Z' fill='%23228B22' opacity='0.08'/%3E%3Cpath d='M0 500 Q 200 460 400 490 Q 600 520 800 500 Q 1000 480 1200 510 Q 1400 540 1440 500 L 1440 700 L 0 700 Z' fill='%2387CEEB' opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}

.page__about::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 20%, 
    rgba(255, 255, 255, 0.05) 30%, 
    rgba(135, 206, 235, 0.05) 50%, 
    rgba(34, 139, 34, 0.05) 70%, 
    rgba(34, 139, 34, 0.1) 100%);
  z-index: 0;
}

/* Cloud-like decorative elements */
.page__about::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, rgba(135, 206, 235, 0.15) 70%, rgba(34, 139, 34, 0.1) 100%);
  z-index: 0;
}

/* Additional nature elements */
.about__container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23228B22' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

/* Water ripple effect */
.about__container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1440' height='200' viewBox='0 0 1440 200'%3E%3Cdefs%3E%3ClinearGradient id='wave' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%2387CEEB' stop-opacity='0.1'/%3E%3Cstop offset='100%25' stop-color='%23228B22' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23wave)' d='M0 50 C 180 100, 360 0, 720 50 C 1080 100, 1260 0, 1440 50 L 1440 200 L 0 200 Z' opacity='0.15'/%3E%3Cpath fill='url(%23wave)' d='M0 80 C 180 130, 360 30, 720 80 C 1080 130, 1260 30, 1440 80 L 1440 200 L 0 200 Z' opacity='0.1'/%3E%3Cpath fill='url(%23wave)' d='M0 110 C 180 160, 360 60, 720 110 C 1080 160, 1260 60, 1440 110 L 1440 200 L 0 200 Z' opacity='0.05'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom;
  opacity: 1;
  z-index: 0;
}

.about__container {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.about__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  flex: 0 0 40%;
  max-width: 40%;
}

.about__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 10px;
}

.about__content {
  flex: 1;
  padding-left: 1rem;
  z-index: 2;
}

.about__title {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  color: #303a4d;
  display: inline-block;
}

.about__title .glow-wrapper {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #2e8b57, #87CEEB);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 5px rgba(46, 139, 87, 0.2);
  animation: aboutTitleGlow 3s infinite alternate, fadeInUp 0.8s ease-out forwards;
  display: inline-block;
}

.title-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -10px;
  left: -10px;
  z-index: 1;
  border: 3px solid transparent;
  border-image: linear-gradient(45deg, #2e8b57, transparent, #87CEEB);
  border-image-slice: 1;
  opacity: 0.5;
  animation: borderPulse 4s infinite alternate;
}

.title-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(46, 139, 87, 0.1) 0%, transparent 70%);
  animation: pulseGlow 2s infinite alternate;
}

.title-effect::after {
  content: "✦";
  position: absolute;
  top: -20px;
  right: -15px;
  color: #2e8b57;
  font-size: 2rem;
  animation: starTwinkle 3s infinite alternate;
}

@keyframes borderPulse {
  0% {
    transform: scale(1);
    border-image: linear-gradient(45deg, #2e8b57, transparent, #87CEEB);
    border-image-slice: 1;
  }
  100% {
    transform: scale(1.05);
    border-image: linear-gradient(45deg, #87CEEB, transparent, #2e8b57);
    border-image-slice: 1;
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes starTwinkle {
  0% {
    opacity: 0.4;
    transform: rotate(0deg) scale(1);
    color: #2e8b57;
  }
  50% {
    opacity: 0.9;
    color: #87CEEB;
  }
  100% {
    opacity: 1;
    transform: rotate(180deg) scale(1.2);
    color: #2e8b57;
  }
}

.about__title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2e8b57, #87CEEB);
  left: 0;
  bottom: 0;
  border-radius: 2px;
  animation: aboutLineExpand 2.5s infinite alternate;
  box-shadow: 0 0 10px rgba(46, 139, 87, 0.5);
}

@keyframes aboutLineExpand {
  0% {
    width: 80px;
    background: linear-gradient(90deg, #2e8b57, #87CEEB);
    box-shadow: 0 0 5px rgba(46, 139, 87, 0.3);
  }
  100% {
    width: 150px;
    background: linear-gradient(90deg, #87CEEB, #2e8b57, #87CEEB);
    box-shadow: 0 0 15px rgba(46, 139, 87, 0.6);
  }
}

.about__text {
  max-width: 30rem;
  letter-spacing: 0.02em;
  line-height: 150%;
  margin-bottom: 3.5rem;
}

.about__text p {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.about__text p:nth-child(2) {
  animation-delay: 0.4s;
}

.about__text ul {
  margin-top: 2rem;
}

.about__text li {
  position: relative;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.5rem 1.25rem 3.5rem;
  border-radius: 12px;
  transition: all 0.4s ease;
  background: rgba(40, 40, 40, 0.85);
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: float 6s infinite ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  opacity: 1;
  color: #e6e6e6;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.about__text li:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  background: rgba(50, 50, 50, 0.9);
  color: #ffffff;
  border-color: rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.3);
}

.about__text strong {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 10px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.5);
  letter-spacing: 0.5px;
}

.about__text li:hover {
  transform: translateX(5px);
  color: #ffffff;
}

.feature-icon {
  position: absolute;
  left: 0.75rem;
  top: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(50, 50, 50, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.3);
  transition: all 0.3s ease;
  z-index: 2;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

.about__text li:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.2);
  box-shadow: 0 0 20px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.5);
}

.about__text li:hover .feature-icon svg {
  color: rgba(var(--service-1-primary-rgb, 255, 126, 31), 1);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

/* Add unique colors to each feature icon based on its position */
.about__text li:nth-child(1) .feature-icon {
  background: rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.2);
  box-shadow: 0 0 15px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.3);
}

.about__text li:nth-child(2) .feature-icon {
  background: rgba(var(--service-2-primary-rgb, 5, 117, 230), 0.2);
  box-shadow: 0 0 15px rgba(var(--service-2-primary-rgb, 5, 117, 230), 0.3);
}

.about__text li:nth-child(3) .feature-icon {
  background: rgba(var(--service-3-primary-rgb, 29, 151, 108), 0.2);
  box-shadow: 0 0 15px rgba(var(--service-3-primary-rgb, 29, 151, 108), 0.3);
}

.about__text li:nth-child(4) .feature-icon {
  background: rgba(var(--service-4-primary-rgb, 255, 189, 89), 0.2);
  box-shadow: 0 0 15px rgba(var(--service-4-primary-rgb, 255, 189, 89), 0.3);
}

.about__text li:nth-child(1) strong {
  text-shadow: 0 0 10px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.5);
}

.about__text li:nth-child(2) strong {
  text-shadow: 0 0 10px rgba(var(--service-2-primary-rgb, 5, 117, 230), 0.5);
}

.about__text li:nth-child(3) strong {
  text-shadow: 0 0 10px rgba(var(--service-3-primary-rgb, 29, 151, 108), 0.5);
}

.about__text li:nth-child(4) strong {
  text-shadow: 0 0 10px rgba(var(--service-4-primary-rgb, 255, 189, 89), 0.5);
}

/* Add RGB values for color variables to use in rgba functions */
:root {
  --service-1-primary-rgb: 255, 126, 31;
  --service-2-primary-rgb: 5, 117, 230;
  --service-3-primary-rgb: 29, 151, 108;
  --service-4-primary-rgb: 255, 189, 89;
}

.about__text li:nth-child(1) {
  animation-delay: 0s;
  border-left: 4px solid #FF7E1F;
}

.about__text li:nth-child(2) {
  animation-delay: 1.5s;
  border-left: 4px solid #13C4A3;
}

.about__text li:nth-child(3) {
  animation-delay: 3s;
  border-left: 4px solid #5691c8;
}

.about__text li:nth-child(4) {
  animation-delay: 4.5s;
  border-left: 4px solid #CB356B;
}

.about__text li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 107%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.5;
  z-index: -1;
}

.about__text li::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

.about__text li:nth-child(1)::after {
  background: rgba(255, 126, 31, 0.1);
}

.about__text li:nth-child(2)::after {
  background: rgba(19, 196, 163, 0.1);
}

.about__text li:nth-child(3)::after {
  background: rgba(86, 145, 200, 0.1);
}

.about__text li:nth-child(4)::after {
  background: rgba(203, 53, 107, 0.1);
}

.about__text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.about__text li:nth-child(1) strong {
  color: #FF7E1F;
}

.about__text li:nth-child(2) strong {
  color: #13C4A3;
}

.about__text li:nth-child(3) strong {
  color: #5691c8;
}

.about__text li:nth-child(4) strong {
  color: #CB356B;
}

.about__text li:hover strong {
  transform: translateX(5px);
}

.about__button {
  background: linear-gradient(135deg, #2e8b57, #228B22);
  color: white;
  border: none;
  box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
  padding: 0.875rem 2rem;
  font-size: 1.125rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 2;
}

.about__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 139, 87, 0.4);
  background: linear-gradient(135deg, #228B22, #2e8b57);
}

.about__button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%) skewX(-30deg);
  top: 0;
  left: -30px;
  transition: transform 0s;
}

.about__button:hover::before {
  transform: translateX(300%) skewX(-30deg);
  transition: transform 1s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 62.6875rem) {
  .about__title::after {
    width: 60px;
  }
}

.outro_about {
  background: url("../img/about/hero_placeholder.jpg") center / cover no-repeat;
}

.main_services {
  position: relative;
}

.services {
  position: relative;
  padding: 8.75rem 0;
  background: linear-gradient(135deg, #1a2980 0%, #26c9a0 50%, #81c784 100%);
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--service-1-primary, #FF7E1F), var(--service-3-primary, #1d976c), var(--service-2-primary, #0575E6));
  z-index: 1;
}

.services__title, .about__title, .contact__title {
  color: #ffffff;
  position: relative;
  animation: titleFade 1s ease-in-out forwards;
}

.services__subtitle {
  color: #cccccc;
  animation: fadeInUp 1s ease-in-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.item-services {
  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.item-services:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(52, 152, 219, 0.3);
}

.item-services__title {
  color: #1a365d;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 600;
}

.item-services__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  transition: width 0.3s ease;
}

.item-services:hover .item-services__title::after {
  width: 100px;
}

.item-services__text {
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.item-services__button {
  background: linear-gradient(90deg, #2563eb, #10b981);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.item-services__button:hover {
  background: linear-gradient(90deg, #1d4ed8, #059669);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.corner-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent rgba(37, 99, 235, 0.15) transparent transparent;
  transition: all 0.3s ease;
}

.item-services:hover .corner-decoration {
  border-color: transparent rgba(37, 99, 235, 0.25) transparent transparent;
}

.item-services__top {
  position: relative;
  padding-bottom: 62%;
  display: block;
  overflow: hidden;
}

.item-services__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.item-services:hover .item-services__top::before {
  opacity: 1;
}

.item-services__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.item-services__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.item-services:hover .item-services__image img {
  transform: scale(1.05) rotate(1deg);
}

.item-services__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
}

.item-services__button-container {
  margin-top: auto;
}

.about__text {
  color: #cccccc;
}

.about__text p {
  color: #cccccc;
}

.about__text strong {
  color: #ffffff;
}

.feature-icon {
  background: rgba(50, 50, 50, 0.9);
}

.animated-bg-element {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 126, 31, 0.2), rgba(5, 117, 230, 0.2));
  filter: blur(40px);
  z-index: -1;
  opacity: 0.4;
  animation: moveAround 20s infinite alternate ease-in-out;
}

@keyframes moveAround {
  0% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(100px, -50px) scale(1.2);
  }
  50% {
    transform: translate(200px, 100px) scale(0.8);
  }
  75% {
    transform: translate(-50px, 150px) scale(1.1);
  }
  100% {
    transform: translate(-150px, -100px) scale(0.9);
  }
}

.contact__contacts, .contact__info {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 3rem;
  position: relative;
}

.connect-contact__item {
  background: rgba(40, 40, 40, 0.9);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.connect-contact__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.connect-contant__type, .connect-contact__label {
  color: #ffffff;
}

.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(100, 255, 218, 0.15) 0%, rgba(0, 0, 0, 0) 60%), 
              radial-gradient(circle at 70% 60%, rgba(255, 214, 0, 0.1) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}

.services__container::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  right: -10%;
  z-index: 1;
  animation: pulseSlow 8s infinite alternate;
}

.services__container::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  bottom: 10%;
  left: -10%;
  z-index: 1;
  animation: pulseSlow 8s infinite alternate-reverse;
}

@keyframes pulseSlow {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.services__container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.services__title {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  background: linear-gradient(135deg, #303a4d, #5a6577);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: titleGlow 3s infinite alternate;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 10px rgba(48, 58, 77, 0.4), 0 0 20px rgba(48, 58, 77, 0.2);
    background: linear-gradient(135deg, #303a4d, #5a6577);
    background-clip: text;
    -webkit-background-clip: text;
  }
  100% {
    text-shadow: 0 0 20px rgba(48, 58, 77, 0.5), 0 0 40px rgba(90, 101, 119, 0.3);
    background: linear-gradient(135deg, #5a6577, #303a4d);
    background-clip: text;
    -webkit-background-clip: text;
  }
}

.services__title::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #303a4d, #5a6577);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 2px;
  animation: lineExpand 2.5s infinite alternate;
  box-shadow: 0 0 15px rgba(48, 58, 77, 0.5);
}

@keyframes lineExpand {
  0% {
    width: 80px;
    background: linear-gradient(90deg, #303a4d, #5a6577);
    box-shadow: 0 0 5px rgba(48, 58, 77, 0.3);
  }
  100% {
    width: 150px;
    background: linear-gradient(90deg, #5a6577, #303a4d, #5a6577);
    box-shadow: 0 0 15px rgba(48, 58, 77, 0.6);
  }
}

.services__subtitle {
  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto 3.75rem;
  line-height: 150%;
  font-size: 1.125rem;
  color: #555;
}

.services__row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.services__column {
  flex: 0 1 calc(50% - 2.5rem);
  display: flex;
  margin-bottom: 2rem;
}

.services__column:nth-child(1) .item-services {
  --card-index: 0;
  background: rgba(50, 50, 50, 0.9);
  box-shadow: 0 15px 30px rgba(41, 121, 255, 0.2);
  border: 1px solid rgba(41, 121, 255, 0.3);
}

.services__column:nth-child(1) .item-services:hover {
  box-shadow: 0 20px 40px rgba(41, 121, 255, 0.4);
  transform: translateY(-10px);
}

.services__column:nth-child(1) .item-services__title {
  color: #2979FF;
  text-shadow: 0 0 10px rgba(41, 121, 255, 0.3);
  animation: cardGlow1 3s infinite;
}

.services__column:nth-child(1) .item-services__title::after {
  background: linear-gradient(90deg, rgba(41, 121, 255, 0.2), #2979FF, rgba(41, 121, 255, 0.2));
}

.services__column:nth-child(1) .item-services__title::before {
  border-color: rgba(41, 121, 255, 0.5);
}

.services__column:nth-child(1) .item-services__button {
  background: linear-gradient(135deg, #0D47A1, #2979FF);
  color: #FFF;
  font-weight: 600;
}

.services__column:nth-child(1) .item-services__button:hover {
  background: linear-gradient(135deg, #2979FF, #0D47A1);
}

.services__column:nth-child(1) .item-services::before {
  background: linear-gradient(90deg, rgba(41, 121, 255, 0.2), rgba(13, 71, 161, 0.2));
}

.services__column:nth-child(1) .item-services::after {
  background: linear-gradient(135deg, transparent 50%, rgba(41, 121, 255, 0.3) 50%);
}

.services__column:nth-child(1) .corner-decoration {
  border-color: rgba(41, 121, 255, 0.5);
}

.services__column:nth-child(2) .item-services {
  --card-index: 1;
  background: rgba(50, 50, 50, 0.9);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.services__column:nth-child(2) .item-services:hover {
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.4);
  transform: translateY(-10px);
}

.services__column:nth-child(2) .item-services__title {
  color: #4CAF50;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
  animation: cardGlow2 3s infinite;
}

.services__column:nth-child(2) .item-services__title::after {
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.2), #4CAF50, rgba(76, 175, 80, 0.2));
}

.services__column:nth-child(2) .item-services__title::before {
  border-color: rgba(76, 175, 80, 0.5);
}

.services__column:nth-child(2) .item-services__button {
  background: linear-gradient(135deg, #2E7D32, #4CAF50);
  color: #FFF;
  font-weight: 600;
}

.services__column:nth-child(2) .item-services__button:hover {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
}

.services__column:nth-child(2) .item-services::before {
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.2), rgba(46, 125, 50, 0.2));
}

.services__column:nth-child(2) .item-services::after {
  background: linear-gradient(135deg, transparent 50%, rgba(76, 175, 80, 0.3) 50%);
}

.services__column:nth-child(2) .corner-decoration {
  border-color: rgba(76, 175, 80, 0.5);
}

.services__column:nth-child(3) .item-services {
  --card-index: 2;
  background: rgba(50, 50, 50, 0.9);
  box-shadow: 0 15px 30px rgba(156, 39, 176, 0.2);
  border: 1px solid rgba(156, 39, 176, 0.3);
}

.services__column:nth-child(3) .item-services:hover {
  box-shadow: 0 20px 40px rgba(156, 39, 176, 0.4);
  transform: translateY(-10px);
}

.services__column:nth-child(3) .item-services__title {
  color: #9C27B0;
  text-shadow: 0 0 10px rgba(156, 39, 176, 0.3);
  animation: cardGlow3 3s infinite;
}

.services__column:nth-child(3) .item-services__title::after {
  background: linear-gradient(90deg, rgba(156, 39, 176, 0.2), #9C27B0, rgba(156, 39, 176, 0.2));
}

.services__column:nth-child(3) .item-services__title::before {
  border-color: rgba(156, 39, 176, 0.5);
}

.services__column:nth-child(3) .item-services__button {
  background: linear-gradient(135deg, #7B1FA2, #9C27B0);
  color: #FFF;
  font-weight: 600;
}

.services__column:nth-child(3) .item-services__button:hover {
  background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.services__column:nth-child(3) .item-services::before {
  background: linear-gradient(90deg, rgba(156, 39, 176, 0.2), rgba(123, 31, 162, 0.2));
}

.services__column:nth-child(3) .item-services::after {
  background: linear-gradient(135deg, transparent 50%, rgba(156, 39, 176, 0.3) 50%);
}

.services__column:nth-child(3) .corner-decoration {
  border-color: rgba(156, 39, 176, 0.5);
}

.services__column:nth-child(4) .item-services {
  --card-index: 3;
  background: rgba(50, 50, 50, 0.9);
  box-shadow: 0 15px 30px rgba(255, 204, 0, 0.2);
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.services__column:nth-child(4) .item-services:hover {
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.4);
  transform: translateY(-10px);
}

.services__column:nth-child(4) .item-services__title {
  color: #FFCC00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
  animation: solarGlow 3s infinite;
}

.services__column:nth-child(4) .item-services__title::after {
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.2), #FFCC00, rgba(255, 204, 0, 0.2));
}

.services__column:nth-child(4) .item-services__title::before {
  border-color: rgba(255, 204, 0, 0.5);
}

.services__column:nth-child(4) .item-services__button {
  background: linear-gradient(135deg, #FFA000, #FFCC00);
  color: #000;
  font-weight: 600;
}

.services__column:nth-child(4) .item-services__button:hover {
  background: linear-gradient(135deg, #FFCC00, #FFA000);
}

.services__column:nth-child(4) .item-services__image::after {
  background: linear-gradient(to top, rgba(255, 165, 0, 0.5), rgba(255, 165, 0, 0.1), transparent);
}

.services__column:nth-child(4) .corner-decoration {
  border-color: rgba(255, 204, 0, 0.5);
}

/* Contact form layout and styling */
.outro {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: #000000;
  color: #ffffff;
}

.outro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--service-1-primary, #FF7E1F), var(--service-3-primary, #1d976c), var(--service-2-primary, #0575E6));
  z-index: 1;
}

.outro__title {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
    text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
  animation: titleFade 1s ease-in-out forwards;
}

@keyframes titleFade {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.outro__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--service-1-primary, #FF7E1F), var(--service-1-secondary, #FC4A1A));
  animation: widthExpand 1.5s ease-in-out forwards;
}

@keyframes widthExpand {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}

.outro__text {
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #cccccc;
  animation: fadeInUp 1s ease-in-out 0.3s forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.outro__content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 3rem;
  position: relative;
  animation: fadeIn 1s ease-in-out 0.6s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.outro__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 126, 31, 0.05) 0%, rgba(5, 117, 230, 0.05) 100%);
  z-index: -1;
}

.outro__company-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding-right: 3rem;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideInLeft 1s ease-in-out 0.9s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.company-info__item {
  margin-bottom: 0;
  border-left: 3px solid var(--service-1-primary, #FF7E1F);
  padding-left: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.company-info__item:hover {
  transform: translateX(5px);
}

.company-info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 126, 31, 0.1), rgba(255, 126, 31, 0.2));
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 126, 31, 0.15);
}

.company-info__icon svg {
  color: var(--service-1-primary, #FF7E1F);
  transition: all 0.3s ease;
}

.company-info__item:hover .company-info__icon {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, var(--service-1-primary, #FF7E1F), var(--service-1-secondary, #FC4A1A));
  box-shadow: 0 8px 20px rgba(255, 126, 31, 0.25);
}

.company-info__item:hover .company-info__icon svg {
  color: white;
}

.company-info__item p {
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.company-info__item p:first-of-type {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-caption {
  color: #aaaaaa;
  font-size: 0.875rem;
  margin-top: 0.25rem !important;
  font-weight: normal !important;
}

.contact-form {
  flex: 1.5;
  animation: slideInRight 1s ease-in-out 0.9s forwards;
  opacity: 0;
  transform: translateX(20px);
  position: relative;
  z-index: 1;
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(40, 40, 40, 0.9);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--service-1-primary, #FF7E1F);
  background: rgba(50, 50, 50, 0.9);
  box-shadow: 0 5px 15px rgba(255, 126, 31, 0.3);
  transform: translateY(-2px);
}

.form-group:focus-within label {
  color: var(--service-1-primary, #FF7E1F);
  transform: translateY(-2px);
}

.contact-form button[type="submit"],
.outro__button {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: white;
  background: linear-gradient(135deg, var(--service-1-primary, #FF7E1F), var(--service-1-secondary, #FC4A1A));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 126, 31, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-form button[type="submit"]::before,
.outro__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.contact-form button[type="submit"]:hover,
.outro__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 126, 31, 0.35);
}

.contact-form button[type="submit"]:hover::before,
.outro__button:hover::before {
  left: 100%;
}

@media (max-width: 991px) {
  .outro__content {
  flex-direction: column;
    padding: 2rem;
    gap: 2rem;
  }
  
  .outro__company-info {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 2rem;
  }
  
  .contact-form {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .outro {
    padding: 4rem 0;
  }
  
  .outro__title {
    font-size: 2rem;
  }
  
  .outro__text {
    font-size: 1rem;
  }
  
  .company-info__item {
    padding-left: 1rem;
  }
  
  .company-info__icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-form button[type="submit"],
  .outro__button {
    width: 100%;
  }
  }

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatAnimation 15s infinite linear;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--service-1-primary, #FF7E1F), var(--service-1-secondary, #FC4A1A));
  animation-duration: 25s;
}

.shape-2 {
  top: 60%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--service-2-primary, #0575E6), var(--service-2-secondary, #021B79));
  animation-duration: 20s;
  animation-delay: 2s;
}

.shape-3 {
  bottom: 10%;
  left: 20%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--service-3-primary, #1d976c), var(--service-3-secondary, #93F9B9));
  animation-duration: 18s;
  animation-delay: 1s;
}

.shape-4 {
  top: 30%;
  right: 30%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--service-4-primary, #6a3093), var(--service-4-secondary, #a044ff));
  animation-duration: 22s;
  animation-delay: 3s;
}

@keyframes floatAnimation {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(10px, 15px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(5px, -10px) rotate(180deg) scale(1);
  }
  75% {
    transform: translate(-10px, 5px) rotate(270deg) scale(0.9);
  }
  100% {
    transform: translate(0, 0) rotate(360deg) scale(1);
  }
}

.outro__container {
  position: relative;
  z-index: 1;
}

/* Animated background elements for all sections */
.services::after, .page__about::after, .page__contact::after {
  content: '';
  position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2364ffda' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

/* Add animated background elements to all sections */
.animated-bg {
  position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.services .animated-bg-element:nth-child(1) {
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  animation-duration: 25s;
}

.services .animated-bg-element:nth-child(2) {
  top: 60%;
  right: 10%;
  width: 250px;
  height: 250px;
  animation-duration: 30s;
  animation-delay: 2s;
}

.page__about .animated-bg-element:nth-child(1) {
  bottom: 20%;
  left: 15%;
  width: 350px;
  height: 350px;
  animation-duration: 28s;
}

.page__about .animated-bg-element:nth-child(2) {
  top: 15%;
  right: 5%;
  width: 280px;
  height: 280px;
  animation-duration: 22s;
  animation-delay: 1s;
}

.services, .page__about, .page__contact, .map, .services-page, .about-page {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: linear-gradient(to bottom, #000000, #111111);
  color: #ffffff;
}

/* Enhanced floating particles animation */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background-color: rgba(100, 255, 218, 0.5);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: particleFloat 15s infinite ease-in-out;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(100px);
    opacity: 0;
  }
}

/* Improved animations for elements */
.services-page__item, .about-page__container {
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: visible;
  position: relative;
  margin: 2rem auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-page__item:hover, .about-page__container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Animation for feature icons */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(var(--service-1-primary-rgb, 255, 126, 31), 0.3);
  }
}

.about__text li:nth-child(1) .feature-icon {
  animation: pulse 3s infinite;
}

.about__text li:nth-child(2) .feature-icon {
  animation: pulse 3s infinite;
  animation-delay: 0.5s;
}

.about__text li:nth-child(3) .feature-icon {
  animation: pulse 3s infinite;
  animation-delay: 1s;
}

.about__text li:nth-child(4) .feature-icon {
  animation: pulse 3s infinite;
  animation-delay: 1.5s;
}

.about__text p:first-child {
  font-weight: 700;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #FF7E1F, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* Override existing style for smaller screens */
@media (max-width: 768px) {
  .about__text li {
    padding: 1rem 1rem 1rem 3rem;
    margin-bottom: 1rem;
  }
  
  .about__text strong {
    font-size: 1rem;
  }

  .feature-icon {
    left: 0.75rem;
    width: 30px;
    height: 30px;
  }
}

.services__column:nth-child(4) .item-services:hover {
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.4);
  transform: translateY(-10px);
}

/* Restore the background effects for the Solar Panels card */
.services__column:nth-child(4) .item-services::before {
  background: linear-gradient(90deg, rgba(255, 204, 0, 0.2), rgba(255, 165, 0, 0.2));
}

.services__column:nth-child(4) .item-services::after {
  background: linear-gradient(135deg, transparent 50%, rgba(255, 204, 0, 0.3) 50%);
}

/* Make the layout responsive */
@media (max-width: 1200px) {
  .services__row {
    gap: 2rem;
  }
  
  .services__column {
    flex: 0 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .services__row {
  flex-direction: column;
  }
  
  .services__column {
    flex: 0 1 100%;
    margin-bottom: 2.5rem;
  }
}

/* Add pulsing glow animation for Solar Panels title */
@keyframes solarGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 204, 0, 0.8), 0 0 20px rgba(255, 165, 0, 0.4);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.5);
  }
}

/* Add glow animations for each card */
@keyframes cardGlow1 {
  0% {
    text-shadow: 0 0 5px rgba(41, 121, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(41, 121, 255, 0.8), 0 0 20px rgba(13, 71, 161, 0.4);
  }
  100% {
    text-shadow: 0 0 5px rgba(41, 121, 255, 0.5);
  }
}

@keyframes cardGlow2 {
  0% {
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.8), 0 0 20px rgba(46, 125, 50, 0.4);
  }
  100% {
    text-shadow: 0 0 5px rgba(76, 175, 80, 0.5);
  }
}

@keyframes cardGlow3 {
  0% {
    text-shadow: 0 0 5px rgba(156, 39, 176, 0.5);
  }
  50% {
    text-shadow: 0 0 15px rgba(156, 39, 176, 0.8), 0 0 20px rgba(123, 31, 162, 0.4);
  }
  100% {
    text-shadow: 0 0 5px rgba(156, 39, 176, 0.5);
  }
}

/* Ensure text in all service cards is visible */
.item-services__text {
  color: #e0e0e0;
  line-height: 1.6;
}

.about-page__container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(30, 30, 30, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.main_pages .main__title {
  font-size: 5rem;
  margin-bottom: 1.5rem;
}

.main_pages .main__text_pages {
  font-size: 1.5rem;
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.4;
}

/* Styling for new services */
.services-page__column:nth-child(5) .services-page__title {
  color: #00c2cb;
  text-shadow: 0 0 10px rgba(0, 194, 203, 0.5);
  animation: glowTeal 3s infinite alternate;
}

@keyframes glowTeal {
  0% {
    text-shadow: 0 0 5px rgba(0, 194, 203, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(0, 194, 203, 0.8), 0 0 30px rgba(0, 194, 203, 0.6);
  }
}

.services-page__column:nth-child(6) .services-page__title {
  color: #ff5a5a;
  text-shadow: 0 0 10px rgba(255, 90, 90, 0.5);
  animation: glowRed 3s infinite alternate;
}

@keyframes glowRed {
  0% {
    text-shadow: 0 0 5px rgba(255, 90, 90, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 90, 90, 0.8), 0 0 30px rgba(255, 90, 90, 0.6);
  }
}

.services-page__column:nth-child(5) .services-page__button,
.services-page__column:nth-child(6) .services-page__button {
  transition: all 0.3s ease;
}

.services-page__column:nth-child(5) .services-page__button {
  background: rgba(0, 194, 203, 0.8);
  border: 1px solid rgba(0, 194, 203, 0.3);
}

.services-page__column:nth-child(5) .services-page__button:hover {
  background: rgba(0, 194, 203, 1);
  box-shadow: 0 0 15px rgba(0, 194, 203, 0.5);
  transform: translateY(-3px);
}

.services-page__column:nth-child(6) .services-page__button {
  background: rgba(255, 90, 90, 0.8);
  border: 1px solid rgba(255, 90, 90, 0.3);
}

.services-page__column:nth-child(6) .services-page__button:hover {
  background: rgba(255, 90, 90, 1);
  box-shadow: 0 0 15px rgba(255, 90, 90, 0.5);
  transform: translateY(-3px);
}

/* Styles for new service items in index page */
.services__column:nth-child(5) .item-services {
  background: rgba(0, 194, 203, 0.15);
  box-shadow: 0 15px 30px rgba(0, 194, 203, 0.2);
  border: 1px solid rgba(0, 194, 203, 0.3);
}

.services__column:nth-child(5) .item-services:hover {
  box-shadow: 0 20px 40px rgba(0, 194, 203, 0.4);
  transform: translateY(-10px);
}

.services__column:nth-child(5) .item-services__title {
  color: #00c2cb;
  text-shadow: 0 0 10px rgba(0, 194, 203, 0.3);
  animation: tealGlow 3s infinite alternate;
}

@keyframes tealGlow {
  0% {
    text-shadow: 0 0 5px rgba(0, 194, 203, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(0, 194, 203, 0.7), 0 0 25px rgba(0, 194, 203, 0.5);
  }
}

.services__column:nth-child(5) .item-services__title::after {
  background: linear-gradient(to right, rgba(0, 194, 203, 0.2), rgba(0, 194, 203, 0.7), rgba(0, 194, 203, 0.2));
}

.services__column:nth-child(5) .item-services__button {
  background: rgba(0, 194, 203, 0.8);
  border: 1px solid rgba(0, 194, 203, 0.3);
}

.services__column:nth-child(5) .item-services__button:hover {
  background: rgba(0, 194, 203, 1);
  box-shadow: 0 0 15px rgba(0, 194, 203, 0.5);
}

.services__column:nth-child(5) .item-services::before {
  background: linear-gradient(135deg, rgba(0, 194, 203, 0.1), transparent 80%);
}

.services__column:nth-child(5) .item-services::after {
  background: linear-gradient(315deg, rgba(0, 194, 203, 0.1), transparent 80%);
}

.services__column:nth-child(5) .corner-decoration {
  border-color: rgba(0, 194, 203, 0.5);
}

.services__column:nth-child(6) .item-services {
  background: rgba(255, 90, 90, 0.15);
  box-shadow: 0 15px 30px rgba(255, 90, 90, 0.2);
  border: 1px solid rgba(255, 90, 90, 0.3);
}

.services__column:nth-child(6) .item-services:hover {
  box-shadow: 0 20px 40px rgba(255, 90, 90, 0.4);
  transform: translateY(-10px);
}

.services__column:nth-child(6) .item-services__title {
  color: #ff5a5a;
  text-shadow: 0 0 10px rgba(255, 90, 90, 0.3);
  animation: redGlow 3s infinite alternate;
}

@keyframes redGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 90, 90, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(255, 90, 90, 0.7), 0 0 25px rgba(255, 90, 90, 0.5);
  }
}

.services__column:nth-child(6) .item-services__title::after {
  background: linear-gradient(to right, rgba(255, 90, 90, 0.2), rgba(255, 90, 90, 0.7), rgba(255, 90, 90, 0.2));
}

.services__column:nth-child(6) .item-services__button {
  background: rgba(255, 90, 90, 0.8);
  border: 1px solid rgba(255, 90, 90, 0.3);
}

.services__column:nth-child(6) .item-services__button:hover {
  background: rgba(255, 90, 90, 1);
  box-shadow: 0 0 15px rgba(255, 90, 90, 0.5);
}

.services__column:nth-child(6) .item-services::before {
  background: linear-gradient(135deg, rgba(255, 90, 90, 0.1), transparent 80%);
}

.services__column:nth-child(6) .item-services::after {
  background: linear-gradient(315deg, rgba(255, 90, 90, 0.1), transparent 80%);
}

.services__column:nth-child(6) .corner-decoration {
  border-color: rgba(255, 90, 90, 0.5);
}

.about__text h3 {
  color: #FF7E1F;
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 126, 31, 0.3);
  animation: aboutHeadingGlow 3s infinite alternate;
  position: relative;
  padding-left: 1.5rem;
  transform: translateX(-1.5rem);
  opacity: 0;
  animation: slideInHeading 0.8s forwards ease-out, aboutHeadingGlow 3s infinite alternate 0.8s;
}

.about__text h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background: #FF7E1F;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 126, 31, 0.6);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 15px rgba(255, 126, 31, 0.6);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 20px rgba(255, 126, 31, 0.8);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 15px rgba(255, 126, 31, 0.6);
  }
}

@keyframes slideInHeading {
  0% {
    transform: translateX(-1.5rem);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes aboutHeadingGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 126, 31, 0.3);
  }
  100% {
    text-shadow: 0 0 15px rgba(255, 126, 31, 0.7), 0 0 25px rgba(255, 126, 31, 0.4);
  }
}

.about__text p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  position: relative;
  opacity: 0;
  animation: fadeInUp 0.8s forwards ease-out;
  animation-delay: 0.2s;
}

.about__text p:nth-of-type(2) {
  animation-delay: 0.4s;
}

.about__text p:nth-of-type(3) {
  animation-delay: 0.6s;
}

.about__text p:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.about__text h3:nth-of-type(1) {
  color: #3498db;
  animation-delay: 0.3s, 1.1s;
}

.about__text h3:nth-of-type(1)::before {
  background: #3498db;
  box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
  animation: pulseDotBlue 2s infinite;
}

@keyframes pulseDotBlue {
  0% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
  }
}

.about__text h3:nth-of-type(2) {
  color: #2ecc71;
  animation-delay: 0.5s, 1.3s;
}

.about__text h3:nth-of-type(2)::before {
  background: #2ecc71;
  box-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
  animation: pulseDotGreen 2s infinite;
}

@keyframes pulseDotGreen {
  0% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.8);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.6);
  }
}

.about-page__container::after {
    content: "";
    position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 126, 31, 0.15) 0%, rgba(255, 126, 31, 0) 70%);
  border-radius: 50%;
  animation: floatGradient 10s infinite alternate ease-in-out;
  opacity: 0.5;
  z-index: -1;
  top: 20%;
  right: 10%;
}

.about-page__container::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0) 70%);
  border-radius: 50%;
  animation: floatGradient 15s infinite alternate-reverse ease-in-out;
  opacity: 0.5;
  z-index: -1;
  bottom: 10%;
  left: 5%;
}

@keyframes floatGradient {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -20px);
  }
  100% {
    transform: translate(-20px, 40px);
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 150px;
  margin: 0 auto;
}

.footer__logo img {
    width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.footer__logo:hover img {
  filter: brightness(1.2);
}

@media (max-width: 768px) {
  .header__logo {
    max-width: 140px;
  }
  
  .footer__logo {
    max-width: 120px;
  }
}

.services-page__button {
  cursor: pointer;
  z-index: 10;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

.services-page__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Service Page Enhancements */
.service-intro {
  margin-bottom: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-intro .title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientFlow 3s ease infinite;
}

.service-intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

.service-section {
  background-color: rgba(255, 255, 255, 0.98);
  padding: 2.5rem;
  border-radius: 15px;
  margin-bottom: 3rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  background: linear-gradient(45deg, #3498db, #2ecc71, #e74c3c, #f1c40f);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sectionTitleGlow 6s ease infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes sectionTitleGlow {
  0% {
    background-position: 0% 50%;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
    transform: scale(1);
  }
  25% {
    background-position: 25% 50%;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
    transform: scale(1.02);
  }
  50% {
    background-position: 50% 50%;
    text-shadow: 0 0 25px rgba(231, 76, 60, 0.5);
    transform: scale(1);
  }
  75% {
    background-position: 75% 50%;
    text-shadow: 0 0 20px rgba(241, 196, 15, 0.6);
    transform: scale(1.02);
  }
  100% {
    background-position: 100% 50%;
    text-shadow: 0 0 15px rgba(52, 152, 219, 0.4);
    transform: scale(1);
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #3498db, #2ecc71, #e74c3c);
  background-size: 200% 200%;
  animation: linePulse 3s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes linePulse {
  0% {
    width: 100px;
    opacity: 1;
    background-position: 0% 50%;
  }
  50% {
    width: 150px;
    opacity: 0.8;
    background-position: 100% 50%;
  }
  100% {
    width: 100px;
    opacity: 1;
    background-position: 0% 50%;
  }
}

.section-title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(52, 152, 219, 0.2) 0%, rgba(46, 204, 113, 0.2) 50%, transparent 70%);
  animation: circlePulse 4s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes circlePulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(52, 152, 219, 0.15),
    rgba(46, 204, 113, 0.15),
    rgba(231, 76, 60, 0.15),
    rgba(241, 196, 15, 0.15)
  );
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  border-radius: 20px;
  z-index: 0;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(31, 38, 135, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, 
    rgba(52, 152, 219, 0.2),
    rgba(46, 204, 113, 0.2)
  );
}

.benefit-content {
  position: relative;
  z-index: 1;
}

.benefit-content h4 {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-content h4 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}

.benefit-content p {
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-content p {
  color: #2c3e50;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
  color: white;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon svg {
  transform: scale(1.1);
}

/* Unique gradients for each card */
.benefit-item:nth-child(1)::before {
  background: linear-gradient(45deg, 
    rgba(52, 152, 219, 0.2),
    rgba(46, 204, 113, 0.2)
  );
}

.benefit-item:nth-child(2)::before {
  background: linear-gradient(45deg, 
    rgba(155, 89, 182, 0.2),
    rgba(52, 152, 219, 0.2)
  );
}

.benefit-item:nth-child(3)::before {
  background: linear-gradient(45deg, 
    rgba(230, 126, 34, 0.2),
    rgba(241, 196, 15, 0.2)
  );
}

.benefit-item:nth-child(4)::before {
  background: linear-gradient(45deg, 
    rgba(231, 76, 60, 0.2),
    rgba(155, 89, 182, 0.2)
  );
}

.services-page__text {
  color: #333;
  line-height: 1.8;
  font-size: 1.1rem;
}

.services-page__text p {
  margin-bottom: 1.5rem;
}

.services-page__button {
  background-color: #4CAF50;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 2rem;
  display: inline-block;
}

.services-page__button:hover {
  background-color: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
  .service-intro,
  .service-section {
    padding: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}

.grant-scheme {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 3rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(33, 150, 243, 0.15);
  position: relative;
  overflow: hidden;
}

.grant-scheme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #1e88e5, #1565c0);
}

.grant-scheme__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #3498db, #2ecc71, #e74c3c);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGlow 4s ease infinite;
}

@keyframes titleGlow {
  0% {
    background-position: 0% 50%;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
  }
  50% {
    background-position: 100% 50%;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
  }
  100% {
    background-position: 0% 50%;
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
  }
}

.grant-scheme__title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1e88e5, #1565c0);
  border-radius: 3px;
}

.grant-scheme__subtitle {
  color: #1565c0;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  font-weight: 500;
}

.grant-scheme__content {
  display: grid;
    grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.grant-scheme__benefits {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
}

.grant-scheme__benefits h3 {
  color: #0d47a1;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.grant-scheme__benefits h3::before {
  content: '✓';
  color: #1e88e5;
  font-weight: bold;
}

.grant-scheme__benefits ul {
  list-style: none;
  padding: 0;
}

.grant-scheme__benefits li {
  color: #1a237e;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.grant-scheme__benefits li::before {
  content: '•';
  color: #1e88e5;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.grant-scheme__eligibility {
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
}

.grant-scheme__eligibility h3 {
  color: #0d47a1;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.grant-scheme__eligibility h3::before {
  content: '✓';
  color: #1e88e5;
  font-weight: bold;
}

.grant-scheme__eligibility ul {
  list-style: none;
  padding: 0;
}

.grant-scheme__eligibility li {
  color: #1a237e;
    margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.grant-scheme__eligibility li::before {
  content: '•';
  color: #1e88e5;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.grant-scheme__button {
  display: inline-block;
  background: linear-gradient(90deg, #1e88e5, #1565c0);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
}

.grant-scheme__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
  background: linear-gradient(90deg, #1565c0, #0d47a1);
}

@media (max-width: 768px) {
  .grant-scheme {
    padding: 2rem;
  }
  
  .grant-scheme__content {
    grid-template-columns: 1fr;
  }
  
  .grant-scheme__title {
    font-size: 1.8rem;
  }
}

/* Dropdown Menu Styles */
.menu__item--dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.menu__item--dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  color: #2196F3;
}

@media (max-width: 768px) {
  .menu__item--dropdown {
    position: static;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    display: none;
  }
  
  .menu__item--dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu a {
    padding: 0.75rem 1rem 0.75rem 2rem;
  }
}

/* Process Timeline Styles */
.process-timeline {
    position: relative;
  padding: 2rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
    position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #4CAF50, #2196F3);
}

.process-step {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  color: #2196F3;
}

.step-content {
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Different colors for each step */
.process-step:nth-child(1) .step-content {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  border-left: 4px solid #2196F3;
}

.process-step:nth-child(2) .step-content {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-left: 4px solid #4CAF50;
}

.process-step:nth-child(3) .step-content {
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  border-left: 4px solid #FF9800;
}

.process-step:nth-child(4) .step-content {
  background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
  border-left: 4px solid #9C27B0;
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* Different text colors for each step */
.process-step:nth-child(1) .step-content h4 {
  color: #1565C0;
}

.process-step:nth-child(2) .step-content h4 {
  color: #2E7D32;
}

.process-step:nth-child(3) .step-content h4 {
  color: #EF6C00;
}

.process-step:nth-child(4) .step-content h4 {
  color: #6A1B9A;
}

.step-content p {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* Alternating layout for steps */
.process-step:nth-child(odd) {
  flex-direction: row-reverse;
}

/* Hover effects */
.process-step:hover .step-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.process-step:hover .step-content {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.process-step:nth-child(odd):hover .step-content {
  transform: translateX(-5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .process-timeline::before {
    left: 30px;
  }
  
  .process-step {
    flex-direction: row !important;
    margin-left: 60px;
  }
  
  .step-content {
    margin-left: 0;
  }
}

/* Enhanced Service Page Styles */
.highlight-text {
  color: #2c3e50;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.highlight-text::before {
  content: '';
  position: absolute;
  left: 0;
    top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #3498db, #2ecc71);
  border-radius: 2px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  color: #34495e;
}

.check-icon {
  position: absolute;
    left: 0;
  top: 0.2rem;
  color: #2ecc71;
  font-weight: bold;
  font-size: 1.1rem;
}

.benefit-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.benefit-content h4 {
  color: #2c3e50;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-content p {
  color: #34495e;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.section-title {
  color: #2c3e50;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
    left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #2ecc71);
  border-radius: 2px;
  }

.cta-section {
    text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-text {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.service-page__button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-page__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-item {
    padding: 1.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .highlight-text {
    font-size: 1.1rem;
  }
  
  .cta-text {
    font-size: 1.2rem;
  }
}

.page__service {
  padding-top: 2rem;
  position: relative;
  z-index: 2;
}

.main_privacy + .page__service {
  margin-top: -50px;
}

.service-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-intro {
  margin-bottom: 3rem;
  line-height: 1.6;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #3498db;
}

.benefits-grid {
  display: grid;
  grid-template-column: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-content h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.benefit-content p {
  margin-bottom: 1rem;
  color: #666;
}

.benefit-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #666;
}

.benefit-content li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .page__service {
    padding-top: 1rem;
  }
  
  .main_privacy + .page__service {
    margin-top: -30px;
  }
  
  .service-section {
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.faq-section {
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-container {
  max-width: 900px;
  margin: 2rem auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem 2rem;
    display: flex;
  justify-content: space-between;
    align-items: center;
  cursor: pointer;
  background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
  color: white;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(135deg, #2980b9 0%, #27ae60 100%);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  flex-grow: 1;
}

.faq-icon {
    font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  margin-left: 1rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  padding: 0 2rem;
  border-left: 4px solid transparent;
  border-image: linear-gradient(to bottom, #3498db, #2ecc71);
  border-image-slice: 1;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 2rem;
  transition: max-height 0.5s ease-in;
  box-shadow: inset 0 0 20px rgba(52, 152, 219, 0.1);
}

.faq-answer p {
  margin: 0 0 1rem;
  color: #2c3e50;
  line-height: 1.6;
  font-size: 1.1rem;
}

.faq-answer ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  list-style: none;
}

.faq-answer li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
  color: #2c3e50;
}

.faq-answer li::before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item:nth-child(1) .faq-answer {
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
}

.faq-item:nth-child(2) .faq-answer {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
}

.faq-item:nth-child(3) .faq-answer {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(241, 196, 15, 0.1) 100%);
}

.faq-item:nth-child(4) .faq-answer {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
}

.faq-item:nth-child(5) .faq-answer {
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
}

.faq-item:hover .faq-answer {
  background-position: 100% 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 1.5rem;
  }
  
  .faq-question {
    padding: 1.2rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 1.2rem 1.5rem;
  }
}

/* Contact Information Grid Styles */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.15);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #45a049, #4CAF50);
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.contact-info-content {
  flex: 1;
}

.contact-info-content h3 {
  color: #4CAF50;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-content p {
  color: white;
  margin: 0.25rem 0;
  font-size: 1rem;
}

.info-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  display: block;
  margin-top: 0.5rem;
}

/* Social Links Styles */
.social-links {
  margin-top: 2rem;
    text-align: center;
  }

.social-links h3 {
  color: #4CAF50;
    margin-bottom: 1rem;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
    justify-content: center;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.social-icon img {
  width: 20px;
  height: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info-card {
    padding: 1rem;
  }
  
  .social-icons {
    flex-wrap: wrap;
  }
}

.hero-image-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    margin-bottom: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.main_contact {
  position: relative;
  padding: 12rem 0 8rem;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}

.main_contact .main__container {
  position: relative;
  z-index: 2;
}

.main_contact .main__title {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main_contact .main__text_pages {
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.main_service {
  position: relative;
}

.main_service .main__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.main_service .main__title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main_service .main__text_pages {
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .main_service .main__title {
    font-size: 2.5rem;
  }
  
  .main_service .main__text_pages {
    font-size: 1.2rem;
  }
}

.contact__info {
    position: relative;
  z-index: 1;
}

.floating-shapes {
    position: absolute;
    top: 0;
  left: 0;
    width: 100%;
    height: 100%;
  pointer-events: none;
  z-index: 0;
}

.contact-form {
  position: relative;
    z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 3;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 1rem;
  background: rgba(40, 40, 40, 0.9);
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.contact__button {
  position: relative;
  z-index: 3;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 30vh;
  min-height: 300px;
  overflow: hidden;
  margin-bottom: -2rem;
}

.hero-image-container {
  position: absolute;
    top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 0 1rem;
}

.page__contact {
  position: relative;
  margin-top: -2rem;
  padding-top: 0;
  }

  .contact__container {
  padding-top: 0;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero-section {
    height: 25vh;
    min-height: 200px;
    margin-bottom: -1rem;
  }
  
  .page__contact {
    margin-top: -1rem;
  }
}

.services-page__img {
  flex: 0 0 45%;
  max-width: 45%;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.services-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .services-page__img {
    flex: 0 0 100%;
    max-width: 100%;
    height: 300px;
    margin-bottom: 2rem;
  }
}

.services-page__img::before {
  content: '';
  position: absolute;
    top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 128, 128, 0.2), rgba(0, 255, 255, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.services-page__img:hover::before {
  opacity: 1;
}

@keyframes imageFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.services-page__img {
  animation: imageFloat 4s ease-in-out infinite;
}

.hero-image-container_solar {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  margin-bottom: -4rem;
}

.hero-image-container_solar .hero-image {
    width: 100%;
    height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
    top: 0;
  left: 0;
    width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

.main_solar .main__container {
  position: relative;
    z-index: 2;
  padding: 4rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grant-scheme {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 3rem;
  margin: 0 auto;
  max-width: 1200px;
}

.grant-scheme__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
    text-align: center;
  }

.grant-scheme__subtitle {
  font-size: 1.2rem;
  color: #34495e;
    text-align: center;
  margin-bottom: 3rem;
}

.grant-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.highlight-item {
  background: rgba(255,255,255,0.8);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #3498db;
}

.highlight-item span {
  font-size: 1.1rem;
  color: #2c3e50;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-item {
  background: rgba(255,255,255,0.9);
  padding: 2rem;
  border-radius: 8px;
    display: flex;
    align-items: center;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
  color: #3498db;
}

.benefit-content h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #34495e;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  padding: 4rem 2rem;
  text-align: center;
  margin-top: 3rem;
  border-radius: 12px;
}

.cta-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
    margin-bottom: 2rem;
  }

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: #3498db;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 10;
  position: relative;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .hero-image-container_solar {
    height: 60vh;
    min-height: 400px;
  }
  
  .grant-highlights {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .grant-scheme {
    padding: 2rem 1.5rem;
  }
  
  .grant-scheme__title {
    font-size: 2rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
  }
}

.hero-stats {
    display: flex;
    justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  min-width: 200px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 4.5rem;
  color: #fff;
    text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  font-weight: 800;
  letter-spacing: 1px;
  position: relative;
  z-index: 3;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
    margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem;
    min-width: auto;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 3rem;
    padding: 0 1rem;
  }
  
  .hero-subtitle {
    font-size: 1.4rem;
    padding: 0 1rem;
  }
  
  .main_solar .main__container {
    padding: 4rem 1rem 1rem;
  }
}

.hero-image-container_boiler {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
    align-items: center;
  justify-content: center;
}

.hero-image-container_boiler .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-image-container_boiler .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-image-container_boiler {
    height: 60vh;
    min-height: 400px;
  }
}

.hero-image-container_cavity {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-container_cavity .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-image-container_cavity .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-image-container_cavity {
    height: 60vh;
    min-height: 400px;
  }
}

.hero-image-container_privacy {
  position: relative;
  width: 100%;
  height: 60vh;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image-container_privacy .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-image-container_privacy .main__container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-image-container_privacy .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-image-container_privacy .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-image-container_privacy .hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.hero-image-container_privacy .stat-item {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.hero-image-container_privacy .stat-item:hover {
  transform: translateY(-5px);
}

.hero-image-container_privacy .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-image-container_privacy .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-image-container_privacy {
    height: 80vh;
  }
  
  .hero-image-container_privacy .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-image-container_privacy .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-image-container_privacy .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-image-container_privacy .stat-item {
    padding: 1rem;
  }
  
  .hero-image-container_privacy .stat-number {
    font-size: 2rem;
  }
}