:root {
    --primary: #2563eb; /* blue */
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --main: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

section {
    padding: 3rem 2rem;
    max-width: 1100px;
    margin: auto;
}

section p{
    text-align: center;
}

.headings, .intro-text{
    text-align: center;
}

/* HEADER */
header {
  background: var(--light);
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 999;
}

header .logo {
  width: 150px;
}

.logo img {
  width: 100%;
}

/* NAV LINKS */
.nav-links a {
  color: var(--dark);
  margin-left: 1.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary);
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* SIDEBAR */
.sidebar {
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100vh;
  background: var(--light);
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar a {
  color: var(--dark);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
}

.sidebar a:hover {
  color: var(--primary);
}

/* ACTIVE SIDEBAR */
.sidebar.active {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sidebar-header img {
  width: 130px;
}

/* CLOSE BUTTON */
.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
}

/* OPTIONAL: CLICK OUTSIDE OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 900;
}

.overlay.active {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  header {
    padding: 1rem 1.5rem;
  }
}


.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 70px;
  min-height: 88vh;
  padding: 2rem 4rem;
  gap: 2rem;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.5),
    rgba(38, 114, 228, 0.326),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5)
  );
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: var(--dark);
}

.hero h2 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero p {
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  min-width: 50%;
  max-width: 50%;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* BUTTON */
.btn {
  background: var(--primary);
  color: var(--main);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.btn:hover {
    opacity: 0.8;
}

/* TABLET */
@media (max-width: 992px) {
  .hero-container {
    padding: 2rem;
  }

  .hero h2 {
    font-size: 2.2rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
    min-height: auto;
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5),
    rgba(38, 114, 228, 0.326),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5)
    );

  }

  .hero {
    text-align: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero h2 {
    font-size: 2rem;
  }
}

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

  .hero-container{
    background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.5),
    rgba(38, 114, 228, 0.326),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.5)
  );
  }  

  .hero h2 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.95rem;
  }
}


.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-align: center;
}

/* WHY CHOOSE US */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.feature {
    background: var(--card);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    text-align: center;
    border-bottom: 4px solid var(--primary);
    transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature span {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature p {
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-info a {
    text-decoration: none;
}

footer {
    background: var(--dark);
    color: var(--gray);
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

footer {
  background: var(--dark);
  color: #fff;
  padding: 1.5rem 1.5rem;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.footer-contact{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
  width: 150px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-weight: 100;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 0.95rem;
  text-align: left;
  color: var(--card);
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

footer .copyright-container{
    margin-top: 2.5rem;
}

footer .copyright-container p {
    font-size: 0.8rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .links-container {
    flex-direction: row;
    gap: 1.5rem;
  }

  .footer-contact{
    align-items: center;
  }

  .footer-contact p {
    font-size: 0.9rem;
  }

  footer .copyright-container{
    margin-top: 1.5rem;
}
}




:root {
    --primary: #0a58ca; /* blue */
    --dark: #0f172a;
    --light: #f8fafc;
    --muted: #64748b;
    --card: #ffffff;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

section {
    padding: 4rem 1.5rem;
}

.container {
    max-width: 1100px;
    margin: auto;
}

h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 650px;
    margin: 0 auto 3rem;
}



/* HOW IT WORKS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.step h4 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--primary), #2563eb);
    color: #fff;
    text-align: center;
    border-radius: 24px;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.cta a {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

@media (max-width: 600px) {
    h2 { font-size: 1.6rem; }
    section { padding: 3rem 1.25rem; }
}


/****** sidebar *******/

/* SIDEBAR HEADER */
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.sidebar-header img {
  width: 130px;
}

/* CLOSE BUTTON */
.close-btn {
  font-size: 1.5rem;
  cursor: pointer;
  font-weight: bold;
}

/* OPTIONAL: CLICK OUTSIDE OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 900;
}

.overlay.active {
  display: block;
}
