/**
* Enhanced Professional UI Styles
* Modern, visually appealing enhancements
*/

/*--------------------------------------------------------------
# Enhanced General Styles
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: #ffc451;
  color: #151515;
}

::-moz-selection {
  background: #ffc451;
  color: #151515;
}

/*--------------------------------------------------------------
# Enhanced Header with Glassmorphism
--------------------------------------------------------------*/
#header {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  padding: 20px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

#header .logo img {
  max-height: 65px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(255, 196, 81, 0.3));
}

#header.header-scrolled .logo img {
  max-height: 55px;
}

/*--------------------------------------------------------------
# Enhanced Navigation with Modern Effects
--------------------------------------------------------------*/
.navbar a {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 30px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffc451, #ffde9e);
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar .active::after {
  width: calc(100% - 30px);
}

.navbar .dropdown ul {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown ul a {
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 5px 10px;
  padding: 12px 20px;
}

.navbar .dropdown ul a:hover {
  background: linear-gradient(135deg, #ffc451 0%, #ffde9e 100%);
  transform: translateX(5px);
  color: #151515;
}

/*--------------------------------------------------------------
# Enhanced Hero Section with Gradient Overlay
--------------------------------------------------------------*/
#hero::before {
  content: "";
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(21, 21, 21, 0.5) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  animation: fadeInUp 1s ease;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

#hero h2 {
  animation: fadeInUp 1.2s ease;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

#hero .icon-box {
  padding: 35px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
}

#hero .icon-box:hover {
  border-color: #ffc451;
  background: rgba(255, 196, 81, 0.1);
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 196, 81, 0.3);
}

#hero .icon-box i {
  font-size: 38px;
  transition: all 0.3s ease;
}

#hero .icon-box:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #ffde9e;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Enhanced Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, #ffc451, #ffde9e);
  box-shadow: 0 2px 10px rgba(255, 196, 81, 0.4);
}

.section-title p {
  font-size: 42px;
  background: linear-gradient(135deg, #151515 0%, #3b3b3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

/*--------------------------------------------------------------
# Enhanced About Section
--------------------------------------------------------------*/
.about .content {
  position: relative;
}

.about .content h3 {
  font-size: 32px;
  line-height: 1.4;
  color: #151515;
  position: relative;
  padding-bottom: 15px;
}

.about .content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ffc451, #ffde9e);
  border-radius: 2px;
}

.about .content ul li {
  padding: 12px 0 12px 32px;
  transition: all 0.3s ease;
}

.about .content ul li:hover {
  transform: translateX(5px);
  color: #151515;
}

.about .content ul i {
  font-size: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.about img {
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.about img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/*--------------------------------------------------------------
# Enhanced Services Cards
--------------------------------------------------------------*/
.services .icon-box {
  border-radius: 20px;
  padding: 50px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  border: 2px solid #f5f5f5;
  position: relative;
  overflow: hidden;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffc451 0%, #ffde9e 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.services .icon-box:hover::before {
  opacity: 0.05;
}

.services .icon-box:hover {
  border-color: #ffc451;
  box-shadow: 0 20px 60px rgba(255, 196, 81, 0.25);
  transform: translateY(-15px);
}

.services .icon-box img {
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.services .icon-box:hover img {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services .icon-box h4 {
  margin-top: 20px;
  font-size: 26px;
  position: relative;
  z-index: 1;
}

.services .icon-box p {
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.services .icon-box .cta-btn {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 196, 81, 0.3);
}

.services .icon-box .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 196, 81, 0.4);
}

/*--------------------------------------------------------------
# Enhanced Features Section
--------------------------------------------------------------*/
.features .icon-box {
  padding: 30px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(10px);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
}

.features .icon-box i {
  font-size: 52px;
  background: linear-gradient(135deg, #ffc451 0%, #ffde9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features .icon-box h4 {
  font-size: 22px;
  margin: 10px 0 15px 60px;
  color: #151515;
}

.features .image {
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Enhanced CTA Section
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, rgba(21, 21, 21, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%),
    url("../img/cta-bg.jpg") fixed center center;
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 196, 81, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta .text-center {
  position: relative;
  z-index: 1;
}

.cta h3 {
  font-size: 36px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease;
}

.cta .cta-btn {
  padding: 14px 40px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta .cta-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta .cta-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cta .cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 196, 81, 0.5);
}

/*--------------------------------------------------------------
# Enhanced Counts Section
--------------------------------------------------------------*/
.counts .count-box {
  padding: 30px 0;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.counts .count-box:hover {
  background: rgba(255, 196, 81, 0.05);
  transform: translateY(-5px);
}

.counts .count-box i {
  font-size: 42px;
  background: linear-gradient(135deg, #ffc451 0%, #ffde9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse 2s infinite;
}

.counts .count-box span {
  font-size: 42px;
  background: linear-gradient(135deg, #151515 0%, #3b3b3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Enhanced Clients Section
--------------------------------------------------------------*/
.clients {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.clients .swiper-slide img {
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  padding: 20px;
  border-radius: 15px;
}

.clients .swiper-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Enhanced Team Cards
--------------------------------------------------------------*/
.team .member {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.team .member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: #ffc451;
}

.team .member .member-img img {
  transition: all 0.4s ease;
}

.team .member:hover .member-img img {
  transform: scale(1.1);
}

.team .member .social a {
  border-radius: 50%;
  transition: all 0.3s ease;
}

.team .member .social a:hover {
  transform: translateY(-5px) rotate(360deg);
}

/*--------------------------------------------------------------
# Enhanced Contact Section
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact .info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact .info i {
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 196, 81, 0.3);
}

.contact .info:hover i {
  transform: rotate(360deg) scale(1.1);
}

.contact .php-email-form {
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
  box-shadow: 0 0 20px rgba(255, 196, 81, 0.2);
  transform: translateY(-2px);
}

.contact .php-email-form button[type="submit"] {
  border-radius: 25px;
  padding: 12px 40px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 5px 20px rgba(255, 196, 81, 0.3);
  transition: all 0.3s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.4);
}

/*--------------------------------------------------------------
# Enhanced Footer
--------------------------------------------------------------*/
#footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  position: relative;
}

#footer .footer-top {
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  border-bottom: 2px solid rgba(255, 196, 81, 0.1);
}

#footer .footer-top h4 {
  position: relative;
  padding-bottom: 15px;
}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ffc451, #ffde9e);
  border-radius: 2px;
}

#footer .social-links a {
  border-radius: 50%;
  transition: all 0.3s ease;
}

#footer .social-links a:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 25px rgba(255, 196, 81, 0.4);
}

#footer .footer-links ul a {
  position: relative;
  transition: all 0.3s ease;
}

#footer .footer-links ul a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffc451;
  transition: width 0.3s ease;
}

#footer .footer-links ul a:hover::before {
  width: 100%;
}

#footer .footer-links ul a:hover {
  transform: translateX(5px);
}

#footer .footer-newsletter form {
  border-radius: 30px;
  box-shadow: 0 5px 20px rgba(255, 196, 81, 0.2);
  transition: all 0.3s ease;
}

#footer .footer-newsletter form:focus-within {
  box-shadow: 0 8px 30px rgba(255, 196, 81, 0.3);
  transform: translateY(-2px);
}

#footer .footer-newsletter form input[type="submit"] {
  border-radius: 0 30px 30px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Enhanced Back to Top Button
--------------------------------------------------------------*/
.back-to-top {
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(255, 196, 81, 0.4);
  transition: all 0.4s ease;
}

.back-to-top:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(255, 196, 81, 0.6);
}

/*--------------------------------------------------------------
# Responsive Enhancements
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .section-title p {
    font-size: 32px;
  }

  .cta h3 {
    font-size: 28px;
  }

  .services .icon-box {
    padding: 40px 20px;
  }
}

/*--------------------------------------------------------------
# Loading Animation
--------------------------------------------------------------*/
#preloader {
  background: linear-gradient(135deg, #151515 0%, #000000 100%);
}

#preloader:before {
  box-shadow: 0 0 30px rgba(255, 196, 81, 0.5);
}