* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  padding-top: 10px;
}

a {
  text-decoration: none;
  color: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
body, html {
  font-family: "Segoe UI", sans-serif;
  overflow-x: hidden;
  padding-top: 10px;
}

a {
  text-decoration: none;
  color: #000;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: white;
  z-index: 10000;
  display: flex;
  align-items: center;
}

.nav-left .logo {
  width: 150px;
  display: block;
  margin-left: -25px;
}

.nav-left-overlay {
  position: absolute;
  top: 0;
  left: -15%;
  width: 36.7%;
  height: 90px;
  background: rgb(236,64,11);
  transform: skewX(-45deg);
  z-index: 1;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 clamp(10px, 5vw, 60px);
  position: relative;
  z-index: 2;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: 80px;
}

.nav-links li a {
  font-weight: bold;
  font-size: 17px;
  color: #000;
  text-decoration: none;
}
.nav-links li a:hover {
  color: #ff3b3f;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #033232;
  padding: 10px 0;
  min-width: 160px;
  border-radius: 6px;
  list-style: none;
  z-index: 1000;
}

.dropdown-menu li a {
  padding: 10px 20px;
  color: #fff !important;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  color: #ff3b3f !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10010;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.consulting-btn {
  position: relative;
  background: #101010;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 50px;
  margin-left: 20px;
  overflow: hidden;
}

.consulting-btn .dot {
  position: absolute;
  right: 15px;
  width: 20px;
  height: 20px;
  background: #ff4500;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.consulting-btn:hover .dot {
  transform: scale(1.3);
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

@media (max-width: 768px) {

  .dark-mode-toggle {
    margin-right: 20px !important;
}
  /* NAVBAR LAYOUT FIX */
  .navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 10px !important;
  }

  /* LEFT → LOGO */
  .nav-left {
    order: 1;
  }

  .nav-left .logo {
    margin-left: 10px !important;
    height: 60px;
    width: 200px;
  }

  /* RIGHT → DARK MODE ICON */
  .nav-right {
    order: 2;
    margin-left: auto;
    margin-right: 10px;
  }

  /* RIGHT CORNER → HAMBURGER MENU */
  .menu-toggle {
    display: flex;
    order: 3;
    margin-left: 10px;
  }

  /* FIX ORANGE OVERLAY */
  .nav-left-overlay {
    width: 77%;
    transform: skewX(-45deg);
  }

  /* FULL-SCREEN MOBILE MENU */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 88px;            /* directly below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 88px);
    background: white;
    padding-top: 20px;
    margin-left: 0px;
    text-align: center;
    overflow-y: auto;     /* Enables scrolling to show Consulting button */
    overflow-x: hidden;
    z-index: 99999;
  }

  .nav-links.active {
    display: flex;
  }

  /* NAV LINK ITEMS */
  .nav-links li {
    margin: 15px 0;
    width: 100%;
    padding-bottom: 10px;
  }

  /* DROPDOWN MENU STYLING */
  .dropdown-menu {
    display: none !important;
    flex-direction: column;
    width: 100%;
    height: 60px;
    background: #ff3b3f;
    padding: 5px 0 !important;
    text-align: center;
  }

  .dropdown.open .dropdown-menu {
    display: flex !important;
  }

  /* Reduce dropdown item height */
  .dropdown-menu li a {
    padding: 6px 0 !important;
    font-size: 14px;
    margin-left: 20px;
    line-height: 1.2;
    }

  .arrow1 {
    background-color: #ff3b3f;
  }
}

@media (max-width: 768px) {

  .consulting-btn {
    width: 90%;                /* Full width on mobile */
    max-width: 260px;          /* Prevents stretching too far */
    height: 45px;              /* Slightly shorter */
    margin: 20px auto 0 auto;  /* Center button */
    padding: 10px 20px;
    font-size: 14px;           /* Smaller text */
    border-radius: 30px;
  }

  .consulting-btn .dot {
    right: 10px;               /* Adjust dot position */
    width: 16px;               /* Smaller dot */
    height: 16px;
  }
}


.menu-toggle span {
  background: #000;
}

body.dark-mode .menu-toggle span {
  background-color: #ffffff !important;
}


body.dark-mode .nav-links li a {
  color: black !important;
}



body.dark-mode {
  background-color: #121212;
  color: #f5f5f5;
}


body.dark-mode .navbar,
body.dark-mode .navbar,
body.dark-mode .wave-section {
  background-color: #1e1e1e;
}

body.dark-mode .nav-links a {
  color: #ddd;
}


body.dark-mode .hero-content h1,
body.dark-mode .subheading {
  color: #fff;
}


body.dark-mode .service-card,
body.dark-mode .feature-boxes,
body.dark-mode .section-header1,
body.dark-mode .team-card {
  background-color: #1f1f1f;
  color: #140303;
}

body.dark-mode .section-title
{
  color: #ddd;
}

body.dark-mode .service-card,
body.dark-mode .skills-section::before
{
  background-color: #043f3f;
  color: white;
}

body.dark-mode .service-card p,
body.dark-mode .finance-service-card p {
  color: #bbb;
}

body.dark-mode .service-card h3 {
  color: white;
}

body.dark-mode .job-card h3
{
    color: #000;
}

body.dark-mode .footer {
  background-color: #1a1a1a;
  color: #ddd;
}
body.dark-mode .footer a {
  color: #ccc;
}
body.dark-mode .footer-bottom {
  border-top: 1px solid #333;
}

.dark-mode-toggle {
  display: flex;
  gap: 8px;
  background-color: red;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  margin-right: 40px;
  cursor: pointer;
  font-size: 14px;
}

.dark-mode-toggle:hover {
  background-color: darkred;
}

.dark-mode-toggle i {
  font-size: 16px;
}


.hero {
  position: relative;
  background: linear-gradient(rgba(0, 5, 5, 0.5), rgba(2, 19, 19, 0.5)),
              url('Images/contact.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: -20%;
  width: 20%;
  height: 100%;
  transform: skewX(-45deg);
  z-index: 2;
}


.layer1 {
  background: rgb(215, 54, 5, 0.616);
  left: -20%;
  width: 24%;
}

.layer3 {
  background: rgba(241, 77, 28, 0.616);
  left: -30%;
  width: 52%;
}


.layer4 {
  left: auto;
  right: -20%;
  width: 30%;
  top:40%;
  height: 300px;
  background: rgba(255, 51, 0, 0.694);
  transform: skewX(-40deg);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  margin-top: 10px;
}

@media (max-width: 768px) {

  .overlay {
    display: none;
  }

}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

.service-box {
  background: #f2f2f2;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.service-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.service-box:hover {
  background: #ff4500;
  color: white;
}

.service-box:hover p {
  color: white;
}

    .jobs {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 30px auto;
      padding: 0 20px;
    }
    .job-card {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 2px 4px 8px 4px rgba(0,0,0,0.2);
    }

    .job-card:hover {
  transform: translateY(-5px);
  background-color:#ff4500;
  color: white;
}
    .job-card h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }
    .job-card p {
      font-size: 14px;
      color: #666;
      margin-bottom: 15px;
    }

    .job-card:hover p {
  color: white;
}
    .apply-btn {
  display: inline-block;
  padding: 10px 15px;
  background: white;
  color: black;
  border: 2px solid black;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
    .apply-btn:hover {
      background: #e63e00;
    }
    .view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}

.wave-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding: 60px 20px;
}

.wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 100px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='1200' height='100' viewBox='0 0 1200 100'><path fill='%23e63e00' d='M0,30 C300,80 900,-20 1200,30 L1200,100 L0,100 Z'></path></svg>") repeat-x;
  background-size: 1200px 100px;
  animation: waveMove 10s linear infinite;
  opacity: 0.6;
}

.wave2 {
  animation: waveMove 15s linear infinite reverse;
  opacity: 0.4;
  bottom: 5px;
}

.wave3 {
  animation: waveMove 20s linear infinite;
  opacity: 0.2;
  bottom: 10px;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


@media (max-width: 1024px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
  .jobs {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .jobs {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .job-card {
    padding: 15px;
  }
}


@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr;
  }
  .jobs {
    grid-template-columns: 1fr;
  }
  .service-box img {
    width: 50px;
    height: 50px;
  }
  .service-box p {
    font-size: 13px;
  }
  .job-card h3 {
    font-size: 16px;
  }
  .job-card p {
    font-size: 13px;
  }
  .apply-btn {
    font-size: 13px;
    padding: 8px 12px;
  }
}


.footer {
  background: #0f1b23;
  color: white;
  padding: 40px;
  font-family: Arial, sans-serif;
  overflow: hidden;
}


.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 400px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
  text-align: center;
}

.footer-logo {
  max-width: 300px;
}

 .logo1 {
  font-size: 20px;

}

.footer-logo p {
  margin-bottom: 20px;
  color: #9aa5b1;
}


.social-icons a {
  color: white;
  margin: 0 5px;
  font-size: 16px;
}


.newsletter {
  max-width: 500px;
  margin-top: 50px;
}

.newsletter h3 {
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
}

.consulting-btn {
  position: relative;
  background: #101010;
  color: white;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 45px;
}
.consulting-text {
  position: relative;
  z-index: 2;
}
.consulting-btn .dot {
  position: absolute;
  right: 30px;
  width: 35px;
  height: 35px;
  background: #ff4500;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}
.consulting-btn:hover .dot {
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

.footer-links-wrapper {
  background-image: url('Images/background.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 60px 20px;
  width: 100%;
  color: #9aa5b1;
  display: flex;
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 60px;
  max-width: 900px;
  flex-wrap: wrap;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 40px;
  border-radius: 8px;
}

.footer-links > div {
  min-width: 180px;
}

.footer-links h4 {
  margin-bottom: 15px;
  color: white;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #9aa5b1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ff4b2b;
}

.footer-links p {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links p i {
  margin-right: 8px;
  color: #ff4b2b;
}

.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}

.footer-bottom .highlight {
  color: #ff4500;
}

.scroll-top {
  background: blacks;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.scroll-top:hover {
  background: red;
}

.scroll-top i {
  color: white;
  font-size: 18px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-logo p {
    margin-top: 10px;
  }

  .newsletter {
    margin-top: 20px;
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form input {
    width: 100%;
  }

  .consulting-btn {
    width: 100%;
  }

  .footer-links-wrapper {
    padding: 30px 10px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .footer-links > div {
    min-width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
.scroll-top:hover {
  background: red;
}
  .scroll-top i {
    font-size: 16px;
  }
}



