
:root {
    --deep-blue: #06273A;
    --bright-blue: #1D67CD;
    --muted-blue: #28425F;
    --light-cream: #FFF9EC;
  }

/* Footer Container */
.footer {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  color: var(--light-cream);
  padding: 3rem 3rem; /* Horizontal padding for space on sides */
  border-top: 5px solid var(--bright-blue);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  flex-wrap: wrap; /* Ensures the footer is responsive */
  cursor: pointer;
}

/* Quick Links Section */
.footer .quick-links {
  flex: 1;
  min-width: 250px;
  margin-right: 2rem;
}

.footer .quick-links h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bright-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer .quick-links ul {
  list-style: none;
  padding: 0;
}

.footer .quick-links ul li {
  margin: 0.75rem 0;
}

.footer .quick-links ul li a {
  color: #111;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer .quick-links ul li a:hover {
  color: var(--bright-blue);
  padding-left: 8px;
}

/* Address & Contact Section */
.footer .address-contact {
  flex: 1;
  min-width: 250px;
}

.footer .address-contact .address,
.footer .address-contact .contact {
  margin-bottom: 1.5rem;
}

.footer .address-contact h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bright-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}


.footer .address-contact p {
  font-size: 1rem;
  margin: 0.5rem 0;
  line-height: 1.5;
  color: #111;
}

.footer .address-contact a {
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: 600;
}

.footer .address-contact a:hover {
  text-decoration: underline;
}

/* Social Media Section */
.footer .social-media {
  flex: 1;
  min-width: 250px;
  
}

.footer .social-media h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--bright-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}



.footer .social-icons {
  display: flex;
  gap: 1.5rem;
}

.footer .social-icons a {
  display: inline-block;
}

.footer .social-icons img {
  width: 40px; /* Icon size */
  height: 40px;
  transition: transform 0.3s ease;
}

/* Hover effect for social media icons */
.footer .social-icons a:hover img {
  transform: scale(1.1); /* Slight scale effect */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer {
    flex-direction: column; /* Stack the sections vertically on small screens */
    align-items: flex-start;
    padding: 2rem 2rem; /* Reduced padding on smaller devices */
  }

  .footer .quick-links {
    margin-right: 0;
   
  }

  .footer .address-contact {
    margin-top: 2rem; /* Add space above Address & Contact */
  }

  .footer .quick-links h3,
  .footer .address-contact h3,
  .footer .social-media h3 {
    font-size: 1.6rem;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer .social-icons a {
    margin: 0 1rem; /* Add spacing between icons */
  }
}

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeSlideIn {
      0% { opacity: 0; transform: translateX(-30px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(20px); }
    }

   

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #fff;
  position: relative;
  z-index: 1001;
 
  
}

.logo img {
  height: 120px;      /* adjust as needed */
  width: auto;
  display: block;
}

/* Reset */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav {
  position: relative;
}

/* Navigation Links */
.top-nav {
  display: flex;
  gap: 2rem;
  background-color: #fff;
  align-items: center;
}

.top-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.top-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #06273A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.top-nav a:hover {
  color: #1D67CD;
}

.top-nav a:hover::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 99;
}

.dropdown-menu li a {
  color: #111;
  padding: 0.75rem 1rem;
  display: block;
  transition: background 0.3s;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Hamburger Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}

/* Default - Desktop view */
.dropdown-toggle {
  display: none; /* hide arrow in desktop */
}


/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    background-color: #111;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    padding: 2rem 1.5rem;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 1001;
  }

  .top-nav.show {
    right: 0;
  }

  .top-nav > li {
    width: 100%;
    margin-bottom: 1rem;
  }

  .top-nav a {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
  }

  .dropdown-header a {
    flex-grow: 1;
    color: #fff;
    font-size: 1.1rem;
  }

  .dropdown-toggle {
    display: block; /* show arrow in mobile */
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
    display: block;
  }

  .dropdown.open .dropdown-toggle {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    display: none;
    position: static;
    background-color: #222;
    box-shadow: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    color: #ddd;
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .dropdown-menu li a:hover {
    color: #fff;
  }

  .nav-overlay.show {
    display: block;
  }
}


.footer .address-contact a {
  color: #000 !important; /* Force black */
  text-decoration: none;
  font-weight: 400; /* Match surrounding text */
  transition: color 0.3s ease;
}

.footer .address-contact a:hover {
  color: var(--bright-blue) !important;
  text-decoration:none;
}