/* Modern 2026 Theme - Color Palette */
:root {
  --primary: #f15a24;
  --secondary: #2e3192;
  --accent: #9508a5;
  --highlight: #0c7bc6;
  --dark: #0a0e27;
  --light: #f8f9fa;
  --gray: #e9ecef;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.2);
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ==================== HEADER STYLES ==================== */
.tg-header__area {
  background: linear-gradient(135deg, var(--white) 0%, #fafbfc 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(241, 90, 36, 0.1);
}

.tg-header__area.scrolled {
  background: linear-gradient(135deg, var(--white) 0%, #f5f7fa 100%);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
}

.tgmenu__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.tgmenu__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}

.tgmenu__navbar-wrap {
  flex: 1;
  display: flex !important;
  justify-content: center;
}

.tgmenu__action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tg-header__top {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
  color: var(--white);
  padding: 12px 0;
  font-size: 13px;
}

.tg-header__top-info a {
  color: var(--white);
  transition: color 0.3s ease;
}

.tg-header__top-info a:hover {
  color: var(--primary);
}

/* Logo Styles */
.logo img {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Navigation Menu */
.navigation {
  list-style: none;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex: 1;
  margin: 0 auto;
}

.navigation li a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navigation li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navigation li a:hover {
  color: var(--primary);
}

.navigation li a:hover::after {
  width: 100%;
}

/* Header Buttons */
.tg-btn {
  background: linear-gradient(135deg, var(--primary) 0%, #ff7a3d 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.tg-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(241, 90, 36, 0.4);
  background: linear-gradient(135deg, #ff7a3d 0%, var(--primary) 100%);
  color: var(--white);
}

.tg-btn.logout-button {
  background: linear-gradient(135deg, var(--secondary) 0%, #3d4ab5 100%);
  box-shadow: 0 4px 15px rgba(46, 49, 146, 0.3);
}

.tg-btn.logout-button:hover {
  box-shadow: 0 8px 25px rgba(46, 49, 146, 0.4);
}
.fa-bars:before,.fa-navicon:before {
    content: "\f0c9";
    color: black !important;
}
/* Mobile Menu */
.mobile-nav-toggler {
  display: none;
  background: transparent;
  color: #ffffff;
  border: none;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
}

.mobile-nav-toggler i {
  color: #ffffff;
}

.mobile-nav-toggler:hover {
  transform: scale(1.1);
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 991px) {
  .mobile-menu-btn {
    display: flex !important;
  }
  
  .header-btn {
    display: none;
  }
  
  .tg-header__area {
    padding: 12px 0;
  }
  
  .logo img {
    max-width: 120px;
  }
  
  .tgmenu__wrap {
    gap: 10px;
  }
}

/* Mobile Menu Styles */
.tgmobile__menu {
  position: fixed;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, #f5f7fa 100%);
  z-index: 9999;
  transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  display: none;
}

.tgmobile__menu.active {
  left: 0;
  display: block;
}

.tgmobile__menu-box {
  padding: 20px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10000;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.tgmobile__logo {
  text-align: center;
  margin: 30px 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(241, 90, 36, 0.2);
}

.tgmobile__logo img {
  max-width: 150px;
  height: auto;
}


.tgmobile__menu-outer {
  margin: 30px 0;
}

.tgmobile__menu-outer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tgmobile__menu-outer li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(241, 90, 36, 0.1);
}

.tgmobile__menu-outer li:last-child {
  border-bottom: none;
}

.tgmobile__menu-outer a {
  display: block;
  padding: 15px 0;
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.tgmobile__menu-outer a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tgmobile__menu-outer a:hover {
  color: var(--primary);
  padding-left: 25px;
}

.tgmobile__menu-outer a:hover::before {
  width: 8px;
  height: 8px;
}

.social-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(241, 90, 36, 0.2);
}

.social-links h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a i {
  color: #ffffff;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(241, 90, 36, 0.3);
}

.tgmobile__menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.tgmobile__menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .mobile-nav-toggler {
    display: block;
  }
  
  .navigation {
    gap: 20px;
    display: none;
  }
  
  .tgmenu__navbar-wrap {
    display: none !important;
  }
  
  .tgmobile__menu {
    width: 100%;
    max-width: 100%;
  }
  
  .tgmobile__menu-box {
    padding: 20px;
  }
  
  .tgmobile__menu-outer a {
    padding: 12px 0;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .tgmobile__menu {
    width: 100%;
  }
  
  .tgmobile__logo img {
    max-width: 120px;
  }
  
  .social-links ul {
    justify-content: center;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .tgmobile__menu-box {
    padding: 15px;
  }
  
  .close-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  
  .tgmobile__logo {
    margin: 25px 0 20px 0;
  }
  
  .tgmobile__menu-outer a {
    padding: 10px 0;
    font-size: 14px;
  }
  
  .social-links a {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/* ==================== BANNER SECTION ==================== */
.banner__area {
  position: relative;
  padding: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  overflow: hidden;
}

.banner-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner__area::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.banner__area::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(20px); }
}

.carousel-fullscreen {
  width: 100%;
  height: 100vh;
  position: relative;
}

.carousel-inner-fullscreen {
  height: 100%;
}

.carousel-item-fullscreen {
  min-height: 100vh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
}

.banner-image-fullscreen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.banner-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-item {
  min-height: 550px;
  display: flex !important;
  align-items: center;
  padding: 40px 20px;
}

.carousel-item .container-fluid {
  padding: 0;
}

.banner__content {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.banner__content .sub-title {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.banner__content .title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  animation: titleSlide 0.8s ease-out;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner__content p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 500px;
}

.banner__img img {
  animation: slideInRight 0.8s ease-out;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.carousel-indicators {
  bottom: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.carousel-indicators-modern {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.carousel-indicators button.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  width: 30px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 15px rgba(241, 90, 36, 0.4);
}

.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

@media (max-width: 768px) {
  .carousel-item-fullscreen {
    min-height: 50vh;
  }
  
  .banner-content-wrapper {
    padding: 20px 15px;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  
  .carousel-indicators button {
    width: 10px;
    height: 10px;
  }
  
  .carousel-indicators button.active {
    width: 25px;
  }
}

@media (max-width: 480px) {
  .carousel-item-fullscreen {
    min-height: 45vh;
  }
  
  .banner-content-wrapper {
    padding: 15px 10px;
  }
  
  .carousel-indicators {
    bottom: 15px;
  }
  
  .carousel-indicators button {
    width: 8px;
    height: 8px;
  }
  
  .carousel-indicators button.active {
    width: 20px;
  }
}

/* ==================== SERVICES SECTION ==================== */
.services__area {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}

.services__area::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(149, 8, 165, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.section__title {
  margin-bottom: 60px;
}

.section__title .sub-title {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section__title .title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services__item {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(241, 90, 36, 0.1);
}

.services__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.05) 0%, rgba(149, 8, 165, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.services__item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(241, 90, 36, 0.2);
}

.services__item:hover::before {
  opacity: 1;
}

.services__thumb {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 15px;
}

.services__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.services__item:hover .services__thumb img {
  transform: scale(1.1) rotate(2deg);
}

.services__icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 5px 15px rgba(241, 90, 36, 0.3);
  transition: all 0.3s ease;
}

.services__item:hover .services__icon {
  transform: scale(1.15) rotate(10deg);
}

.services__content {
  position: relative;
  z-index: 1;
}

.services__content .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.services__content .title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.services__content .title a:hover {
  color: var(--primary);
}

.services__content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.swiper-container {
  padding: 20px 0;
}

.swiper-slide {
  height: auto;
}

@media (max-width: 768px) {
  .services__area {
    padding: 60px 0;
  }
  
  .section__title .title {
    font-size: 2rem;
  }
  
  .services__item {
    padding: 30px 20px;
  }
}

/* ==================== PROJECT SECTION ==================== */
.project__area {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  position: relative;
  overflow: hidden;
}

.project__area::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12, 123, 198, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.project__item {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(46, 49, 146, 0.1);
}

.project__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 49, 146, 0.05) 0%, rgba(12, 123, 198, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.project__item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(46, 49, 146, 0.2);
}

.project__item:hover::before {
  opacity: 1;
}

.project__thumb {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 15px;
}

.project__thumb img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.project__item:hover .project__thumb img {
  transform: scale(1.15) rotate(-2deg);
}

.project__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 14px;
  border-radius: 50px;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.project__badge.free {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.project__badge.premium {
  background: linear-gradient(135deg, var(--primary) 0%, #ff7a3d 100%);
}

.project__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.project__content .title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 15px;
  margin-bottom: 0;
}

.project__content .title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.project__content .title a:hover {
  color: var(--primary);
}

/* Progress Circle */
.c100 {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  position: relative;
}

.c100 > span {
  font-weight: 700;
  color: var(--primary);
}

.c100 .bar,
.c100 .fill {
  border-color: var(--primary) !important;
}

.c100:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .project__area {
    padding: 60px 0;
  }
  
  .project__thumb img {
    max-width: 120px;
    height: 120px;
  }
  
  .c100 {
    width: 60px;
    height: 60px;
  }
}

/* ==================== FOOTER SECTION ==================== */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1f3a 100%);
  color: var(--white);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241, 90, 36, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

footer h3 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

footer h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  margin-top: 10px;
  border-radius: 2px;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

footer a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 12px;
}

footer ul li::before {
  content: '▸';
  color: var(--primary);
  margin-right: 10px;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* ==================== UTILITIES ==================== */
.section-py-130 {
  padding: 130px 0;
}

.mb-60 {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .section-py-130 {
    padding: 80px 0;
  }
}

/* Scroll to top button */
.scroll__top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(241, 90, 36, 0.3);
  z-index: 999;
}

.scroll__top.show {
  display: flex;
}

.scroll__top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(241, 90, 36, 0.4);
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .navigation {
    gap: 25px;
  }
  
  .banner__content .title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .tg-header__top {
    display: none;
  }
  
  .navigation {
    display: none;
  }
  
  .banner__area::before,
  .banner__area::after {
    display: none;
  }
  
  .services__area::before {
    display: none;
  }
  
  .project__area::before {
    display: none;
  }
  
  footer::before {
    display: none;
  }
}

/* ==================== MODAL STYLES ==================== */
.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: var(--white);
}

.modal-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: none;
  padding: 30px;
}

.modal-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
}

.modal-body {
  padding: 40px;
}

.modal-footer {
  border-top: 1px solid var(--gray);
  padding: 20px 40px;
}

.btn-close {
  background-color: var(--white);
  opacity: 0.8;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ==================== FORM STYLES ==================== */
.form-control {
  border: 2px solid var(--gray);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(241, 90, 36, 0.25);
}

.form-floating > label {
  color: var(--text-light);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--primary);
}

/* ==================== ADVANCED ANIMATIONS ==================== */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.shine__animate-item {
    background: linear-gradient(90deg, var(--white) 0%, rgba(241, 90, 36, 0.05) 50%, var(--white) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* ==================== GRADIENT BUTTONS ==================== */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 90, 36, 0.4);
}

/* ==================== CARD HOVER EFFECTS ==================== */
.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(241, 90, 36, 0.1) 0%, rgba(149, 8, 165, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: 0;
}

.card-hover:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-hover:hover::before {
    opacity: 1;
}

/* ==================== TEXT GRADIENT ==================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BADGE STYLES ==================== */
.badge-modern {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
}

/* ==================== SECTION DIVIDERS ==================== */
.section-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    margin: 60px 0;
}

/* ==================== MODERN INPUTS ==================== */
.input-modern {
    border: 2px solid var(--gray);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.input-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.1);
    outline: none;
}

.input-modern::placeholder {
    color: var(--text-light);
}

/* ==================== TOOLTIP STYLES ==================== */
.tooltip-modern {
    position: relative;
    display: inline-block;
}

.tooltip-modern .tooltip-text {
    visibility: hidden;
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -50px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tooltip-modern:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ==================== LOADING SPINNER ==================== */
.spinner-modern {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(241, 90, 36, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== COUNTER ANIMATION ==================== */
.counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== PARALLAX EFFECT ==================== */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ==================== MODERN DIVIDER ==================== */
.divider-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.divider-modern::before,
.divider-modern::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
}

.divider-modern span {
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== GLASS MORPHISM ==================== */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ==================== FLOATING ELEMENTS ==================== */
.float-animation {
    animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==================== PULSE EFFECT ==================== */
.pulse-effect {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ==================== SLIDE ANIMATIONS ==================== */
.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

.slide-in-down {
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== ZOOM EFFECT ==================== */
.zoom-on-hover {
    transition: transform 0.3s ease;
}

.zoom-on-hover:hover {
    transform: scale(1.05);
}

/* ==================== BORDER ANIMATION ==================== */
.border-animate {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--primary), var(--accent)) border-box;
    transition: all 0.3s ease;
}

.border-animate:hover {
    box-shadow: 0 10px 30px rgba(241, 90, 36, 0.2);
}

/* ==================== MOBILE OPTIMIZATIONS ==================== */
@media (max-width: 768px) {
    .banner__content .title {
        font-size: 2rem;
    }
    
    .section__title .title {
        font-size: 1.8rem;
    }
    
    .services__item,
    .project__item {
        padding: 20px 15px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .banner__content .title {
        font-size: 1.5rem;
    }
    
    .section__title .title {
        font-size: 1.5rem;
    }
    
    .tg-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
