:root {
  /* Brand Colors */
  --color-primary: #0073C7;
  --color-primary-dark: #005a9d;
  --color-secondary: #009BD5;
  --color-accent: #FCCB06;

  /* Neutrals */
  --color-black: #000000;
  --color-dark: #222E50;
  --color-light: #EDF7F6;
  --color-white: #ffffff;

  /* Backgrounds */
  --bg-body: var(--color-light);
  --bg-header: var(--color-white);
  --bg-footer: var(--color-dark);

  /* Text Colors */
  --text-dark: var(--color-dark);
  --text-light: var(--color-white);
  --text-muted: #6c757d;

  /* Borders */
  --border-radius: 0.5rem;

  /* Shadows */
  --shadow-soft: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  /* font-family: 'Poppins', sans-serif; */


}


.Quote {
  justify-content: center;         /* center horizontally */
  align-items: center;             /* center vertically */
  font-size: 1.4rem;
  padding: 1rem;
  border-radius: 5px;
  background: #0073C7;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
  font-family: "Lato", "Helvetica", sans-serif;
  
}



/* Base fade-in (bottom) */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* Left */
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

/* Right */
.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}


html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Lato", "Helvetica", sans-serif;
  background: var(--bg-body);
  color: var(--text-dark);
  overflow-x: hidden;

}

.main-wrapper {
  max-width: 1400px;   /* Keeps content readable */
  margin: 0 auto;      /* Centers it */
  padding: 0 1.5rem;   /* Small padding for mobile screens */
}



/*  */

/* Base scaling: 1rem = 10px */
html {
  font-size: 62.5%;
}

/* Paragraphs */
p {
  font-size: clamp(1.2rem, 1.2rem + 0.3vw, 1.4rem); /* 14px → 16px */
  line-height: 1.8;
  margin-bottom: 1.6rem;
  color: #333;
}

/* Headings */
h1 {
  font-size: clamp(2.8rem, 2rem + 2vw, 4.2rem); /* 28px → 42px */
  line-height: 1.2;
  margin-bottom: 1.6rem;
  font-weight: 700;
}

h2 {
  font-size: clamp(2.4rem, 1.8rem + 1vw, 3rem); /* 24px → 32px */
  line-height: 1.3;
  margin-bottom: 1.4rem;
  font-weight: 600;
}

h3 {
  font-size: clamp(2rem, 1.6rem + 0.8vw, 2.6rem); /* 20px → 26px */
  line-height: 1.3;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.8rem, 1.4rem + 0.5vw, 2.2rem); /* 18px → 22px */
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 600;
}

h5 {
  font-size: clamp(1.6rem, 1.2rem + 0.4vw, 2rem); /* 16px → 20px */
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

h6 {
  font-size: clamp(1.4rem, 1.1rem + 0.3vw, 1.8rem); /* 14px → 18px */
  line-height: 1.5;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.dropdown-toggle i {
  display: none;
}

/* Footer */
footer {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: var(--color-light);
}

footer a{
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  color: var(--color-light);
  text-decoration: none;
  line-height: 1.6;
}



/* Headings */
/* h1, h2, h3, h4, h5, h6 {
font-family: "Poppins", sans-serif;
font-weight: 700;
line-height: 1.2;
color: var(--text-dark);
}

h1 { font-size: 3.8rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.4rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.6rem; }
h6 { font-size: 1.4rem; }

p {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--color-black);
} */

/* Links */

.Hero-button {
  text-align: left;
  padding-left: 5rem;
  
}

.button {
  display: inline-block;            /* lets us center text */
  justify-content: center;         /* center horizontally */
  align-items: center;             /* center vertically */
  font-size: 1.4rem;
  padding: 1rem 2rem;
  /* border-radius: 5px; */
  border: 5px solid var(--color-accent);
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button:hover {
  border-color: white;
  color: var(--color-accent);
}




/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: var(--bg-header);
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.logo img {
  max-width: 250px;
  width: 100%;
  height: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
    font-size: 1.6rem;
  color: var(--text-dark);
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--color-accent);
}

/* Social Icons */
.social-icons a {
  color: var(--text-dark);
  margin-left: 1.2rem;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 999;
}

.quote {
  background-color: var(--color-primary);
}
/* Footer */
footer {
  background-color: var(--color-primary);
  color: var(--text-light);
  padding: 4rem 6rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  align-items: start;
}

.footer-col h4 {
  margin-bottom: 1.5rem;
  color: var(--color-light);
}

.footer-col p {
  margin: 0.5rem 0;
  line-height: 1.3;
  font-size: 1.4rem;
  color: var(--color-light);
}

.footer-col a {
  display: block;
  color: var(--text-light);
  /* margin-bottom: 0.8rem; */
  transition: 0.3s;
  /* font-size: 1.4rem; */
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-accent);
}

.footer-col img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-bottom p {
  margin-top: 2rem;
  text-align: left;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-light);
}

.footer-note {
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-light);
}

/* Make first column wider on desktop */
@media (min-width: 900px) {
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-col:first-child {
    margin-right: 3rem; /* only applied on large screens */
  }
}

/* Responsive adjustments */


/* Responsive */
@media (max-width: 1180px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-header);
    width: 100%;
    border: 1px solid #eee;
    padding: 2rem;
    z-index: 1000;
     max-height: 0;
    overflow: hidden;

    /* Smooth transition */
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
   /* When toggled open */
  .nav-links.show {
    max-height: 500px; /* big enough to show all links */
    padding: 1rem;
  }
  
  .nav-links.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .social-icons {
    display: none;
  }
  .quote {
    display: none;
  }
}
@media (max-width: 768px) {

  footer {
    padding: 3rem 2rem;
  }

  .footer-container {
     grid-template-columns:  2fr 2fr; /* 3 columns */
    text-align: left;
  }

  .footer-col img {
    margin: 0 auto 1.5rem;
  }

  .logo img {
  max-width: 250px;
  width: 60%;
  height: auto;
}


}
