/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Professional Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e57d00, #c2255f);
}

/* Section Container */
.section-container {
    padding: clamp(60px, 8vw, 100px) 0;
}

.max-width {
    max-width: 1300px;
    padding: 0 clamp(20px, 4vw, 80px);
    margin: 0 auto;
}

/* Section Title Styling */
.section-title {
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
    color: #ffffff;
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #ff8a00;
    transform: translateX(-50%);
}


/* ========================
   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;
  }
}


/* Scroll-up Button */
.scroll-up-btn {
    position: fixed;
    height: clamp(45px, 6vw, 50px);
    width: clamp(45px, 6vw, 50px);
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    right: clamp(15px, 3vw, 30px);
    bottom: clamp(15px, 3vw, 30px);
    text-align: center;
    line-height: clamp(45px, 6vw, 50px);
    color: #ffffff;
    z-index: 9999;
    font-size: clamp(1.5rem, 3vw, 28px);
    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.2);
}

.scroll-up-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.scroll-up-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.3);
}

/* Home Section */
.home-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 30%, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 0.9) 70%), url('/image/home_img.jpeg') no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    min-height: 500px;
    font-family: 'Ubuntu', sans-serif;
    padding: 0 clamp(15px, 3vw, 20px);
    text-align: left;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 138, 0, 0.2), rgba(229, 46, 113, 0.2));
    z-index: 1;
}

.home-section .max-width {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.home-content {
    margin-top: auto;
}

/* Home Text Styles */
.home-section .home-content .welcome-text {
    font-size: clamp(1.125rem, 2vw, 24px);
    text-align: left;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    color: #cccccc;
}

.home-section .home-content .main-title {
    font-size: clamp(2.5rem, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: left;
    background: linear-gradient(to right, #ffffff, #ff8a00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    position: relative;
    line-height: 1.1;
}

.home-section .home-content .main-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #ff8a00;
    overflow: hidden;
    animation: textReveal 1.5s ease forwards;
    animation-delay: 1s;
}

.home-section .home-content .tagline {
    font-size: clamp(1.5rem, 4vw, 36px);
    margin: 15px 0 clamp(20px, 3vw, 30px);
    text-align: left;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    color: #dddddd;
    line-height: 1.2;
}

.home-section .home-content .tagline span {
    color: #ff8a00;
    font-weight: 600;
    position: relative;
}

.home-section .home-content .tagline span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #ff8a00;
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.home-section .home-content .tagline span:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Button Styles */
.quote-button {
    display: inline-block;
    padding: clamp(12px, 2vw, 14px) clamp(25px, 4vw, 35px);
    font-size: clamp(1rem, 1.5vw, 18px);
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ff8a00;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.quote-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #ff8a00, #e52e71);
    z-index: -1;
    transition: width 0.4s ease;
}

.quote-button:hover {
    color: #ffffff;
    border-color: transparent;
}

.quote-button:hover::before {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textReveal {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Services Section */
.service_body {
    background: #000000;
    color: #dddddd;
    display: flex;
    justify-content: center;
    padding: clamp(30px, 5vw, 40px) clamp(15px, 3vw, 20px);
    width: 100%;
    text-align: left;
}

.services-section {
    width: 100%;
    max-width: 1200px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px);
    padding: 0 15px;
}

.section-subtitle {
    color: #cccccc;
    font-size: clamp(0.75rem, 1.5vw, 14px);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 36px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #cccccc;
    font-size: clamp(0.875rem, 1.5vw, 16px);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.5;
}



/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(15px, 3vw, 20px);
    padding: 0 15px;
}

/* Service Card */
.service-card {
    background: linear-gradient(180deg, #1e1e1e, rgba(255, 255, 255, 0.02));
    padding: clamp(20px, 3vw, 30px) clamp(18px, 2.5vw, 25px);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.service-card:hover::before {
    opacity: 1;
}

.card-head {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: clamp(1.125rem, 2vw, 20px);
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-left: 0;
    text-align: left;
    color: #ffffff;
}

.service-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 3px;
    background: #ff8a00;
    border-radius: 2px;
}

.service-desc {
    color: #cccccc;
    font-size: clamp(0.75rem, 1.5vw, 14px);
    line-height: 1.5;
    margin-bottom: 18px;
    text-align: left;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.03);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: clamp(0.625rem, 1.5vw, 12px);
    color: #cccccc;
    transition: all 0.2s ease;
}

.service-card:hover .service-tag {
    background: rgba(255, 255, 255, 0.08);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* View Details Button */
.view-details-btn {
    background: transparent;
    border: 1px solid rgba(255, 138, 0, 0.3);
    padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 16px);
    border-radius: 10px;
    color: #ff8a00;
    font-weight: 600;
    font-size: clamp(0.75rem, 1.5vw, 14px);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    outline: none;
    min-width: min(120px, 100%);
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 138, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-details-btn:hover {
    background: rgba(255, 138, 0, 0.1);
    border-color: rgba(255, 138, 0, 0.5);
    transform: translateY(-2px);
}

.view-details-btn:hover::before {
    left: 100%;
}

.service-note {
    color: #cccccc;
    font-size: clamp(0.75rem, 1.5vw, 13px);
    text-align: left;
}

/* Mobile Card Adjustments */
@media (max-width: 480px) {
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .view-details-btn {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}

/* Explore Button */
.explore-section {
    text-align: center;
    margin-top: clamp(40px, 6vw, 50px);
    padding: 0 15px;
}

.explore-btn {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    border: none;
    padding: clamp(12px, 2vw, 14px) clamp(25px, 3vw, 32px);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: clamp(0.875rem, 1.5vw, 16px);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 138, 0, 0.3);
    font-family: inherit;
    outline: none;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 138, 0, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: clamp(15px, 3vw, 20px);
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(180deg, #1e1e1e, rgba(255, 255, 255, 0.02));
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
    max-width: min(600px, 95vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(20px, 3vw, 30px);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: clamp(1.125rem, 3vw, 24px);
    font-weight: 600;
    color: #ffffff;
}

.close-btn {
    background: transparent;
    border: none;
    color: #cccccc;
    font-size: clamp(1.125rem, 3vw, 24px);
    cursor: pointer;
    transition: color 0.2s ease;
    font-family: inherit;
    outline: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #ffffff;
}

.modal-body {
    color: #cccccc;
    line-height: 1.6;
    font-size: clamp(0.875rem, 1.5vw, 16px);
}

.modal-features {
    margin-top: 20px;
}

.modal-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-icon {
    color: #ff8a00;
    margin-right: 10px;
}

/* Features & Partners Sections */
.Features, .partners-section {
    padding: clamp(50px, 8vw, 80px) clamp(15px, 3vw, 20px);
}

.Features h2, .partners-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.Features h2::after, .partners-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    border-radius: 2px;
}

#f-p, .partners-section p {
    color: #cccccc;
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

/* Features Section */
.Features {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.Features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: -1;
}

.card-container2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    max-width: 1200px;
    margin: 0 auto;
}

.card2 {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: clamp(20px, 3vw, 30px);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.card2:nth-child(1) { animation-delay: 0.1s; }
.card2:nth-child(2) { animation-delay: 0.2s; }
.card2:nth-child(3) { animation-delay: 0.3s; }
.card2:nth-child(4) { animation-delay: 0.4s; }
.card2:nth-child(5) { animation-delay: 0.5s; }
.card2:nth-child(6) { animation-delay: 0.6s; }

.card2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(229, 46, 113, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.3);
    background: rgba(50, 50, 50, 0.7);
}

.card2:hover::before {
    opacity: 1;
}

.feaimg {
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.card2:hover .feaimg {
    transform: scale(1.1) rotate(5deg);
}

.featitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    margin-bottom: 15px;
    color: #ffffff;
}

.card2 p {
    color: #cccccc;
    text-align: center;
    margin-bottom: 0;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

/* Partners Section */
.partners-section {
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 70%, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: -1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
    gap: clamp(15px, 3vw, 25px);
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: clamp(15px, 2.5vw, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 0.6s forwards;
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.15s; }
.partner-card:nth-child(3) { animation-delay: 0.2s; }
.partner-card:nth-child(4) { animation-delay: 0.25s; }
.partner-card:nth-child(5) { animation-delay: 0.3s; }
.partner-card:nth-child(6) { animation-delay: 0.35s; }
.partner-card:nth-child(7) { animation-delay: 0.4s; }
.partner-card:nth-child(8) { animation-delay: 0.45s; }
.partner-card:nth-child(9) { animation-delay: 0.5s; }
.partner-card:nth-child(10) { animation-delay: 0.55s; }

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(229, 46, 113, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(255, 138, 0, 0.3);
    background: rgba(50, 50, 50, 0.7);
}

.partner-card:hover::before {
    opacity: 1;
}

.partnerimg {
    max-width: 100%;
    max-height: clamp(40px, 6vw, 60px);
    transition: all 0.4s ease;
}

.partner-card:hover .partnerimg {
    transform: scale(1.1);
}

/* Testimonial Section */
.testimonial_section {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testimonial-section {
    padding: clamp(50px, 8vw, 80px) clamp(15px, 3vw, 20px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(40, 40, 40, 0.8) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: -1;
}

.title {
    text-align: center;
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

#t-p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 6vw, 60px);
    font-size: clamp(0.875rem, 2vw, 1.2rem);
    color: #ccc;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

/* Testimonials Container */
.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(20px, 3vw, 30px);
    justify-content: center;
    margin-bottom: clamp(50px, 8vw, 80px);
}

.testimonial {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    padding: clamp(20px, 3vw, 30px);
    flex: 1 1 min(300px, 100%);
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial:nth-child(1) { animation-delay: 0.5s; }
.testimonial:nth-child(2) { animation-delay: 0.7s; }
.testimonial:nth-child(3) { animation-delay: 0.9s; }

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 138, 0, 0.2);
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial:hover::before {
    transform: scaleX(1);
}

.name {
    font-size: clamp(1.125rem, 2.5vw, 1.4rem);
    font-weight: 600;
    margin-bottom: 15px;
    color: #ff8a00;
}

.quote {
    font-style: italic;
    color: #ddd;
    position: relative;
    padding-left: 20px;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: clamp(2rem, 5vw, 3rem);
    color: rgba(255, 138, 0, 0.3);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(40px, 6vw, 60px);
}

.stat-item {
    text-align: center;
    padding: clamp(20px, 3vw, 30px) clamp(15px, 2vw, 20px);
    background: rgba(40, 40, 40, 0.5);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 1.1s; }
.stat-item:nth-child(2) { animation-delay: 1.3s; }
.stat-item:nth-child(3) { animation-delay: 1.5s; }
.stat-item:nth-child(4) { animation-delay: 1.7s; }

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(50, 50, 50, 0.7);
}

.stat-item svg {
    width: clamp(40px, 8vw, 60px);
    height: clamp(40px, 8vw, 60px);
    margin-bottom: 20px;
    fill: #ff8a00;
    transition: transform 0.5s ease;
}

.stat-item:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.stat-number {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    transition: width 0.5s ease;
}

.stat-item:hover .stat-number::after {
    width: 100%;
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    color: #ccc;
}

/* Portfolio Button */
.Portfolio-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: clamp(12px, 2vw, 15px) clamp(25px, 4vw, 40px);
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 138, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease 2s forwards;
}

.Portfolio-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 138, 0, 0.5);
}

.Portfolio-btn::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;
}

.Portfolio-btn:hover::before {
    left: 100%;
}

/* 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;
}

/* ========================
   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;
    }
}

@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;
    }
}

/* 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;
    }
}