* {
  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 .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/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;
}


.contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-image {
  position: relative;
  flex: 1;
  max-width: 45%;
  overflow: hidden;
}
.contact-image img {
  width: 400px;
  margin-left: 50px;
  height: 500px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.bubbles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.bubbles span {
  position: absolute;
  bottom: -40px;
  width: 20px;
  height: 20px;
  background: #ff4500;
  border-radius: 50%;
  animation: rise 8s linear infinite;
}
.bubbles span:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-duration: 6s; }
.bubbles span:nth-child(2) { left: 20%; width: 25px; height: 25px; animation-duration: 9s; animation-delay: 2s; }
.bubbles span:nth-child(3) { left: 60%; width: 10px; height: 10px; animation-duration: 7s; animation-delay: 1s; }
.bubbles span:nth-child(4) { left: 70%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 3s; }
.bubbles span:nth-child(5) { left: 80%; width: 18px; height: 18px; animation-duration: 8s; animation-delay: 4s; }

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.8; }
  50% { opacity: 1; transform: translateY(-200px) scale(1.1); }
  100% { transform: translateY(-400px) scale(0.9); opacity: 0; }
}

.contact-info {
  flex: 1;
  max-width: 50%;
}
.contact-info h4 {
  color: #ff4500;
  font-weight: bold;
}
.contact-info .section-title {
  margin: 10px 0;
}
.contact-info .info-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
.contact-info .info-list li {
  margin: 10px 0;
  font-size: 16px;
}
.contact-info .info-list i {
  color: #ff4500;
  margin-right: 10px;
}

.contact-form {
  position: relative;
  margin: -40px auto 60px;
  background: rgb(236, 235, 235);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 70%;
  max-width: 900px;
  z-index: 2;
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #ff4500;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;        
}

.contact-form .input-box {
  position: relative;
  flex: 1;
  min-width: 250px;           
}

.contact-form .input-box input,
.contact-form .input-box textarea {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}


.contact-form .input-box i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  color: #ff4500;
  font-size: 16px;
  pointer-events: none;
}

.contact-form .textarea-box i {
  top: 12px;
}

.circle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  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;
}

.map-container {
  width: 100%;
  height: 450px;
  margin-top: 100px;
}

@media screen and (max-width: 992px) {
  .contact-top {
    flex-direction: column;
    gap: 30px;
    margin-left: 20px;
    margin-bottom: 30px;
  }

  .contact-image {
    max-width: 100%;
  }

  .contact-image img {
    width: 300px;
    height: 400px;
    margin-left: 0;
  }

  .bubbles span {
    width: 12px;
    height: 12px;
  }

  .contact-info {
    max-width: 100%;
  }

  .contact-form {
    width: 90%;
    left: 5%;
    top: 160%;
    height: auto;
    padding: 25px;
  }

  .contact-form .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .contact-top {
    flex-direction: column;
    gap: 20px;
  }

  .contact-image img {
    width: 100%;
    height: 400px;
    margin-left: 0;
  }

  .bubbles {
    display: none;
  }

  .contact-info h4 {
    font-size: 20px;  
  }

  .contact-info .section-title {
    font-size: 22px;
  }

  .contact-info .info-list li {
    font-size: 14px;
  }

  .contact-form {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 20px;
    margin-top: 20px;
    border-radius: 12px;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .contact-form .input-box input,
  .contact-form .input-box textarea {
    padding: 12px 12px 12px 12px;
  }

  .circle-btn {
    width: 100%;
    justify-content: center;
  }

  .map-container {
    margin-top: 20px;
    height: 300px;
  }
}



.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: 20px;
  }

  .footer-logo {
    margin-top: 20px;
  }


  .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;
  }
}
