html {
  scroll-behavior: smooth;
}

:root {
  --red: #e74c3c;
  --blue: #3498db;
  --green: #27ae60;
  --bg1: #f9f9fb;
  --bg2: #ffffff;
  --glass: rgba(0, 0, 0, 0.04);
  --glass-strong: rgba(0, 0, 0, 0.08);
  --card: #ffffff;
  --text: #2c3e50;
  --muted: #7f8c8d;
  --ring-size: 170px;
}

/* Regular */
@font-face {
  font-family: "Gotham Pro";
  src: url("/GothamPro/gothampro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Bold */
@font-face {
  font-family: "Gotham Pro";
  src: url("/GothamPro/gothampro_bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Italic */
@font-face {
  font-family: "Gotham Pro";
  src: url("/GothamPro/gothampro_italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

/* Bold Italic */
@font-face {
  font-family: "Gotham Pro";
  src: url("/GothamPro/gothampro_bolditalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

/* Light */
@font-face {
  font-family: "Gotham Pro";
  src: url("/GothamPro/gothampro_light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

/* Medium */
@font-face {
  font-family: "Gotham Pro";
  src: url("/GothamPro/gothampro_medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Black */
@font-face {
  font-family: "Gotham Pro";
  src: url("fonts/GothamPro/gothampro_black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--text);
  /* background: radial-gradient(60% 90% at 20% 10%, #e3ebff 0%, transparent 55%),
    radial-gradient(60% 90% at 90% 10%, #f5f9ff 0%, transparent 55%),
    radial-gradient(80% 120% at 50% 100%, #ffffff 0%, #eef2f9 80%); */
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2 {
  font-family: "Gotham Pro", sans-serif;
  font-weight: 300 !important;
}

p,
ul,
ol {
  font-family: "Montserrat", sans-serif;
}

.text-center {
  text-align: center;
}

.border_line {
  height: 3px;
  background: linear-gradient(310deg, #74b9ff, #e74c3c);
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .mobile_gap {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.btn {
  font-size: 18px;
  cursor: pointer;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: white;
  background: linear-gradient(135deg, var(--red), #ff8a7a);
  box-shadow: 0 6px 18px rgba(231, 76, 60, 0.25);
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}
.btn.blue {
  background: linear-gradient(135deg, var(--blue), #74b9ff);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.25);
}
.btn.green {
  background: linear-gradient(135deg, var(--green), #77f2a8);
  box-shadow: 0 6px 18px rgba(39, 174, 96, 0.25);
}
.btn:hover {
  transform: translateY(-2px);
}

/* Header */
.header_section {
  background: radial-gradient(60% 90% at 20% 10%, #e3ebff 0%, transparent 55%),
    radial-gradient(60% 90% at 90% 10%, #f5f9ff 0%, transparent 55%),
    radial-gradient(80% 120% at 50% 100%, #ffffff 0%, #eef2f9 80%);
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo_img {
  max-width: 250px;
  width: 100%;
}
.nav-links {
  font-size: 16px;
  display: flex;
  gap: 20px;
}
.nav-links a {
  font-weight: 400;
}
.header-right {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-primary {
  background: #f63d4a;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
}
.menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease-in-out;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  z-index: 111;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu .close-btn {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
}
.mobile-menu a {
  display: block;
  font-weight: 500;
}
.mobile-menu a i {
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 1050px) {
  .mobile_hide {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header {
    padding: 12px 15px;
  }
}

/* footer_section */

.footer {
  position: relative;
  padding: 70px 0px 20px;
  color: var(--muted);
  background: radial-gradient(60% 90% at 20% 10%, #e3ebff 0%, transparent 55%),
    radial-gradient(60% 90% at 90% 10%, #f5f9ff 0%, transparent 55%),
    radial-gradient(80% 120% at 50% 100%, #ffffff 0%, #eef2f9 80%);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}

.footer-logo-social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-col {
  /* background: var(--glass); */
  background-color: white;
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-col:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.footer-col h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-col h4 {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin: 8px 0;
  cursor: pointer;
  transition: color 0.2s;
  color: var(--muted);
}

.footer-col li:hover {
  color: var(--blue);
}

.footer-platforms {
  display: none;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 25px 0;
  margin-top: 40px;
}

.platform-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 1rem;
}

.platform-icons i {
  margin-right: 6px;
  color: var(--blue);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 10px;
}

.social-icons {
  margin-bottom: 15px;
}

.social-icons i {
  margin: 0 10px;
  cursor: pointer;
  transition: color 0.3s, transform 0.3s;
  font-size: 1.2rem;
  color: var(--blue);
}

.social-icons i:hover {
  color: var(--text);
  transform: scale(1.15);
}

.footer-links {
  display: none;
  margin-top: 12px;
}

.footer-links a {
  color: var(--muted);
  margin: 0 8px;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--blue);
  text-decoration: underline;
}

.footer-list ul {
  list-style: none;
  display: flex;
  gap: 20px;
  color: var(--blue);
}

.footer-list ul li {
  margin: 8px 0;
  cursor: pointer;
  transition: all 0.2s linear;
  color: var(--blue);
  font-size: 18px;
}

.footer-list ul li:hover {
  font-size: 20px;
}

/* Responsive */

@media (max-width: 1250px) {
  .footer {
    padding: 70px 20px 20px;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .platform-icons {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 425px) {
  .footer-list {
    margin: 10px 0px;
  }

  .footer-list ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--blue);
  }

  .footer-list ul li {
    margin: 0px 0;
    cursor: pointer;
    transition: all 0.2s linear;
    color: var(--blue);
    font-size: 16px;
  }

  .footer-list ul li:hover {
    font-size: 18px;
  }
}
