@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Root CSS variables */
:root {
  --primary-color: #ff5000;
  --primary-hover: #e04500;
  --black: #0c0c0c;
  --dark-grey: #1a1a1a;
  --grey: #444444;
  --light-grey: #f4f4f4;
  --white: #fff;
  --border-color: #e2e2e2;
  --font-family-body: "Jost", sans-serif;
  --font-family-heading: "Jost", sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  --header-height: 80px;
}

/* Lenis smooth scrolling rules */
html.lenis {
  height: auto;
}

.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis-stopped {
  overflow: hidden;
}

.lenis-scrolling iframe {
  pointer-events: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: var(--font-family-body);
  font-weight: var(--fw-light);
  background-color: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: auto;
  padding-top: var(--header-height); /* Make room for fixed sticky header */
}

.container-large {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 991px) {
  .container-large {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--fw-semibold);
  line-height: 1.1;
  color: var(--black);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(38px, 5vw, 80px);
  font-weight: var(--fw-medium);
  letter-spacing: -1.5px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.custom_badge {
  background-color: var(--light-grey);
  color: var(--dark-grey);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: -0.2px;
  border: 1px solid var(--border-color);
  display: inline-block;
}

.section-gap-margin {
  padding: 100px 0;
}

@media (max-width: 767px) {
  .section-gap-margin {
    padding: 60px 0;
  }
}

/* Header */
.header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  position: fixed; /* Fixed position is bulletproof on all browser contexts */
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 10000; /* Extremely high z-index to stay above page elements */
  transition: var(--transition-fast);
}

.header.scrolled {
  height: 70px;
  background-color: var(--white); /* Solid white on scroll for better readability */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); /* Premium soft drop shadow */
  border-bottom: none;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .logo img {
  height: 56px; /* Increased default logo size further */
  width: auto;
  transition: height var(--transition-fast); /* Smooth shrink transition */
}

.header.scrolled .logo img {
  height: 42px; /* Slightly shrinked size in scrolled sticky header */
}

.header .main-nav {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.header .main-nav li a {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 18px;
  color: var(--black);
  display: block;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
  transition: color 0.3s ease;
}

.header .main-nav li a span {
  display: block;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.header .main-nav li a::after {
  display: none !important;
}

.header .main-nav li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.4s var(--transition-normal);
  border-radius: 30px;
}

.header .main-nav li a:hover::before {
  transform: translateY(0);
}

.header .main-nav li a:hover {
  color: var(--white);
}

.header .main-nav li a:hover span {
  color: var(--white);
  transform: none;
}

.menu-btn, .close-menu {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
}

.mobile-only-menu-content {
  display: none !important;
}

@media (max-width: 991px) {
  .menu-btn {
    display: block;
  }
  .header .main-nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 60px 24px;
    overflow-y: auto;
    z-index: 1001;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  }
  .header .main-nav.active {
    left: 0;
  }
  
  .header .main-nav li {
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
  }
  
  .header .main-nav li.mobile-only-menu-content {
    margin-bottom: 0;
  }
  
  .header .main-nav li a {
    color: var(--black);
    font-size: 22px;
    font-weight: var(--fw-semibold);
    display: inline-block;
  }
  .header .main-nav li a::after {
    color: var(--primary-color);
  }
  .close-menu {
    display: block;
    position: absolute;
    top: 30px;
    right: 20px;
    color: var(--black);
  }
  
  .mobile-only-menu-content {
    display: block !important;
  }
}

/* Premium Buttons */
.my-btn {
  background-color: var(--primary-color);
  color: var(--white);
  font-weight: var(--fw-semibold);
  padding: 12px 28px;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.my-btn i {
  font-size: 12px;
  transition: transform 0.3s var(--transition-normal);
}

.my-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.4s var(--transition-normal);
}

.my-btn:hover::before {
  transform: translateY(0);
}

.my-btn:hover {
  border-color: var(--black);
}

.my-btn:hover i {
  transform: translateX(4px) rotate(-45deg);
}

.my-btn-simple {
  background: none;
  border: 1px solid var(--black);
  color: var(--black);
  font-weight: var(--fw-semibold);
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

.my-btn-simple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: -1;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.my-btn-simple:hover::before {
  transform: translateY(0);
}

.my-btn-simple:hover {
  color: var(--white);
}

/* Hero Section */
.hero-section {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .hero-section {
    padding: 50px 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

@media (min-width: 992px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
  }
}

.title-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-family-body); /* Use Inter for clean geometric sans-serif look */
  font-size: clamp(38px, 5.5vw, 76px);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0;
}

.hero-title.secondary {
  color: var(--black);
}

.copyright-symbol {
  font-size: clamp(20px, 4vw, 40px);
  vertical-align: super;
  display: inline-block;
  margin-left: 10px;
  color: var(--primary-color);
}

.hero-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;
  position: relative;
  z-index: 2;
}

.custom-banner-slider {
  width: 100%;
  height: clamp(300px, 30vw, 480px);
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.15);
  background-color: var(--light-grey);
}

.custom-banner-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.custom-banner-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider navigation arrows */
.custom-banner-slider .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.75);
  color: var(--black);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.custom-banner-slider .slider-arrow:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.custom-banner-slider .prev-arrow {
  left: 20px;
}
.custom-banner-slider .prev-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.custom-banner-slider .next-arrow {
  right: 20px;
}
.custom-banner-slider .next-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 575px) {
  .custom-banner-slider .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .custom-banner-slider .prev-arrow {
    left: 10px;
  }
  .custom-banner-slider .next-arrow {
    right: 10px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.4;
}

.hero-bg .circle-1, .hero-bg .circle-2 {
  position: absolute;
  width: 80vmax;
  height: 80vmax;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/* Header Inner Grid (Socials, spinning circle badge, scroll down) */
.header-inner-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .header-inner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    text-align: center;
  }
}

.social-wrapper {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--black);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--black);
  border-color: var(--black);
}

.social-link:hover svg {
  fill: var(--white);
}

.circle-text {
  width: 120px;
  height: 120px;
}

/* Waving Hand Animation */
.waving-hand {
  display: inline-block;
  animation: slow-wave 2.8s infinite ease-in-out;
  transform-origin: 70% 70%;
}

@keyframes slow-wave {
  0% { transform: rotate( 0.0deg); }
  10% { transform: rotate(14.0deg); }
  20% { transform: rotate(-8.0deg); }
  30% { transform: rotate(14.0deg); }
  40% { transform: rotate(-4.0deg); }
  50% { transform: rotate(10.0deg); }
  60% { transform: rotate( 0.0deg); }
  100% { transform: rotate( 0.0deg); }
}

.scroll-down-wrapper {
  display: flex;
  justify-content: flex-end;
}

.scroll-down {
  width: 44px;
  height: 70px;
  border: 2px solid var(--black);
  border-radius: 30px;
  position: relative;
  cursor: pointer;
}

.scroll-down-circle {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.8s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 45px;
    opacity: 0.5;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}

/* About Section */
.scrolling-text-wrapper {
  overflow: hidden;
  background-color: var(--black);
  color: var(--white);
  padding: 16px 0; /* Narrower bar padding */
  margin-bottom: 80px;
  white-space: nowrap;
  display: flex;
}

.scrolling-text-block {
  display: flex;
  gap: 40px;
}

.scrolling-text-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

.scrolling-text {
  font-size: clamp(18px, 2.5vw, 32px); /* Smaller text sizes */
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.scrolling-text.alternate-text {
  color: var(--white);
  -webkit-text-stroke: 0px transparent;
}

.marq-2 .scrolling-text {
  color: var(--white) !important;
  -webkit-text-stroke: 0px transparent !important;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}

@media (max-width: 767px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.about-content p {
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.4;
  color: var(--dark-grey);
}

.number-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 60px;
}

.number-grid {
  display: grid;
  grid-template-columns: auto 1fr; /* Use auto so large numbers like +200 do not overlap descriptions */
  align-items: center;
  gap: 20px;
}

.number-container {
  font-size: clamp(40px, 6vw, 70px);
  font-family: var(--font-family-heading);
  font-weight: var(--fw-semibold);
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.number-text-item {
  font-size: 16px;
  line-height: 1.5;
  color: var(--grey);
}

/* Works Section */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-box {
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer; /* Show pointer cursor over clickable items */
}

.portfolio-box .image {
  width: 100%;
  aspect-ratio: 4/3; /* 800x600 resolution friendly aspect ratio */
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background-color: var(--light-grey);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.portfolio-box .image img:not(.logo img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-normal);
}

.portfolio-box .image .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 60px;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s var(--transition-normal);
}

.portfolio-box:hover .image img:not(.logo img) {
  transform: scale(1.05);
}

.portfolio-box:hover .image .logo {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.portfolio-box .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 20px;
}

.portfolio-box .text h4 {
  font-size: 20px;
  font-weight: var(--fw-semibold);
  transition: color 0.3s ease;
  margin: 0;
}

.portfolio-box:hover .text h4 {
  color: var(--primary-color);
}

.portfolio-tags {
  font-size: 14px;
  color: #b0b0b0; /* Very light grey */
  font-weight: var(--fw-regular);
  margin: 0;
}

/* Portfolio box hover overlay */
.portfolio-box .image .view-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
  border-radius: 24px;
}

.portfolio-box:hover .image .view-overlay {
  opacity: 1;
}

.portfolio-box .image .view-overlay .my-btn,
.portfolio-box .image .view-overlay .view-site-btn {
  transform: translateY(15px);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 40px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.portfolio-box:hover .image .view-overlay .my-btn,
.portfolio-box:hover .image .view-overlay .view-site-btn {
  transform: translateY(0);
}

.view-site-btn {
  background-color: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
  text-decoration: none;
}

.view-site-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.view-site-btn i {
  font-size: 10px;
}

/* Testimonial Section */
.testimonial-section {
  background-color: transparent;
  margin: 80px 0;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.testimonial-header h2 {
  font-family: "Jost", sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
}

.testimonial-nav {
  display: flex;
  gap: 10px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  background-color: #f4f4f4;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--black);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.testimonial-nav-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.testimonial-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

.testimonial-card-company {
  font-family: var(--font-family-body) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  color: var(--black) !important;
  margin-bottom: 20px;
  text-align: left;
}

.testimonial-card-text {
  font-family: var(--font-family-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 35px;
  text-align: left;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card-author img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.author-name {
  font-family: var(--font-family-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  color: var(--black) !important;
  margin: 0 0 2px 0 !important;
}

.author-title {
  font-size: 13px;
  color: var(--grey);
  font-weight: var(--fw-regular);
}

/* Services Accordion */
.services-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.service-box {
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  cursor: pointer;
}

.service-box .flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-box .count {
  font-size: 18px;
  color: var(--grey);
  width: 60px;
}

.service-box h3 {
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: var(--fw-semibold);
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-box:hover h3 {
  color: var(--primary-color);
}

.service-box .icon i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.service-box .text {
  display: none;
  padding: 24px 0 0 60px;
}

.service-box .text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 20px;
  max-width: 600px;
}

/* Counter / Experience Section */
.counter-section .counter-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .counter-section .counter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.counter-section img {
  border-radius: 30px;
  width: 100%;
  height: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.counter-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.counter-box .num {
  font-size: clamp(50px, 6vw, 90px);
  font-family: var(--font-family-heading);
  font-weight: var(--fw-semibold);
  color: var(--black);
}

.counter-box p:not(.num) {
  font-size: 16px;
  color: var(--grey);
  max-width: 200px;
  text-align: right;
}

/* Hire Me Section */
.hire-me {
  background-color: var(--black);
  color: var(--white);
  border-radius: 40px;
  padding: 80px 40px;
}

.hire-me h2 {
  color: var(--white);
  margin-bottom: 40px;
}

.hire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .hire-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hire-me ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 575px) {
  .hire-me ul {
    grid-template-columns: 1fr;
  }
}

.hire-me ul li {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hire-me ul li::before {
  content: "✺";
  color: var(--primary-color);
  font-size: 18px;
}

.hire-me img {
  border-radius: 24px;
  width: 100%;
}

/* FAQs Section */
.faq-layout {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  align-items: start;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.faq-heading {
  text-align: left;
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .faq-heading {
    position: relative;
    top: 0;
  }
}

.faq-heading h2 {
  font-family: "Jost", sans-serif !important;
  font-size: clamp(50px, 8vw, 110px) !important;
  line-height: 0.9 !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  margin-bottom: 20px !important;
}

.faq-subtext {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 360px;
}

@media (max-width: 991px) {
  .faq-subtext {
    max-width: 100%;
  }
}

.faq-right {
  display: flex;
  flex-direction: column;
}

.faq {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.faq:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-title {
  font-family: var(--font-family-body) !important;
  font-size: clamp(18px, 2.2vw, 22px) !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  color: var(--black) !important;
  transition: color 0.3s ease;
  margin: 0;
}

.faq-title-wrap:hover .faq-title {
  color: var(--primary-color) !important;
}

.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex: none;
}

.faq-icon-plus {
  width: 2px;
  height: 16px;
  background-color: var(--black);
  position: absolute;
  left: 7px;
  top: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon-minus {
  width: 16px;
  height: 2px;
  background-color: var(--black);
  position: absolute;
  left: 0;
  top: 7px;
}

.faq.active .faq-icon-plus {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-text-wrap {
  padding-top: 20px;
}

.faq-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  text-align: left;
  margin: 0;
}

/* Floating Marquee banner */
.floating-marque {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px 0;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
}

.floating-marque .box {
  display: flex;
  gap: 40px;
}

.floating-marque .box ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.floating-marque .box ul li {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
}

/* Idea section */
.idea {
  padding: 100px 0;
}

.idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .idea-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.idea-content p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 30px;
}

.idea img {
  border-radius: 24px;
  width: 100%;
}

/* Blog section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-box {
  display: flex;
  flex-direction: column;
}

.blog-box .image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}

.blog-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-normal);
}

.blog-box:hover .image img {
  transform: scale(1.05);
}

.blog-box .text .meta {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.blog-box .text h5 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: var(--fw-semibold);
  transition: color 0.3s ease;
}

.blog-box:hover .text h5 {
  color: var(--primary-color);
}

/* Footer Section */
.footer-marquee-container {
  position: relative;
  width: 100%;
  background-color: var(--black);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-badge {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(255, 80, 0, 0.3);
  text-align: center;
}

@media (max-width: 767px) {
  .footer-badge {
    left: 50%;
  }
}

.footer-marquee {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.footer-marquee-track {
  display: flex;
  flex-shrink: 0;
}

.footer-marquee-track span {
  font-family: "Jost", sans-serif;
  font-size: clamp(60px, 15vw, 150px);
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-right: 40px;
  flex-shrink: 0;
  line-height: 1.1;
  font-weight: 700;
}

/* Opposing direction slow marquee animations */
.footer-marquee-track.left {
  animation: footerMarqueeLeft 35s linear infinite;
}

.footer-marquee-track.right {
  animation: footerMarqueeRight 35s linear infinite;
}

@keyframes footerMarqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes footerMarqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.footer {
  background-color: var(--black);
  color: var(--white);
  padding: 60px 0 40px;
}

.footer-grid-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.footer-email-link {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 600;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 8px;
  transition: color var(--transition-fast);
}

.footer-email-link:hover {
  color: var(--primary-color);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  border-bottom: 1px solid var(--white);
  padding-bottom: 4px;
  margin-top: 10px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.footer-right-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links-title {
  font-family: var(--font-family-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.footer-link-item {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 15px;
  transition: color var(--transition-fast);
}

.footer-link-item:hover {
  color: var(--primary-color);
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
}

.footer-social-icon-btn {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon-btn:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .footer-grid-container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 60px 0;
  }
  .footer-right-links {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .footer-right-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-banner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 50px;
}

.footer-banner-title {
  font-family: "Jost", sans-serif;
  font-size: clamp(80px, 13vw, 170px);
  color: var(--primary-color);
  line-height: 0.8;
  letter-spacing: -2px;
  font-weight: 500;
  margin: 0;
}

.footer-banner-img {
  max-width: 320px;
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 767px) {
  .footer-banner-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .footer-banner-img {
    max-width: 100%;
    height: 180px;
  }
}

.footer-bottom-line {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 767px) {
  .footer-bottom-line {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}

/* Fixed Floating Contact Buttons */
.fixed-contact-buttons {
  position: fixed;
  right: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fixed-contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.fixed-contact-btn.whatsapp {
  background-color: #25D366;
}

.fixed-contact-btn.whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-3px);
}

.fixed-contact-btn.phone {
  background-color: var(--primary-color);
}

.fixed-contact-btn.phone:hover {
  background-color: var(--primary-hover);
  transform: translateY(-3px);
}

/* Ribbon Crossing Container */
.ribbon-container {
  position: relative;
  height: 175px; /* Adjusted container height */
  margin: 80px 0 120px;
  overflow: visible;
  width: 100%;
}

.ribbon-container .marq-1 {
  position: absolute;
  top: -25px; /* Moved black bar further up */
  left: -5%;
  width: 110%;
  transform: rotate(-1.5deg);
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  margin-bottom: 0 !important;
}

.ribbon-container .marq-2 {
  position: absolute;
  top: 75px; /* Moved orange bar further down */
  left: -5%;
  width: 110%;
  transform: rotate(1.5deg);
  z-index: 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .ribbon-container {
    height: 130px;
    margin: 50px 0 80px;
  }
  .ribbon-container .marq-1 {
    top: -15px;
  }
  .ribbon-container .marq-2 {
    top: 55px;
  }
}

/* --- Extracted header/button transitions & layouts --- */
button {
  transition: all var(--transition-fast);
}

.scroll-down {
  display: inline-block;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 575px) {
  .header-icons {
    display: none !important;
  }
}

.header-action-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* --- Mobile Navigation Menu Extracted Layouts --- */
.mobile-menu-logo {
  text-align: center;
  margin-bottom: 35px;
  width: 100%;
}

.mobile-menu-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.mobile-menu-contact {
  margin-top: 35px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  width: 100%;
}

.mobile-menu-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.mobile-menu-contact-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-menu-address {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
  max-width: 280px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}

/* --- Hero Section Extracted Layouts --- */

.hero-title-wrap {
  margin-bottom: 25px;
}

.hero-title.secondary {
  display: block;
  margin-top: 10px;
}


.hero-desc {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--grey);
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- Section Border Utility --- */
.section-border-top {
  border-top: 1px solid var(--border-color);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.marq-2 {
  background-color: var(--primary-color) !important;
}

/* --- Services Lists Extracted Layouts --- */
.service-details-wrap {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.service-text-col {
  flex: 1;
  min-width: 280px;
}

.service-text-col .custom_badge {
  margin-bottom: 20px;
}

.service-text-col p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 24px;
}

.service-text-col .my-btn {
  padding: 10px 24px;
  font-size: 13px;
}

.service-img-col {
  max-width: 300px;
  width: 100%;
}

.services-buttons-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

/* --- About Grid Extracted Layouts --- */
.about-img-wrap {
  display: flex;
  justify-content: center;
  align-items: start;
}

.about-grid .custom_badge {
  margin-bottom: 20px;
}

.about-grid h2 {
  margin-bottom: 20px;
}

.about-grid p.about-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--grey);
  margin-bottom: 25px;
}

.about-grid .about-buttons {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

/* --- Why Hire Me Margins --- */
.hire-me {
  margin: 60px 40px !important;
  border-radius: 40px;
}

/* --- Testimonials Margins --- */
.testimonial-section {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

/* --- Idea Section Extracted Layouts --- */
.idea-bg-marquee {
  background: none !important;
  color: transparent !important;
  -webkit-text-stroke: 1px var(--light-grey) !important;
  font-size: 110px !important;
  font-family: var(--font-family-heading) !important;
  font-weight: 800 !important;
  position: absolute !important;
  top: 15% !important;
  width: 100% !important;
  z-index: -1 !important;
  pointer-events: none !important;
  opacity: 0.8 !important;
  margin-bottom: 0 !important;
}

.idea-container {
  position: relative;
  z-index: 2;
}

.idea-buttons {
  display: flex;
  gap: 20px;
}

.idea img {
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

/* --- Footer Extracted Contact layouts --- */
.footer-contact-links-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-email-link {
  margin: 0 0 5px !important;
  display: inline-block !important;
}

.footer-phone-link {
  color: var(--white);
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-phone-link:hover {
  color: var(--primary-color);
}

.footer-whatsapp-link {
  color: #25D366;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-whatsapp-link:hover {
  transform: scale(1.03);
}

.footer-location-block {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 5px;
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

/* --- Lightbox Overlay Extracted Styles --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.9);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close-btn:hover {
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-title {
  color: var(--white);
  font-family: var(--font-family-heading);
  margin-top: 25px;
  text-transform: uppercase;
  font-size: clamp(18px, 2.5vw, 24px);
  letter-spacing: 0.5px;
  text-align: center;
  font-weight: 600;
}

/* --- New elements class linkages --- */
.mobile-menu-logo a {
  display: inline-block;
}

.mobile-menu-contact-link i.fa-phone {
  color: var(--primary-color);
}

.mobile-menu-contact-link i.fa-whatsapp {
  color: #25D366;
  font-size: 17px;
}

.mobile-menu-address i.fa-location-dot {
  color: var(--primary-color);
  margin-top: 2px;
}

.header-icons .phone-icon {
  color: var(--black);
  font-size: 18px;
  transition: color 0.3s ease;
}

.header-icons .phone-icon:hover {
  color: var(--primary-color);
}

.header-icons .whatsapp-icon {
  color: #25D366;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.header-icons .whatsapp-icon:hover {
  transform: scale(1.1);
}

#seo-toggle, #about-toggle {
  cursor: pointer;
  margin-left: 5px;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--light-grey);
  font-size: 11px;
  vertical-align: middle;
  transition: all 0.3s;
}

#seo-toggle:hover, #about-toggle:hover {
  background-color: var(--border-color);
}

#seo-text {
  color: var(--grey);
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
  margin-top: 15px;
  border-left: 2px solid var(--primary-color);
  padding-left: 15px;
  text-align: left;
}

#about-more-text {
  margin-bottom: 30px;
  border-left: 2px solid var(--primary-color);
  padding-left: 15px;
  text-align: left;
}

#about-more-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey);
}

#about-more-text p:first-of-type {
  margin-bottom: 15px;
}

#about-more-text p:last-of-type {
  margin: 0;
}

.service-img-col img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.hire-me img {
  box-shadow: 0 20px 50px rgba(255,255,255,0.05);
}

.footer-links-title.mb-15 {
  margin-bottom: 15px;
}

.footer-left-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-contact-link i {
  font-size: 11px;
  margin-left: 5px;
}

.footer-phone-link i {
  font-size: 14px;
  color: var(--primary-color);
}

.footer-whatsapp-link i {
  font-size: 16px;
}

.footer-location-block i {
  color: var(--primary-color);
  margin-top: 3px;
}

.my-btn i.fa-expand {
  font-size: 11px;
  margin-left: 6px;
}

/* --- Responsive Buttons Refinements --- */
@media (max-width: 991px) {
  .header .my-btn {
    padding: 10px 18px;
    font-size: 13px;
    gap: 8px;
  }
  .header .my-btn i {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .my-btn {
    padding: 10px 20px;
    font-size: 13px;
    gap: 8px;
  }
  .my-btn i {
    font-size: 11px;
  }
  .my-btn-simple {
    padding: 11px 22px;
    font-size: 13px;
  }
  
  .header .logo img {
    height: 46px;
  }
  .header.scrolled .logo img {
    height: 38px;
  }
  
  .header .my-btn {
    padding: 8px 14px;
    font-size: 12px;
    gap: 6px;
  }
  .header .my-btn i {
    font-size: 10px;
  }
  
  .hero-buttons {
    margin-top: 25px;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .about-buttons {
    gap: 12px;
  }
  
  .idea-buttons {
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .header-action-btn {
    gap: 12px;
  }
  .header .my-btn {
    padding: 8px 12px;
    font-size: 11px;
    gap: 4px;
  }
  .header .my-btn i {
    font-size: 9px;
  }
  
  .hero-buttons {
    gap: 10px;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .hero-buttons .my-btn,
  .hero-buttons .my-btn-simple {
    padding: 9px 14px;
    font-size: 12px;
    letter-spacing: 0.2px;
    text-align: center;
    justify-content: center;
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: 180px;
  }
  
  .about-buttons {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .about-buttons .my-btn,
  .about-buttons .my-btn-simple {
    padding: 9px 14px;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: 200px;
  }
  
  .idea-buttons {
    gap: 10px;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
  }
  
  .idea-buttons .my-btn,
  .idea-buttons .my-btn-simple {
    padding: 9px 14px;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    width: auto;
    flex: 1;
    min-width: 0;
    max-width: 180px;
  }
}

@media (max-width: 375px) {
  .header .logo img {
    height: 40px;
  }
  .header.scrolled .logo img {
    height: 34px;
  }
  
  .header .my-btn {
    padding: 6px 10px;
    font-size: 10px;
    gap: 4px;
  }
  .header .my-btn i {
    display: none;
  }
  
  .hero-buttons .my-btn,
  .hero-buttons .my-btn-simple {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0px;
  }
  
  .about-buttons .my-btn,
  .about-buttons .my-btn-simple {
    padding: 8px 10px;
    font-size: 11px;
  }
  
  .idea-buttons .my-btn,
  .idea-buttons .my-btn-simple {
    padding: 8px 10px;
    font-size: 11px;
  }
}

/* Utilities */
.text-center {
  text-align: center !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.marquee-star-primary {
  font-size: clamp(30px, 4vw, 60px);
  color: var(--primary-color);
}

.marquee-star-white {
  font-size: clamp(30px, 4vw, 60px);
  color: var(--white);
}