/* ==========================================
   RESET & BASE STYLES
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #000000;
  margin: 0;
  padding: 0;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==========================================
   PROFESSIONAL SCROLLBAR
========================================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 138, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #e52e71, #ff8a00);
  box-shadow: 0 0 15px rgba(255, 138, 0, 0.5);
}

/* ==========================================
   WHATSAPP BUTTON
========================================== */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: clamp(15px, 3vw, 20px);
  left: clamp(15px, 3vw, 20px);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1000;
  animation: slideInLeft 0.6s ease-out;
}

.whatsapp-icon {
  width: clamp(45px, 6vw, 50px);
  margin-right: -5px;
}

/* ==========================================
   SCROLL-UP BUTTON
========================================== */
.scroll-up-btn {
  position: fixed;
  height: 50px;
  width: 50px;
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  right: 10px;
  bottom: 10px;
  text-align: center;
  line-height: 50px;
  color: #ffffff;
  z-index: 9999;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-up-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-up-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 138, 0, 0.4);
}

/* ========================
   HEADER & NAVIGATION
======================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  font-family: 'Ubuntu', sans-serif;
  transition: all 0.4s ease;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 138, 0, 0.1);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255, 138, 0, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar .logo a {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 32px);
  font-weight: 700;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 5px;
}

.navbar .logo a span {
  color: #ff8a00;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar.scrolled .logo a {
  color: #ffffff;
}

.navbar.scrolled .logo a span {
  color: #ffffff;
  text-decoration: none;
}

.navbar .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navbar .menu li {
  margin-left: clamp(15px, 2vw, 30px);
  position: relative;
}

.navbar .menu li a {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 18px);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
  display: block;
}

.navbar .menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff8a00;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.navbar .menu li a:hover {
  color: #ff8a00;
}

.navbar .menu li a:hover::after {
  width: 100%;
}

.navbar.scrolled .menu li a {
  color: #ffffff;
}

.navbar.scrolled .menu li a:hover {
  color: #ffffff;
}

.navbar.scrolled .menu li a::after {
  background: #ffffff;
}

/* Services Dropdown Styles */
.services-dropdown {
  position: relative;
}

.services-dropdown>a {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.services-dropdown>a .dropdown-arrow {
  margin-left: 5px;
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.services-dropdown:hover>a .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: #000000;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1001;
  text-align: left;
}

.services-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  color: #ffffff;
  padding: 12px 25px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: left;
  position: relative;
}

.dropdown-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff8a00;
  bottom: 8px;
  left: 25px;
  transition: width 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(255, 138, 0, 0.1);
  color: #ff8a00;
}

.dropdown-menu li a:hover::after {
  width: calc(100% - 50px);
}

/* SUB-DROPDOWN STYLES  */
.sub-dropdown {
  position: relative;
}

.sub-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  padding: 12px 25px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.sub-arrow {
  margin-left: 10px;
  font-size: 0.7em;
  transition: transform 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.sub-dropdown:hover > .sub-dropdown-toggle .sub-arrow {
  transform: rotate(90deg);
  color: #ff8a00;
}

.sub-dropdown:hover > .sub-dropdown-toggle {
  background: rgba(255, 138, 0, 0.1);
  color: #ff8a00;
}

.sub-dropdown-menu {
  position: absolute;
  top: -15px;
  left: 100%;
  width: 180px;
  margin-right: 5px;
  background: #000000;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1002;
}

.sub-dropdown:hover .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-dropdown-menu li {
  margin: 0;
}

.sub-dropdown-menu li a {
  color: #ffffff;
  padding: 8px 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.sub-dropdown-menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: #ff8a00;
  bottom: 6px;
  left: 15px;
  transition: width 0.3s ease;
}

.sub-dropdown-menu li a:hover {
  background: rgba(255, 138, 0, 0.1);
  color: #ff8a00;
}

.sub-dropdown-menu li a:hover::after {
  width: calc(100% - 30px);
}

/* Mobile Menu */
.menu-btn {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 26px);
  cursor: pointer;
  display: none;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
  margin-right: 5px;
}

.navbar.scrolled .menu-btn {
  color: #ffffff;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 947px) {
  .menu-btn {
    display: block;
  }

  .menu-btn i.active::before {
    content: "\f00d";
  }

  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: #000000;
    padding-top: 100px;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ff8a00 #1a1a1a;
  }

  /* Mobile menu scrollbar styling */
  .navbar .menu::-webkit-scrollbar {
    width: 6px;
  }

  .navbar .menu::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 3px;
    margin-top: 100px;
    margin-bottom: 20px;
  }

  .navbar .menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    border-radius: 3px;
  }

  .navbar .menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e52e71, #ff8a00);
  }

  .navbar .menu.active {
    left: 0;
  }

  .navbar .menu li {
    width: 90%;
    margin: 0;
    text-align: left;
    padding: 5px 0;
  }

  .navbar .menu li a {
    display: block;
    width: 100%;
    font-size: clamp(1.5rem, 4vw, 28px);
    padding: clamp(10px, 2vw, 15px) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
  }

  .navbar.scrolled .menu li a {
    color: #ffffff;
  }

  /* Mobile dropdown adjustments */
  .services-dropdown .dropdown-menu {
    position: static;
    width: 90%;
    margin: 15px auto 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
    text-align: left;
    scrollbar-width: thin;
    scrollbar-color: #ff8a00 #1a1a1a;
  }

  .services-dropdown.active .dropdown-menu {
    max-height: 400px;
    padding: 15px 0;
    overflow-y: auto;
  }

  /* Dropdown scrollbar styling */
  .services-dropdown.active .dropdown-menu::-webkit-scrollbar {
    width: 4px;
  }

  .services-dropdown.active .dropdown-menu::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 2px;
  }

  .services-dropdown.active .dropdown-menu::-webkit-scrollbar-thumb {
    background: #ff8a00;
    border-radius: 2px;
  }

  .dropdown-menu li a {
    font-size: 18px;
    padding: 10px 25px;
    text-align: left;
  }

  .dropdown-menu li a::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
  }

  .dropdown-menu li a:hover::after {
    width: 80px;
  }

  .services-dropdown>a .dropdown-arrow {
    display: inline-block;
  }

  .services-dropdown.active>a .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* MOBILE SUB-DROPDOWN STYLES - FIXED */
  .sub-dropdown-menu {
    position: static;
    width: 85%;
    margin: 10px auto 0 30px; /* Left side se margin diya */
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
  }

  .sub-dropdown.active .sub-dropdown-menu {
    max-height: 250px;
    padding: 8px 0;
    overflow-y: auto;
    margin-left: 30px; /* Same margin maintain karo */
  }

  .sub-dropdown.active .sub-dropdown-toggle .sub-arrow {
    transform: rotate(90deg);
    color: #ff8a00;
  }

  .sub-dropdown.active .sub-dropdown-toggle {
    background: rgba(255, 138, 0, 0.1);
    color: #ff8a00;
  }

  .sub-dropdown-toggle {
    padding: 10px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px; /* Mobile par font size bada karo */
  }

  .sub-arrow {
    transition: transform 0.3s ease;
  }

  .sub-dropdown-menu li a {
    font-size: 14px; /* Mobile par 14px karo (12px se bada) */
    padding: 8px 35px;
  }

  /* Sub-dropdown scrollbar styling for mobile */
  .sub-dropdown.active .sub-dropdown-menu::-webkit-scrollbar {
    width: 3px;
  }

  .sub-dropdown.active .sub-dropdown-menu::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 2px;
  }

  .sub-dropdown.active .sub-dropdown-menu::-webkit-scrollbar-thumb {
    background: #ff8a00;
    border-radius: 2px;
  }

  /* Last item ke baad padding for better scroll */
  .navbar .menu li:last-child {
    margin-bottom: 30px;
  }
}

/* DESKTOP HOVER FIXES */
@media (min-width: 948px) {
  /* Ensure sub-dropdown works properly on desktop */
  .sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  /* Fix dropdown positioning */
  .dropdown-menu {
    z-index: 1001;
  }
  
  .sub-dropdown-menu {
    z-index: 1002;
  }
}



/* ==========================================
   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;
  font-family: Georgia, serif;
  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);
            }
        }

/* ========================
   FOOTER STYLES
======================== */
.footer {
  background-color: #000000;
  color: #ffffff;
  padding: clamp(40px, 6vw, 60px) 0 clamp(15px, 3vw, 20px);
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 138, 0, 0.3);
  width: 100%;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 138, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(229, 46, 113, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 138, 0, 0.05) 0%, transparent 50%);
  animation: backgroundShift 8s ease-in-out infinite;
}

@keyframes backgroundShift {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(15px, 3vw, 20px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 60px);
  position: relative;
  z-index: 2;
}

/* Footer Top Section */
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(30px, 6vw, 60px);
  animation: fadeIn 0.8s ease-out;
}

/* Footer Left Section */
.footer-left {
  animation: slideInLeft 0.8s ease-out;
  text-align: left;
}

.f-logo {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 15px);
  margin-bottom: clamp(15px, 3vw, 25px);
  text-align: left;
}

#f-logo {
  width: clamp(40px, 6vw, 50px);
  height: clamp(40px, 6vw, 50px);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.f-logo h2 {
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ff8a00, #e52e71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.f-title {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 15px;
  color: #ff8a00;
  position: relative;
  display: inline-block;
  text-align: left;
}

.f-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #ff8a00, transparent);
  animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes underlinePulse {

  0%,
  100% {
    width: 50px;
    opacity: 1;
  }

  50% {
    width: 70px;
    opacity: 0.7;
  }
}

.f-description {
  line-height: 1.7;
  color: #cccccc;
  margin-bottom: clamp(20px, 4vw, 30px);
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  max-width: 500px;
  text-align: left;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: clamp(10px, 2vw, 15px);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  justify-content: flex-start;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 6vw, 45px);
  height: clamp(40px, 6vw, 45px);
  background: rgba(30, 30, 30, 0.7);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.social-icon::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.5s ease;
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  background: rgba(50, 50, 50, 0.7);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.3);
}

.social-icon:nth-child(1):hover {
  background: linear-gradient(45deg, #E1306C, #F77737);
}

.social-icon:nth-child(2):hover {
  background: linear-gradient(45deg, #25D366, #128C7E);
}

.social-icon:nth-child(3):hover {
  background: linear-gradient(45deg, #1877F2, #0D8AF0);
}

.social-icon i {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  z-index: 1;
}

/* Footer Links Section */
.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(25px, 4vw, 40px);
  animation: slideInRight 0.8s ease-out;
  text-align: left;
}

.link-group h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 20px;
  color: #ff8a00;
  position: relative;
  padding-bottom: 8px;
  text-align: left;
}

.link-group h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #e52e71;
  transition: width 0.3s ease;
}

.link-group:hover h3::after {
  width: 60px;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.link-group li {
  margin-bottom: 12px;
}

.link-group a {
  color: #cccccc;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 25px;
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.875rem, 1.5vw, 0.9rem);
  gap: 8px;
}

.link-group a i {
  width: 16px;
  text-align: center;
  font-size: clamp(0.875rem, 1.5vw, 0.9rem);
  color: #ff8a00;
  transition: all 0.3s ease;
}

.link-group a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.link-group a:hover i {
  color: #e52e71;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: clamp(30px, 5vw, 50px) auto 0;
  padding: clamp(15px, 3vw, 25px) clamp(15px, 3vw, 20px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  z-index: 2;
  animation: fadeIn 1s ease-out 0.4s both;
}

.footer-bottom p {
  color: #cccccc;
  font-size: clamp(0.875rem, 1.5vw, 0.9rem);
  margin: 0;
}

/* Enhanced hover effects for links */
.link-group a {
  position: relative;
  overflow: hidden;
}

.link-group a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 25px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #ff8a00, #e52e71);
  transition: width 0.3s ease;
}

.link-group a:hover::after {
  width: calc(100% - 25px);
}

/* ========================
   ANIMATION KEYFRAMES
======================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ========================
   RESPONSIVE FIXES FOR FOOTER
======================== */
@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .scroll-up-btn {
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 30px;
    padding: 0 15px;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .link-group a {
    padding-left: 20px;
  }

  .f-logo h2 {
    font-size: 1.4rem;
  }

  #f-logo {
    width: 40px;
    height: 40px;
  }

  .f-title {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon i {
    font-size: 1.1rem;
  }

  .scroll-up-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }
}

/* Small mobile devices */
@media (max-width: 360px) {
  .footer-content {
    padding: 0 10px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
.social-btn:focus,
.social-icon:focus {
  outline: 2px solid #ff8a00;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --bg-primary: #000000;
  }
}