/* Reset & Fonts */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* =============================
   Top Header Split with Clip
============================= */

.top-header {
  position: relative;
  width: 100%;
  height: 50px;
  display: flex;
  overflow: hidden;
}

.top-left {
  background: #0242f0;
  padding: 10px 30px;
  width: 70%;
  clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  color: white;
  z-index: 1;
}

.top-contact span {
  font-size: 14px;
  margin-right: 15px;
  white-space: nowrap;
  color: #fff;
}

.top-contact .separator {
  color: rgba(255, 255, 255, 0.6);
}

.top-right {
  background: transparent;
  padding: 10px 20px;
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 1;
}

.social-profile a {
  color: #153fb2;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  font-size: 14px;
  display: inline-block;
}

/* =============================
   Main Header Section
============================= */

.main-header-wraper {
  background: #06041a;
  z-index: 0;
  position: relative;
}

.header-menu .main-menu li a {
  color: #153fb2;
  font-weight: 500;
  font-size: 16px;
  -webkit-text-fill-color: #fff;
  text-decoration: none;
}

.header-menu .main-menu li a:hover {
  color: #ffffffed;
}

/* =============================
   Mobile Nav Styles
============================= */

/* Hamburger Container */
.mobile-nav-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Hamburger icon with 3 lines */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background-color: #fbfbfb; /* Or white if your header background is dark */
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #153fb2;
  color: #ffffff;
  z-index: 1000;
  padding: 30px 20px;
  transition: right 0.3s ease-in-out;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav .close-nav {
  background: none;
  border: none;
  font-size: 24px;
  color: #ffffff;
  position: absolute;
  top: 15px;
  right: 20px;
}

.mobile-nav .sidebar-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav .sidebar-nav ul li a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.mobile-nav .action-bar a {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-top: 10px;
}

.overlay {
  display: none;
}

.overlay.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* =============================
   Responsive Fixes
============================= */

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    height: auto;
  }

  .top-left,
  .top-right {
    width: 100%;
    clip-path: none;
    padding: 10px 20px;
  }

  .social-profile {
    justify-content: center;
    width: 100%;
  }
}

/* Preloader Animation Support */
.preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.preloader.loaded {
  display: none;
}
.animation-preloader .spinner {
  border: 4px solid #eee;
  border-top: 4px solid #086ad7;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}
.txt-loading {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 5px;
  color: #086ad7;
}
.letters-loading {
  position: relative;
  display: inline-block;
}
.letters-loading::before {
  content: attr(data-text-preloader);
  color: #086ad7;
  position: absolute;
  top: -3px;
  left: 0;
  transform: rotateY(-90deg);
  opacity: 0;
  animation: letters-loading 4s infinite;
}
.letters-loading:nth-child(2)::before { animation-delay: 0.2s; }
.letters-loading:nth-child(3)::before { animation-delay: 0.4s; }
.letters-loading:nth-child(4)::before { animation-delay: 0.6s; }
.letters-loading:nth-child(5)::before { animation-delay: 0.8s; }
.letters-loading:nth-child(6)::before { animation-delay: 1s; }
.letters-loading:nth-child(7)::before { animation-delay: 1.2s; }
.letters-loading:nth-child(8)::before { animation-delay: 1.4s; }

/* Animations */
@keyframes spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}
@keyframes letters-loading {
  0%, 75%, 100% { opacity: 0; transform: rotateY(-90deg); }
  25%, 50% { opacity: 1; transform: rotateY(0); }
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

/*contact*/
.contact-card {
  background: #f8f9fc;
  border: 1px solid #e2e6ea;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #eaf4fb;
  border-color: #0077b6;
  transform: translateY(-4px);
}

.contact-card h5 {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-card p {
  margin: 0;
  font-size: 15px;
  color: #333;
}

.contact-card a {
  text-decoration: none;
  color: #0077b6;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form-container {
  flex: 1;
  max-width: 500px;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1a1a1a;
}

.contact-form-container label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.contact-form-container input,
.contact-form-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  box-sizing: border-box;
}

.contact-form-container textarea {
  resize: vertical;
}

.contact-form-container button {
  background: #0077b6;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.contact-form-container button:hover {
  background: #005f8c;
}


































/* Footer */
footer {
  background-color: #0e615386;
  color: white;
  font-size: 14px;
}
.footer-modern {
  background-color: #020806de;
  color: #f8f9fa;
  font-size: 0.95rem;
}

.footer-modern .footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer-modern .footer-link:hover {
  color: #fff;
}

.footer-modern h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.footer-modern small {
  display: block;
  font-size: 0.75rem;
  color: #999;
}