/* ==========================================
   RESET & BASE STYLES
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================
   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);
}

/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
  width: 100%;
  padding: 40px 20px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 110px;
}

.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;
}

.mockup-img {
  width: 380px;
  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(-20px) rotateY(5deg);
  }

  100% {
    transform: translateY(0px) rotateY(0deg);
  }
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 20px 30px rgba(255, 138, 0, 0.3));
  }

  100% {
    filter: drop-shadow(0 20px 40px rgba(255, 138, 0, 0.6));
  }
}

.code-tag {
  position: absolute;
  background: rgba(255, 138, 0, 0.9);
  color: #000;
  padding: 8px 15px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
  animation: bounce 2s infinite;
}

.tag-1 {
  top: -15px;
  right: 30px;
  animation-delay: 0.5s;
}

.tag-2 {
  bottom: 40px;
  left: -20px;
  animation-delay: 1s;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-right {
  flex: 1;
  color: #fff;
  min-width: 300px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 5px;
  background: #ff8a00;
  bottom: -10px;
  left: 0;
  border-radius: 5px;
}

.highlight {
  color: #ff8a00;
  position: relative;
}

.hero-text {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.or {
  color: #aaa;
  font-weight: 500;
  margin: 0 15px;
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s;
}

.packages-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ff8a00;
  border: 2px solid #ff8a00;
  min-width: 220px;
  background: transparent;
  box-shadow: 0 5px 15px rgba(255, 138, 0, 0.1);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.packages-btn:hover {
  background: rgba(255, 138, 0, 0.1);
  color: #ff8a00;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.3);
}

.packages-btn:hover .arrow {
  transform: translateX(5px);
}

.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);
  }
}

.packages-btn {
  min-height: 62px;
  min-width: 240px;
  padding: 18px 36px;
  font-size: 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  margin-top: 10px;
}

.packages-btn:hover {
  transform: translateY(-5px);
  background: rgba(255, 138, 0, 0.1);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.3);
}

.or {
  color: #aaa;
  font-weight: 500;
  margin: 5px 10px;
}

/* ==========================================
   HERO SECTION RESPONSIVE
========================================== */
@media (max-width: 1100px) {
  .hero-content {
    gap: 40px;
  }

  .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-text {
    max-width: 100%;
  }

  .mockup-img {
    width: 320px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .packages-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .or {
    margin: 10px 0;
  }

  .mockup-img {
    width: 280px;
  }
}

/* ==========================================
   FEATURE SECTION
========================================== */
.webdev-section {
  width: 100%;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 50%, #000 100%);
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 138, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  opacity: 0.4;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 0, 0.15), transparent);
  z-index: 0;
  animation: float 20s infinite linear;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  left: -50px;
  animation-delay: 5s;
  animation-duration: 25s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation-delay: 10s;
  animation-duration: 15s;
}

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 138, 0, 0.15);
  color: #ff8a00;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 138, 0, 0.3);
  animation: pulse 2s infinite;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(90deg, #fff, #ffb357);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-desc {
  font-size: 18px;
  color: #dcdcdc;
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.feature-card {
  background: rgba(30, 30, 30, 0.7);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 138, 0, 0.1);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.15);
}

.feature-icon {
  font-size: 40px;
  color: #ff8a00;
  margin-bottom: 20px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 138, 0, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.feature-desc {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.6;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 60px 0;
  background: rgba(255, 138, 0, 0.05);
  border-radius: 16px;
  padding: 40px 20px;
  border: 1px solid rgba(255, 138, 0, 0.1);
}

.stat-item {
  text-align: center;
  padding: 20px;
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #ff8a00;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #d0d0d0;
  font-weight: 500;
}

.trust-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.1), transparent);
  animation: shimmer 3s infinite;
}

.trust-banner p {
  font-size: 20px;
  font-weight: 600;
  color: #ff8a00;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-container {
  text-align: center;
  margin-top: 60px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 138, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 0, 0);
  }
}

@keyframes pulse-glow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.9);
  }

  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* ==========================================
   FEATURE SECTION RESPONSIVE
========================================== */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }

  .stats-container {
    justify-content: center;
  }

  .stat-item {
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .section-desc {
    font-size: 16px;
  }

  .feature-card {
    padding: 25px 20px;
  }

  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .webdev-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    min-width: 100%;
    margin-bottom: 20px;
  }
}

/* ==========================================
   PRICE SECTION
========================================== */
.currency-toggle {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.currency-btn {
  padding: 10px 25px;
  background: rgba(255, 138, 0, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 138, 0, 0.3);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.currency-btn.active {
  background: #ff8a00;
  color: #000;
  border-color: #ff8a00;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.plan-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 138, 0, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
}

.plan-card:hover {
  transform: translateY(-15px);
  border-color: #ff8a00;
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.2);
}

.plan-card:nth-child(2):hover {
  transform: translateY(-20px) scale(1.02);
}

.plan-label {
  font-weight: 900;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-size: 22px;
  position: relative;
  overflow: hidden;
}

.plan-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.plan-card:hover .plan-label::before {
  left: 100%;
}

.plan-green {
  background: linear-gradient(90deg, #1fa63a, #2bc255);
  color: #fff;
}

.plan-dark {
  background: linear-gradient(90deg, #111, #222);
  color: #fff;
}

.plan-orange {
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  color: #000;
}

.plan-card:nth-child(1) .plan-label {
  background: linear-gradient(90deg, #333, #444);
  color: #fff;
}

.plan-title {
  font-size: 18px;
  color: #dedede;
  margin-bottom: 15px;
  min-height: 50px;
}

.plan-price {
  font-size: 42px;
  font-weight: 900;
  margin: 25px 0;
  position: relative;
  display: inline-block;
}

.plan-price::before {
  content: 'Starting at';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #aaa;
  font-weight: 400;
}

.plan-price .currency {
  font-size: 20px;
  vertical-align: top;
  margin-right: 5px;
}

.price-note {
  font-size: 14px;
  color: #aaa;
  margin-top: -15px;
  margin-bottom: 30px;
}

.plan-features {
  text-align: left;
  line-height: 1.5;
  font-size: 15px;
  color: #e8e8e8;
  margin-bottom: 35px;
  flex-grow: 1;
  padding-left: 0;
  list-style: none;
}

.plan-features li {
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: flex-start;
  transition: all 0.2s ease;
}

.plan-features li:hover {
  background-color: rgba(255, 138, 0, 0.05);
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 4px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: #ff8a00;
  margin-right: 12px;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-features li strong {
  color: #ffffff;
  font-weight: 600;
  margin-right: 6px;
}

.plan-features li span {
  color: #b0b0b0;
  font-weight: 400;
}

@keyframes fadeInCheck {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.plan-features li i {
  animation: fadeInCheck 0.3s ease-out;
}

.guarantee-section {
  margin-top: 80px;
  text-align: center;
  padding: 40px;
}



.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.guarantee-item {
  text-align: center;
  padding: 20px;
  background: #FF880021;
  border: 1px solid rgba(255, 138, 0, 0.2);
  margin: 25px;
  border-radius: 20px;

}

.guarantee-icon {
  font-size: 40px;
  color: #ff8a00;
  margin-bottom: 15px;
}

.guarantee-item h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
}

.guarantee-item p {
  color: #ccc;
  font-size: 15px;
}

/* ==========================================
   PRICE SECTION RESPONSIVE
========================================== */
@media (max-width: 1200px) {
  .pricing-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .plan-price {
    font-size: 36px;
  }

  .plan-features {
    font-size: 14px;
  }

  .plan-features li {
    padding: 10px 0;
  }
}

@media (max-width: 600px) {
  .currency-toggle {
    flex-direction: column;
  }
}

/* ==========================================
   INCLUSION SECTION
========================================== */
.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
}

.inc-card {
  background: linear-gradient(145deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.9));
  border-radius: 20px;
  padding: 40px 30px;
  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;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.inc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 138, 0, 0.03), transparent);
  z-index: 1;
  transition: transform 0.6s;
  transform: translateX(-100%);
}

.inc-card:hover::before {
  transform: translateX(100%);
}

.inc-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.15);
}

.inc-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.5s;
}

.inc-card:hover::after {
  opacity: 0.3;
  animation: cardGlow 3s infinite alternate;
}

@keyframes cardGlow {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.5;
  }
}

.inc-icon {
  font-size: 50px;
  margin-bottom: 25px;
  color: #ff8a00;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 138, 0, 0.1);
  border-radius: 20px;
  position: relative;
  transition: all 0.4s;
}

.inc-card:hover .inc-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 138, 0, 0.2);
  box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}

.inc-icon i {
  font-size: 32px;
}

.inc-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.3;
}

.inc-small {
  color: #aaa;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.inc-list {
  color: #d0d0d0;
  line-height: 1.8;
  font-size: 16px;
  flex-grow: 1;
  list-style: none;
}

.inc-list li {
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  transition: transform 0.3s;
}

.inc-list li:hover {
  transform: translateX(5px);
  color: #fff;
}

.inc-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff8a00;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
}

.inc-list li:hover::before {
  transform: scale(1.3);
  color: #ffb357;
}

.inclusion-cta {
  margin-top: 15px;
  text-align: center;
  margin-bottom: 40px;
}

/* ==========================================
   INCLUSION SECTION RESPONSIVE
========================================== */
@media (max-width: 1200px) {
  .inclusion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .inclusion-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .inc-card {
    padding: 30px 25px;
  }
}

@media (max-width: 600px) {
  .inc-list {
    list-style: none;
  }
}

/* ==========================================
   WEBSITE TYPE AND PARTNERS SECTION
========================================== */
.company-intro {
  background: rgba(30, 30, 30, 0.5);
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
  border: 1px solid rgba(255, 138, 0, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.company-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 138, 0, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.company-intro:hover::before {
  transform: translateX(100%);
}

.company-intro h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.company-intro p {
  font-size: 18px;
  color: #d0d0d0;
  line-height: 1.8;
}

.website-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.website-type-card {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.8), rgba(20, 20, 20, 0.8));
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 138, 0, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.website-type-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;
}

.website-type-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.1);
}

.website-type-card:hover::after {
  opacity: 0.3;
  animation: cardGlow 2s infinite alternate;
}

.website-type-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 138, 0, 0.1);
  border-radius: 20px;
  transition: all 0.4s;
}

.website-type-card:hover .website-type-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 138, 0, 0.2);
  box-shadow: 0 10px 20px rgba(255, 138, 0, 0.2);
}

.website-type-icon svg {
  width: 40px;
  height: 40px;
  fill: #ff8a00;
}

.website-type-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.3;
}

.website-type-desc {
  font-size: 16px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.website-type-tag {
  display: inline-block;
  background: rgba(255, 138, 0, 0.1);
  color: #ff8a00;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 138, 0, 0.2);
  margin: 5px;
}

.financial-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(255, 138, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #ff8a00;
}

.web_typ {
  position: relative;
  color: #ff8a00;
  margin-bottom: 20px;
  text-align: center;
}

.web_typ::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      #ff8a00,
      transparent);
  border-radius: 3px;
}

.note {
  text-align: center;
  padding: 40px;
  background: rgba(255, 138, 0, 0.05);
  border-radius: 20px;
  margin-top: 60px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.note::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.1), transparent);
  animation: shimmer 4s infinite;
}

.note p {
  font-size: 20px;
  font-weight: 600;
  color: #ff8a00;
  position: relative;
  z-index: 1;
}

.note i {
  margin-right: 15px;
}

/* ==========================================
   HIRE SECTION
========================================== */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  position: relative;
}

.hire-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;
}

.hire-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 2;
}

.hire-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;
}

.hire-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);
}

.hire-card:hover::after {
  opacity: 0.3;
  animation: cardGlow 2s infinite alternate;
}

.hire-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  padding-left: 30px;
}

.hire-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);
  }
}

.hire-card p {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
  padding-left: 30px;
}

/* ==========================================
   DEV PROCESS SECTION
========================================== */
.dev-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
  counter-reset: process-step;
}

.process-step {
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.9));
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  opacity: 1;
  transform: translateY(0);
}

.process-step::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(255, 138, 0, 0.5);
  box-shadow: 0 20px 40px rgba(255, 138, 0, 0.15);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(255, 156, 44, 0.1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: #ff8a00;
  position: relative;
  overflow: hidden;
}

.step-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s;
}

.process-step:hover .step-icon::after {
  left: 100%;
}

.step-title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.4;
}

.step-description {
  font-size: 16px;
  color: #aaa;
  line-height: 1.7;
  flex-grow: 1;
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.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;
}

.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;
  }
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS FOR ALL SECTIONS
========================================== */
@media (max-width: 768px) {
  .company-intro {
    padding: 30px 20px;
  }

  .company-intro h2 {
    font-size: 28px;
  }

  .company-intro p {
    font-size: 16px;
  }

  .website-types-grid {
    grid-template-columns: 1fr;
  }

  .hire-grid {
    grid-template-columns: 1fr;
  }

  .dev-process-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 30px 25px;
  }
}

@media (max-width: 480px) {
  .company-intro {
    padding: 25px 15px;
    margin: 40px 0;
  }

  .company-intro h2 {
    font-size: 24px;
  }

  .website-type-card {
    padding: 30px 20px;
  }

  .website-type-title {
    font-size: 20px;
  }

  .hire-card {
    padding: 30px 25px;
  }

  .hire-card h3 {
    font-size: 20px;
  }

  .process-step {
    padding: 30px 20px;
  }

  .step-title {
    font-size: 20px;
  }
}


/* Platforms section */
/* Platforms Container */
.platforms-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 70px;
  justify-content: center;
}

.platform-category {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.platform-category:nth-child(1) {
  animation-delay: 1.2s;
}

.platform-category:nth-child(2) {
  animation-delay: 1.5s;
}

.platform-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}

.platform-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  border-radius: 2px;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.platform-item {
  background: linear-gradient(145deg, rgba(35, 35, 40, 0.9), rgba(25, 25, 30, 0.9));
  border-radius: 15px;
  padding: 25px 15px;
  border: 1px solid rgba(255, 138, 0, 0.15);
  backdrop-filter: blur(8px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  animation: fadeInScale 0.8s ease forwards;
  opacity: 0;
  transform: scale(0.9);
}

/* Staggered animations for platform items */
.platform-item:nth-child(1) {
  animation-delay: 1.8s;
}

.platform-item:nth-child(2) {
  animation-delay: 1.9s;
}

.platform-item:nth-child(3) {
  animation-delay: 2.0s;
}

.platform-item:nth-child(4) {
  animation-delay: 2.1s;
}

.platform-item:nth-child(5) {
  animation-delay: 2.2s;
}

.platform-item:nth-child(6) {
  animation-delay: 2.3s;
}

.platform-item:nth-child(7) {
  animation-delay: 2.4s;
}

.platform-item:nth-child(8) {
  animation-delay: 2.5s;
}

.platform-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff8a00, #ff9e2c);
  z-index: 1;
}

.platform-item:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(255, 138, 0, 0.4);
  box-shadow: 0 15px 30px rgba(255, 138, 0, 0.2);
}

/* SVG Icon Styling - This will apply to both FontAwesome icons and inline SVGs */
.platform-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* This targets both SVG elements and FontAwesome icons */
.platform-icon svg,
.platform-icon i {
  width: 100%;
  height: 100%;
  color: #ff8a00;
  fill: #ff8a00;
  transition: all 0.3s;
}

/* Special handling for FontAwesome icons */
.platform-icon i.fab,
.platform-icon i.fas {
  font-size: 28px;
  line-height: 1;
  color: #ff8a00;
}

.platform-item:hover .platform-icon svg,
.platform-item:hover .platform-icon i {
  transform: scale(1.2);
  color: #ff9e2c;
  fill: #ff9e2c;
}

.platform-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}

.platform-item:hover .platform-name {
  color: #ff8a00;
}


/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* Responsive Media Queries */

/* Tablet Devices (768px - 1024px) */
@media (min-width: 768px) {
  .platforms-container {
    gap: 50px;
    margin-bottom: 70px;
  }

  .platform-category {
    min-width: 300px;
    max-width: 500px;
  }

  .platform-title {
    font-size: 26px;
  }

  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 18px;
  }

  .platform-item {
    padding: 25px 15px;
    min-height: 120px;
    border-radius: 15px;
  }

  .platform-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .platform-icon i.fab,
  .platform-icon i.fas {
    font-size: 28px;
  }

  .platform-name {
    font-size: 15px;
  }

  .platform-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.2);
  }
}

/* Desktop Devices (1025px and above) */
@media (min-width: 1025px) {
  .platforms-container {
    gap: 60px;
    justify-content: center;
  }

  .platform-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .platform-grid {
    gap: 20px;
  }

  .platform-item {
    padding: 25px 15px;
  }

  .platform-name {
    font-size: 16px;
  }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
  .platforms-container {
    gap: 30px;
    margin-bottom: 40px;
  }

  .platform-title {
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .platform-title::after {
    width: 60px;
  }

  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
  }

  .platform-item {
    padding: 15px 8px;
    min-height: 95px;
    border-radius: 10px;
  }

  .platform-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
  }

  .platform-icon i.fab,
  .platform-icon i.fas {
    font-size: 22px;
  }

  .platform-name {
    font-size: 13px;
  }

  .platform-item:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  .platform-item {
    padding: 12px 6px;
    min-height: 85px;
  }

  .platform-name {
    font-size: 12px;
  }
}

/* Landscape Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .platforms-container {
    margin-bottom: 40px;
  }

  .platform-item {
    padding: 15px 10px;
    min-height: 90px;
  }
}

/* High Resolution Displays */
@media (min-width: 1400px) {
  .platforms-container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

.platform-icon .fab,
.platform-icon .fas {
  display: inline-block !important;
  font-size: 28px !important;
  width: 1em !important;
  height: 1em !important;
  line-height: 1 !important;
}



/*  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;
}

.faq-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(90deg, rgba(255, 138, 0, 0.07), rgba(255, 156, 44, 0.03));
  border-radius: 20px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.faq-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.12), transparent);
  animation: ctaShimmer 5s infinite;
}

@keyframes ctaShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.cta-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}


/* ========================
   Portfolio Section Style
======================== */

            .portfolio-section {
            padding: 80px 20px;
            background: #000000;
            text-align: center;
            overflow: hidden;
        }


        .portfolio-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .portfolio-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .portfolio-track img {
            width: 350px;
            height: 220px;
            border-radius: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            flex-shrink: 0;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .portfolio-track img:hover {
            transform: scale(1.03);
        }

        /* portigation container */
        .port-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 40px;
        }

        /* Dots Container - Red dot */
        .dots-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            height: 50px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .dot.active {
            background: #ff8a00;
            transform: scale(1.2);
        }

        .dot:hover {
            background: rgba(255, 138, 0, 0.7);
        }

        /* Buttons  */
        .port-btn {
            background: #ff8a00;
            border: none;
            color: white;
            font-size: 28px;
            padding: 10px 14px;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(255, 185, 54, 0.2);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .port-btn:hover {
            background: #ff9a2e;
            transform: scale(1.05);
        }

        .port-btn:active {
            transform: scale(0.95);
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .portfolio-section {
                padding: 60px 15px;
            }
            
            .portfolio-slider {
                max-width: 800px;
            }
            
            .portfolio-track img {
                width: 350px;
                height: 220px;
            }
            
           
            .port-btn {
                width: 45px;
                height: 45px;
                font-size: 24px;
            }
        }

        /* Mobile Landscape & Small Tablet */
        @media (max-width: 768px) {
            .portfolio-section {
                padding: 50px 10px;
            }
            
            .portfolio-slider {
                max-width: 700px;
            }
            
            .portfolio-track img {
                width: 320px;
                height: 200px;
            }
            
            
            .port-container {
                gap: 20px;
                margin-top: 30px;
            }
            
            .port-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
        }

        /* Mobile Portrait */
        @media (max-width: 576px) {
            .portfolio-section {
                padding: 40px 8px;
            }
            
            .portfolio-slider {
                max-width: 400px;
            }
            
            .portfolio-track img {
                width: 350px;
                height: 220px;
            }
            
            
            .port-container {
                gap: 15px;
                margin-top: 25px;
            }
            
            .port-btn {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
            }
        }

        /* Small Mobile */
        @media (max-width: 375px) {
            .portfolio-section {
                padding: 30px 5px;
            }
            
            .portfolio-slider {
                max-width: 350px;
            }
            
            .portfolio-track img {
                width: 320px;
                height: 200px;
            }
            
            .port-container {
                gap: 10px;
                margin-top: 20px;
            }
            
            .port-btn {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            
            .dot {
                width: 8px;
                height: 8px;
            }
        }

        /* Accessibility: Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .portfolio-track {
                transition: none;
            }
            
            .port-btn:hover {
                transform: scale(1);
            }
        }

