/* =========== CUSTOM COLORS FOR TECHNOWLEDGY ========= */
/* Primary color scheme - Solid Pink */
:root {
  --primary-color: #e35176;
  --primary-dark: #d13d64;
  --primary-light: #f07a96;
  --secondary-color: #e35176;
  --accent-color: #e35176;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --bg-light: #FFFFFF;
  --bg-white: #FFFFFF;
  --gradient-start: #FFFFFF;
  --gradient-end: #FFFFFF;
}

/* Override existing colors */
body {
  color: var(--text-light);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--text-dark);
}

/* Scroll top */
.scroll-top {
  background: var(--primary-color);
}

.scroll-top:hover {
  background: var(--primary-dark);
}

/* Buttons */
.button {
  background: var(--primary-color);
  color: var(--bg-white);
}

.button:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
}

.button.border-button {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Header */
.header {
  background: var(--bg-white);
}

.header.header-2 .navbar-nav .nav-item a {
  color: var(--text-light);
}

.header.header-2 .navbar-nav .nav-item a:hover,
.header.header-2 .navbar-nav .nav-item a.active {
  color: var(--primary-color);
}

.header.header-2 .navbar-nav .nav-item a::after {
  background: var(--primary-color);
}

/* Hero section */
.hero-section-wrapper-2 {
  background: var(--bg-light);
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h4 {
  color: var(--primary-color);
}

/* Hero section title responsive sizes */
.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h1 {
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper p {
  font-size: 20px;
  line-height: 1.5;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h1 {
    font-size: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper {
    padding: 180px 0 60px;
  }
}

@media (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper p {
    font-size: 16px;
  }

  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper {
    padding: 140px 0 40px;
  }
}

@media only screen and (min-width: 575px) and (max-width: 767px) {
  .hero-section-wrapper-2 .hero-style-2 .hero-content-wrapper h1 {
    font-size: 40px;
  }
}

/* Feature section */
.feature-style-2 {
  background: var(--bg-white);
}

.feature-style-2 .single-feature .icon {
  background: var(--primary-color);
  color: var(--bg-white);
}

/* Team section */
.team-style-1 {
  background: var(--bg-light);
}

.team-style-1 .single-team {
  background: var(--bg-white);
}

/* Pricing section */
.pricing-style-1 {
  background: var(--bg-light);
}

.pricing-style-1 .single-pricing {
  background: var(--bg-white);
}

.pricing-style-1 .single-pricing.active,
.pricing-style-1 .single-pricing:hover {
  border-color: var(--primary-color);
}

.pricing-style-1 .single-pricing .image {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
}

.pricing-style-1 .single-pricing h3 {
  color: var(--primary-color);
}

.pricing-style-1 .single-pricing ul li i {
  color: var(--primary-color);
}

/* About section */
.about-style-3 {
  background: var(--bg-light);
}

.about-style-3 .about-content-wrapper .counter-up-wrapper {
  background: var(--bg-white);
}

/* Contact section */
.contact-style-6 {
  background: var(--bg-white);
}

/* Footer */
.footer-style-1 {
  background: #ffffff;
  color: var(--text-dark);
  border-top: 1px solid #f0f0f0;
}

.footer-style-1 .widget-wrapper .footer-widget .desc {
  color: var(--text-light);
  line-height: 1.6;
}

.footer-style-1 .widget-wrapper .footer-widget h6 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-style-1 .widget-wrapper .footer-widget h6::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-style-1 .widget-wrapper .footer-widget .links li a {
  color: var(--text-light);
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px 0;
}

.footer-style-1 .widget-wrapper .footer-widget .links li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-style-1 .copyright-wrapper {
  border-top: 1px solid #f0f0f0;
  padding: 20px 0;
  margin-top: 20px;
}

.footer-style-1 .copyright-wrapper p {
  color: var(--text-light);
  margin: 0;
  font-size: 14px;
}

/* Social Icons */
.footer-style-1 .socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-style-1 .socials li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.footer-style-1 .socials li a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Preloader spinner */
.preloader .loader .spinner-circle {
  border-color: var(--primary-color) var(--primary-color) #E9E9E9;
}

/* Form elements */
.form-input {
  border-color: #E5E7EB;
  color: var(--text-dark);
}

.form-input:focus {
  border-color: var(--primary-color);
}

/* Social icons */
.socials a {
  color: var(--text-light);
}

.socials a:hover {
  color: var(--primary-color);
}

/* Premium Button Styles */
.button-premium {
  position: relative;
  background: linear-gradient(90deg, #e35176, #ff7b9c) !important;
  border: none !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  padding: 0.5rem 1.25rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1;
}

.button-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff7b9c, #e35176);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: inherit;
}

.button-premium:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 30px rgba(227, 81, 118, 0.4) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem !important;
}

.button-premium:hover::before {
  opacity: 1;
}

.button-premium i {
  margin-left: 8px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.button-premium:hover i {
  transform: translateX(5px);
}

/* Reset any conflicting button styles */
.button.button-premium:active,
.button.button-premium:focus {
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 15px rgba(227, 81, 118, 0.3) !important;
  outline: none !important;
  padding: 0.5rem 1.25rem !important;
}

/* Pulse animation for CTA buttons */
@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(227, 81, 118, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(227, 81, 118, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(227, 81, 118, 0);
  }
}

.button-pulse {
  animation: pulse-border 2s infinite;
}