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