:root {


  --bodyColor: #F8F6F4;


  --boxColor: #eff0ef;


  --dark-brand-color: #202020;


  --brand-color: #1FA84F;


  --primaryColor: #404742;


  --title-2-color: #292836;


  --secendaryColor: #5E5E5E;


  --border-radius: 5px;
}

/* General & Variables */
:root {
  --gg-clr-dark: #1e2a3a;
  /* Dark Blue-Gray */
  --gg-clr-light: #f5f8fa;
  /* Light Gray */
  --gg-clr-accent-1: #007bff;
  /* Blue */
  --gg-clr-accent-2: #ff5722;
  /* Deep Orange */
  --gg-clr-text: #4a5568;
  --gg-font-heading: 'Roboto Condensed', sans-serif;
  --gg-font-body: 'Montserrat', sans-serif;
}



.gg-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 20px;
}

.gg-section {
  padding: 100px 0;
  position: relative;
}

h1,
h2,
h3,
h4 {
  font-family: var(--gg-font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gg-clr-dark);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.3rem);
  text-align: left;
  margin-bottom: 60px;
  position: relative;
}



p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.gg-btn-main {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  background: var(--gg-clr-accent-1);
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
  letter-spacing: 1px;
}

.gg-btn-main:hover {
  transform: translateY(-3px);
  background: var(--gg-clr-accent-2);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.3);
}

/* Hero Section */
.gg-hero-banner {
  background-color: white;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.gg-hero-banner::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, var(--gg-clr-accent-1) 10%, transparent 50%),
    radial-gradient(circle at 10% 90%, var(--gg-clr-accent-2) 10%, transparent 20%);
  opacity: 0.1;
  transform: rotate(-15deg);
  z-index: 0;
}

.gg-hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.gS0cdx0qlE {
  flex-basis: 60%;
  padding-right: 40px;
}

.gS0cdx0qlE h1 {
  font-weight: 700;
}

.gS0cdx0qlE h3 {
  font-family: var(--gg-font-body);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gg-clr-accent-1);
  text-transform: none;
  margin-bottom: 20px;
}

.LovgXCdlow {
  flex-basis: 40%;
  text-align: right;
}

.LovgXCdlow img {
  width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Services Grid */
.SSqhccoaGc {
  background-color: var(--gg-clr-light);
}

.AbINBiNdgS {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}



.gg-service-card {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-left: 5px solid var(--gg-clr-accent-1);
  border-bottom: 5px solid var(--gg-clr-accent-1);
  border-right: 5px solid var(--gg-clr-accent-1);
  border-top: 5px solid var(--gg-clr-accent-1);

}

.gg-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gg-clr-accent-2);
}

.gg-service-card h3 {
  font-size: 1.5rem;
  color: var(--gg-clr-accent-1);
  text-transform: none;
  margin-bottom: 10px;
}

.gg-service-card p {
  font-size: 0.95rem;
  color: var(--gg-clr-text);
}

/* About & Info Blocks */
.WZ8NZ4n2OS {
  background-color: white;
}

.gg-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gg-about-text {
  text-align: justify;
}

.gg-about-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.SldfUmO6ja img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Another About Section with different layout */
.gg-why-choose-us-section {
  background-color: var(--gg-clr-light);
}

.gg-why-choose-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gg-why-choose-us-text {
  text-align: justify;
}

.gg-why-choose-us-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.gg-blog-section {
  background-color: white;
}

.gg-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.gg-blog-card {
  background-color: var(--gg-clr-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gg-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gg-blog-card-image {
  height: 250px;
  overflow: hidden;
}

.gg-blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gg-blog-card:hover .gg-blog-card-image img {
  transform: scale(1.1);
}

.QYn2xe7W5u {
  padding: 30px;
}

.QYn2xe7W5u h4 {
  font-size: 1.2rem;
  color: var(--gg-clr-accent-1);
  text-transform: none;
  margin-bottom: 10px;
}

.QYn2xe7W5u p {
  font-size: 0.9rem;
  color: var(--gg-clr-text);
}

/* Responsive */
@media (max-width: 992px) {

  .gg-hero-layout,
  .gg-about-layout,
  .gg-why-choose-us-layout {
    flex-direction: column;
    gap: 50px;
  }

  .gS0cdx0qlE,
  .LovgXCdlow {
    flex-basis: 100%;
    padding-right: 0;
  }

  .LovgXCdlow {
    order: -1;
    text-align: center;
  }

  .gg-about-layout,
  .gg-why-choose-us-layout {
    grid-template-columns: 1fr;
  }

  .gg-about-text,
  .gg-why-choose-us-text {
    order: 1;
  }

  .SldfUmO6ja,
  .gg-why-choose-us-image {
    order: 0;
  }
}


:root {
  --primary: #0288D1;
  --secondary: #01579B;
  --accent: #4FC3F7;
  --bg-light: #E1F5FE;
  --text-dark: #1A237E;
  --text-light: #FFFFFF;
  --shadow-light: 0 8px 32px rgba(2, 136, 209, 0.1);
  --shadow-bold: 0 16px 64px rgba(2, 136, 209, 0.2);
}


.NEocN8yFsi {
  padding: 140px 0;
}

.hero-section {
  background: linear-gradient(to bottom, var(--gg-clr-accent-1), var(--gg-clr-accent-1)), url('../images/plumbing-hero.jpg') center/cover no-repeat;
  color: var(--text-light);
  padding: 30px 0 30px;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 5.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  letter-spacing: -2px;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 300;
  opacity: 0.9;
}

.MPv5kFgxQh {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  background: var(--text-light);
  border-radius: 50px 10px 10px 50px;
  padding: 60px;
  position: relative;
  box-shadow: var(--shadow-light);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), box-shadow 0.7s ease;
}

.service-card:nth-child(odd) {
  grid-template-columns: 2fr 1fr;
  border-radius: 10px 50px 50px 10px;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: var(--shadow-bold);
}

.service-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 40px;
  transition: transform 0.7s ease;
}

.service-card:hover .service-img {
  transform: scale(1.08) rotate(3deg);
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h3 {
  color: var(--gg-clr-accent-1);
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.FbfQp3Hw5y {
  margin-bottom: 25px;
}

.service-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.price-tag {
  color: var(--secondary);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(to top, var(--accent), var(--gg-clr-accent-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.order-btn {
  background: linear-gradient(90deg, var(--gg-clr-accent-1), var(--accent));
  color: var(--text-light);
  padding: 16px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.6s ease;
  box-shadow: 0 4px 12px rgba(2, 136, 209, 0.25);
  display: inline-block;
  margin-top: 20px;

}


.order-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--gg-clr-accent-1));
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(2, 136, 209, 0.35);
}

.pVqxWku368 {
  background: linear-gradient(to right, #B3E5FC, var(--bg-light));
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.pricing-plan {
  background: var(--text-light);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-light);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  position: relative;
  overflow: hidden;
}

.pricing-plan:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-bold);
}

.pricing-plan h3 {
  color: var(--gg-clr-accent-1);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: center;
}

.pricing-plan ul {
  list-style: none;
  padding: 0;
}

.pricing-plan ul li {
  margin-bottom: 16px;
  font-weight: 600;
  position: relative;
  padding-left: 40px;
}

.pricing-plan ul li::before {
  content: '➔';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 1.7rem;
}

.testimonial-section {
  max-width: 1200px;
  margin: 0 auto;
}

.VtPm5fly4E {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.testimonial {
  background: var(--text-light);
  padding: 50px;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.testimonial:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-bold);
}

.testimonial h4 {
  color: var(--gg-clr-accent-1);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.client-location {
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.FlYZ4HEmhm {
  max-width: 1240px;
  margin: 0 auto;
}

details {
  margin-bottom: 30px;
  border-radius: 15px;
  background: var(--text-light);
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}

details:hover {
  box-shadow: var(--shadow-bold);
  transform: translateY(-5px);
}

summary {
  padding: 30px 40px;
  background: linear-gradient(45deg, var(--gg-clr-accent-1), var(--secondary));
  color: var(--text-light);
  cursor: pointer;
  font-weight: 700;
  font-size: 1.5rem;
  transition: background 0.5s ease;
}

summary:hover {
  background: linear-gradient(45deg, var(--secondary), var(--gg-clr-accent-1));
}

.VRczu6NTiW {
  padding: 40px;
  background: #E1F5FE;
  color: var(--text-dark);
  line-height: 2;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 4rem;
  }

  .hero-section p {
    font-size: 1.8rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(odd) {
    grid-template-columns: 1fr;
    border-radius: 15px;
  }

  .pricing-container {
    grid-template-columns: 1fr;
  }

  .VtPm5fly4E {
    grid-template-columns: 1fr;
  }
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--primaryColor);
  background-color: var(--bodyColor);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

body.home-rtl {
  font-family: 'Tajawal', sans-serif;
}


body.dark-mode {
  --bodyColor: #151515;

  --boxColor: #1E1E1E;


  --primaryColor: #e4e6e4;


  --brand-color: rgba(31, 168, 79, 0.87);


  --secendaryColor: #bcbcbc;


  --title-2-color: #ebebeb;

}

.xxFqCWJbvZ {
  font-family: 'Arial', sans-serif;
  background: #f7f9fc;
  padding: 80px 0;
}

.Yc35gsJAe3 {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.form-column {
  flex: 1 1 400px;
  background: linear-gradient(135deg, #0b3d91, #1a75ff);
  color: #fff;
  padding: 40px;
  border-radius: 15px;
}

.form-column h2 {
  margin-bottom: 15px;
  font-size: 28px;
}

.form-column p {
  margin-bottom: 25px;
}

.form-column input,
.form-column textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
}

.form-column textarea {
  resize: none;
}

.form-column button {
  background: var(--gg-clr-accent-2);
  color: #0b3d91;
  font-weight: bold;
  border: none;
  padding: 12px 0;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.form-column button:hover {
  background: #ffc300;
}

.qKb0Wg3Fzt {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.WuYPXGsgcH {
  margin-bottom: 20px;
}

.WuYPXGsgcH h4 {
  margin-bottom: 5px;
  color: #0b3d91;
}

.WuYPXGsgcH p {
  color: #333;
  margin: 0;
}

.qKb0Wg3Fzt .RVpDWag17H {
  margin-top: 20px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

.qKb0Wg3Fzt .RVpDWag17H iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.switch-button {
  border-radius: 50%;
  border: none;
  outline: none;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-left: 10px;
  border: .5px solid var(--gg-clr-accent-1);
}

.btn-light-mode {
  background-color: var(--boxColor);
  color: var(--primaryColor);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::selection {
  color: var(--bodyColor);
  background-color: var(--gg-clr-accent-1);
}

.title {
  color: var(--primaryColor);
  font-size: 45px;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
}

.title-2 {
  color: var(--title-2-color);
  font-size: 26px;
  font-weight: bold;
  position: relative;
  text-transform: capitalize;
}

.pretitle {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  color: var(--gg-clr-accent-1);
}

.unique-text {
  color: var(--gg-clr-accent-1);
}

.home-2 .heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

body.home-rtl .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: end;
  text-align: end;
}

body.home-rtl .heading>* {
  justify-self: end;
  text-align: end;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.box {
  background-color: var(--boxColor);
  padding: 20px;
  border-radius: var(--border-radius);
  position: relative;
  height: 100%;
  z-index: 1;
  transition: color 300ms ease-in-out;
}

.box.box-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: var(--gg-clr-accent-1);
  transition: transform 400ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
  color: #F3F3F3;
  border-radius: var(--border-radius);
}

.box.box-hover:hover:before,
.box.box-hover:focus:before {
  transform: scaleX(1);
}

.box.box-hover:hover,
.box.box-hover:focus,
.box.box-hover:hover a i,
.box.box-hover:hover .box-icon i,
.box.box-hover:hover>* {
  color: #F9F9F9;
}

.box.box-hover:hover>p {
  color: #def3de;
}

.home-rtl .box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: end;
}

.btn,
.btn-sec {
  border: 1px solid var(--gg-clr-accent-1);
  background: var(--gg-clr-accent-1);
  color: var(--bodyColor);
  font-weight: 800;
  border-radius: 40px;
  padding: 8px 25px;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  text-transform: capitalize;
  align-items: center;
  text-align: center;
  letter-spacing: .5px;
  outline: none;
  font-weight: bold;
  transition: 0.8s all ease;
  cursor: pointer;
  z-index: 1;
}

.btn-sec {
  background-color: var(--boxColor);
  border: 1px solid var(--gg-clr-accent-1);
  color: var(--primaryColor);
}

.btn-sec:hover {
  color: var(--bodyColor);
}

.btn::before,
.btn-sec::before {
  background: var(--boxColor);
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.6s ease;
  width: 100%;
  height: 0%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-sec::before {
  background: var(--gg-clr-accent-1);
}

.btn:hover::before,
.btn-sec:hover::before {
  height: 380%;
}

.learn-more {
  text-transform: capitalize;
  color: var(--gg-clr-accent-1);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.learn-more .bi {
  font-size: 25px;
}


@media (max-width: 768px) {
  .btn {
    padding: 6px 18px;
    font-size: 16px;
  }

  .title {
    font-size: 35px;
  }

  .title-2 {
    font-size: 20px;
  }

  .pretitle {
    font-size: 14px;
  }

  p {
    font-size: 14;
    line-height: 28;
  }
}

p {
  color: var(--secendaryColor);
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}


.breadcrumbs {
  background: linear-gradient(135deg, #0b3d91, #1a75ff);
  min-height: 40px;
  margin-top: 82px;
  color: var(--bodyColor);
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 57px;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.breadcrumbs h2 {
  color: #eaf0ec;
}

.breadcrumbs ol a {
  color: #F8F6F4;
  transition: 0.3s;
}

.breadcrumbs p {
  color: #b6b6b6;
}

.breadcrumbs ol a:hover {
  color: var(--gg-clr-accent-1);
}

.breadcrumbs ol li+li {
  padding-left: 10px;
  color: #F9F9F9;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #F8F6F4;
  content: "/";
}



.pace {
  pointer-events: none;
  user-select: none;
  z-index: 2000;
  position: fixed;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  border: 0px;
  height: 1.5px;
  overflow: hidden;
  background: #1b1b1b;
}

.pace .pace-progress {
  box-sizing: border-box;
  transform: translate3d(0, 0, 0);
  max-width: 400px;
  position: fixed;
  z-index: 2000;
  display: block;
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 100%;
  background: var(--gg-clr-accent-1);
}

.pace.pace-inactive {
  display: none;
}



.p {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #fff;
}



#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 800;
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  border-radius: 50%;
  display: grid;
  background-color: var(--bodyColor);
  place-items: center;
  font-size: 35px;
  color: var(--gg-clr-accent-1);
}


.navbar {
  z-index: 900;
}

.navbar-toggler,
.navbar-toggler:active,
.navbar-toggler:focus {
  border: none;
}

@media (max-width: 990px) {
  .navbar {
    background-color: var(--boxColor);
  }

  .home-rtl .navbar #navbar {
    display: flex;
    flex-direction: column !important;
  }
}

.navbar #menu {
  color: var(--title-2-color);
  font-size: 30px;
}

.navbar .logo {
  width: 9rem;
}

.navbar.sticky {
  background-color: var(--boxColor);
  transition: 1s;
}

.navbar ul li a:focus {
  background-color: transparent;
}

.navbar ul li a {
  font-weight: 600;
  text-transform: capitalize;
  color: var(--secendaryColor) !important;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: var(--gg-clr-accent-1) !important;
}

.navbar .dropdown-menu {
  background-color: var(--boxColor) !important;
}

.navbar .dropdown-menu .dropdown-item {
  color: var(--title-2-color);
  background-color: var(--boxColor);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.home-3 .hero {
  min-height: 150vh !important;
}


@media (max-width: 990px) {

  .home-1 .hero,
  .home-3 .hero,
  .home-rtl {
    margin-top: 80px;
  }
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#content {
  position: relative;
  z-index: 1;
}


.hero .hero-text .title {
  line-height: 45px;
  font-size: 35px;
}

@media (max-width: 990px) {
  .hero .hero-text .title {
    line-height: 65px;
    font-size: 44px;
  }
}


.header-septic {
  background: #0f766e;
  color: #fff;
  padding: 15px 20px;
}

.container1 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Логотип */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 35px;
  height: 35px;
}

.logo a {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}

/* Меню */
.nav-left ul,
.nav-right ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: #e0f2f1;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #fff;
}

/* Бургер */
#menu-toggle {
  display: none;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Мобільне меню */
.nav-mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  background: #134e4a;
  padding: 60px 20px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.nav-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-mobile a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* Адаптивність */
@media (max-width: 900px) {

  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: block;
  }

  #menu-toggle:checked~.nav-mobile {
    left: 0;
  }
}

/* home 3 */

.home-3 .hero .hero-text .title {
  font-size: 50px;
  line-height: 65px;
}

.home-3 .hero .hero-text .icons .icon {
  background-color: var(--gg-clr-accent-1);
  color: var(--body-color);
  border-radius: 50%;
  margin-inline: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-3 .hero .hero-text .icons i {
  font-size: 20px;
}

.home-3 .hero .hero-images .hero-img {
  height: 500px;

}

.home-3 .hero .hero-images .hero-img img {
  border-radius: var(--border-radius);
  object-fit: cover;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.home-3 .hero .hero-numbers .box-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-3 .hero .hero-numbers .box-number h2 {
  font-size: 55px;
  color: var(--gg-clr-accent-1);
  font-weight: bold;
  text-align: center;
}

.home-3 .hero .hero-numbers .box-number h6 {
  color: var(--secendaryColor);
  font-size: 18px;
  font-weight: 400;
}

.about .box .title-2 {
  text-transform: capitalize;
  font-size: 18px;
}

.about .box {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  padding: 15px;
}

.about .box i {
  font-size: 35px;
  color: var(--gg-clr-accent-1);
}

.about .bars {
  margin: 0;
  padding: 0;
}

@keyframes load {
  from {
    width: 0%;
  }

}

@-webkit-keyframes load {
  from {
    width: 0%;
  }
}

@-o-keyframes load {
  from {
    width: 0%;
  }
}

@-moz-keyframes load {
  from {
    width: 0%;
  }
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--boxColor);
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: var(--gg-clr-accent-1);
  border-radius: 5px;
  transition: width 0.2s ease-in-out;
  animation: load 3s 0s;
  -webkit-animation: load 3s 0s;
  -moz-animation: load 3s 0s;
  -o-animation: load 3s 0s;
}

.progress-bar-fill.progress-bar-fill-1 {
  width: 70%;
}

.progress-bar-fill.progress-bar-fill-2 {
  width: 20%;
}

.progress-bar-fill.progress-bar-fill-3 {
  width: 55%;
}

.home-rtl .about .box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: end;
}

.box-service .box-icon i {
  color: var(--gg-clr-accent-1);
  font-size: 4rem;
}

.home-2 .box-service {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-rtl .box-service {
  text-align: end;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.services .box-service a {
  display: flex;
  align-items: baseline;
}

.services .box-service a i {
  font-size: 18px;
  margin: 0 5px;
}


.single-service {
  min-height: 100vh;
  margin-top: 6rem;
}

.service-side {
  height: fit-content;
}

.service-side .social .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gg-clr-accent-1);
}

.service-side .social .icon i {
  font-size: 18px;
  color: var(--bodyColor);
}

.single-service .service-box {
  height: fit-content;
}

.single-service .service-box h3 {
  font-size: 16px;
}

.single-service .service-box p {
  line-height: 26px;
  font-size: 14px;
}

.single-service .service-box i {
  font-size: 35px;
  color: var(--gg-clr-accent-1);
}

.why-choose-us .box h1 {
  font-size: 50px;
  color: var(--gg-clr-accent-1);
  font-weight: bold;
}


.portfolio-btn {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  color: var(--secendaryColor);
  border: none;
  background-color: var(--bodyColor);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

.portfolio ul {
  margin: 0 !important;
  padding: 1rem 0 !important;
}

@media screen and (max-width: 768px) {
  .portfolio ul li a {
    font-size: 17px;
  }
}

.portfolio .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.50s;

}

.portfolio .img-overlay .content {
  padding: 1.5rem;
  width: 100%;
  color: #c9e8d2;
}

.portfolio .img-overlay .content h3,
.portfolio .img-overlay .content h6 {
  color: #F9F9F9;
}

.portfolio .img-overlay>* {
  transform: translateY(40px);
  transition: transform 25ms;
}

.portfolio .img-overlay:hover>* {
  transform: translateY(0);
}

.portfolio .img-overlay:hover {
  opacity: 1;
}

.portfolio .img-overlay h3 {
  font-size: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.portfolio .img-overlay h4 {
  padding: 7px 10px;
  color: var(--gg-clr-accent-1);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #C4C0E6;
  cursor: pointer;
}

.portfolio .img-overlay .tags span {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: #1FA84F;
  margin: 0 .5rem;
}

.portfolio-btn .active,
.portfolio-btn:hover {
  color: var(--gg-clr-accent-1) !important;
}

.portfolio-item {
  transition: ease-in-out 50ms;
  position: relative;
}

.client-side {
  height: fit-content;
}

.client-side .box .icon {
  flex: 0.25;
}

.client-side .box .icon i {
  font-size: 45px;
  color: var(--gg-clr-accent-1);
}

.client-side .box .text {
  flex: 0.75;
}

.client-side .box .text h3 {
  color: var(--primaryColor);
  margin: 0;
  font-size: 18px;
}

.client-side .social .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--gg-clr-accent-1);
}

.client-side .social .icon i {
  font-size: 18px;
  color: var(--bodyColor);
}


.clients {
  background-color: var(--boxColor);
}

.clients img {
  filter: grayscale(100%);
}

.clients img:hover {
  filter: grayscale(0);
}


.counter-up {
  padding: 60px 0;
  background-color: var(--dark-brand-color);
  color: #F9F9F9;
  text-align: center;
}

.home-3 .counter-up {
  background-color: transparent;
}

.counter-up .counter {
  font-size: 50px;
  font-weight: bold;
  color: var(--gg-clr-accent-1);
}

.counter-up .title-2 {
  color: #F9F9F9;
}

.counter-up i {
  font-size: 50px;
  color: var(--gg-clr-accent-1);
}


.pricing .row .box {
  text-align: center;
  align-items: center;
}

#table3 {
  background-color: var(--gg-clr-accent-1);
  color: #F3F3F3;
}

#table3>.price {
  color: #F3F3F3;
}

#table3>h3,
#table3>ul li,
#table3>i {
  color: #d8d8d8;
}

.pricing .row .box ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

#table3 .btn {
  background-color: var(--bodyColor);
  color: var(--gg-clr-accent-1);
}

#table3 ul li .bi-check2-circle {
  color: var(--dark-brand-color);
}

.pricing .row .box .price {
  font-size: 55px;
  font-weight: bold;
  color: var(--gg-clr-accent-1);

}

.pricing .row .box i {
  font-size: 55px;
  color: var(--secendaryColor);
}

.pricing .box ul li .bi {
  font-size: 18px;
  margin-right: 5px;
}

.pricing .box ul li .bi-check2-circle {
  color: var(--gg-clr-accent-1);
}

.pricing .box ul li .bi-x-circle {
  color: #864141;
}

.pricing ul li {
  color: var(--secendaryColor);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.pricing h3 {
  color: var(--secendaryColor);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.pricing .box .title-2 {
  font-size: 25px;
  text-transform: capitalize;
  font-weight: bold;
}

.testimonials .box h1 {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.testimonials i {
  color: #b8b800;
  font-size: 20px;
}

.team .box {
  padding: 0;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.team .box .team-img {
  width: 100%;
}

.team .box .social-icons i {
  font-size: 1.5rem;
  margin: 0 .5rem;
  color: var(--secendaryColor);
}

.team .box .social-icons i:hover {
  color: var(--gg-clr-accent-1);
}



.blog h3 {
  font-size: 16px;
  font-weight: 400;
  color: var(--secendaryColor);
}

.home-rtl .blog .card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: end;
}

.blog .card i {
  font-size: 17px;
  color: var(--gg-clr-accent-1);
}

.blog .title-2 {
  font-size: 25px;
  line-height: 40px;
}

.blog .card {
  padding: 0 !important;
}

.blog .card img {
  border-radius: var(--border-radius);
}

.blog .card a {
  display: flex;
  align-items: center;
  flex-direction: row;
  color: var(--gg-clr-accent-1);
}

.blog .card a i {
  font-size: 18px;
  margin-inline: 5px;
}

.blog-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

.blog-nav a {
  margin-inline: .5rem;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--boxColor);
  color: var(--title-2-color);
  border-radius: 50%;
}

.blog-nav a.active,
.blog-nav a:hover {
  background-color: var(--gg-clr-accent-1);
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: var(--title-2-color);
  transition: 0.3s;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: var(--gg-clr-accent-1);
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: var(--primaryColor);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}


.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}


.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: var(--gg-clr-accent-1);
  display: inline;
}

.blog .entry .entry-footer a {
  color: var(--secendaryColor);
  transition: 0.3s;
}


.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: var(--secendaryColor);
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  background-color: var(--boxColor);
  border-radius: var(--border-radius);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--title-2-color);
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(1, 41, 112, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  color: var(--secendaryColor);
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--title-2-color);
  transition: 0.3s;
}


.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--gg-clr-accent-1);
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: var(--gg-clr-accent-1);
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 4rem;
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: var(--border-radius);
  outline: none;
  border: none;
  color: var(--title-2-color);
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  background-color: var(--boxColor);
  border: none;
  outline: none;
  box-shadow: none;
}

.blog .blog-comments .reply-form textarea {
  box-shadow: none;
  outline: none;
  border: none;
  color: var(--title-2-color);
}

.blog .blog-comments .reply-form textarea:focus {
  background-color: var(--boxColor);
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 1rem;
}


.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  width: fit-content;
  background-color: var(--boxColor);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--title-2-color);
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form {
  background-color: var(--boxColor);
}

.blog .sidebar .search-form form {
  background: var(--boxColor);
  border: 1px solid var(--boxColor);
  width: 100%;
  height: 100%;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  border: var(--boxColor);
  outline: none;
  box-shadow: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--gg-clr-accent-1);
  color: var(--bodyColor);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
  color: var(--bodyColor);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--title-2-color);
  transition: 0.3s;
}


.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: var(--secendaryColor);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  height: 100%;
  float: left;
  border-radius: var(--border-radius);
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--primaryColor);
  transition: 0.3s;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-size: 14px;
  color: var(--secendaryColor);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: var(--gg-clr-accent-1);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid var(--secendaryColor);
  display: inline-block;
  border-radius: var(--border-radius);
  transition: 0.3s;
}

.faq .box h4 {
  color: var(--title-2-color);
  font-size: 20px;
  font-weight: 600;
}

.faq .box i {
  font-size: 25px;
  color: var(--gg-clr-accent-1);
}

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.rotate-icon.rotated {
  transform: rotate(180deg);
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 15px;
  outline: none;
  border: none;
  box-shadow: none;
  background-color: var(--boxColor);
  border-radius: var(--border-radius);
  color: var(--title-2-color);
}

.contact form input:focus,
.contact form textarea:focus {
  background-color: var(--boxColor);
  box-shadow: none;
}

.contact .info i {
  font-size: 30px;
  color: var(--gg-clr-accent-1);
}

.contact .info h5 {
  color: var(--secendaryColor);
  font-size: 20px;
  font-weight: 600;
}

.contact-map {
  width: 100%;
  height: 400px;
  margin-top: 5rem;
}

.toast-success {
  background-color: #0d9700 !important;
  opacity: 1 !important;
}

.toast-error {
  background-color: #8b0500 !important;
  opacity: 1 !important;
}

.toast {
  border-radius: var(--border-radius) !important;
  color: #F9F9F9;
  font-family: 'Outfit', sans-serif;
  box-shadow: none !important;
}

.footer {
  background-color: #1c1d1c;
}

.footer .box {
  background-color: var(--dark-brand-color);
}

.footer .box p {
  color: var(--secendaryColor);
}

.footer .box .logo img {
  width: 50%;
}

.footer .box .icon {
  color: #fff;
  background-color: var(--gg-clr-accent-1);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;

}

.footer .box h4 {
  color: #b6b6b6;
}

.footer .box p {
  color: #a2a1a1;
}

.footer h4 {
  color: #b6b6b6;
  font-size: 18px;
  font-weight: 600;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer ul li {
  color: #ddd;
  cursor: pointer;
}

.footer ul li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #ddd;
}

.footer ul li i {
  font-size: 12px;
}

.footer .copyrights a {
  color: #d8d8d8;
}

.footer hr {
  color: #b1b1b1;
}

.fzf {
  width: 100%;
  overflow: hidden;
  height: 100%;
  display: grid;
  place-items: center;
  place-content: center;
}

.fzf .content {
  margin-top: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fzf .content img {
  width: 70%;
}

.fzf .content h1 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin-block: 1rem;
}

.auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth input {
  border: 0;
  outline: 0;
  margin-block: .5rem;
}


.P0uVzSo1Q6 {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #e5e7eb;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.af-shell {
  max-width: 1200px;
  margin: 0 auto;
}

.af-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.af-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.af-col ul li {
  margin-bottom: 12px;
}

.af-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color .3s;
}

.af-col ul li a:hover {
  color: #28f000;
}

.af-logo {
  font-size: 1.7em;
  font-weight: 700;
  color: var(--gg-clr-accent-1);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 15px;
}

.af-branding p {
  color: #d1d5db;
  line-height: 1.6;
}

.af-title {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #ffffff;
}

.af-company {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: var(--gg-clr-accent-1);
}

.eEL0GxR8sE {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}

.af-social svg {
  transition: transform .3s, opacity .3s;
}

.af-social:hover svg {
  transform: scale(1.2);
  opacity: .8;
}

.af-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: .95em;
  color: #9ca3af;
}

.af-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.af-bottom a:hover {
  color: #28f000;
}

@media(max-width:768px) {
  .af-grid {
    gap: 30px;
  }

  .af-col {
    text-align: center;
  }

  .eEL0GxR8sE {
    justify-content: center;
  }
}