body {
        font-family: "Tajawal", sans-serif;
        background-color: #f8f9fa;
        scroll-behavior: smooth;


        background:
        radial-gradient(circle at 10% 20%, rgba(255,193,7,0.08), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(13,110,253,0.08), transparent 40%),
        linear-gradient(180deg, #0b132b, #1c2541);
      color: #fff;
      }

      /* ================= NAVBAR ================= */
    .navbar {
      opacity: 0;
      transition: opacity 0.6s ease, padding 0.4s ease;
      padding: 0.8rem 1rem;
      background: transparent;
      
    }
    .navbar.show {
      opacity: 1;
    }
      [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled)
      {
        margin-right: auto;
        cursor: pointer;
        width: auto;
      }

      
    .navbar.scrolled {
      background: rgba(13, 59, 102, 0.95);
      padding: 0.6rem 2rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(8px);
    }

    

    .logo-img {
      height: 100px;
      border-radius: 8%;
      transition: all 0.4s ease;

    }

    .navbar.scrolled .logo-img {
      height: 60px;
      transform: scale(0.95);
    }

    /* Links */
    .navbar-nav .nav-link {
      color: #fff;
      font-weight: 600;
      margin-inline: 12px;
      position: relative;
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link::after {
      content: "";
      position: absolute;
      bottom: -3px;
      right: 0;
      width: 0;
      height: 2px;
      background-color: #ffd166;
      transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active-section::after {
      width: 100%;
    }
    .nav-link.active-section {
      color: #ffd166 !important;
      font-weight: 700;
    }


    .navbar-toggler {
      border: none;
      background: transparent;
      padding: 10px;
      font-size: 1.8rem;
      color: #fff;
      transition: all 0.3s ease;
      outline: none;
      box-shadow: none;
    }

    .navbar-toggler:hover {
      color: #ffd166;
    }

    .navbar-toggler i {
      transition: transform 0.3s ease;
    }

    .navbar.scrolled .navbar-toggler {
      color: #fff;
    }

    .navbar.scrolled .navbar-toggler:hover {
      color: #ffd166;
    }
/* ===== Navbar Address ===== */
.navbar-address {
  margin-right: 18px;
}

.address-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f1f1;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.35s ease;
  white-space: nowrap;
}

.address-badge i {
  color: #ffd166;
  font-size: 14px;
}

.address-badge:hover {
  background: rgba(255, 209, 102, 0.15);
  border-color: #ffd166;
  color: #ffd166;
  transform: translateY(-1px);
}


    /* ===== Hero Section ===== */
    .hero-video {
      height: 100vh;
      position: relative;
    }
    .hero-bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to left,
        rgba(13, 59, 102, 0.2),
        rgba(0, 0, 0, 0.55)
      );
      z-index: 1;
    }
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      max-width: 850px;
      padding: 0 15px;
      text-align: center;
    }
      /* ===== Responsive ===== */
    @media (max-width: 1400px) {
      .hero-title { font-size: 2.3rem; }
    }

    @media (max-width: 1200px) {
      .hero-title { font-size: 2.3rem; }
    }

    @media (max-width: 992px) {
      
      .hero-title { font-size: 2rem; }
      .logo-img {
        height: 75px;
      }
      .hero-content h1 {
        font-size: 2.5rem;
      }
      .hero-content p {
        font-size: 1.1rem;
      }
      .navbar-collapse {
        background-color: rgba(13, 59, 102, 0.95);
        padding: 1rem;
      }
        .navbar .d-flex.justify-content-between {
      flex-wrap: nowrap;
    }
    }

    @media (max-width: 768px) {
      .hero-title { font-size: 1.8rem; }
      .logo-img {
        height: 70px;
      }
      .navbar {
        padding: 0.8rem 1rem;
      }
      .hero-content h1 {
        font-size: 2.1rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
      .navbar-nav .nav-link {
        margin: 0.3rem 0;
        padding-bottom: 4px;
      }
      .navbar-collapse {
        background-color: rgba(13, 59, 102, 0.95);
        padding: 1rem;
      }
    }
    @media (max-width: 576px) {
      .hero-title { font-size: 1.5rem; }
      .logo-img {
        height: 65px;
      }
      .hero-content h1 {
        font-size: 1.9rem;
      }
      .navbar-collapse {
        background-color: rgba(13, 59, 102, 0.95);
        padding: 1rem;
      }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 1rem; }
      .logo-img {
        height: 60px;
      }
      .hero-content h1 {
        font-size: 1.7rem;
      }
      .hero-content p {
        font-size: 0.95rem;
      }
      .navbar-collapse {
        background-color: rgba(13, 59, 102, 0.95);
        padding: 1rem;
      }
    }

    @media (max-width: 360px) {
      .hero-title { font-size: 0.75rem; }
      .logo-img {
        height: 55px;
      }
      .hero-content h1 {
        font-size: 1.6rem;
      }
      .hero-content p {
        font-size: 0.85rem;
      }
      .hero-content a{
        font-size: 1rem ;
      }
      .navbar-collapse {
        background-color: rgba(13, 59, 102, 0.95);
        padding: 1rem;
      }
    }

    @keyframes fadeSlide {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .typing-cursor {
      display: inline-block;
      margin-right: 3px;
      animation: blink 1s infinite;
      font-weight: 300;
    }

    @keyframes blink {
      0%, 50%, 100% {
        opacity: 1;
      }
      25%, 75% {
        opacity: 0;
      }
    }

    .section-padding {
      padding: 80px 0;
    }

    .section-title h2 {
      font-weight: 800;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #666;
    }



/* ================= ABOUT PRO SECTION ================= */
.about-pro {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(
    -45deg,
    #0f2027,
    #203a43,
    #2c5364,
    #1c1c1c
  );
  background-size: 400% 400%;
  animation: gradientMove 18s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-pro .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.about-pro .container {
  z-index: 2;
}

.about-pro .about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  opacity: 0.95;
}

.info-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-card i {
  font-size: 2.2rem;
  color: #ffc107;
  margin-bottom: 15px;
}

.info-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.info-card p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.info-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.15);
}

/* ================= COUNTERS ================= */
.counters h3 {
  font-size: 3rem;
  font-weight: 800;
  color: #ffc107;
}

.counters p {
  margin-top: 8px;
  font-weight: 500;
  opacity: 0.9;
}

/* ================= BUTTON ================= */
.about-pro .btn-warning {
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(255, 193, 7, 0.35);
  transition: all 0.3s ease;
}

.about-pro .btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 193, 7, 0.5);
}
.about-big4 {
  position: relative;
  background: linear-gradient(135deg, #163f57, #1f3a50);
  overflow: hidden;
}
.about-big4 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

 /* Fade Animations */
  .fade-up { opacity: 0; transform: translateY(40px); transition: all 0.8s ease; }
  .fade-down { opacity: 0; transform: translateY(-40px); transition: all 0.8s ease; }
  .fade-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
  .fade-right { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }

  .reveal-active { opacity: 1; transform: translate(0,0); }


 /* ==== Services  ==== */
    .service-card {
      background: rgba(255,255,255,0.05);
      border-radius: 18px;
      overflow: hidden;
      transition: all 0.4s ease;
      backdrop-filter: blur(10px);
      height: 100%;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

    .service-img {
      height: 200px;
      overflow: hidden;
    }

    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomAnim 5s ease-in-out infinite alternate;
      transform-origin: center center;
      backface-visibility: hidden;
    }

    @keyframes zoomAnim {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .service-content {
      padding: 25px;
    }

    .service-content h5 {
      color: #ffc107;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .service-content p {
      color: #ddd;
      font-size: 15px;
      line-height: 1.7;
    }

    
    /* ==== WHY CHOOSE us ==== */
   .feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05); 
  backdrop-filter: blur(10px);
  border-radius: 18px;
  text-align: center;
  color: #fff;
  height: 100%;
}

.feature-card i {
  font-size: 2rem;
  color: #ffc107;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.feature-card:hover i {
  transform: scale(1.2);
}


    /* ==== Reveal Animations ==== */
    .reveal-top { opacity: 0; transform: translateY(-40px); }
    .reveal-bottom { opacity: 0; transform: translateY(40px); }
    .reveal-active { opacity: 1; transform: translateY(0); transition: all 0.8s ease; }


    /* ========= testimonials ========== */
#testimonials .card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  background-color: #fff;
}

#testimonials .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

#testimonials p {
  font-size: 0.95rem;
}

      /*=========== Contact =========*/
.contact-accounting { 
  max-width: 560px; 
  margin: 80px auto; 
  padding: 35px; 
  background: #fff; 
  border-radius: 14px;
   box-shadow: 0 15px 40px rgba(0,0,0,.1); 
   font-family: "Segoe UI", sans-serif; 
  }
h2 { 
  text-align: center; 
  color: #0d2c54; 
}
p {
   text-align: center; 
   color: #666; 
   margin-bottom: 25px;
  }
.field {
   margin-bottom: 15px;
    position: relative; 
  }
.field input, .field textarea { 
  width: 100%;
   padding: 13px; 
   border-radius: 8px;
    border: 1px solid #ccd6e0; 
    transition: 0.3s;
   }
.field small { 
  color: #dc3545;
   font-size: 13px; 
   display: block;
    margin-top: 5px; 
  }

.field.error input,
.field.error textarea {
  border-color: #dc3545;
  background-color: #ffe6e6;
}

button { 
  width: 100%; 
  padding: 13px; 
  background: #0d2c54; 
  color: #fff; 
  border: none; 
  border-radius: 8px; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 8px; 
  position: relative;
   transition: 0.3s; 
  }
button:disabled { 
  background: #6c757d; 
  cursor: not-allowed; 
}
#submitBtn {
  width: 60%;
  margin: 20px auto 0;
}
.spinner { 
  display: none; 
  width: 20px;
   height: 20px; 
   border: 3px solid #fff;
    border-top: 3px solid transparent;
     border-radius: 50%; 
     animation: spin 0.8s linear infinite;
     }
@keyframes spin { 
  0% { 
    transform: rotate(0deg); 
  } 100% { 
    transform: rotate(360deg);
   } }

.quick-title {
   text-align: center;
    margin: 15px 0 10px; 
    font-weight: 600; 
    color: #555; 
  }
.contact-options {
  display: flex; 
  gap: 15px; 
  flex-wrap: wrap;
  }


.contact-card { 
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 18px; 
  background: #f8f9fa;
  border-radius: 10px; 
  text-decoration: none; 
  color: #0d2c54; 
  border: 1px solid #e1e5ea;
  transition: .3s; 
    }
.contact-card i { 
  font-size: 22px; 
  min-width: 32px; 
  text-align: center; 
}
.contact-card span { 
  font-weight: 600; 
  white-space: nowrap; 
}
.contact-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.whatsap i {
  color: #25D366; 
  font-size: 22px; 
}
.email i { 
  color: #0d6efd; 
  font-size: 22px; 
}

.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;         
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  min-width: 220px;
  max-width: 300px;
  white-space: nowrap;        
  overflow: hidden;
  text-overflow: ellipsis;   
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success { background: #28a745; }
.toast.error { background: #dc3545; }

.toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  margin-left: 12px;
  line-height: 1;
  flex-shrink: 0;             
}



      .floating-contact {
        position: fixed;
        bottom: 20px;
        right: 10px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 999;
      }

      .floating-contact a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
      }

      .floating-contact .whatsapp {
        background: #25d366;
      }
      .floating-contact .phone {
        background: #0d3b66;
      }



      /* =========Footer ==============*/
.footer {
  background: #0d2c54;
  padding: 30px 15px;
  color: #fff;
  position: relative;
}

.footer-text {
  color: #fff;
  margin: 5px 0;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.2s ease;
  color: #fff;
}

.social-icon.whatsapp { background-color: #25D366; }
.social-icon.facebook { background-color: #3b5998; }
.social-icon.linkedin { background-color: #0077b5; }
.social-icon.channel { background-color: #ff9800; }

.social-icon:hover {
  transform: scale(1.1);
}


.scroll-top {
  position: absolute; 
  left: 0px;
  bottom: -10px;
  width: 50px;
  height: 50px;
  background: #0d2c54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc107;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.scroll-top i {
  font-size: 22px;
  color: #ffc107;
}

.scroll-top::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 2px solid #ffc107;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-circle 2s infinite;
  opacity: 0.6;
}

.scroll-top:hover {
  transform: scale(1.1);
}

@keyframes pulse-circle {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
}

.footer-address {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #eaeaea;
  font-size: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.footer-address i {
  color: #ffd166;
  font-size: 15px;
}

.footer-address .map-link {
  color: #ffd166;
  text-decoration: none;
  font-weight: 600;
  margin-right: 4px;
}

.footer-address .map-link:hover {
  text-decoration: underline;
}
