@import url("https://fonts.googleapis.com/css2?family=Alata&family=Quicksand:wght@300..700&display=swap");  
/* Headings use Alata */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Alata", sans-serif;
}
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Body/content uses Quicksand */
body,
p,
li,
a {
  font-family: "Quicksand", sans-serif;
}

.head {
  font-size: 3rem;
  font-weight: normal;
}

/* Responsive heading */
@media (max-width: 1440px) {
  .head {
    font-size: 2.9rem;
  }
}

@media (max-width: 1240px) {
  .head {
    font-size: 2.85rem;
  }
}

@media (max-width: 1199px) {
  .head {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .head {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .head {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .head {
    font-size: 1.75rem;
    line-height: 1.3;
  }
}

#home {
  /* margin-top: 7rem; */
}

.text-muted {
  font-size: 16px;
}

.text {
  font-size: 18px;
}

/* Responsive text sizes */
@media (max-width: 1199px) {
  .text {
    font-size: 17px;
  }
  
  .text-muted {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .text {
    font-size: 16px;
  }
  
  .text-muted {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .text {
    font-size: 15px;
  }
  
  .text-muted {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .text {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .text-muted {
    font-size: 12px;
  }
}

/* purpose-section */
/* .purpose-section {
  background: url("assets/img/codewithpurpose.svg");
} */

.purpose {
  font-size: 28px;
  font-weight: 400;
}

/* Responsive purpose heading */
@media (max-width: 1199px) {
  .purpose {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .purpose {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .purpose {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .purpose {
    font-size: 20px;
    line-height: 1.3;
  }
}
/* purpose-section */

/* comprehensive */
.comprehensive-section {
  background-color: var(--scrolling-card);
  padding: 60px 0;
}

/* Responsive comprehensive section */
@media (max-width: 1199px) {
  .comprehensive-section {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .comprehensive-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .comprehensive-section {
    padding: 40px 0;
  }
}

@media (max-width: 576px) {
  .comprehensive-section {
    padding: 30px 0;
  }
}

[data-theme="light"] .comprehensive-section {
  background: #ffffff;
  color: #000; /* black text */
}

[data-theme="dark"] .comprehensive-section {
  background: #191817;
  color: #fff; /* white text */
}


.comprehensive {
  font-size: 28px;
  font-weight: 400;
}

/* Responsive comprehensive heading */
@media (max-width: 1199px) {
  .comprehensive {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .comprehensive {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .comprehensive {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .comprehensive {
    font-size: 20px;
    line-height: 1.3;
  }
}

.service-card {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: var(--background-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  outline: 1.5px solid  #fdd377;
  outline-offset: -2px;
  transition: box-shadow 0.3s ease, outline-color 0.3s ease;
  height: 100%;
}

/* Responsive service cards */
@media (max-width: 1440px) {
  .service-card {
    max-width: 340px;
    margin-bottom: 26px;
  }
}

@media (max-width: 1240px) {
  .service-card {
    max-width: 330px;
    margin-bottom: 25px;
  }
}

@media (max-width: 1199px) {
  .service-card {
    max-width: 320px;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .service-card {
    max-width: 100%;
    margin-bottom: 22px;
    border-radius: 18px;
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .service-card {
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 16px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .service-card {
    width: 350px;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

/* The rounded colored shape on top right */
.service-card::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #d9a73a);
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
}

/* Overylay*/
.service-card.custom-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  /* background: var(--background-color); */
  z-index: 2;
}

.service-card>* {
  position: relative;
  z-index: 3;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive service icons */
@media (max-width: 1199px) {
  .service-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 13px;
    border-radius: 15px;
  }
}

@media (max-width: 991px) {
  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
    border-radius: 12px;
  }
}

@media (max-width: 576px) {
  .service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 10px;
    border-radius: 10px;
  }
}

.service-icon img {
  width: 50px;
  height: 50px;
  display: block;
  margin-top: 15%;
}

/* Responsive service icon images */
@media (max-width: 1199px) {
  .service-icon img {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 991px) {
  .service-icon img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 768px) {
  .service-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .service-icon img {
    width: 35px;
    height: 35px;
  }
}

.service-card h5 {
  margin-bottom: 8px;
  color: var(--text-color);
}

.service-desc,
.service-card p {
  color: var(--text-color);
  font-size: 1.0rem;
  line-height: 1.6;
}

/* Responsive service card text */
@media (max-width: 1199px) {
  .service-card h5 {
    font-size: 1.15rem;
    margin-bottom: 7px;
  }
  
  .service-desc,
  .service-card p {
    font-size: 0.95rem;
    line-height: 1.55;
  }
}

@media (max-width: 991px) {
  .service-card h5 {
    font-size: 1.12rem;
    margin-bottom: 6px;
  }
  
  .service-desc,
  .service-card p {
    font-size: 0.92rem;
    line-height: 1.52;
  }
}

@media (max-width: 768px) {
  .service-card h5 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .service-desc,
  .service-card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .service-card h5 {
    font-size: 1rem;
    margin-bottom: 4px;
  }
  
  .service-desc,
  .service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

@media (max-width: 1199px) {
  .row {
    gap: 20px !important;
  }
  
  .service-card {
    margin-bottom: 25px;
    min-height: 250px;
  }
}

@media (max-width: 991px) {
  .row {
    flex-direction: column;
    gap: 0 !important;
  }
  
  .service-card {
    margin-bottom: 25px;
    min-height: 245px;
  }
}

@media (max-width: 900px) {
  .row {
    flex-direction: column;
    gap: 0 !important;
  }

  .service-card {
    margin-bottom: 27px;
    min-height: 240px;
  }
}

/* comprehensive */

/* Make sections full width */
.container {
  max-width: 100% !important;
  padding-left: auto;
  padding-right: auto;
}

.container-dev {
  max-width: 92% !important;
  padding-left: auto;
  padding-right: auto;
}

/* Responsive containers */
@media (max-width: 1440px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .container-dev {
    max-width: 95% !important;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1240px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }
  
  .container-dev {
    max-width: 92% !important;
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 1024px) {
  .container {
    padding-left: 26px;
    padding-right: 26px;
  }
  
  .container-dev {
    max-width: 90% !important;
    padding-left: 26px;
    padding-right: 26px;
  }
}

@media (max-width: 1199px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .container-dev {
    max-width: 90% !important;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .container {
    padding-left: 22px;
    padding-right: 22px;
  }
  
  .container-dev {
    max-width: 92% !important;
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .container-dev {
    max-width: 95% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .container-dev {
    max-width: 98% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

body {
  font-family: "Poppins", sans-serif;
  /* background-color: var(--background-color); */
}

/* Responsive body typography */
@media (max-width: 1199px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  body {
    font-size: 13px;
    line-height: 1.4;
  }
}
html {
  scroll-behavior: smooth;
}

/* .hero-section {
  padding-top: 100px;
} */

/* Modal overlay */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Modal content */
.modal-content {
  background-color: var(--background-color);
  margin: 15% auto;
  padding: 0px;
  border-radius: 8px;
  width: 80%;
  max-width: 900px;
  height: 90vh;
}

/* Responsive modal content */
@media (max-width: 1199px) {
  .modal-content {
    width: 85%;
    margin: 12% auto;
    height: 88vh;
    border-radius: 7px;
  }
}

@media (max-width: 991px) {
  .modal-content {
    width: 90%;
    margin: 11% auto;
    height: 86vh;
    border-radius: 6px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    height: 85vh;
    border-radius: 6px;
  }
}

@media (max-width: 576px) {
  .modal-content {
    width: 98%;
    margin: 5% auto;
    height: 80vh;
    border-radius: 4px;
  }
}

/* Close button */
.close {
  color: var(--text-color);
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
}

/* Responsive close button */
@media (max-width: 1199px) {
  .close {
    font-size: 26px;
    top: 9px;
    right: 14px;
  }
}

@media (max-width: 991px) {
  .close {
    font-size: 25px;
    top: 8px;
    right: 13px;
  }
}

@media (max-width: 768px) {
  .close {
    font-size: 24px;
    top: 8px;
    right: 12px;
  }
}

@media (max-width: 576px) {
  .close {
    font-size: 20px;
    top: 6px;
    right: 10px;
  }
}

.close:hover,
.close:focus {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  /* background: url("../img/section1.svg"); */
  /* min-height: calc(100vh - 80px); */
  /* margin-top: -10px; */
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-color);
  padding: 2rem;
}

/* Responsive hero content */
@media (max-width: 1199px) {
  .hero-content {
    padding: 1.8rem;
  }
}

@media (max-width: 991px) {
  .hero-content {
    padding: 1.7rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    padding: 1rem;
  }
}

/* .light-only-home{
background: url("../img/section1.svg");
}

.dark-only-home{
background: url('../dark_theme/img/home.svg');
} */

/* Animated Button */
.btn-animate {
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
  /* font-size: 1.25rem; */
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  margin-bottom: 60px;
  display: inline-flex;
  background-color: var(--btn-primary-bg);
  color: var(--button-text-color);
}

/* Responsive button */
@media (max-width: 1199px) {
  .btn-animate {
    margin-bottom: 55px;
    gap: 11px;
    padding: 14px 22px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .btn-animate {
    margin-bottom: 50px;
    gap: 10px;
    padding: 13px 21px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .btn-animate {
    margin-bottom: 40px;
    gap: 10px;
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .btn-animate {
    margin-bottom: 30px;
    gap: 8px;
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 6px;
  }
}

.btn-animate img {
  width: 24px;
  height: 24px;
  display: block;
  transition: opacity 0.3s ease;
}

.icon-hover {
  position: absolute;
  left: 12px;
  opacity: 0;
  pointer-events: none;
}

.btn-animate:hover .icon-default {
  opacity: 0;
}

.btn-animate:hover .icon-hover {
  opacity: 1;
}

.btn-animate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--btn-primary-hover);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-animate:hover::before {
  left: 0;
}

/* .btn-animate:hover {
  color: var(--text-color) !important;
  border: none;
} */

.btn-animate span,
.btn-animate {
  position: relative;
  z-index: 1;
}



.scroll-content {
  display: flex;
  /* gap: 20px; */
  animation: scroll-left 20s linear infinite;
  min-width: 200%;
}

.skill-box {
  flex: 0 0 auto;
  padding: 12px 25px;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  background: var(--scrolling-card);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  color: var(--text-color);
  white-space: nowrap;
  transition: transform 0.3s;
  margin-right: 35px;
}

/* Responsive skill boxes */
@media (max-width: 1199px) {
  .skill-box {
    padding: 11px 23px;
    font-size: 15px;
    margin-right: 32px;
  }
}

@media (max-width: 991px) {
  .skill-box {
    padding: 10px 21px;
    font-size: 14px;
    margin-right: 30px;
  }
}

@media (max-width: 768px) {
  .skill-box {
    padding: 10px 20px;
    font-size: 14px;
    margin-right: 28px;
  }
}

@media (max-width: 576px) {
  .skill-box {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 6px;
    margin-right: 20px;
  }
}

/* .skill-box {
  display: flex;
  align-items: center;
  background: var(--background-color);
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 32px;
  font-weight: 500;
  white-space: nowrap;
  margin: 0 2px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
} */

/* .skill-box:hover {
  transform: scale(1.1);
  background: var(--btn-primary-hover);
  color: var(--text-color);
} */

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sms-icon {
  position: absolute;
  bottom: 1%;
  right: 4%;
}
.card {
  border-radius: 12px;
  transition: 0.3s;
  /* width: 70%; 
  margin-left: 25%;  */
  /* margin-left:25%; */
}
/* .card:hover {
  transform: translateY(-5px);
} */

.footer a:hover {
  color: var(--btn-primary-hover) !important;
}
.digital-section {
  background: linear-gradient(to bottom, #fff, #fef6e4);
}

.sticky-tabs {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sticky-tabs .tab {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--text-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.sticky-tabs .tab.active {
  color: var(--btn-primary-hover);
  font-size: 1.4rem;
}

.panel {
  margin-bottom: 120px;
  scroll-margin-top: 120px;
}
.purpose-section {
  background: linear-gradient(to bottom, var(--background-color), var(--background-color));
}

.purpose-section h2 {
  font-size: 2rem;
}

.purpose-section img {
  max-width: 80%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

/* .purpose-section img:hover {
  transform: scale(1.03);
} */

/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap"); */

/* Footer Base */
.footer {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--text-color);
  background: var(--scrolling-card);
  padding: 50px 0;
}

/* Footer Container with Left & Right Spacing */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Grid Layout for Even Spacing */
.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

/* .footer-col {
  min-width: 220px;
} */
/* Footer Section */
.footer-list li {
  margin-bottom: 0.5rem;
}
.footer-list li:last-child {
  margin-bottom: 0;
}


.footer h5 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--text-color);
}

.footer p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0 0 8px;
}


/* .footer a {
  text-decoration: none;
  color: black;
} */

.footer a:hover {
  color: var(--btn-primary-hover);
}

/* Default light theme */
:root {
  --social-bg: #d9a73a;
  --social-color: black;
  --social-border: none;
}

/* Dark theme overrides */
[data-theme="dark"] {
  --social-bg: #000000;
  --social-color: #df9b09;
  --social-border: 2px solid #df9b09;
}

/* Social icon styling */
.social-icon {
  display: inline-block;
  background: var(--social-bg);
  color: var(--social-color);
  padding: 10px;
  border-radius: 8px;
  margin: 0 6px;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: var(--social-border);
}

/* .social-icon:hover {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-hover);
} */

/* Divider Line */
.footer-line {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 20px 0;
}

.footer p.text-center {
  /* font-size: 13px; */
  color: var(--text-color);
}

/* Responsive footer */
@media (max-width: 1199px) {
  .footer {
    padding: 45px 0;
  }
  
  .footer .container {
    padding: 0 35px;
  }
  
  .footer-content {
    gap: 35px;
  }
  
  .footer h5 {
    font-size: 15px;
    margin-bottom: 13px;
  }
  
  .footer p {
    font-size: 1.1rem;
    line-height: 1.55;
  }
}

@media (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
  
  .footer .container {
    padding: 0 30px;
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer h5 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .footer p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .footer .container {
    padding: 0 20px;
  }
  
  .footer h5 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .footer p {
    font-size: 1.1rem;
    line-height: 1.5;
  }
}

@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .social-icon {
    margin: 5px;
  }
  
  .footer .container {
    padding: 0 15px;
  }
  
  .footer h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer p {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}

.title {
  background-color: var(--scrolling-card);
  color: var(--text-color);
  /* position: sticky; */
  /* top: 0; */
  z-index: 5;
  padding: 1rem 2rem;
  margin: 0;
  text-align: center;
}

/* Responsive title */
@media (max-width: 1199px) {
  .title {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 991px) {
  .title {
    padding: 1rem 1.2rem;
  }
}

@media (max-width: 768px) {
  .title {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 576px) {
  .title {
    padding: 0.6rem 0.8rem;
  }
}

/* Digital Transformation Solution */
#design,
#develop,
#operation {
  background-color: var(--scrolling-card);
  color: gray;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 205px 0px; */
  /* padding-top: 25vh; 
    padding-bottom: 5vh;  */
  position: sticky;
  top: 60px;
  z-index: 0;
}

/* Responsive digital sections */
@media (max-width: 1440px) {
  #design,
  #develop,
  #operation {
    min-height: 48vh;
    padding: 60px 0;
  }
}

@media (max-width: 1240px) {
  #design,
  #develop,
  #operation {
    min-height: 46vh;
    padding: 55px 0;
  }
}

@media (max-width: 1024px) {
  #design,
  #develop,
  #operation {
    min-height: 44vh;
    padding: 50px 0;
  }
}

@media (max-width: 1199px) {
  #design,
  #develop,
  #operation {
    min-height: 48vh;
    padding: 55px 0;
  }
}

@media (max-width: 991px) {
  #design,
  #develop,
  #operation {
    min-height: 45vh;
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  #design,
  #develop,
  #operation {
    min-height: auto;
    position: sticky;
    padding: 40px 0;
    display: block;
  }
}

@media (max-width: 576px) {
  #design,
  #develop,
  #operation {
    min-height: auto;
    padding: 30px 0;
    position: sticky;
    top: 60px;
  }
}

#design .content,
#develop .content,
#operation .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

/* Responsive content layout */
@media (max-width: 1440px) {
  #design .content,
  #develop .content,
  #operation .content {
    gap: 38px;
    padding: 0 30px;
  }
}

@media (max-width: 1240px) {
  #design .content,
  #develop .content,
  #operation .content {
    gap: 36px;
    padding: 0 28px;
  }
}

@media (max-width: 1024px) {
  #design .content,
  #develop .content,
  #operation .content {
    gap: 34px;
    padding: 0 26px;
  }
}

@media (max-width: 1199px) {
  #design .content,
  #develop .content,
  #operation .content {
    gap: 35px;
    padding: 0 25px;
  }
}

@media (max-width: 991px) {
  #design .content,
  #develop .content,
  #operation .content {
    gap: 30px;
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .accordion-collapse {
    will-change: height, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


@media (max-width: 768px) {
  #design .content,
  #develop .content,
  #operation .content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  #design .content,
  #develop .content,
  #operation .content {
    gap: 15px;
    padding: 0 10px;
  }
}
  #design h3,
#develop h3,
#operation h3 {
  margin-top: 1rem;
}
.content-text {
  flex: 1;
  text-align: right;
}

/* Responsive text alignment */
@media (max-width: 1199px) {
  .content-text {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .content-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .content-text {
    text-align: center;
  }
}

.content-text p {
  margin: 20px 0;
}

/* Card Sections of Digital */
.card-section {
  background: var(--scrolling-card);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(227, 158, 19, 0.17);
  max-width: 500px;
  margin: 40px auto 32px auto;
  position: relative;
  overflow: hidden;
}

/* Responsive digital card sections */
@media (max-width: 1199px) {
  .card-section {
    max-width: 480px;
    margin: 35px auto 28px auto;
    border-radius: 22px;
  }
}

@media (max-width: 991px) {
  .card-section {
    max-width: 460px;
    margin: 32px auto 26px auto;
    border-radius: 21px;
  }
}

@media (max-width: 768px) {
  .card-section {
    max-width: 90%;
    margin: 30px auto 24px auto;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .card-section {
    max-width: 95%;
    margin: 20px auto 16px auto;
    border-radius: 16px;
  }
}

/* Header line for each card */
.section-header {
  position: absolute;
  /* top: 0; */
  left: 0;
  width: 100%;
  height: 38px;
  z-index: 2;
  /* background-color: transparent;  */
}

/* Responsive section header */
@media (max-width: 1024px) {
  .section-header {
    height: 34px;
  }
}

@media (max-width: 1199px) {
  .section-header {
    height: 35px;
  }
}

@media (max-width: 991px) {
  .section-header {
    height: 32px;
  }
}

@media (max-width: 768px) {
  .section-header {
    height: 30px;
    position: relative;
  }
}

@media (max-width: 576px) {
  .section-header {
    height: 28px;
    position: relative;
  }
}

.section-header::before {
  content: "";
  position: absolute;
  /* top: 12px; */
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  border-top: 2px solid #efd27c;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  z-index: 1;
}

.section-label {
  position: absolute;
  left: 50%;
  top: 1px;
  transform: translateX(-50%);
  padding: 4px 28px;
  background: #efd27c;
  color: black;
  font-size: 1rem;
  /* font-weight: 200; */
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(247, 201, 72, 0.1);
  z-index: 2;
  border-top: none;
}

/* Responsive section labels */
@media (max-width: 1024px) {
  .section-label {
    padding: 3px 20px;
    font-size: 0.9rem;
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 1199px) {
  .section-label {
    padding: 3px 24px;
    font-size: 0.95rem;
    border-radius: 0 0 7px 7px;
  }
}

@media (max-width: 991px) {
  .section-label {
    padding: 3px 22px;
    font-size: 0.92rem;
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 768px) {
  .section-label {
    padding: 3px 20px;
    font-size: 0.9rem;
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 576px) {
  .section-label {
    padding: 2px 16px;
    font-size: 0.8rem;
    border-radius: 0 0 4px 4px;
  }
}

.section-title {
  color: black;
}

.section-desc {
  color: var(--section-text-color);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Responsive section titles and descriptions */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.55rem;
  }
  
  .section-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.7rem;
  }
}

@media (max-width: 1199px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
  }
}

@media (max-width: 991px) {
  .section-title {
    font-size: 1.55rem;
  }
  
  .section-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.7rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  
  .section-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

/* Content inside card */
.content {
  padding: 64px 32px 32px 32px;
}

/* Responsive content padding */
@media (max-width: 1024px) {
  .content {
    padding: 55px 25px 25px 25px;
  }
}

@media (max-width: 1199px) {
  .content {
    padding: 58px 28px 28px 28px;
  }
}

@media (max-width: 991px) {
  .content {
    padding: 52px 26px 26px 26px;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 48px 24px 24px 24px;
  }
}

@media (max-width: 576px) {
  .content {
    padding: 32px 16px 16px 16px;
  }
}
/* Digital Transformation */

/* Icons for Runner */
.skill-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  vertical-align: middle;
  display: inline-block;
}
/* 
.scrolling-fields {
  overflow: hidden;
  width: 100%;
  position: relative;
  
} */

/* Infinite Scroll Fields */
.scrolling-fields {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 15px 0;
  background: none;
}

.digitalcard {
  max-width: 100%;
  width: 90%;
  height: auto;
  transition: transform 0.3s ease;
}

/* Responsive digital cards */
@media (max-width: 1199px) {
  .digitalcard {
    width: 85%;
    max-width: 550px;
  }
}

@media (max-width: 991px) {
  .digitalcard {
    width: 80%;
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .digitalcard {
    width: 80%;
  }
}

@media (min-width: 1200px) {
  .digitalcard {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .digitalcard {
    width: 95%;
    max-width: 95%;
  }
}

/* General responsive image styles */
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

.hero-container-first {
  max-width: 75%; 
  margin-left: auto;
  margin-right: auto;
  /* padding-left: 40px;
  padding-right: 40px; */
}

/* Responsive adjustments */
@media (max-width: 1440px) {
  .hero-container-first {
    max-width: 750px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

@media (max-width: 1240px) {
  .hero-container-first {
    max-width: 700px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (max-width: 1199px) {
  .hero-container-first {
    max-width: 650px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 991px) {
  .hero-container-first {
    max-width: 600px;
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 768px) {
  .hero-container-first {
    max-width: 90%;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 576px) {
  .hero-container-first {
    max-width: 95%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hero-container-home {
  /* padding-left: 30%; */
  width: 59%;
}

/* Add space below the button */
.hero-container .btn-animate {
  margin-bottom: 0px;
}

.scrolling-fields {
  margin-top: 80px;
}

/* Responsive scrolling fields */
@media (max-width: 1199px) {
  .scrolling-fields {
    margin-top: 75px;
  }
}

@media (max-width: 991px) {
  .scrolling-fields {
    margin-top: 70px;
  }
}

@media (max-width: 768px) {
  .scrolling-fields {
    margin-top: 60px;
  }
}

@media (max-width: 576px) {
  .scrolling-fields {
    margin-top: 40px;
  }
}

#design h3,
#develop h3,
#operation h3 {
  margin-top: 1rem;
}



.scroll-content {
  display: flex;
  gap: 2%;
  will-change: transform;
  transition: transform 0.2s;
  animation: scrollLoop 30s linear infinite;
}


.skill-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}

/* Responsive skill icons */
@media (max-width: 1199px) {
  .skill-icon {
    width: 22px;
    height: 22px;
    margin-right: 9px;
  }
}

@media (max-width: 991px) {
  .skill-icon {
    width: 21px;
    height: 21px;
    margin-right: 8px;
  }
}

@media (max-width: 768px) {
  .skill-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
}

@media (max-width: 576px) {
  .skill-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}

@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Light and Dark Theme */

/*pop up Modal */
#design {
  background: var(--scrolling-card);
  color: var(--text-color);
  padding-top: 44px;
}

[data-theme="dark"] .btn-animate:hover {
  color: #000 !important;
}

.purpose-section {
  position: relative;
  overflow: hidden;
  background: var(--scrolling-card);
  padding: 80px 0;
}

/* Responsive purpose section */
@media (max-width: 1199px) {
  .purpose-section {
    padding: 75px 0;
  }
}

@media (max-width: 991px) {
  .purpose-section {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .purpose-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .purpose-section {
    padding: 40px 0;
  }
}

.ellipse-1216 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 300px;
  background: linear-gradient(0deg,
      rgba(223, 155, 9, 0.4) 0%,
      rgba(223, 155, 9, 0) 100%);
  filter: blur(100px);
  z-index: 0;
}

/* Ensure content is above the gradient */
.purpose-section .container,
.purpose-section img {
  position: relative;
  z-index: 1;
}

/* Dashboard images in front */
.theme-image {
  position: relative;
  z-index: 1;
  transition: none;
  max-width: 100%;
  height: auto;
}

.theme-image:hover {
  transform: none !important;
}

/* Responsive theme images */
@media (max-width: 1199px) {
  .theme-image {
    max-width: 85%;
    height: auto;
  }
}

@media (max-width: 991px) {
  .theme-image {
    max-width: 88%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .theme-image {
    max-width: 90%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .theme-image {
    max-width: 95%;
    height: auto;
  }
}



/*  */
/* ========================== Light Theme ========================== */
[data-theme="light"] .btn-animate {
  background-color: var(--btn-primary-bg);
  color: var(--button-text-color);
}

[data-theme="light"] .btn-animate .theme-icon {
  filter: brightness(100%);
}

[data-theme="light"] .btn-animate:hover {
  background-color: var(--btn-primary-hover);
  color: #000 !important;
}

[data-theme="light"] .btn-animate:hover .theme-icon {
  filter: brightness(0%);/
}

/* ========================== Dark Theme ========================== */
[data-theme="dark"] .btn-animate {
  background-color: var(--btn-primary-bg);
  color: #000;
}

[data-theme="dark"] .btn-animate .theme-icon {
  filter: none;
}

[data-theme="dark"] .btn-animate:hover {
  background-color: var(--btn-primary-hover);
  color: #000 !important;
}

[data-theme="dark"] .btn-animate:hover .theme-icon {
  filter: none;
}

/* Dropdown Menu Background */
.navbar .dropdown-menu {
  background-color: var(--dropdown-bg);
}

.navbar .dropdown-item {
  color: var(--dropdown-text);
  transition: background 0.3s, color 0.3s;
    font-size: 1rem;
}

/* Hover */
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: var(--dropdown-hover-bg);
  color: var(--dropdown-text);
  font-size: 1.1rem;
}

.find-more-btn {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 1;
  background: transparent;
}

/* Responsive find more button */
@media (max-width: 1199px) {
  .find-more-btn {
    padding: 0.45rem 1.1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 991px) {
  .find-more-btn {
    padding: 0.42rem 1.05rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 768px) {
  .find-more-btn {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .find-more-btn {
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 4px;
  }
}

/* Create sliding background */
.find-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
  z-index: -1;
}

.text-black {
  background-color: #d9a73a;
}


/* Margin for Sloution, Carrer and about screen */

.section-wrapper {
  /* margin-left: 60px; */
  margin-right: 15px;
}

.section-wrapper-dev {
  margin-left: 80px;
  margin-right: 15px;
}

/* Responsive section wrappers */
@media (max-width: 1199px) {
  .section-wrapper {
    margin-left: 50px;
    margin-right: 15px;
  }
  
  .section-wrapper-dev {
    margin-left: 70px;
    margin-right: 15px;
  }
}

@media (max-width: 991px) {
  .section-wrapper {
    margin-left: 40px;
    margin-right: 15px;
  }
  
  .section-wrapper-dev {
    margin-left: 50px;
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .section-wrapper {
    margin-left: 30px;
    margin-right: 15px;
  }
  
  .section-wrapper-dev {
    margin-left: 40px;
    margin-right: 15px;
  }
}

@media (max-width: 576px) {
  .section-wrapper {
    margin-left: 0px;
    margin-right: 15px;
  }
  
  .section-wrapper-dev {
    margin-left: 20px;
    margin-right: 15px;
  }
}

/* @media(min-width: 768px) {
  .section-wrapper {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media(min-width: 1200px) {
  .section-wrapper {
    margin-left: 100px;
    margin-right: 100px;
  }
} */

.title {
  background-color: var(--scrolling-card);
  color: var(--text-color);
  /* position: sticky; */
  /* top: 0; */
  z-index: 5;
  /* padding: 1rem 45rem; */
  margin: 0;
}

.title h2 {
  margin: 0;
  padding: 0;
}

/* Responsive title h2 */
@media (max-width: 1199px) {
  .title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .title h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .title h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .title h2 {
    font-size: 1.2rem;
  }
}

.digital-transformation-wrapper .title {
  position: sticky;
  top: 0;
  z-index: 2;
  transition: opacity 0.3s;
}

/* Responsive digital transformation wrapper title */
@media (max-width: 1199px) {
  .digital-transformation-wrapper .title {
    padding: 1rem 1.5rem;
  }
  
  .digital-transformation-wrapper .title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 991px) {
  .digital-transformation-wrapper .title {
    padding: 1rem 1.2rem;
  }
  
  .digital-transformation-wrapper .title h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .digital-transformation-wrapper .title {
    padding: 1.8rem 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
    transition: opacity 0.3s;
  }

  .digital-transformation-wrapper .title h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .digital-transformation-wrapper .title {
    padding: 1.8rem 1rem;
    position: sticky;
    top: 0;
    z-index: 2;
    transition: opacity 0.3s;
  }
  
  .digital-transformation-wrapper .title h2 {
    font-size: 1.2rem;
  }
}

/* Digital Transformation Mobile Fix */
@media (max-width: 768px) {
  .digital-transformation-section {
    overflow-x: hidden;
  }
  
  .digital-transformation-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 576px) {
  .digital-transformation-section {
    overflow-x: hidden;
  }
  
  .digital-transformation-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.text-color {
  color: var(--text-scroll);
}

/* ================= Light Theme ================= */
:root[data-theme="light"] .find-more-btn {
  color: #000;
  border: 2px solid #000;
}

:root[data-theme="light"] .find-more-btn::before {
  background: #000;
}

:root[data-theme="light"] .find-more-btn:hover {
  color: #fff;
}

:root[data-theme="light"] .find-more-btn:hover::before {
  left: 0;
}

/* ================= Dark Theme ================= */
:root[data-theme="dark"] .find-more-btn {
  color: #d9a73a;
  border: 2px solid #d9a73a;
}

:root[data-theme="dark"] .find-more-btn::before {
  background: #d9a73a;
}

:root[data-theme="dark"] .find-more-btn:hover {
  color: #000;
}

:root[data-theme="dark"] .find-more-btn:hover::before {
  left: 0;
}


/*  */
/* ================= Light Theme ================= */
:root[data-theme="light"] .section-label {
  background-color: #faeed4;
  color: black;
}

:root[data-theme="light"] .section-desc {
  color: black;
}

:root[data-theme="light"] .section-header::before {
  border-top-color: #faeed4;
}

/* ================= Dark Theme ================= */
:root[data-theme="dark"] .section-label {
  background-color: #584114;
  color: white;
}

:root[data-theme="dark"] .section-desc {
  color: #aaa;
}

:root[data-theme="dark"] .section-header::before {
  border-top-color: #584114;
}

/*  */

/* Light theme */
[data-bs-theme="light"] .dark-theme {
  background-color: #f8f9fa !important;
  /* light bg */
  color: #212529 !important;
  /* dark text */
}

[data-bs-theme="light"] .dark-theme-highlight {
  background-color: #212529 !important;
  /* black highlight */
  color: #fff !important;
}

/* Dark theme */
[data-bs-theme="dark"] .dark-theme {
  background-color: #1e1e1e !important;
  /* dark bg */
  color: #f8f9fa !important;
  /* light text */
}

[data-bs-theme="dark"] .dark-theme-highlight {
  background-color: #ffc107 !important;
  /* golden/yellow */
  color: #000 !important;
}

/* Default — large desktops and wide screens (≥ 1400px) */
.icon-size {
  width: 8% !important;
}

/* < 1400px */
@media (max-width: 1400px) {
  .icon-size {
    width: 9% !important;
  }
}

/* < 1200px */
@media (max-width: 1200px) {
  .icon-size {
    width: 10% !important;
  }
}

/*  < 1024px */
@media (max-width: 1024px) {
  .icon-size {
    width: 11% !important;
  }
}

/* < 992px */
@media (max-width: 992px) {
  .icon-size {
    width: 12% !important;
  }
}

/* width < 768px */
@media (max-width: 768px) {
  .icon-size {
    width: 14% !important;
  }
}

/* width < 576px */
@media (max-width: 576px) {
  .icon-size {
    width: 16% !important;
  }
}

/* < 480px */
@media (max-width: 480px) {
  .icon-size {
    width: 18% !important;
  }
}

/*< 360px */
@media (max-width: 360px) {
  .icon-size {
    width: 20% !important;
  }
}

.anniversary-card {
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  gap: 5rem;
  margin-top: -4rem;
}

.qualitive-team {
  transform: translateY(1.5rem); 
}

/*Desktop */
.anniversary-card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5rem;
  margin-top: -4rem;
}

.qualitive-team {
  transform: translateY(1.5rem);
}

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .anniversary-card {
    gap: 3rem;
    margin-top: -2rem;
  }

  .qualitive-team {
    transform: translateY(1rem);
  }
}

/* Mobile (≤ 768px */
@media (max-width: 768px) {
  .anniversary-card {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 0;
  }

  .qualitive-team {
    transform: none; /* Remove Y shift for better stacking */
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .anniversary-card {
    gap: 1.5rem;
    padding: 0 1rem;
  }
}
