/* ==========================================
   RESET & BASE STYLES
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ==========================================
 FULL PAGE BUTTON STYLES
========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 18px 40px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  color: #000;
  text-decoration: none;
  font-size: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  min-width: 220px;
  text-align: center;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.5);
  color: #000;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.7s;
  z-index: -1;
}

.btn:hover::after {
  left: 100%;
}

.btn i {
  margin-left: 10px;
  transition: transform 0.3s;
}

.btn:hover i {
  transform: translateX(5px);
}

/* ==========================================
   FULL PAGE SECTION TITLE & DESCRIPTION 
========================================== */

.section-badge {
  display: inline-block;
  background: rgba(255, 138, 0, 0.15);
  color: #ff8a00;
  padding: 0.5rem 1.25rem;
  border-radius: 1.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 138, 0, 0.3);
  animation: pulse 2s infinite;
  text-align: center !important;
  max-width: 90%;
  box-sizing: border-box;
}

.section-title {
  font-size: 2.625rem;
  font-weight: 800;
  margin-bottom: 1.5625rem;
  margin-top: 1.25rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff, #ffb357);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.3);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.subtitle {
  font-size: 1.375rem;
  color: #ff8a00;
  margin: 2.5rem 0 1.875rem 0;
  font-weight: 600;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.section-desc {
  font-size: 1.125rem;
  color: #dcdcdc;
  margin-bottom: 2.1875rem;
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 1rem;
  word-break: break-word;
  overflow-wrap: break-word;
  width: 100%;
  box-sizing: border-box;
}

.all-section {
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Tablet - Large Devices (992px and below) */
@media (max-width: 62rem) {
  .section-title {
    font-size: 2.25rem;
    padding: 0 1.5rem;
  }

  .section-desc {
    padding: 0 1.5rem;
  }

  .subtitle {
    padding: 0 1.5rem;
  }
}

/* Tablet - Medium Devices (768px and below) */
@media (max-width: 48rem) {
  .section-title {
    font-size: 1.875rem;
    padding: 0 1.25rem;
  }

  .section-desc {
    font-size: 1rem;
    padding: 0 1.25rem;
    line-height: 1.6;
  }

  .subtitle {
    font-size: 1.25rem;
    margin: 2rem 0 1.5rem 0;
    padding: 0 1.25rem;
  }

  .section-badge {
    padding: 0.4375rem 1rem;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }
}

/* Mobile - Small Devices (576px and below) */
@media (max-width: 36rem) {
  .section-title {
    font-size: 1.625rem;
    padding: 0 1rem;
    margin-bottom: 1.25rem;
    margin-top: 1rem;
  }

  .section-desc {
    font-size: 0.9375rem;
    padding: 0 1rem;
    line-height: 1.6;
    margin-bottom: 1.875rem;
  }

  .subtitle {
    font-size: 1.125rem;
    margin: 1.75rem 0 1.25rem 0;
    padding: 0 1rem;
    line-height: 1.35;
  }

  .section-badge {
    padding: 0.375rem 0.875rem;
    font-size: 0.75rem;
    margin-bottom: 0.875rem;
    border-radius: 1.5rem;
  }
}

/* Mobile - Extra Small Devices (400px and below) */
@media (max-width: 25rem) {
  .section-title {
    font-size: 1.5rem;
    padding: 0 0.875rem;
  }

  .section-desc {
    font-size: 0.875rem;
    padding: 0 0.875rem;
    line-height: 1.5;
  }

  .subtitle {
    font-size: 1rem;
    padding: 0 0.875rem;
  }

  .section-badge {
    padding: 0.3125rem 0.75rem;
    font-size: 0.6875rem;
    letter-spacing: 0.03125rem;
  }
}

/* Extra Large Screens (1200px and above) */
@media (min-width: 75rem) {
  .section-title {
    font-size: 3rem;
  }

  .section-desc {
    font-size: 1.25rem;
    max-width: 56.25rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }
}

/* Ultra Wide Screens (1600px and above) */
@media (min-width: 100rem) {
  .section-title {
    font-size: 3.5rem;
  }

  .section-desc {
    font-size: 1.375rem;
    max-width: 62.5rem;
    line-height: 1.8;
  }
}


/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .section-badge {
    animation: none;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .section-desc {
    color: #e0e0e0;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .section-badge {
    border: 2px solid #ff8a00;
  }

  .section-title {
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
  }
}


/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
  width: 100%;
  padding: 60px 20px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 110px;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(255, 138, 0, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.background-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.05);
  animation: floatAround 20s infinite linear;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
  animation-duration: 25s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation-delay: -10s;
  animation-duration: 30s;
}

@keyframes floatAround {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.hero-content {
  max-width: 1300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hero-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.mockup-container {
  position: relative;
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
}

.mockup-img {
  width: 100%;
  max-width: 500px;
  filter: drop-shadow(0 20px 30px rgba(255, 138, 0, 0.3));
  transform-style: preserve-3d;
  animation: floatRotate 6s ease-in-out infinite, glow 3s ease-in-out infinite alternate;
}

@keyframes floatRotate {
  0% {
    transform: translateY(0px) rotateY(0deg);
  }

  50% {
    transform: translateY(-15px) rotateY(5deg);
  }

  100% {
    transform: translateY(0px) rotateY(0deg);
  }
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 15px 25px rgba(255, 138, 0, 0.3));
  }

  100% {
    filter: drop-shadow(0 20px 35px rgba(255, 138, 0, 0.6));
  }
}

/* ENHANCED CODE TAGS - 3 TAGS ADDED */
.code-tag {
  position: absolute;
  background: linear-gradient(135deg, #ff8a00, #ff5500);
  color: #000;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  animation: bounce 3s infinite ease-in-out;
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.code-tag:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 138, 0, 0.6);
}


.tag-2 {
  bottom: 40px;
  left: -20px;
  animation-delay: 0.4s;
  background: linear-gradient(135deg, #ff9e2c, #ff8a00);
}

.tag-3 {
  top: 45%;
  right: -15px;
  animation-delay: 0.6s;
  background: linear-gradient(135deg, #ff5500, #ff8a00);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-right {
  flex: 1;
  color: #fff;
  min-width: 300px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  background: linear-gradient(90deg, #fff 60%, #ff8a00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff5500);
  bottom: -15px;
  left: 0;
  border-radius: 5px;
}

.highlight {
  color: #ff8a00;
  position: relative;
}

.hero-text {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 90%;
}

.proposal-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   HERO SECTION RESPONSIVE
========================================== */
@media (max-width: 1100px) {
  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 46px;
  }

  .mockup-img {
    max-width: 450px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .mockup-img {
    max-width: 400px;
  }

  .code-tag {
    min-width: 160px;
    font-size: 13px;
    padding: 8px 15px;
  }

  .tag-2 {
    bottom: 30px;
    left: -10px;
  }

  .tag-3 {
    top: 40%;
    right: -10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 38px;
  }

  .mockup-img {
    max-width: 350px;
  }

  .proposal-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .or {
    margin: 10px 0;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .mockup-img {
    max-width: 300px;
  }

  .code-tag {
    min-width: 140px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .tag-2 {
    left: 0;
    bottom: 20px;
  }

  .tag-3 {
    right: 0;
    top: 35%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    font-size: 15px;
  }

  .mockup-img {
    max-width: 280px;
  }

  .code-tag {
    min-width: 120px;
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* simple section */

.simple-section {
  background: rgba(255, 138, 0, 0.05);
  border-radius: 20px;
  padding: 10px;
  border: 1px solid rgba(255, 138, 0, 0.1);
  position: relative;
  overflow: hidden;
  margin: 20px;
}

.simple-section::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.1) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  z-index: 1;
}

.simple-section>* {
  position: relative;
  z-index: 2;
}


.bottom-content p:last-of-type {
  margin-bottom: 0;
}


/* chennals section*/
.smo-section {
  text-align: center;
  padding: 60px 5%;
}


.smo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 35px;
  justify-items: center;
}

.smo-grid .item {
  text-align: center;
}


.smo-grid img {
  width: 65px;
  height: 65px;
  border-radius: 12px;
  background: #f8f8f8;
  padding: 5px;
  object-fit: contain;
  box-shadow: 0 2px 6px #000000;
  transition: all 0.25s ease;
}

.smo-grid img:hover {
  transform: scale(1.08);
  background: #e2e2e2;
  box-shadow: 0 3px 10px #ff5500;
}

.smo-grid span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
}

/* Benefits Section */
.fundamental-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.fundamental-card {
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.95), rgba(15, 15, 15, 0.95));
  border-radius: 25px;
  padding: 3rem 2.5rem;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;

}

.fundamental-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 138, 0, 0.05), transparent);
  z-index: 1;
  transition: transform 0.7s ease;
  transform: translateX(-100%);
}

.fundamental-card:hover::before {
  transform: translateX(100%);
}

.fundamental-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow:
    0 20px 40px rgba(255, 138, 0, 0.15),
    0 0 60px rgba(255, 138, 0, 0.05);
}

.fundamental-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff8a00, #ff9e2c, #ff8a00);
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s;
}

.fundamental-card:hover::after {
  opacity: 0.3;
  animation: fundamentalGlow 3s infinite alternate;
}

/* List Styling */
.fundamental-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.fundamental-card li {
  padding: 1.2rem 1rem;
  margin-bottom: 1rem;
  color: #d0d0d0;
  font-size: 1.1rem;
  line-height: 1.6;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border-left: 3px solid rgba(255, 138, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.fundamental-card li:hover {
  transform: translateX(8px);
  background: rgba(255, 138, 0, 0.08);
  border-left-color: #ff8a00;
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.1);
}

.fundamental-card li:last-child {
  margin-bottom: 0;
}

/* Icon Styling */
.fundamental-card li i {
  color: #ff8a00;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.fundamental-card li:hover i {
  transform: scale(1.2);
  color: #ffb357;
  text-shadow: 0 0 10px rgba(255, 138, 0, 0.5);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .fundamental-cards {
    gap: 2rem;
    padding: 0 1rem;
  }

  .fundamental-card {
    padding: 2.5rem 2rem;
    min-height: 380px;
  }

}

@media (max-width: 768px) {
  .fundamental-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
  }

  .fundamental-card {
    padding: 2rem 1.5rem;
    min-height: auto;
  }

  .fundamental-card li {
    padding: 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {

  .fundamental-card {
    padding: 1.5rem 1.2rem;
  }

  .fundamental-card li {
    padding: 0.8rem;
    font-size: 0.95rem;
    gap: 0.8rem;
  }

  .fundamental-card li i {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fundamentalGlow {
  0% {
    opacity: 0.2;
  }

  50% {
    opacity: 0.35;
  }

  100% {
    opacity: 0.5;
  }
}

/* Loading Animation for Cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fundamental-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.fundamental-card:nth-child(1) {
  animation-delay: 0.1s;
}

.fundamental-card:nth-child(2) {
  animation-delay: 0.2s;
}

/* Hiring Section  */
.web-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

.web-main-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.web-main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 2;
}

.web-main-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff8a00, #ff9e2c, #ff8a00);
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.web-main-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.15);
}

.web-main-card:hover::after {
  opacity: 0.3;
  animation: cardGlow 2s infinite alternate;
}

.web-main-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  padding-left: 30px;
}

.web-main-card h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 15px;
  height: 15px;
  background: #ff8a00;
  border-radius: 50%;
  animation: pointPulse 2s infinite;
}

@keyframes pointPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 138, 0, 0);
    transform: scale(1.1);
  }
}

.web-main-card p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
  padding-left: 30px;
}

/* Services Section */

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  place-items: center;
}

/* Service Card */
.service-card {
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.9));
  border-radius: 12px;
  padding: clamp(1.5rem, 4vw, 2rem);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 138, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 400px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -3px rgba(255, 138, 0, 0.2);
  border-color: rgba(255, 138, 0, 0.5);
}

/* Animated Background Effect */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 138, 0, 0.1),
      transparent);
  z-index: 1;
  transition: left 0.7s ease;
}

.service-card:hover::before {
  left: 100%;
}

/* Icon Wrapper */
.service-icon-wrapper {
  width: clamp(60px, 8vw, 70px);
  height: clamp(60px, 8vw, 70px);
  border-radius: 12px;
  background: rgba(255, 138, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  position: relative;
}

.service-card:hover .service-icon-wrapper {
  background: rgba(255, 138, 0, 0.2);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}

/* Icons */
.service-icon-wrapper i,
.service-icon-wrapper svg {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  color: #ff8a00;
  transition: transform 0.4s ease;
}

.service-icon-wrapper svg {
  width: clamp(1.5rem, 3vw, 2rem);
  height: clamp(1.5rem, 3vw, 2rem);
}

.service-card:hover .service-icon-wrapper i,
.service-card:hover .service-icon-wrapper svg {
  transform: scale(1.1);
}

/* Content */
.service-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
  z-index: 2;
  position: relative;
}

.service-description {
  color: #aaaaaa;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: clamp(0.95rem, 1.5vw, 1rem);
  z-index: 2;
  position: relative;
}

/* ============================================
   RESPONSIVE DESIGN
============================================= */

/* Large Desktops (≥1200px) */
@media screen and (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* Tablets (768px - 1199px) */
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .services-section {
    padding: 4rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .service-card {
    max-width: 100%;
  }

  .web-type {
    font-size: 1.75rem;
  }
}

/* Mobile Landscape (576px - 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .services-section {
    padding: 3rem 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.75rem;
  }

  .web-type {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .web-type::after {
    bottom: -20px;
  }
}

/* Mobile Portrait (≤575px) */
@media screen and (max-width: 575px) {
  .services-section {
    padding: 2.5rem 1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .web-type {
    font-size: 1.35rem;
    margin-bottom: 1.75rem;
    padding: 0;
  }

  .web-type::after {
    bottom: -15px;
    width: 100px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
    border-radius: 10px;
  }

  .service-icon-wrapper {
    width: 55px;
    height: 55px;
    margin-bottom: 1.25rem;
  }

  .service-title {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
  }

  .service-description {
    font-size: 0.925rem;
    line-height: 1.5;
  }
}

/* Extra Small Devices (≤375px) */
@media screen and (max-width: 375px) {
  .services-section {
    padding: 2rem 0.75rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .web-type {
    font-size: 1.25rem;
  }

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }
}

/* High-DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .service-card {
    border-width: 0.5px;
  }
}


/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {

  .service-card,
  .service-card:hover,
  .service-icon-wrapper,
  .service-card::before,
  .service-card:hover::before,
  .service-icon-wrapper i,
  .service-icon-wrapper svg {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}


/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonials-section {
  margin: 15px;
  margin-top: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 70px;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(20, 20, 25, 0.9));
  border-radius: 20px;
  padding: 40px 35px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  animation: cardSlideUp 0.8s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
  text-align: left;
  margin-bottom: 50px;
}

.testimonial-card:nth-child(2) {
  animation-delay: 0.1s;
}

.testimonial-card:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes cardSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 25px;
  font-size: 120px;
  color: rgba(255, 138, 0, 0.1);
  line-height: 1;
  z-index: 0;
  transition: transform 0.3s ease;
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow:
    0 25px 50px rgba(255, 138, 0, 0.15),
    0 0 80px rgba(255, 138, 0, 0.1);
}

.testimonial-card:hover::before {
  transform: scale(1.1);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.testimonial-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.star {
  color: #ff8a00;
  font-size: 20px;
  text-shadow: 0 0 10px rgba(255, 138, 0, 0.3);
  animation: starPop 0.5s ease-out forwards;
  animation-delay: calc(var(--i) * 0.1s);
  opacity: 0;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-stars .star:nth-child(1) {
  --i: 1;
}

.testimonial-stars .star:nth-child(2) {
  --i: 2;
}

.testimonial-stars .star:nth-child(3) {
  --i: 3;
}

.testimonial-stars .star:nth-child(4) {
  --i: 4;
}

.testimonial-stars .star:nth-child(5) {
  --i: 5;
}

.testimonial-content {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 30px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-content {
  transform: translateX(5px);
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 138, 0, 0.2);
  padding-top: 20px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .client-info {
  transform: translateX(5px);
}

.client-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: inline-block;
}

.client-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  transition: width 0.3s ease;
}

.testimonial-card:hover .client-name::after {
  width: 100%;
}

.client-time {
  font-size: 14px;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.client-time i {
  color: #ff8a00;
  font-size: 12px;
  animation: pulse 2s infinite;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.2) 0%, transparent 70%);
  transform: scale(0);
  animation: ripple 1s linear;
  pointer-events: none;
  z-index: 0;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/*  FAQs section   */

/* FAQ List */
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 70px;
}

/* FAQ Item */
.faq-item {
  background: linear-gradient(145deg, rgba(35, 35, 40, 0.9), rgba(25, 25, 30, 0.9));
  border-radius: 15px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.faq-item.animated {
  opacity: 1;
  transform: translateY(0);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 1;
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 15px 30px rgba(255, 138, 0, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.faq-text {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  flex: 1;
}

.faq-icon {
  color: #ff8a00;
  font-size: 20px;
  transition: transform 0.3s ease;
  min-width: 24px;
  text-align: center;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: #ff9e2c;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, margin-top 0.3s ease;
  font-size: 16px;
  color: #bbb;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 20px;
}

