/* CSS Variables */
:root { 
  --default-color: #2b2d42; 
  --heading-color: #2b2d42;
  --accent-color: #8d99ae; 
  --surface-color: #edf2f4; 
  --contrast-color: #ffffff; 
  --secondary-bg: #8d99ae;
  --tertiary-bg: #2b2d42;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--default-color);
  background-color: transparent;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2b2d42;
  text-decoration: none;
  transform: translateY(-2px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--heading-color);
}

/* Header & Navigation */
.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
  background-color: transparent !important;
  backdrop-filter: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .header-container {
  background: #2b2d42 !important;
  border-radius: 50px;
  padding: 10px 30px 10px 35px;
  box-shadow: 0px 2px 15px rgba(141, 153, 174, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 40px;
  margin-right: 10px;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #8d99ae !important;
  animation: logoReveal 1.5s ease-out;
  position: relative;
  overflow: hidden;
}

.header .logo h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(141, 153, 174, 0.3), transparent);
  animation: logoShine 2s ease-in-out infinite;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-10px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background-color: #8d99ae;
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background-color: #2b2d42;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(141, 153, 174, 0.4);
}

/* Navigation Menu */
.navmenu a, .navmenu a:focus {
  color: #ecf0f1 !important;
  padding: 18px 15px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.navmenu a:hover, .navmenu a.active {
  color: #8d99ae !important;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(141, 153, 174, 0.5);
}

.navmenu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #8d99ae;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navmenu a:hover::after {
  width: 100%;
}

.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: #8d99ae;
}

.navmenu .active,
.navmenu .active:focus {
  color: #8d99ae;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  color: #ecf0f1;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 10000;
}

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ecf0f1 !important;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover>a {
  color: #8d99ae !important;
  transform: translateY(-2px);
}

  .navmenu .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #2b2d42;
  box-shadow: 0px 0px 30px rgba(141, 153, 174, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: #ecf0f1;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #3498db;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 100vw;
    bottom: 0;
    transition: 0.3s;
    z-index: 9999;
    background: rgba(43, 45, 66, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 60px;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .navmenu ul {
    display: none;
  }

  .navmenu ul,
  .navmenu ul ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu a,
  .navmenu a:focus {
    display: block;
    position: relative;
    color: #ecf0f1 !important;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    font-weight: 500;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    margin-left: 5px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #3498db !important;
  }

  .navmenu .dropdown ul {
    display: none;
    z-index: 99;
    background: rgba(44, 62, 80, 0.9);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }

  .navmenu .dropdown ul ul {
    background: rgba(44, 62, 80, 0.8);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #ecf0f1;
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 10000;
    border: 0;
    font-size: 32px;
    padding: 0;
    line-height: 0;
    transition: 0.5s;
    cursor: pointer;
  }

  .mobile-nav-active .navmenu {
    overflow-y: auto;
    inset: 0;
    display: block;
    right: 0;
    background-color: #2b2d42;
    transition: 0.3s;
    transform: translateX(0);
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Scroll Top Button */
#scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #2b2d42;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #8d99ae;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
}

#scroll-top.active {
  visibility: visible;
  opacity: 1;
}

#scroll-top:hover {
  background-color: #8d99ae !important;
  color: #ffffff !important;
  transform: translateY(-5px) scale(1.1) !important;
  box-shadow: 0 10px 25px rgba(141, 153, 174, 0.4) !important;
}

#scroll-top i {
  transition: transform 0.3s ease;
}

#scroll-top:hover i {
  transform: translateY(-2px);
}

/* Section Titles */
.section-title h2 {
  color: #2c3e50 !important;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0;
  background: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.514) 50%, rgba(69, 127, 194, 0.747) 100%) !important;
}

.back-video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
}

.hero .main-heading h1 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0;
  animation: fadeInUp 1s ease-out;
}

/* Typing Animation */
.typing-animation {
  position: relative;
}

.typing-text {
  color: #ffffff !important;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0;
}

.hero .description p {
  color: #ecf0f1 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  font-weight: bolder;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero .cta-button .btn {
  background: #8d99ae !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.6s both;
  margin-top: 30px;
}

.hero .cta-button .btn:hover {
  background: #2b2d42 !important;
  box-shadow: 0 10px 25px rgba(141, 153, 174, 0.4) !important;
  transform: translateY(-3px) scale(1.05);
}

.hero .cta-button .btn i {
  transition: transform 0.3s ease;
}

.hero .cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero .cta-buttons .btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero .cta-buttons .btn-primary {
  background: #8d99ae !important;
  color: #ffffff !important;
  border: 2px solid #8d99ae;
}

.hero .cta-buttons .btn-outline {
  background: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff;
}

.hero .cta-buttons .btn-primary:hover {
  background: #2b2d42 !important;
  border-color: #2b2d42;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(141, 153, 174, 0.4);
}

.hero .cta-buttons .btn-outline:hover {
  background: #ffffff !important;
  color: #2b2d42 !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.hero .cta-buttons .btn i {
  transition: transform 0.3s ease;
}

.hero .cta-buttons .btn:hover i {
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
  background: #edf2f4 !important;
  padding: 80px 0;
}

.testimonials .section-title h2 {
  color: #2b2d42 !important;
  margin-bottom: 10px;
}

.testimonials .section-title p {
  color: #8d99ae;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(141, 153, 174, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(141, 153, 174, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(141, 153, 174, 0.15);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  color: #2b2d42;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #8d99ae;
}

.author-info h4 {
  color: #2b2d42;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.author-info span {
  color: #8d99ae;
  font-size: 0.9rem;
}

/* About Section */
.about {
  background: #ffffff !important;
  padding: 80px 0;
}

.about .section-title h2 {
  color: #2b2d42 !important;
}

.about .feature-item {
  background: #edf2f4;
  border: 1px solid rgba(141, 153, 174, 0.2);
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(141, 153, 174, 0.1);
}

.about .feature-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(141, 153, 174, 0.15) !important;
  border-color: rgba(141, 153, 174, 0.4);
}

.about .feature-item h5:hover {
  color: #8d99ae;
  transform: translateX(5px);
}

.about .feature-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2b2d42;
}

.about .feature-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #161616 0%, #1f1f1f 50%, #272727 100%) !important;
  padding: 80px 0;
}

.stats-section .section-header h2 {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stats-section .stat-box {
  background: rgba(141, 153, 174, 0.1) !important;
  border: 1px solid rgba(141, 153, 174, 0.3) !important;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(10px);
}

.stats-section .stat-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(141, 153, 174, 0.3) !important;
  background: rgba(141, 153, 174, 0.15) !important;
}

.stats-section .stat-box i {
  font-size: 3rem;
  color: #8d99ae !important;
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 0 10px rgba(141, 153, 174, 0.5);
}

.stats-section .stat-box .stat-number {
  font-size: 6rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.stats-section .stat-box .stat-number.counting {
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stats-section .stat-box .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #ecf0f1 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
  background: #ffffff !important;
  padding: 80px 0;
}

.services .section-title h2 {
  color: #2b2d42 !important;
}

.services .service-card {
  background: #edf2f4;
  border: 1px solid rgba(141, 153, 174, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(141, 153, 174, 0.1);
}

.services .service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(141, 153, 174, 0.15) !important;
}

.services .service-card .service-icon:hover {
  transform: rotate(360deg) scale(1.1);
  background-color: rgba(141, 153, 174, 0.2) !important;
}

.services .service-card .service-icon i:hover {
  transform: scale(1.2);
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: rgba(141, 153, 174, 0.1) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: #8d99ae !important;
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.services .service-card h3 a {
  color: #2b2d42;
  text-decoration: none;
}

.services .service-card h3 a:hover {
  color: #8d99ae;
}

.services .service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* YT-Channels Section */
.yt-channels {
  background: linear-gradient(135deg, #161616 0%, #1f1f1f 50%, #272727 100%) !important;
  padding: 80px 0;
}

.yt-channels .section-title h2 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.yt-channels .section-title h3 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
}

.yt-channels .testimonial-item {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
  padding: 40px;
  border-radius: 15px;
  margin: 20px 0;
  backdrop-filter: blur(10px);
}

.yt-channels .testimonial-item h1 {
  color: #ffffff !important;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.yt-channels .testimonial-item .social-desc {
  color: #ecf0f1 !important;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.yt-channels .testimonial-item .featured-img {
  width: 200px !important;
  height: 200px !important;
  border-radius: 50% !important;
  object-fit: cover;
  border: 4px solid #8d99ae !important;
  box-shadow: 0 10px 25px rgba(141, 153, 174, 0.3) !important;
  transition: all 0.3s ease;
}

.yt-channels .testimonial-item .profile-img {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
}

.yt-channels .testimonial-item .socials:hover .profile-img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(141, 153, 174, 0.4);
}

.yt-channels .testimonial-item .socials {
  transition: all 0.3s ease;
}

.yt-channels .testimonial-item .socials:hover {
  transform: translateY(-3px);
}

.yt-channels .testimonial-item .social-icons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.yt-channels .testimonial-item .social-icons .socials {
  display: inline-block;
}

.yt-channels .swiper-navigation {
  position: relative;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.yt-channels .swiper-button-prev,
.yt-channels .swiper-button-next {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: 50px !important;
  height: 50px !important;
  background: #8d99ae !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(141, 153, 174, 0.3) !important;
  margin: 0 !important;
}

.yt-channels .swiper-button-prev:hover,
.yt-channels .swiper-button-next:hover {
  background: #2b2d42 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(141, 153, 174, 0.4) !important;
}

.yt-channels .swiper-button-prev::after,
.yt-channels .swiper-button-next::after {
  font-size: 20px !important;
  font-weight: bold !important;
}

.yt-channels .profile {
  margin: 10px 0;
}

.yt-channels .testimonial-item .row {
  align-items: center;
}

.yt-channels .featured-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #161616 0%, #1f1f1f 50%, #272727 100%) !important;
  padding: 80px 0;
}

.contact .section-title h2 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact .contact-form-wrapper {
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  padding: 50px !important;
  border-radius: 20px !important;
  width: 100% !important;
  max-width: 800px !important;
  margin: 0 auto !important;
}

.contact .contact-form-wrapper h2 {
  color: #ffffff !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 2rem !important;
  text-align: center !important;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
  border-radius: 8px;
  padding: 15px 15px 15px 50px !important;
  height: 3.5rem !important;
  font-size: 15px !important;
  width: 100% !important;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px !important;
  resize: none !important;
  padding-top: 20px !important;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: #8d99ae !important;
  box-shadow: 0 5px 15px rgba(141, 153, 174, 0.3) !important;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.15) !important;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  color: #8d99ae !important;
  text-shadow: 0 0 10px rgba(141, 153, 174, 0.5);
  font-size: 18px !important;
}

.contact .contact-form-wrapper .btn-submit {
  background: #8d99ae !important;
  color: #ffffff !important;
  border: none !important;
  padding: 15px 40px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 5px 15px rgba(141, 153, 174, 0.3) !important;
  font-size: 16px !important;
}

.contact .contact-form-wrapper .btn-submit:hover {
  background: #2b2d42 !important;
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(141, 153, 174, 0.3) !important;
}

.contact .contact-form-wrapper .form-group .input-with-icon:hover i {
  transform: scale(1.2);
  color: #2b2d42 !important;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1a1d2a 0%, #2b2d42 50%, #3a3d5a 100%) !important;
  color: #ffffff !important;
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8d99ae, transparent);
}

.footer h1, .footer h2, .footer h3, .footer h4, .footer h5, .footer h6, .footer p, .footer a {
  color: #ffffff !important;
}

.footer-top {
  margin-bottom: 40px;
}

.footer-about .logo {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-about .logo:hover {
  transform: translateY(-2px);
}

.footer-about .sitename {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8d99ae !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(141, 153, 174, 0.5);
}

.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #8d99ae !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-contact a {
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #ecf0f1 !important;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-contact a:hover {
  color: #8d99ae !important;
  transform: translateX(5px) scale(1.05);
  text-shadow: 0 0 10px rgba(141, 153, 174, 0.5);
}

.footer-about .logo:hover {
  transform: translateY(-2px) scale(1.02);
}

.footer-contact h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #8d99ae !important;
}

.footer-contact span {
  color: #ecf0f1 !important;
  font-weight: 400;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.copyright p {
  font-size: 0.95rem;
  color: #bdc3c7 !important;
  margin-bottom: 10px;
}

.copyright .sitename {
  color: #8d99ae !important;
  font-weight: 700;
}

.copyright .credits {
  font-size: 0.85rem;
  color: #95a5a6 !important;
}

.copyright .credits a {
  color: #8d99ae !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.copyright .credits a:hover {
  color: #2b2d42 !important;
  text-shadow: 0 0 10px rgba(141, 153, 174, 0.5);
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Scroll-triggered animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s ease;
}

.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

/* Loading animations */
.loading-fade {
  animation: fadeInUp 0.8s ease-out;
}

.loading-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.loading-slide-right {
  animation: slideInRight 0.8s ease-out;
}

.loading-scale {
  animation: scaleIn 0.8s ease-out;
}

/* Parallax effects */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Sticky navigation enhancement */
.header.sticky {
  background-color: transparent !important;
  backdrop-filter: none;
  box-shadow: none;
}

/* Breadcrumbs */
.breadcrumb-nav {
  background: transparent;
  padding: 0;
  border-bottom: none;
  display: none;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}

.breadcrumb-item {
  color: #8d99ae;
  margin-right: 10px;
}

.breadcrumb-item:not(:last-child)::after {
  content: '>';
  margin-left: 10px;
  color: #8d99ae;
}

.breadcrumb-item a {
  color: #8d99ae;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #2b2d42;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #2b2d42;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero .main-heading h1 {
    font-size: 2.5rem;
  }
  
  .contact .contact-form-wrapper {
    padding: 30px !important;
  }
  
  .contact .contact-form-wrapper h2 {
    font-size: 2rem !important;
  }
  
  /* Enhanced mobile navigation */
  .mobile-nav-toggle {
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .navmenu a {
    padding: 15px 20px;
    font-size: 18px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  /* Mobile touch targets */
  .btn, .btn-getstarted, .btn-submit {
    min-height: 44px;
    padding: 12px 20px;
  }
  
  /* Mobile typography optimization */
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero .description p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  /* Mobile spacing optimization */
  .section {
    padding: 60px 0;
  }
  
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 576px) {
  .hero .main-heading h1 {
    font-size: 2rem;
  }
  
  .contact .contact-form-wrapper {
    padding: 20px !important;
  }
  
  /* Small mobile optimizations */
  .header .logo h1 {
    font-size: 18px;
  }
  
  .stats-section .stat-box .stat-number {
    font-size: 4rem;
  }
  
  .services .service-card {
    padding: 30px 20px;
  }
  
  /* Mobile swipe gestures support */
  .yt-channels-slider {
    touch-action: pan-y pinch-zoom;
  }
  
  /* Mobile-specific interactions */
  .mobile-nav-active .navmenu {
    transform: translateX(0);
    right: 0;
  }
  
  .mobile-nav-active .navmenu ul {
    padding: 20px 0;
  }
  
  .mobile-nav-active .navmenu a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero .main-heading h1 {
    font-size: 3.5rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .container {
    max-width: 90%;
  }
}

/* Large screen optimizations */
@media (min-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4.5rem;
  }
  
  .section-title h2 {
    font-size: 3rem;
  }
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #2b2d42;
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader::before {
  content: '';
  width: 50px;
  height: 50px;
  border: 3px solid #8d99ae;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Contact Form Enhancements */
.contact .contact-form-wrapper .btn-submit .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact .contact-form-wrapper .btn-submit .btn-loading i {
  animation: spin 1s linear infinite;
}

.contact .contact-form-wrapper .btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.contact .contact-form-wrapper .alert {
  border-radius: 10px;
  border: none;
  padding: 15px 20px;
  margin-top: 20px;
  font-weight: 500;
  animation: slideInDown 0.3s ease-out;
}

.contact .contact-form-wrapper .alert-success {
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  color: #155724;
  border-left: 4px solid #28a745;
}

.contact .contact-form-wrapper .alert-danger {
  background: linear-gradient(135deg, #f8d7da, #f5c6cb);
  color: #721c24;
  border-left: 4px solid #dc3545;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Form validation styles */
.contact .contact-form-wrapper .form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact .contact-form-wrapper .form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Loading state for form inputs */
.contact .contact-form-wrapper .form-group.loading {
  position: relative;
}

.contact .contact-form-wrapper .form-group.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translateY(-50%);
}

/* Honeypot field - ensure it's completely hidden */
.contact .contact-form-wrapper input[name="website"] {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* Screen reader only class for accessibility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
