@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Playfair+Display:wght@400;500;600;700&display=swap");

/* 
Font usage
- Primary: "Roboto", sans-serif
- Secondary: "Open Sans", sans-serif
- Accent: "Playfair Display", serif
*/

:root {
  --primary-color: #1a3c8b;
  --secondary-color: #e63946;
  --accent-color: #4caf50;
  --text-color: #333333;
  --text-light: #6c757d;
  --background-color: #ffffff;
  --background-light: #f8f9fa;
  --border-color: #e0e0e0;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --header-height: auto;
  --header-transition: transform 0.4s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-display: swap;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-light);
  overflow-x: hidden;
  height: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header & Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--background-color);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--header-transition);
  will-change: transform;
}

.site-header.nav-up {
  transform: translateY(-100%);
}

.site-header.nav-down {
  transform: translateY(0);
}

.site-header.compact {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-header.compact .desktop-nav {
  padding: 8px 20px;
}

.site-header.compact .logo img {
  height: 60px;
}

.site-header.compact .banners {
  padding: 8px 50px;
}

nav {
  width: 100%;
  text-align: center;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.desktop-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  width: 100%;
  transition: padding 0.3s ease;
}

.responsive-text {
  font-size: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 80px;
  width: auto;
  transition: height 0.3s ease;
}

.logo2 img {
  width: 100%;
  max-width: 100px;
}

.logo h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  font-size: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

@media only screen and (max-width: 768px) {
  .center {
    display: none;
  }

  .desktop-nav p {
    display: none;
  }

  .logo2 {
    display: none;
  }

}


/* Banners Section */
.banners {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 50px;
  background-color: #FFFFCB;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: padding 0.3s ease;
}

.left,
.right {
  position: relative;

}
.left img{
    width: 100%;
  max-width: 200px;
  height: auto;
  margin-right: 10px;
}
 .right  img{
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-right: 10px;
}


.box {
  position: relative;
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  background: linear-gradient(135deg, #ff4d4d, #d10000);
  color: white;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease-in-out;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* .box {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 80px;
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #ff4d4d, #d10000);
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;

  clip-path: polygon(
    30% 0%, 70% 0%,
    100% 30%, 100% 70%,
    70% 100%, 30% 100%,
    0% 70%, 0% 30%
  );
} */

.box span {
  position: relative;
  z-index: 2;
}
.box img {
  width: 100%;
  height: 30px;
  
}

.box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(25deg);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.box:hover::before {
  top: 0;
  left: 0;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
}

.box:hover:before {
  left: 100%;
}

.box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 0, 0, 0.7));
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
}

.donation-box {
  background: linear-gradient(135deg, #ff6b6b, #c00000);
}

.deposit-box {
  background: linear-gradient(135deg, #ff6b6b, #c00000);
}

#donationAnimation {
  width: 80px;
  margin: auto;
  position: absolute;
  z-index: 1000;
  right: 80%;
  top: 0;
  rotate: 90deg;
}

#depositAnimation {
  width: 80px;
  margin: auto;
  position: absolute;
  z-index: 1000;
  left: 70%;
  top: 0;
}


@keyframes attention-blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
  }
}

.center {
  text-align: center;
}

.flex {
  display: flex;
  justify-content: center;
}

.center h2 {
  font-family: "Playfair Display", serif;
  color: var(--primary-color);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 5px;
}

.tagline {
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  color: var(--text-light);
  font-size: 1rem;
}

/* Menu Container */
.menu-container {
  background-color: var(--primary-color);
  padding: 0;
}

.menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}

.menu li {
  position: relative;
}

.menu li a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  gap: 3px;
  transition: var(--transition);
}

.menu li a:hover,
.menu li a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--secondary-color);
  transition: width 0.3s ease;
}

.menu li a:hover:after,
.menu li a.active:after {
  width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-icon {
  font-size: 0.8rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border-radius: 0 0 4px 4px;
  border-top: 2px solid var(--secondary-color);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.dropdown-menu li a:after {
  display: none;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 25px;
}

.dropdown-menu li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--primary-color);
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-nav.show {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.mobile-logo {
  height: 60px;
  width: auto;
}

.close-menu {
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu li {
  margin-bottom: 5px;
}

.mobile-menu li a {
  display: block;
  padding: 12px 15px;
  color: white;
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  transition: var(--transition);
}

.mobile-menu li a:hover,
.mobile-menu li a.active {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu li a i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  margin-bottom: 0 !important;
}

.mobile-dropdown .dropdown-toggle {
  display: flex;

  align-items: center;
}

.mobile-dropdown .dropdown-toggle i.fa-chevron-down {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin: 5px 0;
  padding: 5px 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-dropdown-menu li a {
  padding: 10px 15px 10px 45px;
  font-size: 0.9rem;
}

.mobile-dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  padding-left: 50px;
}

.mobile-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
}

.mobile-contact p {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.mobile-contact i {
  margin-right: 10px;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Main Content */
main {
  min-height: 100vh;

}

/* Merque */
.blinking-text {
  color: red;
  font-size: 22px;
  animation: blink 1s infinite alternate, glow 1s infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

@keyframes glow {
  0% {
    text-shadow: 0 0 3px red, 0 0 2px red;
  }

  100% {
    text-shadow: 0 0 0 red, 0 0 0 red;
  }
}

/* Hero Section */
.hero-section {
  height: 500px;
  background: linear-gradient(rgba(32, 22, 234, 0), rgba(0, 8, 32, 0)), url("/Assets/Home/b2.jpg") no-repeat center/ cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content {
  max-width: 800px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.cta-button:hover {
  background-color: #c62828;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Featured Section */
.featured-section {
  padding: 80px 20px;
  background-color: var(--background-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.title-underline {
  height: 4px;
  width: 70px;
  background-color: var(--secondary-color);
  margin: 0 auto;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
}


/* News section  */
.newspaper-cuttings {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.newspaper-cuttings img {
  width: 100%;
  height: auto;
  max-width: 300px;
}

.newspaper-cutting {
  width: 30%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newspaper-cutting:hover {
  transform: scale(1.1);
}

/* Modal Style */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  /* Black with opacity */
  justify-content: center;
  align-items: center;
}

.modal-content-container {
  position: relative;
  text-align: center;

}

.modal-content {
  max-width: 90%;
  max-height: 80%;
  display: block;
  margin: auto;
  border-radius: 10px;
  transition: transform 0.25s ease;
  /* Smooth transition for zoom */
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Caption (optional) */
#modalCaption {
  text-align: center;
  font-size: 20px;
  color: white;
  margin-top: 10px;
}

/* Zoom controls */
.zoom-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.zoom-controls button {
  padding: 10px;
  font-size: 14px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.zoom-controls button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 768px) {
  .newspaper-cuttings {
    flex-direction: column;
    align-items: center;
  }

  .newspaper-cutting {
    width: 80%;
    margin-bottom: 20px;
  }
  .modal{
    top: 0;
  }
  .modal-content-container{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .close {
    top: 50px;
  }
  
}












/* Popup Form */
.popup-form {
  position: fixed;
  right: -350px;
  /* Initially hidden */
  bottom: 80px;
  width: 320px;
  z-index: 1000;
  transition: right 0.4s ease-in-out;
}

/* Show form when active */
.popup-form.active {
  right: 20px;
  /* Slides in from right */
}

/* Form Container */
.form-container {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Form Header */
.form-header {
  background: linear-gradient(135deg, #e63946, #c62828);
  color: white;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: color 0.2s ease;
}

.close-btn:hover {
  color: #fff;
}

/* Open Form Button */
.open-form-btn {
  position: fixed;
  right: -150px;
  /* Initially hidden */
  bottom: 80px;
  background: linear-gradient(135deg, #e63946, #c62828);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease, transform 0.2s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.open-form-btn.show {
  right: 20px;
  /* Show when active */
}

.open-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.open-form-btn i {
  font-size: 18px;
}

/* Form Progress Bar */
.form-progress {
  height: 5px;
  background-color: #f0f0f0;
  width: 100%;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(to right, #27ae60, #2ecc71);
  transition: width 0.3s ease;
}

/* Form Styling */
#enquiryForm {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Input Fields */
.input-group {
  margin-bottom: 5px;
}

.input-container {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.input-container .icon {
  padding: 0 10px;
  color: #777;
  font-size: 14px;
}

.input-container input,
.input-container textarea {
  width: 100%;
  padding: 10px;
  border: none;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.input-container input:focus,
.input-container textarea:focus {
  outline: none;
}

.textarea-container {
  align-items: flex-start;
}

.textarea-container .icon {
  padding-top: 10px;
}

/* Error Message */
.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 3px;
  display: block;
  min-height: 16px;
}

/* Submit Button */
.submit-btn {
  padding: 12px;
  background: linear-gradient(135deg, #1a3c8b, #0f2557);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #0f2557, #071a40);
  transform: translateY(-2px);
}

.btn-text {
  display: inline-block;
}

.btn-loader {
  display: none;
}

/* Overlay when form is active */
.form-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-overlay.active {
  display: block;
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 480px) {
  .popup-form {
    width: 90%;
    right: -100%;
  }

  .popup-form.active {
    right: 5%;
  }

  .form-container {
    width: 100%;
  }

  .submit-btn {
    font-size: 14px;
  }

  .open-form-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}














/* Footer */
footer {
  background-color: #212529;
  color: #f8f9fa;
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
}

.footer-section p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact i {
  margin-right: 10px;
  color: var(--secondary-color);
}

.footer-section.links ul li {
  margin-bottom: 10px;
}

.footer-section.links ul li a {
  color: #adb5bd;
  transition: var(--transition);
}

.footer-section.links ul li a:hover {
  color: white;
  margin-left: 5px;
}

.footer-section.links ul li a i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
}

.newsletter form {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  border-radius: 4px 0 0 4px;
}

.newsletter button {
  padding: 0 15px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter button:hover {
  background-color: #c62828;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-bottom p {
  color: #adb5bd;
}

.footer-bottom a {
  color: var(--secondary-color);
}

.footer-bottom .fa-heart {
  color: var(--secondary-color);
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/* Animation keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .banners {
    padding: 15px 20px;
  }

  main {
    margin-top: 180px;
  }
}

@media (max-width: 992px) {
  .menu-container {
    overflow-x: auto;
  }

  .menu {
    justify-content: flex-start;
    padding: 0 20px;
  }

  .menu li a {
    padding: 15px 15px;
    font-size: 0.85rem;
  }

  .box {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  main {
    margin-top: 170px;
  }

  .dropdown-menu {
    position: absolute;
    left: 0;
    width: 220px;
  }
}

@media (max-width: 768px) {
  .responsive-text {
    display: none;
  }

  .logo {
    gap: 10px;
  }

  .logo img {
    height: 60px;
  }

  .logo h1 {
    font-size: 0.9rem;
  }


  .center {
    min-height: 10px;
  }

  .center h2 {
    font-size: 1.5rem;
  }

  .box {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .menu-container {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
  }

  main {
    margin-top: 200px;
  }
}

@media (max-width: 576px) {
  .responsive-text {
    font-size: 10px;
    display: none;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h3:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
  }

  main {
    margin-top: 180px;
  }
}

@media only screen and (max-width:400px) {
  .responsive-text {
    font-size: 10px;

  }

  .desktop-nav {
    justify-content: space-between;
  }

}