/* assets/css/style.css */
:root[data-theme='light'] {
  --section-bg: #f9f9fb;
  --text-color: #111;
}

:root[data-theme='dark'] {
  --section-bg: #111;
  --text-color: #fff;
}


body {
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background 0.4s, color 0.4s;
}

html {
  scroll-behavior: smooth;
}

section {
  background-color: var(--section-bg);
  color: var(--text-color);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

nav.navbar {
  background-color: var(--nav-bg);
  color: var(--text-color);
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar-brand img {
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}

footer {
  background: #000;
  color: #ccc;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

/* Hero + Typewriter */
#hero {
  background: url('../images/pic1.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.typewriter-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid #fff;
  animation: typing 3s steps(30, end), blink-caret .75s step-end infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}
section {
  background-color: var(--section-bg);
  color: var(--text-color);
  padding: 80px 0;
  transition: background 0.3s, color 0.3s;
}

.navbar-logo {
  height: 60px;
  max-height: 56px;
}


body {
  top: 40px !important; /* Adjust as needed */
  position: relative;
}
.brand-text {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.typewriter-blue {
  color: #0056d2;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.1em solid #0056d2;
  animation: typing-blue 2s steps(12) 1 normal both;
}

.typewriter-orange {
  color: orange;
  margin-left: 5px;
  white-space: nowrap;
  overflow: hidden;
  animation: typing-orange 3s steps(30) 2s normal both;
}

@keyframes typing-blue {
  from { width: 0; }
  to { width: 7ch; }
}

@keyframes typing-orange {
  from { width: 0; }
  to { width: 36ch; }
}


.brand-text .typewriter-orange {
  color: orange;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
}
.qrta-navbar {
  background-color: white;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.qrta-navbar .nav-link {
  font-weight: 500;
  color: #333 !important;
  padding: 8px 14px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.qrta-navbar .nav-link:hover {
  background-color: #f1f1f1;
  color: #98824f !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.qrta-navbar .btn {
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.qrta-navbar .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

body {
    padding-top: 90px;
}
.footer-link {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-icon {
  color: #bbb;
  margin: 0 10px;
  font-size: 20px;
  transition: color 0.3s ease;
}
.social-icon:hover {
  color: #ffffff;
}

.scroll-top-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
.scroll-top-btn:hover {
  background-color: #555;
}
:root {
  --primary-color: #ff6600;
  --dark-bg: #1A1A1A;
  --text-color: #222222;
  --text-muted: #777777;
  --white: #ffffff;
}

/* Body */
body {
  background-color: var(--white);
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
}

/* NavBar */
.navbar {
  background-color: var(--white) !important;
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}
.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
}
.nav-link:hover {
  color: var(--primary-color) !important;
}

/* Buttons */
.btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #004bb5;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--white);
}
.footer-link {
  color: var(--text-muted);
}
.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Social Icons */
.social-icon {
  color: var(--text-muted);
}
.social-icon:hover {
  color: var(--white);
}

/* Scroll-to-top */
.scroll-top-btn {
  background-color: var(--dark-bg);
  color: var(--white);
}
.scroll-top-btn:hover {
  background-color: var(--primary-color);
}

/* Section Backgrounds */

.custom-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  transition: all 0.3s ease;
  z-index: 999;
}
.navbar-nav .nav-link {
  color: #1e1e1e;
  font-weight: 500;
  transition: 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: #007bff;
}
.brand-text .typewriter-white {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1e1e1e;
}
.brand-text .typewriter-orange {
  font-size: 1rem;
  color: #6c757d;
}
.footer {
  border-top: 1px solid #ddd;
}
.footer h5 {
  margin-bottom: 1rem;
}
.footer p, .footer a {
  font-size: 0.9rem;
}
.footer a:hover {
  color: #007bff !important;
}
.custom-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  z-index: 999;
}
.navbar-nav .nav-link {
  color: #0d0d0d !important;
  font-weight: 600;
  transition: 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: #0056b3 !important;
}
.btn-outline-primary {
  border-color: #0056b3;
  color: #0056b3;
}
.btn-outline-primary:hover {
  background-color: #0056b3;
  color: #fff;
}
.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}
.btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
}
.brand-text .typewriter-white {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0d0d0d;
}
.brand-text .typewriter-orange {
  font-size: 1rem;
  color: #6c757d;
}
.footer {
  border-top: 1px solid #ddd;
}
.footer h5 {
  margin-bottom: 1rem;
}
.footer p, .footer a {
  font-size: 0.9rem;
}
.footer a:hover {
  color: #0056b3 !important;
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  font-size: 18px;
  background-color: #0056b3;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  border: none;
  outline: none;
}
#scrollTopBtn:hover {
  background-color: #004494;
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 90px; /* lifted higher to not clash with contact button */
  right: 30px;  /* shifted slightly left */
  z-index: 998;
  font-size: 18px;
  background-color: #0056b3;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}
#scrollTopBtn:hover {
  background-color: #004494;
}
body {
  background-color: #f8f9fa;
}
.custom-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  z-index: 999;
}
.navbar-nav .nav-link {
  color: #4a4a4a !important;
  font-weight: 600;
}
.navbar-nav .nav-link:hover {
  color: #a29061 !important;
}
.btn-outline-gold {
  border-color: #a29061;
  color: #a29061;
}
.btn-outline-gold:hover {
  background-color: #a29061;
  color: #fff;
}
.btn-gold {
  background-color: #a29061;
  border-color: #a29061;
  color: #fff;
}
.btn-gold:hover {
  background-color: #8a784e;
  border-color: #8a784e;
}
.brand-text .typewriter-white {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.brand-text .typewriter-gold {
  font-size: 1rem;
  color: #a29061;
}
.footer.bg-footer {
  background-color: #a29061;
  color: #fff;
}
.footer a:hover {
  color: #ffffff !important;
  text-decoration: underline;
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 60px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #a29061;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
}
#scrollTopBtn:hover {
  background-color: #8a784e;
}

#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 100px; /* pushed above the floating chat button */
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background-color: #28a745; /* Match the chat button green */
  color: white;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
#scrollTopBtn:hover {
  background-color: #218838;
}

body {
  background-color: #ffffff !important;
}
#scrollTopBtn {
  position: fixed;
  bottom: 85px; /* Above the contact button */
  right: 20px;
  z-index: 9999;
  border: none;
  outline: none;
  background-color: #25d366;
  color: white;
  cursor: pointer;
  padding: 14px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: background-color 0.3s ease;
}
#scrollTopBtn:hover {
  background-color: #128C7E;
}
body,
html,
section {
  background-color: #ffffff !important;
  color: #111 !important;
}
.dark,
.bg-dark,
.bg-black,
.black-bg {
  background-color: #ffffff !important;
  color: #111 !important;
}
.typewriter-white, .typewriter-gold {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #a29061;
  animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #a29061; }
}

#scrollTopBtn {
  position: fixed;
  bottom: 100px; /* Adjust to match contact button */
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #28a745; /* Match your green color */
  color: white;
  border: none;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

#scrollTopBtn i {
  pointer-events: none;
}

.footer.bg-footer {
  background-color: #a29061;
  color: #fff;
  padding: 30px 0;
  font-size: 16px;
}

.footer h5 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer p,
.footer a {
  font-size: 15px;
}

.footer .list-unstyled li {
  margin-bottom: 8px;
}
#scrollTopBtn {
  position: fixed;
  bottom: 95px; /* align with contact button */
  right: 25px;
  z-index: 999;
  border: none;
  outline: none;
  background-color: #00C853;
  color: white;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
}

#scrollTopBtn i {
  font-size: 20px;
}

#scrollTopBtn:hover {
  background-color: #009624;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.footer.bg-footer {
  background-color: #a29061;
  color: #fff;
  padding: 30px 0;
  font-size: 16px;
}

.footer h5 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer p,
.footer a {
  font-size: 16px;
}

.footer .list-unstyled li {
  margin-bottom: 8px;
}

/* Scroll to Top Button */
#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 999;
  background-color: #00C853;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

#scrollTopBtn i {
  font-size: 28px;
  line-height: 1;
}

#scrollTopBtn:hover {
  background-color: #009624;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
#scrollTopBtn {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 9999;
  background-color: #00C853;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
  font-size: 28px;
}

#scrollTopBtn i {
  display: inline-block;
}

#scrollTopBtn:hover {
  background-color: #009624;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 80px; /* Match your contact button's height */
  right: 20px;
  z-index: 9999;
  background-color: #a29061;
  color: #fff;
  border: none;
  padding: 14px 16px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}
#scrollTopBtn:hover {
  background-color: #8a784e;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
.footer.bg-footer {
  background-color: #a29061;
  color: #fff;
  padding: 40px 0 20px;
  font-size: 16px;
}

.footer h5 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer p,
.footer a {
  font-size: 16px;
}

.footer .list-unstyled li {
  margin-bottom: 8px;
}
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../images/hero.png') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}
.hero .content {
  z-index: 2;
}
footer {
  background-color: #867447;
  color: #fff;
  padding: 40px 0 10px;
}
.scroll-up {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  font-size: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: pointer;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../images/hero.png') center/cover no-repeat;
  z-index: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 2;
}
.hero .content {
  z-index: 3;
  position: relative;
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 85px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 50%;
  font-size: 22px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
#scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 95px; /* Push above contact button */
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: #a29061; /* Gold tone */
  color: white;
  font-size: 26px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}
.footer.bg-footer {
  background-color: #a29061; /* Restore golden footer */
  color: #fff;
  padding: 40px 0 20px;
  font-size: 16px;
}


.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffc107;
}

.footer p,
.footer a {
  font-size: 15px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fff;
}

.footer-link {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

.social-icons a {
  margin-right: 10px;
  font-size: 22px;
  text-decoration: none;
  color: #ffc107;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}

.footer hr {
  border-top: 1px solid #444;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .footer h5 {
    text-align: center;
  }
  .footer p,
  .footer .footer-link,
  .footer .social-icons {
    text-align: center;
  }
}
.hero-text {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  padding-top: 60px;
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sub-title {
  font-size: 20px;
  font-weight: 400;
  color: #444;
  margin-top: 10px;
  letter-spacing: 0.5px;
}


.text-box {
  background-color: #ffffff;
  color: #333;
  max-width: 1000px;
  margin: auto;
  border-left: 5px solid #a29061;
}
.text-box {
  background-color: #ffffff;
  color: #333;
  max-width: 1200px;
  margin: auto;
  border-left: 5px solid #a29061;
}

.video-card {
  background-color: #fafafa;
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
}
.social-icons a {
  font-size: 20px;
  color: #555;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #a29061;
  transform: scale(1.2);
}
.footer {
  background-color: #8b774b;
  color: #fff;
  font-size: 14px;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ddd;
}

.footer .social-icons a {
  font-size: 18px;
  color: #fff;
  margin-left: 10px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer .social-icons a:hover {
  transform: scale(1.2);
}

#hero {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

#hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55); /* Optional dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: white;
  max-width: 700px;
  padding: 20px;
}
#hero {
  position: relative;
  background: url('assets/images/hero.png') no-repeat center center/cover;
  height: 100vh;
  overflow: hidden;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.65); /* dark overlay */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  z-index: 3;
  color: white;
  padding: 20px;
}

.hero-logo {
  max-height: 100px;
  width: auto;
}
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('assets/images/hero.png') no-repeat center center/cover;
  overflow: hidden;
}

.hero-content-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  z-index: 3;
}


h1, p {
  text-decoration: none !important; /* remove any underlines */
}

.login-btn {
  background-color: #a18f5f;
  color: #fff;
  border: none;
  padding: 6px 16px;
  font-size: 14px;
  border-radius: 50px;
  margin-left: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.login-btn:hover {
  background-color: #8c7c4e;
  color: #fff;
}


body {
  top: 0px !important;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

footer {
  margin-bottom: 0;
  padding-bottom: 0;
}


/* Hero Trigger Button */
.modal-button {
  display: block;
  margin: 40px auto;
  padding: 14px 28px;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal-button:hover {
  background-color: #0057b3;
}
body {
  font-family: 'Cairo', sans-serif;
  background-color: #f4f7fc;
  margin: 0;
  padding: 0;
}

/* Hero Trigger Button */
.modal-button {
  display: block;
  margin: 40px auto;
  padding: 14px 28px;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}
.modal-button:hover {
  background-color: #0057b3;
}

/* Modal Styles */
#skylark-popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  padding: 40px 20px;
}

#skylark-popup-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
}

#skylark-popup-content {
  max-width: 980px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0,0,0,0.25);
  position: relative;
  animation: fadeIn 0.4s ease-out;
}

/* Styled Sections */
.skylark-section {
  margin-bottom: 4rem;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Corner triangle decorations */
.skylark-section::before,
.skylark-section::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  background: linear-gradient(45deg, #004080, #a0b03b);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: 0.1;
  z-index: 0;
}
.skylark-section::before {
  top: 0;
  left: 0;
}
.skylark-section::after {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}

/* Section Text */
.skylark-section h2 {
  font-weight: 900;
  color: #60762a;
  font-size: 2rem;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
}
.skylark-section p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  z-index: 1;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Keep main content above particles */
body, section, .container, .main-content, header, footer {
  position: relative;
  z-index: 1;
}
.counter-box h3 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #60762a;
}
.counter-box p {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  color: #444;
}
.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #6d5e29;
}

.skylark-navbar {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 10px 30px;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin-left: 15px;
}
.navbar-nav .nav-link:hover {
  color: #007BFF;
}


.custom-navbar {
  background: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Modern blur */
  z-index: 999;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* soft shadow */
}
body {
  padding-top: 100px;
}
body {
  padding-top: 80px; /* To push content down under navbar */
}
.skylark-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  font-family: 'Cairo', sans-serif;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.navbar-nav .nav-link:hover {
  color: #007BFF;
}
/* Fix navbar overlapping & spacing */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255, 255, 255, 0.9); /* transparent white background */
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Add spacing to all sections to avoid overlap */
main,
section {
  padding-top: 100px; /* Adjust as needed based on your navbar height */
}

/* Fix navbar logo + site title alignment on mobile */
.navbar-brand img {
  height: 40px;
}

.navbar-collapse {
  background-color: white;
  border-radius: 0 0 12px 12px;
  padding: 1rem;
}

/* Fix button styling */
.btn-skylark {
  background-color: #0056d2;
  color: white;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-skylark:hover {
  background-color: #003a9e;
  color: #fff;
}

/* Mobile navbar toggler */
.navbar-toggler {
  border: none;
  font-size: 1.5rem;
  color: #333;
}
.hero-buttons .btn {
  font-weight: bold;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  margin: 8px 6px;
  transition: all 0.3s ease-in-out;
}

.hero-buttons .btn-primary {
  background-color: #0056d2;
  border: none;
  color: #fff;
}

.hero-buttons .btn-primary:hover {
  background-color: #003a9e;
}

.hero-buttons .btn-outline-light {
  border: 2px solid #0056d2;
  color: #0056d2;
  background: transparent;
}

.hero-buttons .btn-outline-light:hover {
  background-color: #0056d2;
  color: #fff;
}
section {
  padding: 80px 0;
  position: relative;
  z-index: 2; /* ensures content is above particles */
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin: 8px auto;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 0.5rem;
    border-radius: 0 0 16px 16px;
  }
}
.btn-skylark-login {
  background-color: #8a7a50;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-skylark-login:hover {
  background-color: #60762a;
  color: white;
}

.btn-skylark-lang {
  background-color: transparent;
  color: #8a7a50;
  font-weight: 600;
  border: 2px solid #8a7a50;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-skylark-lang:hover {
  background-color: #8a7a50;
  color: white;
}
.partner-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  height: 100%;
}

.partner-card:hover {
  transform: scale(1.05);
}

.partner-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.partner-label {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  margin-top: 5px;
}
#partners {
  background: #fff;
}

.partners-swiper .swiper-slide {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-swiper .swiper-slide:hover {
  transform: scale(1.05);
}

.partners-swiper img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.partners-swiper p {
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}
.partner-card {
  transition: transform 0.3s ease;
  cursor: pointer;
}

.partner-card:hover {
  transform: scale(1.05);
}
.partner-logo-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

.partner-logo-img:hover {
  transform: scale(1.05);
}

.partner-logo-link {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#tsparticles {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #999 !important;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.swiper-pagination-bullet-active {
  background: #999 !important;
}
.svg-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.svg-wrapper svg {
  width: 100%;
  height: auto;
  max-width: 1920px;
  display: block;
}
.btn-outline-primary {
  color: #ffffffff;
  border-color: #ffffffff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary:active {
  background-color: #ffffffff !important;
  color: #fff !important;
  text-decoration: none;
  box-shadow: none !important;
  outline: none !important;
}

.btn-outline-primary::-moz-focus-inner {
  border: 0;
}
.swiper {
  padding-top: 20px;
  padding-bottom: 40px;
}

.swiper-slide {
  text-align: center;
  background: transparent;
  padding: 10px;
}

.swiper-slide iframe {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}
.card.hover-shadow:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.1);
  transform: translateY(-3px);
  transition: 0.3s ease-in-out;
}

.btn-primary {
  background-color: #ff6600;
  border-color: #ff6600;
  color: #fff;
}

.btn-primary:hover {
  background-color: #e65c00;
  border-color: #e65c00;
  color: #fff;
}
.hero-section {
  position: relative;
  height: 100vh;
  background: url('assets/images/hero.png') no-repeat center center / cover;
  overflow: hidden;
}

/* ✅ Add this for mobile screens */
@media (max-width: 768px) {
  .hero-section {
    background-size: contain;   /* Fit the image inside the screen */
    background-position: top center;
    background-repeat: no-repeat;
  }
}
