
* {
  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: 200px;
  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%;
  margin-left: -10px;
  background-color: #033232;
  padding: 10px 0;
  min-width: 120px;
  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;
  margin-left: -10px;
}

.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) {

  /* 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) {

  .dark-mode-toggle {
    margin-right: 20px !important;
}

  .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;
}


.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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: 20%;
}

.layer3 {
  background: rgba(241, 77, 28, 0.616);
  left: -30%;
  width: 45%;
}


.layer4 {
  top: auto;
  left: auto;
  right: -20%;
  bottom: -15%;
  width: 30%;
  height: 300px;
  background: rgba(255, 51, 0, 0.694);
  transform: skewX(-45deg);
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 3;
  padding-left: 80px;
  max-width: 700px;
}
.subheading {
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
}

.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.white {
  background-color: #fff;
  color: #000;
  border: 2px solid #101010;
}
.circle-btn.white .dot {
  background-color: #ff4500;
}
.circle-btn:hover .dot {
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}
.circle-btn:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 70px;
    min-height: auto;
    flex-direction: column;
    text-align: center;
    padding-left: 0;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 24px;
    color: #ff4500;
    line-height: 1.3;
  }

  .subheading {
    font-size: 12px;
    color: #19fca1;
    font-weight: bold;
    margin-top: 20px;
    letter-spacing: 2px;
  }


  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .circle-btn {
    width: 100%;
    max-width: 250px;
  }

}


.about-section {
  padding: 60px 20px;
  background-color: white;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.about-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

.about-content {
  flex: 1 1 45%;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
}

.section-label {
  color: #ff3b3f;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #101010;
}

.about-desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-features li {
  margin-bottom: 10px;
  color: #101010;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.about-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff3b3f;
  font-size: 16px;
}


.circle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-weight: bold;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  background: #ff3b3f;
  color: #fff;
  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;
  background-color: #101010;
  transition: all 0.4s ease;
}

.circle-btn:hover .dot {
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}

.circle-btn:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-content h2,
  .about-title {
    font-size: 1.8rem;
  }

  .about-content p,
  .about-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .about-features {
    text-align: left;
    display: inline-block;
  }

  .circle-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .circle-btn .dot {
    right: 15px;
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .about-content h2,
  .about-title {
    font-size: 1.5rem;
  }

  .about-content p,
  .about-desc {
    font-size: 0.9rem;
  }

  .circle-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .circle-btn .dot {
    right: 10px;
    width: 16px;
    height: 16px;
  }
}


.account-finance-section {
  position: relative;
  padding: 80px 50px;
  overflow: hidden;
  background-color:rgb(237, 227, 227);
}

.diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  z-index: 0;
}

.layer-1 {
  width: 100%;
  height: 100%;
  background: #ff4800;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.layer-2 {
  width: 100%;
  height: 100%;
  background: #ffe2da;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  margin-top: -10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

.content-box {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-subtitle {
  color: #ff4e2b;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.line-left,
.line-right {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #ff4e2b;
  display: inline-block;
}

.section-title {
  font-size: 32px;
  color: #1c1c1c;
  margin-bottom: 40px;
  line-height: 1.4;
}

.service-card-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  padding: 30px;
  width: 280px;
  position: relative;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(226, 6, 6, 0.792);
  border-bottom: 4px solid red;
}

.service-icon {
  font-size: 40px;
  color: #ff4e2b;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.arrow {
  font-size: 22px;
  font-weight: bold;
  color: black;
  transition: transform 0.3s ease;
}



.video-section {
  position: relative;
  background: url('Images/video-bg.webp') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.video-content {
  color: #fff;
  max-width: 720px;
  text-align: left;
  z-index: 2;
}

.watch-label {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffffcc;
}

.video-content h1 {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.cta-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.project-btn {
  background-color: #ff3c1b;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 60, 27, 0.3);
  transition: background 0.3s ease;
}

.project-btn:hover {
  background-color: #e33215;
}

.play-btn .circle {
  width: 90px;
  height: 90px;
  border: 5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-icon {
  font-size: 28px;
  color: #ff3c1b;
  font-style: normal;
}

@media (max-width: 480px) {
  .video-content h1 {
   font-size: 20px;
  }

}



.finance-services-section {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    text-align: center;
    padding: 40px 20px;
}

.finance-subtitle {
    color: orangered;
    font-size: 14px;
    margin-bottom: 5px;
}

.finance-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}


.finance-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}


.finance-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.finance-service-card img {
    width: 350px;
    height: 400px;
    display: block;
    transition: transform 0.4s ease;
}

.finance-service-card:hover img {
    transform: scale(1.1);
}

.finance-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,69,0,0.85), rgba(255,69,0,0.65));
    clip-path: polygon(0% 50%, 80% 100%, 20% 100%, 0% 100%);
}

.finance-overlay-text {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: white;
    text-align: left;
}

.finance-overlay-text h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.finance-overlay-text p {
    margin: 3px 0 0;
    font-size: 14px;
}

.finance-arrow {
    font-size: 20px;
    display: block;
    color:white;
    margin-bottom: 5px;
}

.why-section {
  width: 100%;
  font-family: Arial, sans-serif;
}

.why-bg {
  background: linear-gradient(to bottom, #ffffff 50%, #f5f5f5 50%);
  padding: 60px 20px;
}

.why-container {
  display: flex;
  justify-content: center;
}

.why-card {
  background: #0f1a27;
  color: #ffffff;
  display: flex;
  max-width: 900px;
  width: 100%;
  box-shadow: 8px 8px 0 #ddd;
}

.why-card-image {
  flex: 1;
}

.why-card-image img {
  width: 200px;
  height: 200px;
  justify-content: center;
  object-fit: cover;
  margin-top: 90px;
  margin-left: 100px;
}

.why-card-content {
  flex: 1;
  padding: 40px;
}

.why-subtitle {
  color: #ff5722;
  font-size: 14px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.why-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
}

.why-description {
  color: #cfd8dc;
  font-size: 15px;
  margin-bottom: 20px;
}

.why-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.why-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

.why-btn {
  background: #ff5722;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.why-btn:hover {
  background: #e64a19;
}

.why-stats {
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
}

.why-stat-box {
  text-align: center;
}

.why-stat-icon {
  width: 70px;
  height: 60px;
  margin-bottom: 10px;
}

.why-stat-box h3 {
  font-size: 24px;
  margin: 5px 0;
}

.why-stat-box p {
  font-size: 14px;
  color: #555;
}

@media (max-width: 768px) {
  .why-container {
    flex-direction: column;
    align-items: center;
  }

  .why-card {
    flex-direction: column;
    text-align: center;
    box-shadow: none;
  }

  .why-card-image {
    flex: unset;
    margin: 0 auto;
  }

  .why-card-image img {
    width: 150px;
    height: 150px;
    margin: 20px auto 0;
  }

  .why-card-content {
    padding: 20px;
  }

  .why-title {
    font-size: 22px;
  }

  .why-description {
    font-size: 14px;
  }

  .why-features li {
    font-size: 14px;
  }

  .why-stats {
    flex-direction: column;
    gap: 20px;
  }

  .why-stat-box h3 {
    font-size: 20px;
  }

  .why-stat-box p {
    font-size: 13px;
  }
}


.team-section {
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}

.team-subtitle {
  color: #ff5722;
  font-size: 14px;
  text-transform: uppercase;
}

.team-title {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0 40px;
  color: #0f1a27;
}

.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.team-card {
  width: 220px;
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  display: block;
}

.corner-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: #ff5722;
  color: white;
  padding: 10px;
  font-size: 14px;
}

.corner-tag i {
  font-size: 14px;
}

.social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 87, 34, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.social-overlay a {
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s;
}

.social-overlay a:hover {
  background: white;
  color: #ff5722;
}

.team-img:hover .social-overlay {
  opacity: 1;
}

.team-card h3 {
  font-size: 16px;
  margin-top: 12px;
  color: #0f1a27;
}

.team-card p {
  font-size: 13px;
  color: #777;
}

.skills-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.skills-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -200px;
    width: 700px;
    height: 700px;
    background: #f5f5f5;
    border-radius: 50%;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.skills-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.skills-text {
    flex: 1;
}

.section-subtitle {
    color: #ff4a17;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f1b29;
}

.skills-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.skills-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.skill-item {
    text-align: center;
}

.circle1 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#ded2cf 90deg, #ca1c1c 80deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle1::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
}

.circle1 i {
    position: relative;
    z-index: 1;
    font-size: 28px;
    color: #0f1b29;
}

.skill-item h4 {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 120px;
  color: #0f1b29;
  text-align: center;
}



@media (max-width: 992px) {
  .skills-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .skills-text {
    flex: 100%;
  }

  .skills-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }

  .section-title {
    font-size: 26px;
  }
  .skills-text p {
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .skills-section {
    padding: 50px 15px;
  }

  .skills-section::before {
    width: 350px;
    height: 350px;
    left: -80px;
  }

  .skills-icons {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
  }

  .circle1 {
    width: 80px;
    height: 80px;
  }
  .circle1::after {
    width: 55px;
    height: 55px;
  }
  .circle1 i {
    font-size: 20px;
  }

  .skill-item h4 {
    font-size: 13px;
    margin-right: 0;
  }

  .section-title {
    font-size: 22px;
  }
}
.meet-feedback {
  background: #f5f5f5;
  overflow: hidden;
  padding: 60px 10%;
  display: flex;
  justify-content: center;
}

.feedback-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
}

.feedback-left {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon {
  font-size: 670px;
  color: #ff4a00;
  position: absolute;
  margin-right: 180px;
  z-index: 0;
}

.feedback-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

.feedback-images .main-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid white;
}

.feedback-images .small-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  position: absolute;
  bottom: -20px;
  left: 90px;
}

.feedback-right {
  flex: 1;
}

.feedback-subtitle {
  color: #ff4a00;
  font-weight: 600;
  margin-bottom: 10px;
}

.feedback-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.feedback-slide {
  display: none;
}

.feedback-slide.active {
  display: block;
}

.feedback-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.feedback-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feedback-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.feedback-author h4 {
  margin: 0;
  font-weight: 600;
}

.feedback-author span {
  font-size: 14px;
  color: #ff4a00;
}

.feedback-nav {
  margin-top: 20px;
}

.arrow {
  cursor: pointer;
  font-size: 24px;
  margin: 0 10px;
  transition: 0.3s;
}

.arrow:hover {
  color: #222;
}

@media (max-width: 768px) {
  .meet-feedback {
    padding: 40px 5%;
  }

  .feedback-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .feedback-left {
    order: 1;
  }

  .quote-icon {
    font-size: 200px;
    margin-right: 0;
    opacity: 0.1;
  }

  .feedback-images {
    align-items: center;
  }

  .feedback-images .main-img {
    width: 120px;
    height: 120px;
  }

  .feedback-images .small-img {
    width: 70px;
    height: 70px;
    bottom: -10px;
    left: 50px;
  }

  .feedback-right {
    order: 2;
  }

  .feedback-title {
    font-size: 22px;
  }

  .feedback-text {
    font-size: 14px;
  }

  .feedback-author img {
    width: 40px;
    height: 40px;
  }
}


.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;
  }
}


.news-section {
  padding: 60px 50px;

}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.news-subtitle {
  color: #ff4a17;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.news-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f1b29;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: rgb(237, 236, 236);
  border-radius: 6px;
  overflow: hidden;
  width: 380px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-info {
  padding: 20px;
}

.news-date {
  color: #ff4a17;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.news-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f1b29;
}

.news-info p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.news-link {
  font-size: 14px;
  font-weight: 600;
  color: #0f1b29;
  text-decoration: none;
}

.news-link i {
  margin-left: 6px;
}

.articlebtn {
  position: relative;
  background: #ff4500;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 50px;
}

.consulting-text {
  position: relative;
  z-index: 2;
}

.articlebtn .dot1 {
  position: absolute;
  right: 40px;
  width: 40px;
  height: 40px;
  background:black;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

.articlebtn:hover .dot1 {
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 999px;
}


@media (max-width: 768px) {
  .news-section {
    padding: 40px 20px;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
  }

  .news-title h2 {
    font-size: 24px;
  }

  .news-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .news-card {
    width: 100%;
    max-width: 350px;
  }

  .news-card img {
    height: 180px;
  }

  .news-info h3 {
    font-size: 16px;
  }

  .articlebtn {
    min-width: 160px;
    height: 45px;
    padding: 10px 20px;
    font-size: 14px;
  }

  .articlebtn .dot1 {
    width: 30px;
    height: 30px;
    right: 20px;
  }
}


@media (max-width: 480px) {
  .news-section {
    padding: 30px 15px;
  }

  .news-title h2 {
    font-size: 20px;
  }

  .news-card img {
    height: 150px;
  }

  .articlebtn {
    min-width: 140px;
    height: 40px;
    font-size: 13px;
  }
}


.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;
  }
}



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 .finance-service-card,
body.dark-mode .account-finance-section,
body.dark-mode .about-section,
body.dark-mode .about-container,
body.dark-mode .about-content,
body.dark-mode .finance-services-section,
body.dark-mode .about-title,
body.dark-mode .why-section,
body.dark-mode .why-bg,
body.dark-mode .why-stats,
body.dark-mode .meet-feedback,
body.dark-mode .skills-section,
body.dark-mode .about-desc,
body.dark-mode .logo-slider,
body.dark-mode .about-features li,
body.dark-mode .team-card {
  background-color: #1f1f1f;
  background: black;
  color: #ddd;
}

body.dark-mode .section-title,
body.dark-mode .why-stats p,
body.dark-mode .team-card h3,
body.dark-mode .skill-item h4,
body.dark-mode .skills-content p,
body.dark-mode .team-title,
body.dark-mode .skills-content,
body.dark-mode .news-title h2,
body.dark-mode .feedback-text
{
  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;
}

