* {
  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;
}


.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;
}

@media (max-width: 768px) {

  .overlay {
    display: none;
  }

}

body.dark-mode {
  background-color: #121212;
  color: #f5f5f5;
}


body.dark-mode .navbar {
  background-color: #1e1e1e;
}

body.dark-mode .nav-links a {
  color: #ddd;
}


body.dark-mode .hero-content h1,
body.dark-mode .text-box h2,
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 .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/why.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;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.why-choose-us {
  padding: 60px 0;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.image-box {
  position: relative;
  flex: 1 1 45%;
}

.image-box .main-img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.image-box .circle-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ff4500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: blinkBorder 1.5s infinite alternate;
}


@keyframes blinkBorder {
  0% {
    border-color: #ff4500;
  }
  100% {
    border-color: #fff;
  }
}


.text-box {
  flex: 1 1 50%;
}

.sub-title {
  color: #ff6600;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.text-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #222;
}

.text-box p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.services-list {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.services-list ul {
  list-style: none;
  padding: 0;
}

.services-list ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.services-list ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff6600;
}

.circle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease;
}
.circle-btn .dot {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}
.circle-btn.red {
  background-color: #101010;
  color: #fff;
}
.circle-btn.red .dot {
  background-color: #ff4500;
}

.circle-btn:hover .dot {
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}
.circle-btn:hover {
  color: #fff;
}

.cta-section {
  background: #ff4d00;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.circle-btn1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 0;
  transition: color 0.3s ease, background 0.3s ease;
}

.circle-btn1 .dot {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}

.circle-btn1.red {
  background-color: #101010;
  color: #fff;
}

.circle-btn1.red .dot {
  background-color: #ff4500;
}

.circle-btn1:hover .dot {
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

.circle-btn1:hover {
  color: #000;             
  background-color: #fff; 
}


.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.cta-section::before {
  top: -120px;
  left: -120px;
}

.cta-section::after {
  bottom: -120px;
  right: -120px;
}

.cta-subtitle {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 15px;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.4;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  margin-left: 200px;
  margin-right: 200px;
  display: flex;
  justify-content: center;
}

.logo-track {
  display: flex;
  gap: 40px;
  padding: 0 20%;
  transform: translateX(-20%);
}

.logo-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

.logo-item img {
  width: 100px;
  height: auto;
  display: block;
}

.logo-slider {
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll-left 20s linear infinite;
}

.logo-item img {
  height: 80px;
  display: block;
}

@keyframes scroll-left {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(20%);
  }
}

.line {
  margin-left: 200px;
  margin-right: 200px;
  height: 4px; 
  background-color: #ccc;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}


@media (max-width: 768px) {
  .logo-slider {
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 0;
  }

  .logo-track {
    gap: 20px;
    padding: 0 10%;
    animation: scroll-left 15s linear infinite;
  }

  .logo-item img {
    width: 60px; 
    height: auto;
  }

  .line {
    margin-left: 20px;
    margin-right: 20px;
  }
}


@media (max-width: 480px) {
  .logo-item img {
    width: 50px;
  }

  .logo-track {
    gap: 15px;
    padding: 0 5%;
  }

  .line {
    height: 3px;
  }
}

.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;
  }
}

