@charset "UTF-8";
:root {
  --themeprimaryclr: #FF671F;
  --themesecondaryclr: #FF8C4B;
  --themethirdclr: #1E3A5F;
  --themehovertwo: #2a4a7a;
  --themehoverclr: #E55A1E;
  --plainclr: #FFFFFF;
  --lightbg: #F8F9FA;
  --borderclr: #e0e0e0;
  --light-gray: #E9ECEF;
  --medium-gray: #ADB5BD;
  --dark-gray: #495057;
  --darkclr: #212529;
  --text-light: #6C757D;
  --greenclr: #25D366;
  --redclr: #DC3545;
  --shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow1: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow2: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow3: 0 12px 24px rgba(0, 0, 0, 0.12);
  --primaryfont: "Inter", sans-serif;
  --secondaryfont: "Merriweather", serif;
}

body {
  font-family: var(--primaryfont);
  color: var(--darkclr);
  background-color: var(--lightbg);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
}

p {
  margin-bottom: 0;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

section {
  padding: 5rem 0;
}

.btn-theme-one {
  background: linear-gradient(to right, var(--themeprimaryclr), var(--themesecondaryclr));
  color: var(--plainclr);
  padding: 8px 20px;
  font-size: 1.05rem;
  border-radius: 8px;
  font-family: var(--primaryfont);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-theme-one:hover {
  background: linear-gradient(to right, var(--themehoverclr), var(--themeprimaryclr));
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.btn-theme-one:active {
  background: linear-gradient(to right, var(--themehoverclr), var(--themeprimaryclr));
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.btn-theme-two {
  background-color: var(--themethirdclr);
  color: var(--plainclr);
  padding: 8px 20px;
  font-size: 1.05rem;
  font-family: var(--primaryfont);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none;
}

.btn-theme-two:hover {
  background-color: var(--themehovertwo);
  transform: translateY(-2px);
  box-shadow: var(--shadow1);
}

.btn-theme-two:active {
  background-color: var(--themehovertwo);
  transform: translateY(-2px);
  box-shadow: var(--shadow1);
}

.btn-theme-three {
  background-color: var(--greenclr);
  color: var(--plainclr);
  padding: 8px 20px;
  font-size: 1.05rem;
  font-family: var(--primaryfont);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none;
}

.btn-theme-three:hover {
  background-color: #1da851;
  color: var(--plainclr);
  transform: translateY(-2px);
  box-shadow: var(--shadow1);
}

.btn-theme-three:active {
  background-color: #1da851;
  color: var(--plainclr);
  transform: translateY(-2px);
  box-shadow: var(--shadow1);
}

.btn-theme-outline {
  background-color: transparent;
  color: var(--themethirdclr);
  padding: 8px 20px;
  border: 2px solid var(--themethirdclr);
  font-size: 1.05rem;
  font-family: var(--primaryfont);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  text-decoration: none;
}

.btn-theme-outline:hover {
  background-color: var(--themethirdclr);
  color: var(--plainclr);
  transform: translateY(-2px);
}

.btn-theme-outline:active {
  background-color: var(--themethirdclr);
  color: var(--plainclr);
  transform: translateY(-2px);
}

.sub-heading {
  font-family: var(--secondaryfont);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--themethirdclr);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.sub-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--themeprimaryclr), var(--themesecondaryclr));
  border-radius: 2px;
}

.glassy-hover {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.45s ease, box-shadow 0.45s ease, background 0.45s ease;
}

/* 🌫️ Elegant Light Flow (Right → Left) */
.glassy-hover::after {
  content: "";
  position: absolute;
  top: 0;
  right: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-15deg);
  transition: right 0.8s ease;
  pointer-events: none;
}

/* ✨ Hover State */
.glassy-hover:hover {
  background: linear-gradient(135deg, rgba(255, 103, 31, 0.18), rgba(255, 140, 75, 0.18));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
}

/* ➡️➡️ Light Moves Right → Left */
.glassy-hover:hover::after {
  right: 120%;
}

@media (max-width: 992px) {
  .sub-heading {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  .btn-theme-one {
    font-size: 0.9rem !important;
  }
  p {
    font-size: 0.9rem !important;
  }
  .sub-heading {
    font-size: 2rem;
  }
  .section-header {
    text-align: center;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  section {
    padding: 2rem 0;
  }
  .sub-heading {
    font-size: 1.3rem;
  }
}/*# sourceMappingURL=color-and-common.css.map */