:root {
  --primary: #2A7DE1;
  /* Bright Blue */
  --secondary: #2EC4B6;
  /* Fresh Teal */
  --accent: #FF8C42;
  /* Soft Orange */
  --bg: #F7FAFC;
  --text: #2D3748;
  --white: #FFFFFF;

  --shadow-soft: 0 12px 30px rgba(45, 55, 72, 0.10);
  --shadow-medium: 0 18px 45px rgba(45, 55, 72, 0.16);
  --shadow-strong: 0 24px 60px rgba(45, 55, 72, 0.22);
  --radius-lg: 24px;
  --radius-xl: 30px;
  --transition: 0.35s ease;
}

/* =========================
   GLOBAL
========================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.gdc-container {
  width: min(1240px, 92%);
  margin: auto;
}

/* =========================
   HEADER WRAP
========================== */
.gdc-header-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* =========================
   NAVBAR
========================== */
.gdc-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.gdc-navbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(42, 125, 225, 0.08);
  border-radius: 24px;
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  margin-top: 2%;
}

.gdc-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  min-width: 230px;
}

.gdc-brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  box-shadow: 0 10px 22px rgba(42, 125, 225, 0.22);
}

.gdc-brand-icon::before,
.gdc-brand-icon::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 4px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
}

.gdc-brand-icon::before {
  top: 14px;
}

.gdc-brand-icon::after {
  bottom: 14px;
}

.gdc-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.gdc-brand-text strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}

.gdc-brand-text small {
  font-size: 13px;
  color: #718096;
  letter-spacing: 0.4px;
}

.gdc-nav-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1;
}

.gdc-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.gdc-nav-list li {
  position: relative;
}

.gdc-nav-list a,
.gdc-dropdown-btn {
  color: var(--text);
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 0;
  transition: var(--transition);
}

.gdc-nav-list a:hover,
.gdc-dropdown-btn:hover {
  color: var(--primary);
}

.gdc-caret {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.gdc-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(42, 125, 225, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 20;
}

.gdc-dropdown-menu li a {
  display: block;
  color: var(--text);
  padding: 12px 18px;
}

.gdc-dropdown-menu li a:hover {
  background: rgba(42, 125, 225, 0.06);
  color: var(--primary);
}

.gdc-has-dropdown:hover .gdc-dropdown-menu,
.gdc-has-dropdown.open .gdc-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gdc-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gdc-mini-call {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  padding: 0 6px;
  transition: var(--transition);
}

.gdc-mini-call:hover {
  color: var(--primary);
}

.gdc-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255, 140, 66, 0.25);
  transition: var(--transition);
}

.gdc-main-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 140, 66, 0.30);
}

.gdc-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(42, 125, 225, 0.08);
  border-radius: 14px;
  cursor: pointer;
  padding: 10px;
}

.gdc-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  margin: 6px 0;
}

/* =========================
   HERO
========================== */
.gdc-hero {
  position: relative;
  padding: 140px 0 96px;

  background:
    linear-gradient(to bottom,
      rgba(20, 40, 80, 0.85) 0%,
      rgba(42, 125, 225, 0.65) 40%,
      rgba(42, 125, 225, 0.25) 75%,
      rgba(42, 125, 225, 0.05) 100%),
    url("../garagedoor/garage-bg.webp") center/cover no-repeat;
  background: none;
}

.gdc-header-wrap {
  position: relative;
  background:
    linear-gradient(to bottom,
      rgb(6, 30, 78) 0%,
      rgba(42, 125, 225, 0.79) 64%,
      rgba(42, 125, 225, 0.26) 100%),
    url("../garagedoor/garage-bg.webp") center/cover no-repeat
}

.gdc-header-wrap1 {
  position: relative;
  background:
    linear-gradient(to bottom,
      rgb(6, 30, 78) 0%,
      rgba(42, 125, 225, 0.79) 64%,
      rgba(42, 125, 225, 0.26) 100%),
    url("../garagedoor/install-garage-door.webp") center/cover no-repeat
}

.gdc-hero1 {
  position: relative;
  padding: 140px 0 96px;

  background:
    linear-gradient(to bottom,
      rgba(20, 40, 80, 0.85) 0%,
      rgba(42, 125, 225, 0.65) 40%,
      rgba(42, 125, 225, 0.25) 75%,
      rgba(42, 125, 225, 0.05) 100%),

}




.gdc-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.12), transparent 28%);
  pointer-events: none;
}

.gdc-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.gdc-hero-glow-1 {
  width: 180px;
  height: 180px;
  left: 4%;
  top: 90px;
  background: rgba(255, 255, 255, 0.14);
  animation: gdcFloatGlow 8s ease-in-out infinite;
}

.gdc-hero-glow-2 {
  width: 220px;
  height: 220px;
  right: 6%;
  bottom: 40px;
  background: rgba(255, 255, 255, 0.10);
  animation: gdcFloatGlow 9s ease-in-out infinite reverse;
}

.gdc-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 46px;
}

.gdc-hero-copy {
  color: var(--white);
  max-width: 680px;
}

.gdc-hero-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 22px;
  animation: gdcFadeUp 0.8s ease both;
}

.gdc-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: -1px;
  animation: gdcFadeUp 0.9s ease 0.12s both;
}

.gdc-hero-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  animation: gdcFadeUp 0.9s ease 0.24s both;
}

.gdc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  animation: gdcFadeUp 0.9s ease 0.36s both;
}

.gdc-btn-primary,
.gdc-btn-outline {
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: var(--transition);
}

.gdc-btn-primary {
  background: #ec5c00;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 14px 30px rgba(255, 140, 66, 0.24);
}

.gdc-btn-primary:hover {
  transform: translateY(-2px);
  background: #ff7d2c;
}

.gdc-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.88);
  color: #EC5C00;
  background: rgb(255, 255, 255);
}

.gdc-btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.gdc-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  animation: gdcFadeUp 0.9s ease 0.48s both;
}

.gdc-feature-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

/* =========================
   BEFORE / AFTER
========================== */
.gdc-before-after-wrap {
  position: relative;
  min-height: 560px;
}

.gdc-top-card {
  position: absolute;
  top: 6px;
  left: 30px;
  z-index: 4;
  padding: 12px 18px;
  border-radius: 18px;
  background: var(--white);
  color: #FF8C42;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  animation: gdcFloatCard 4s ease-in-out infinite;
}

.gdc-before-after-box {
  position: absolute;
  inset: 68px 6px 20px 6px;
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  align-items: center;
  gap: 18px;
}

.gdc-photo-card {
  position: relative;
  height: 390px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-strong);
  transition: var(--transition);
}

.gdc-before-card {
  transform: rotate(-3deg);
}

.gdc-after-card {
  transform: rotate(3deg);
}

.gdc-photo-card:hover {
  transform: translateY(-6px) rotate(0deg);
}

.gdc-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gdc-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.gdc-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.gdc-arrow-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gdc-arrow-circle {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(255, 140, 66, 0.30);
  animation: gdcArrowPulse 2.2s ease-in-out infinite;
}

/* =========================
   ANIMATIONS
========================== */
@keyframes gdcFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

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

@keyframes gdcFloatGlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-22px);
  }
}

@keyframes gdcFloatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes gdcArrowPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 36px rgba(255, 140, 66, 0.30);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 20px 44px rgba(255, 140, 66, 0.38);
  }
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 1100px) {
  .gdc-hero-layout {
    grid-template-columns: 1fr;
  }

  .gdc-hero-copy {
    max-width: 100%;
  }

  .gdc-before-after-wrap {
    min-height: 650px;
  }

  .gdc-before-after-box {
    position: relative;
    inset: auto;
    padding-top: 76px;
  }
}

@media (max-width: 991px) {
  .gdc-toggle {
    display: block;
  }

  .gdc-nav-area {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: var(--white);
    border: 1px solid rgba(42, 125, 225, 0.08);
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
  }

  .gdc-nav-area.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .gdc-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .gdc-nav-list li {
    border-bottom: 1px solid rgba(42, 125, 225, 0.08);
  }

  .gdc-nav-list a,
  .gdc-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
  }

  .gdc-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-bottom: 10px;
    border-radius: 16px;
    box-shadow: none;
  }

  .gdc-has-dropdown.open .gdc-dropdown-menu {
    display: block;
  }

  .gdc-nav-right {
    flex-direction: column;
    align-items: stretch;
  }

  .gdc-mini-call,
  .gdc-main-cta {
    justify-content: center;
    text-align: center;
  }

  .gdc-mini-call {
    padding: 14px 18px;
    border: 1px solid rgba(42, 125, 225, 0.10);
    border-radius: 999px;
    background: rgba(42, 125, 225, 0.04);
  }
}

@media (max-width: 767px) {
  .gdc-navbar-shell {
    padding: 12px 14px;
  }

  .gdc-brand {
    min-width: auto;
    max-width: 75%;
  }

  .gdc-brand-text strong {
    font-size: 16px;
  }

  .gdc-brand-text small {
    font-size: 12px;
  }

  .gdc-hero {
    padding: 54px 0 74px;
  }

  .gdc-hero-copy h1 {
    font-size: 34px;
  }

  .gdc-hero-copy p {
    font-size: 16px;
    line-height: 1.8;
  }

  .gdc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gdc-btn-primary,
  .gdc-btn-outline {
    width: 100%;
  }

  .gdc-before-after-wrap {
    min-height: auto;
  }

  .gdc-top-card {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 14px;
    display: inline-flex;
  }

  .gdc-before-after-box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 0;
  }

  .gdc-photo-card,
  .gdc-before-card,
  .gdc-after-card {
    height: 260px;
    transform: none;
  }

  .gdc-arrow-circle {
    width: 64px;
    height: 64px;
    font-size: 28px;
    transform: rotate(90deg);
  }
}

/* _______ */
/* =========================
   INTRO SECTION - UNIQUE STYLE
========================== */
.gdc-intro-section {
  position: relative;
  padding: 110px 0;
  background: #F7FAFC;
  overflow: hidden;
}

.gdc-intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(180deg, rgba(42, 125, 225, 0.05), rgba(46, 196, 182, 0.03));
  pointer-events: none;
}

.gdc-intro-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}

.gdc-mini-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(42, 125, 225, 0.10);
  color: #FF8C42;
  border: 1px solid rgba(42, 125, 225, 0.12);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.gdc-mini-label.light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gdc-intro-content h2 {
  margin: 0 0 20px;
  font-size: 41px;
  line-height: 1.12;
  color: #1A315D;
  font-weight: 900;
  letter-spacing: -0.9px;
  max-width: 720px;
}

.gdc-intro-line {
  width: 120px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, #2A7DE1, #2EC4B6, #FF8C42);
}

.gdc-intro-content p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.95;
  color: #4A5568;
  max-width: 720px;
}

.gdc-intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gdc-intro-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(42, 125, 225, 0.08);
  color: #2D3748;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(45, 55, 72, 0.06);
}

/* Right Side */
.gdc-intro-side {
  position: relative;
}

.gdc-intro-visual {
  position: relative;
  display: block;
  min-height: 470px;
  border-radius: 34px;
  padding: 0;
  background:
    linear-gradient(160deg, rgba(42, 125, 225, 0.96), rgba(46, 196, 182, 0.92));
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(45, 55, 72, 0.18);
  overflow: hidden;
}

.gdc-intro-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: inherit;
  position: relative;
  z-index: 2;
}

.gdc-intro-visual::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.gdc-intro-visual::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: -40px;
  bottom: -40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.gdc-vertical-accent {
  position: absolute;
  top: 34px;
  left: 22px;
  bottom: 34px;
  width: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.gdc-intro-number,
.gdc-intro-text-block,
.gdc-intro-bottom-note {
  position: relative;
  z-index: 2;
}

.gdc-intro-number {
  margin-bottom: 34px;
}

.gdc-intro-number strong {
  display: block;
  font-size: 74px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -2px;
}

.gdc-intro-number small {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.gdc-intro-text-block h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
  max-width: 440px;
}

.gdc-intro-text-block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  max-width: 430px;
}

.gdc-intro-bottom-note {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  max-width: 430px;
}

@media (max-width: 991px) {
  .gdc-intro-section {
    padding: 84px 0;
  }

  .gdc-intro-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gdc-intro-content h2 {
    font-size: 34px;
    max-width: 100%;
  }

  .gdc-intro-content p {
    font-size: 16px;
    line-height: 1.85;
    max-width: 100%;
  }

  .gdc-intro-highlights {
    gap: 10px;
  }

  .gdc-intro-highlights span {
    padding: 10px 14px;
  }

  .gdc-intro-visual {
    min-height: 360px;
    border-radius: 28px;
  }
}

@media (max-width: 767px) {
  .gdc-intro-section {
    padding: 68px 0;
  }

  .gdc-intro-content h2 {
    font-size: 29px;
    line-height: 1.16;
    letter-spacing: -0.5px;
  }

  .gdc-intro-line {
    width: 92px;
    height: 4px;
    margin-bottom: 22px;
  }

  .gdc-intro-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .gdc-intro-highlights {
    gap: 10px;
  }

  .gdc-intro-highlights span {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }

  .gdc-intro-visual {
    min-height: 260px;
    border-radius: 22px;
  }

  .gdc-mini-label {
    font-size: 13px;
    padding: 9px 14px;
  }
}

/* =========================
   WHY CHOOSE US - TIMELINE STYLE
========================== */
.gdc-why-floating {
  position: relative;
  padding: 130px 0;
  background: linear-gradient(135deg, #1f5fb3 0%, #249b90 100%);
  overflow: hidden;
}

/* soft background glow */
.gdc-why-floating::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -100px;
  left: -100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  filter: blur(10px);
}

.gdc-why-floating::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -90px;
  right: -90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(10px);
}

/* center */
.gdc-why-center {
  text-align: center;
  max-width: 760px;
  margin: auto;
  position: relative;
  z-index: 3;
}

.gdc-why-mini {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.gdc-why-center h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 900;
}

.gdc-why-center p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.90);
}

/* floating items */
.gdc-why-float {
  position: absolute;
  max-width: 240px;
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
  z-index: 3;
  animation: floatMove 6s ease-in-out infinite;
}

.gdc-why-float strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}

/* positions */
.gdc-float-1 {
  top: 42px;
  left: 8%;
}

.gdc-float-2 {
  top: 120px;
  right: 6%;
  animation-delay: 1s;
}

.gdc-float-3 {
  bottom: 120px;
  left: 6%;
  animation-delay: 2s;
}

.gdc-float-4 {
  bottom: 42px;
  right: 8%;
  animation-delay: 1.5s;
}

/* network lines */
.gdc-network-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  opacity: 0.7;
  animation: linePulse 4.5s ease-in-out infinite;
  transform-origin: center;
}

.gdc-line-a {
  width: 220px;
  top: 125px;
  left: 23%;
  transform: rotate(18deg);
}

.gdc-line-b {
  width: 250px;
  top: 155px;
  right: 22%;
  transform: rotate(-18deg);
  animation-delay: .8s;
}

.gdc-line-c {
  width: 240px;
  bottom: 150px;
  left: 22%;
  transform: rotate(-15deg);
  animation-delay: 1.2s;
}

.gdc-line-d {
  width: 230px;
  bottom: 120px;
  right: 22%;
  transform: rotate(15deg);
  animation-delay: 1.8s;
}

/* animations */
@keyframes floatMove {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes linePulse {

  0%,
  100% {
    opacity: 0.25;
    filter: blur(0px);
  }

  50% {
    opacity: 0.9;
    filter: blur(.5px);
  }
}

/* responsive */
@media(max-width:991px) {
  .gdc-why-floating {
    padding: 90px 0 70px;
  }

  .gdc-network-line {
    display: none;
  }

  .gdc-why-float {
    position: relative;
    max-width: 100%;
    margin-top: 22px;
    text-align: center;
    animation: none;
  }

  .gdc-float-1,
  .gdc-float-2,
  .gdc-float-3,
  .gdc-float-4 {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
}

@media(max-width:767px) {
  .gdc-why-center h2 {
    font-size: 30px;
  }

  .gdc-why-center p,
  .gdc-why-float p {
    font-size: 16px;
  }
}


.gdc-repair-statement {
  position: relative;
  padding: 110px 0;
  background: #f7fafc6c;
  background-image: url(../garagedoor/bg.webp);
  overflow: hidden;
}

.gdc-repair-statement::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.08);
  filter: blur(10px);
}

.gdc-repair-statement::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.08);
  filter: blur(10px);
}

.gdc-repair-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.gdc-repair-kicker {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(42, 125, 225, 0.10);
  border: 1px solid rgba(42, 125, 225, 0.12);
  color: #FF8C42;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gdc-repair-inner h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
  color: #2D3748;
  font-weight: 900;
  letter-spacing: -0.9px;
}

.gdc-repair-divider {
  margin: 24px auto 28px;
  display: flex;
  justify-content: center;
}

.gdc-repair-divider span {
  width: 130px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2A7DE1, #2EC4B6, #FF8C42);
}

.gdc-repair-lead {
  margin: 0 auto 18px;
  max-width: 860px;
  font-size: 18px;
  line-height: 1.95;
  color: #4A5568;
}

.gdc-repair-text {
  margin: 0 auto;
  max-width: 860px;
  font-size: 17px;
  line-height: 1.95;
  color: #4A5568;
}

.gdc-repair-words {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 16px;
}

.gdc-repair-words span {
  position: relative;
  padding: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #2D3748;
}

.gdc-repair-words span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2A7DE1, #2EC4B6);
  opacity: 0.7;
}

/* decorative lines */
.gdc-repair-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(42, 125, 225, 0.35), transparent);
  z-index: 1;
}

.gdc-repair-line-1 {
  width: 240px;
  top: 120px;
  left: 8%;
  transform: rotate(-12deg);
}

.gdc-repair-line-2 {
  width: 220px;
  right: 10%;
  top: 180px;
  transform: rotate(14deg);
}

.gdc-repair-line-3 {
  width: 260px;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
}

/* responsive */
@media (max-width: 767px) {
  .gdc-repair-statement {
    padding: 78px 0;
  }

  .gdc-repair-inner h2 {
    font-size: 30px;
  }

  .gdc-repair-lead,
  .gdc-repair-text {
    font-size: 16px;
  }

  .gdc-repair-line {
    display: none;
  }
}

.gdc-services-flow {
  position: relative;
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
  background: linear-gradient(135deg, #1f5fb3 0%, #249b90 100%);
}

/* HEADER */
.gdc-services-head {
  text-align: center;
  max-width: 720px;
  margin: auto;
  margin-bottom: 60px;
}

.gdc-services-mini {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(42, 125, 225, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.gdc-services-head h2 {
  margin: 0;
  font-size: 32px;
  line-height: 50px;
  color: #fff;
  font-weight: 900;
}

/* FLOW LINE */
.gdc-flow-line {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(42, 125, 225, 0.3), transparent);
  z-index: 1;
}

/* ROW */
.gdc-services-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  z-index: 2;
}

/* ITEM */
.gdc-service-item {
  max-width: 260px;
  position: relative;
}

/* NUMBER */
.gdc-service-num {
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.58);
  display: block;
  margin-bottom: 10px;
}

/* TEXT */
.gdc-service-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #2D3748;
  font-weight: 800;
}



.gdc-service-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
}

/* HOVER EFFECT */
.gdc-service-item:hover h3 {
  color: #2A7DE1;
}

/* MOBILE */
@media(max-width:991px) {

  .gdc-flow-line {
    display: none;
  }

  .gdc-services-row {
    flex-direction: column;
    gap: 30px;
  }

  .gdc-service-item {
    max-width: 100%;
    text-align: center;
  }

  .gdc-service-num {
    font-size: 48px;
  }
}

@media(max-width:767px) {
  .gdc-services-flow {
    padding: 80px 0;
  }

  .gdc-services-head h2 {
    font-size: 30px;
  }
}

.gdc-install-list {
  position: relative;
  padding: 120px 0;
  background: #F7FAFC;
  overflow: hidden;
}

/* HEADER */
.gdc-install-head {
  max-width: 760px;
  margin-bottom: 60px;
}

.gdc-install-mini {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(42, 125, 225, 0.10);
  border: 1px solid rgba(42, 125, 225, 0.12);
  color: #FF8C42;
  font-size: 14px;
  font-weight: 800;
}

.gdc-install-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  color: #1A315D;
  font-weight: 900;
}

/* LIST ITEMS */
.gdc-install-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ITEM */
.gdc-install-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding-left: 10px;
}

/* NUMBER */
.gdc-install-num {
  font-size: 56px;
  font-weight: 900;
  color: rgba(42, 125, 225, 0.14);
  line-height: 1;
  min-width: 70px;
}

/* CONTENT */
.gdc-install-content {
  position: relative;
  max-width: 720px;
}

/* LAYOUT */
.gdc-install-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* IMAGE SIDE */
.gdc-install-right {
  position: relative;
}

.gdc-install-image-wrap {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}

.gdc-install-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 22px 55px rgba(45, 55, 72, 0.16);
}

.gdc-image-bg-shape {
  position: absolute;
  top: -26px;
  right: -26px;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(135deg, #2A7DE1, #2EC4B6);
  opacity: 0.14;
  z-index: 1;
}

/* FLOATING BADGE */
.gdc-install-badge {
  position: absolute;
  left: -24px;
  bottom: 34px;
  z-index: 3;
  min-width: 220px;
  padding: 18px 22px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(45, 55, 72, 0.14);
  border: 1px solid rgba(42, 125, 225, 0.08);
  animation: gdcBadgeFloat 4s ease-in-out infinite;
}

.gdc-install-badge::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, #2A7DE1, #2EC4B6, #FF8C42);
}

.gdc-install-badge strong {
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  color: #2D3748;
}

.gdc-install-badge span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #4A5568;
}

@keyframes gdcBadgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .gdc-install-layout {
    grid-template-columns: 1fr;
  }

  .gdc-install-image {
    height: 380px;
  }

  .gdc-install-badge {
    left: 18px;
    bottom: 18px;
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .gdc-install-image {
    height: 300px;
  }

  .gdc-install-badge {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 14px;
    width: 100%;
    animation: none;
  }

  .gdc-image-bg-shape {
    top: -14px;
    right: -14px;
  }
}

/* small accent line */
.gdc-install-content::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2A7DE1, #2EC4B6, #FF8C42);
}

/* TITLE */
.gdc-install-content h3 {
  margin: 0 0 10px;
  font-size: 26px;
  color: #2D3748;
  font-weight: 800;
}

/* TEXT */
.gdc-install-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #4A5568;
}

/* subtle hover */
.gdc-install-item:hover h3 {
  color: #2A7DE1;
}

/* background decoration */
.gdc-install-list::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.08);
  filter: blur(10px);
}

.gdc-install-list::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.08);
  filter: blur(10px);
}

/* MOBILE */
@media(max-width:767px) {

  .gdc-install-list {
    padding: 80px 0;
  }

  .gdc-install-head h2 {
    font-size: 30px;
  }

  .gdc-install-item {
    flex-direction: column;
    gap: 12px;
  }

  .gdc-install-num {
    font-size: 42px;
  }

  .gdc-install-content h3 {
    font-size: 22px;
  }

  .gdc-install-content p {
    font-size: 15px;
  }
}


.gdc-trust-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1f5fb3 0%, #249b90 100%);
  overflow: hidden;
}

/* glow */
.gdc-trust-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  left: -80px;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.2);
  filter: blur(40px);
}

.gdc-trust-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -100px;
  right: -80px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.15);
  filter: blur(40px);
}

/* LAYOUT */
.gdc-trust-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* LEFT */
.gdc-trust-main {
  color: #fff;
}

.gdc-trust-mini {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 800;
}

.gdc-trust-main h2 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 900;
}

.gdc-trust-main p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

/* RIGHT (HIGHLIGHT STYLE) */
.gdc-trust-highlight {
  position: relative;
  padding-left: 40px;
  color: #fff;
}

/* accent vertical line */
.gdc-trust-accent-line {
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2A7DE1, #2EC4B6, #FF8C42);
}

.gdc-trust-highlight p {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* subtle motion */
.gdc-trust-highlight {
  animation: gdcFloatSoft 6s ease-in-out infinite;
}

@keyframes gdcFloatSoft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* RESPONSIVE */
@media(max-width:991px) {
  .gdc-trust-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gdc-trust-highlight {
    padding-left: 30px;
  }
}

@media(max-width:767px) {
  .gdc-trust-section {
    padding: 80px 0;
  }

  .gdc-trust-main h2 {
    font-size: 30px;
  }

  .gdc-trust-main p,
  .gdc-trust-highlight p {
    font-size: 16px;
  }
}


.gdc-gallery-balanced {
  padding: 110px 0;
  background: #F7FAFC;
}

/* HEADER */
.gdc-gallery-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.gdc-gallery-mini {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(42, 125, 225, 0.10);
  color: #FF8C42;
  font-weight: 800;
}

.gdc-gallery-head h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #1A315D;
}

/* TOP */
.gdc-gallery-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

/* BOTTOM */
.gdc-gallery-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gdc-gallery-bottom .gdc-gallery-card:nth-child(1) {
  grid-column: 1 / 2;
}


.gdc-gallery-bottom .gdc-gallery-card:nth-child(2) {
  grid-column: 2 / 4;
}

/* CARD */
.gdc-gallery-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gdc-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* overlay */
.gdc-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

/* hover */
.gdc-gallery-card:hover img {
  transform: scale(1.08);
}



/* RESPONSIVE */
@media(max-width:991px) {

  .gdc-gallery-top {
    grid-template-columns: 1fr 1fr;
  }

  .gdc-gallery-bottom {
    flex-direction: column;
    align-items: center;
  }

  .gdc-gallery-bottom .gdc-gallery-card {
    width: 100%;
    max-width: 500px;
  }

}

@media(max-width:767px) {

  .gdc-gallery-top {
    grid-template-columns: 1fr;
  }

  .gdc-gallery-balanced {
    padding: 80px 0;
  }

}


.gdc-install-diagonal {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #1f5fb3 0%, #249b90 100%);
  overflow: hidden;
  min-height: 640px;
}

/* IMAGE SIDE */
.gdc-install-diagonal-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 46%;
  height: 100%;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.gdc-install-diagonal-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left,
      rgba(31, 45, 61, 0.12),
      rgba(31, 45, 61, 0.58));
}

.gdc-install-diagonal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.gdc-install-diagonal-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #fff;
}

.gdc-install-diagonal-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gdc-install-diagonal-content h2 {
  margin: 0 0 20px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.9px;
}

.gdc-install-diagonal-lead {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}

.gdc-install-diagonal-content p:last-child {
  margin: 0;
  font-size: 17px;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.84);
}

/* Decorative Lines */
.gdc-install-diagonal-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  z-index: 2;
}

.gdc-install-diagonal-line-1 {
  width: 220px;
  top: 90px;
  left: 8%;
  transform: rotate(-12deg);
}

.gdc-install-diagonal-line-2 {
  width: 180px;
  bottom: 80px;
  left: 18%;
  transform: rotate(10deg);
}

/* Responsive */
@media (max-width: 991px) {
  .gdc-install-diagonal {
    min-height: auto;
    padding: 80px 0;
  }

  .gdc-install-diagonal-image {
    position: relative;
    width: 100%;
    height: 300px;
    clip-path: none;
    margin-bottom: 30px;
  }

  .gdc-install-diagonal-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .gdc-install-diagonal-content h2 {
    font-size: 30px;
  }

  .gdc-install-diagonal-lead,
  .gdc-install-diagonal-content p:last-child {
    font-size: 16px;
  }

  .gdc-install-diagonal-line {
    display: none;
  }

  .gdc-install-diagonal-image {
    height: 240px;
  }
}

.gdc-reviews-box {
  padding: 110px 0;
  background: linear-gradient(135deg, #eef6ff 0%, #f7fafc 100%);
}

/* header */
.gdc-reviews-head {
  text-align: center;
  margin-bottom: 50px;
}

.gdc-reviews-mini {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(42, 125, 225, 0.10);
  color: #FF8C42;
  font-weight: 800;
  font-size: 13px;
}

.gdc-reviews-head h2 {
  font-size: 34px;
  font-weight: 900;
  color: #1A315D;
}

/* TOP */
.gdc-review-top {
  margin-bottom: 30px;
}

.gdc-review-main {
  padding: 36px;
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(45, 55, 72, 0.10);
}

/* BOTTOM */
.gdc-review-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.gdc-review-card {
  position: relative;
  padding: 28px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(45, 55, 72, 0.08);
  transition: 0.3s ease;
}

.gdc-review-card:hover {
  transform: translateY(-6px);
}

/* stars */
.gdc-review-stars {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 3px;
  color: #FF8C42;
}

/* quote */
.gdc-review-quote {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 70px;
  color: rgba(42, 125, 225, 0.08);
}

/* text */
.gdc-review-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.9;
  color: #4A5568;
}

.gdc-review-card h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #2D3748;
}

.gdc-review-card span {
  font-size: 14px;
  color: #718096;
}

/* responsive */
@media(max-width:991px) {
  .gdc-review-bottom {
    grid-template-columns: 1fr;
  }
}

@media(max-width:767px) {
  .gdc-reviews-box {
    padding: 80px 0;
  }
}

.gdc-service-area-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #249b90 0%, #1f5fb3 100%);
  overflow: hidden;
}

.gdc-service-area-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -100px;
  left: -90px;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.08);
  filter: blur(14px);
}

.gdc-service-area-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -80px;
  right: -70px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.08);
  filter: blur(14px);
}

.gdc-service-area-head {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.gdc-service-area-mini {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(42, 125, 225, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.gdc-service-area-head h2 {
  margin: 0 0 16px;
  font-size: 34px;
  line-height: 1.15;
  color: #fff;
  font-weight: 900;
}

.gdc-service-area-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #fff;
}

.gdc-service-area-wrap {
  position: relative;
  z-index: 2;
}

.gdc-service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1100px;
  margin: auto;
}

.gdc-service-area-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(42, 125, 225, 0.10);
  box-shadow: 0 12px 28px rgba(45, 55, 72, 0.06);
  color: #2D3748;
  font-size: 15px;
  font-weight: 700;
  transition: 0.35s ease;
}

.gdc-service-area-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #2A7DE1 0%, #2EC4B6 100%);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(42, 125, 225, 0.16);
}

@media (max-width: 767px) {
  .gdc-service-area-section {
    padding: 80px 0;
  }

  .gdc-service-area-head h2 {
    font-size: 30px;
  }

  .gdc-service-area-head p {
    font-size: 16px;
  }

  .gdc-service-area-list {
    gap: 12px;
  }

  .gdc-service-area-item {
    width: 100%;
    max-width: 320px;
  }
}

/* =========================
   CONTACT SECTION
========================== */
.gdc-contact-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.gdc-contact-section::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -120px;
  left: -100px;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.08);
  filter: blur(14px);
}

.gdc-contact-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.08);
  filter: blur(14px);
}

.gdc-contact-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

.gdc-contact-form-side,
.gdc-contact-map-side {
  position: relative;
}

.gdc-contact-form-side {
  padding: 36px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(45, 55, 72, 0.08);
  border: 1px solid rgba(42, 125, 225, 0.08);
}

.gdc-contact-mini {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(42, 125, 225, 0.10);
  color: #fe7c34;
  border: 1px solid rgba(42, 125, 225, 0.12);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
}

.gdc-contact-form-side h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.15;
  color: #1A315D;
  font-weight: 900;
}

.gdc-contact-form-side>p {
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.9;
  color: #4A5568;
}

.gdc-contact-form {
  margin-top: 8px;
}

.gdc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gdc-form-group {
  position: relative;
}

.gdc-full {
  grid-column: 1 / -1;
}

.gdc-contact-form input,
.gdc-contact-form select,
.gdc-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(42, 125, 225, 0.12);
  background: #f7fafc;
  border-radius: 18px;
  padding: 16px 16px;
  font-size: 15px;
  color: #2D3748;
  outline: none;
  transition: 0.3s ease;
}

.gdc-contact-form input:focus,
.gdc-contact-form select:focus,
.gdc-contact-form textarea:focus {
  border-color: #2A7DE1;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(42, 125, 225, 0.08);
}

.gdc-contact-btn {
  margin-top: 18px;
  min-height: 54px;
  padding: 0 28px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2A7DE1, #2EC4B6);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(42, 125, 225, 0.18);
  transition: 0.35s ease;
}

.gdc-contact-btn:hover {
  transform: translateY(-2px);
}

.gdc-map-card {
  padding: 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2A7DE1 0%, #2EC4B6 100%);
  box-shadow: 0 22px 50px rgba(45, 55, 72, 0.12);
  color: #ffffff;
}

.gdc-map-top {
  margin-bottom: 18px;
}

.gdc-map-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.gdc-map-top h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
}

.gdc-map-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 18px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}

.gdc-map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.gdc-map-note {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
}

/* =========================
   FOOTER
========================== */
.gdc-footer {
  position: relative;
  padding: 80px 0 26px;
  background: linear-gradient(135deg, #1b325e 0%, #4D7AB7 100%);
  color: #ffffff;
  overflow: hidden;
}

.gdc-footer::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -120px;
  left: -100px;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.18);
  filter: blur(40px);
}

.gdc-footer::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.14);
  filter: blur(40px);
}

.gdc-footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.gdc-footer-brand h2 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.gdc-footer-brand p {
  margin: 0 0 22px;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.84);
}

.gdc-footer-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: #FF8C42;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(255, 140, 66, 0.20);
  transition: 0.35s ease;
}

.gdc-footer-call:hover {
  transform: translateY(-2px);
}

.gdc-footer-info-grid {
  display: grid;
  grid-template-columns: var(--gdc-footer-info-left, 1fr) var(--gdc-footer-info-right, 1.1fr);
  gap: 22px;
}

.gdc-footer-col {
  min-width: 0;
}

.gdc-footer-col h3,
.gdc-footer-pages h3 {
  margin: 0 0 14px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 800;
}

.gdc-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gdc-footer-col li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.gdc-footer-col a {
  color: rgba(255, 255, 255, 0.92);
}

.gdc-footer-middle {
  position: relative;
  z-index: 2;
  padding: 30px 0 18px;
}

.gdc-footer-pages {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: start;
}

.gdc-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.gdc-footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 700;
  transition: 0.3s ease;
}

.gdc-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: linear-gradient(90deg, #2A7DE1, #2EC4B6, #FF8C42);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
}

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

.gdc-footer-links a:hover::after {
  transform: scaleX(1);
}

.gdc-footer-bottom {
  position: relative;
  z-index: 2;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.gdc-footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.70);
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 991px) {

  .gdc-contact-wrap,
  .gdc-footer-top {
    grid-template-columns: 1fr;
  }

  .gdc-footer-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gdc-footer-pages {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .gdc-contact-section {
    padding: 80px 0;
  }

  .gdc-contact-wrap {
    gap: 24px;
  }

  .gdc-contact-form-side {
    padding: 24px 20px;
  }

  .gdc-form-grid {
    grid-template-columns: 1fr;
  }

  .gdc-full {
    grid-column: auto;
  }

  .gdc-map-card {
    padding: 20px;
  }

  .gdc-map-top h3 {
    font-size: 24px;
  }

  .gdc-map-frame iframe {
    height: 280px;
  }

  .gdc-footer {
    padding: 70px 0 24px;
  }

  .gdc-footer-brand h2 {
    font-size: 28px;
  }

  .gdc-footer-info-grid {
    grid-template-columns: 1fr;
  }
}

.form-control {
  font-family: inherit;
  font-size: 1rem;
}

form.CUS input.subject {
  display: none
}

input {
  width: 48%;
  padding: 1%;
  margin: 1%;
  height: 40px;
  float: left;
  color: #000000;
  font-size: 14px;
  box-shadow: 3px 1px 8px #0000005e;
  background: rgba(255, 255, 255, .08);
  border-radius: 9px;
  font-weight: bold
}

.service-btn {
  width: 144px;
  margin: 7px;
  font-size: 15px;
  padding: 10px;
  cursor: text;
  margin-top: 0
}

.btn1 {
  color: #fff;
  font-size: 12px;
  border-radius: 0;
  float: left;
  border: 1px solid;
  border-radius: 7px;
  text-align: center
}

.btn1 a {
  color: #fff
}

.btn1:hover {
  background-color: #fe7c34;
  color: #fff
}



.gdc-faq-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  overflow: hidden;
}

.gdc-faq-section::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -100px;
  left: -90px;
  border-radius: 50%;
  background: rgba(42, 125, 225, 0.08);
  filter: blur(14px);
}

.gdc-faq-section::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  bottom: -80px;
  right: -70px;
  border-radius: 50%;
  background: rgba(46, 196, 182, 0.08);
  filter: blur(14px);
}

.gdc-faq-head {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 50px;
}

.gdc-faq-mini {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(42, 125, 225, 0.10);
  border: 1px solid rgba(42, 125, 225, 0.12);
  color: #2A7DE1;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.gdc-faq-head h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: #1A315D;
  font-weight: 900;
}

.gdc-faq-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #4A5568;
}

.gdc-faq-accordion {
  position: relative;
  z-index: 2;
}

.gdc-faq-item {
  border: none;
  background: transparent;
  margin-bottom: 16px;
  border-radius: 22px !important;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(45, 55, 72, 0.07);
}

.gdc-faq-button {
  background: #ffffff;
  color: #2D3748;
  font-size: 18px;
  font-weight: 800;
  padding: 22px 24px;
  box-shadow: none !important;
  border: 1px solid rgba(42, 125, 225, 0.08);
}

.gdc-faq-button:not(.collapsed) {
  color: #1A315D;
  background: #ffffff;
}

.gdc-faq-button:focus {
  box-shadow: none;
  border-color: rgba(42, 125, 225, 0.12);
}

.gdc-faq-button::after {
  background-size: 18px;
}

.gdc-faq-body {
  background: #ffffff;
  border: 1px solid rgba(42, 125, 225, 0.08);
  border-top: none;
  color: #4A5568;
  font-size: 16px;
  line-height: 1.9;
  padding: 0 24px 22px;
}

@media (max-width: 767px) {
  .gdc-faq-section {
    padding: 80px 0;
  }

  .gdc-faq-head h2 {
    font-size: 30px;
  }

  .gdc-faq-head p,
  .gdc-faq-body {
    font-size: 16px;
  }

  .gdc-faq-button {
    font-size: 16px;
    padding: 18px 18px;
  }

  .gdc-faq-body {
    padding: 0 18px 18px;
  }
}