/*----------------------------------------------------------------------------------- 

Template Name: Agenko - Creative Digital Agency HTML Template
URI: pixelfit.agency
Description: Agenko is a fully responsive, high-performance HTML template crafted for digital agencies, startups, creative firms, and more. Designed with modern web standards in mind, Agenko provides an elegant foundation for building visually striking websites.
Author: Pixelfit
Author URI: https://themeforest.net/user/pixelfit
Version: 1.0 


------------------------------------------------------
   CSS INDEX
-----------------------------------------------------

    01. Base CSS 
        # Base CSS
        # Common CSS
    02. Components CSS 
        # Header CSS
        # Elements CSS
        # Project
        # Accordion
        # Pricing
        # Team
        # Testimonial
        # Blogs
        # Footer
    03. Templates
        # Banner
        # Service
        # Sections
        # Contact    
-------------------------------------------------------    */
/*---- 

====================
1. Base CSS
    # base  CSS
====================

----*/
/* Base CSS */
:root {
  --primary-color: #EDBA2C;
  --heading-color: #1a1a1a;
  --primary-black-color: #0e0f11;
  --white-color: #ffffff;
  --text-color: #9e9fa0;
  --border-color: #313131;
  --gray-dark: #18191b;
  --heading-font: "Source Sans 3", serif;
  --body-font: "Roboto", serif;
}

/* ===== Quick Brief Form Section ===== */
.quick-brief-form {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #0a0a0a 25%,
    #000000 50%,
    #0a0a0a 75%,
    #000000 100%
  );
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.quick-brief-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 238, 112, 0.03) 0%,
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 15, 59, 0.1) 0%, transparent 40%),
    radial-gradient(
      circle at 70% 20%,
      rgba(29, 67, 0, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(255, 238, 112, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  pointer-events: none;
  animation: backgroundShift 20s ease-in-out infinite;
}

.quick-brief-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 238, 112, 0.02) 50%,
    transparent 70%
  );
  animation: lightSweep 8s ease-in-out infinite;
  pointer-events: none;
}

/* Floating geometric shapes */
.quick-brief-form .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.quick-brief-form .shape-item {
  position: absolute;
  opacity: 0.1;
  animation: floatShape 15s ease-in-out infinite;
}

.quick-brief-form .shape-item:nth-child(1) {
  top: 15%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  border-radius: 50%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.quick-brief-form .shape-item:nth-child(2) {
  top: 25%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, transparent, var(--primary-color));
  border-radius: 4px;
  animation-delay: 5s;
  animation-duration: 18s;
}

.quick-brief-form .shape-item:nth-child(3) {
  bottom: 20%;
  left: 20%;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 10s;
  animation-duration: 22s;
}

.quick-brief-form .shape-item:nth-child(4) {
  bottom: 30%;
  right: 25%;
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, transparent, var(--primary-color));
  border-radius: 50%;
  animation-delay: 15s;
  animation-duration: 16s;
}

.quick-brief-form .section-title {
  position: relative;
  z-index: 3;
}

.quick-brief-form .section-title h2 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-size: 50px;
}

.quick-brief-form .section-title .sub-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 30px;
}

.quick-brief-form .agenko-contact-form {
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.95) 0%,
    rgba(20, 21, 23, 0.95) 100%
  );
  border: 2px solid rgba(49, 49, 49, 0.8);
  border-radius: 30px;
  padding: 60px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(49, 49, 49, 0.3),
    0 0 50px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.quick-brief-form .agenko-contact-form::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 238, 112, 0.1) 25%,
    rgba(255, 238, 112, 0.2) 50%,
    rgba(255, 238, 112, 0.1) 75%,
    transparent 100%
  );
  border-radius: 30px;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.quick-brief-form .agenko-contact-form:hover {
  border-color: rgba(255, 238, 112, 0.4);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 238, 112, 0.3), 0 0 50px rgba(255, 238, 112, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quick-brief-form .agenko-contact-form:hover::before {
  opacity: 1;
}

.quick-brief-form .form_control {
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.9) 0%,
    rgba(20, 21, 23, 0.9) 100%
  );
  border: 2px solid rgba(255, 238, 112, 0.15);
  border-radius: 18px;
  color: var(--white-color);
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 25px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.quick-brief-form .form_control::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 238, 112, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.quick-brief-form .form_control:focus::before {
  left: 100%;
}

.quick-brief-form .form_control:focus {
  border-color: rgba(255, 238, 112, 0.6);
  box-shadow: 0 0 30px rgba(255, 238, 112, 0.3),
    0 0 0 3px rgba(255, 238, 112, 0.2), 0 0 60px rgba(255, 238, 112, 0.1);
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.95) 0%,
    rgba(20, 21, 23, 0.95) 100%
  );
  transform: translateY(-3px) scale(1.02);
}

.quick-brief-form .form_control:hover {
  border-color: rgba(255, 238, 112, 0.4);
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.95) 0%,
    rgba(20, 21, 23, 0.95) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 238, 112, 0.15);
}

.quick-brief-form .form_control::placeholder {
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  font-style: normal;
  font-weight: 400;
  transition: all 0.3s ease;
}

.quick-brief-form .form_control:focus::placeholder {
  color: rgba(255, 238, 112, 0.6);
  transform: translateX(5px);
}

.quick-brief-form textarea.form_control {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

.quick-brief-form .theme-btn.style-one {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    #ffee70 50%,
    var(--primary-color) 100%
  );
  background-size: 200% 200%;
  border: none;
  padding: 22px 55px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 60px rgba(255, 238, 112, 0.3),
    0 0 0 2px rgba(255, 238, 112, 0.3), 0 0 80px rgba(255, 238, 112, 0.1);
  animation: buttonGlow 3s ease-in-out infinite;
}

.quick-brief-form .theme-btn.style-one::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.6s ease;
}

.quick-brief-form .theme-btn.style-one:hover::before {
  left: 100%;
}

.quick-brief-form .theme-btn.style-one:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 80px rgba(255, 238, 112, 0.4),
    0 0 0 3px rgba(255, 238, 112, 0.4), 0 0 100px rgba(255, 238, 112, 0.2);
  background-position: right center;
}

.quick-brief-form .theme-btn.style-one:active {
  transform: translateY(-2px) scale(1.02);
}

/* Form message styling */
.quick-brief-form .form-message p {
  color: rgba(255, 238, 112, 0.8);
  font-weight: 500;
  text-align: center;
  padding: 15px;
  background: rgba(255, 238, 112, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 238, 112, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.quick-brief-form .form-message p:hover {
  background: rgba(255, 238, 112, 0.08);
  border-color: rgba(255, 238, 112, 0.2);
  transform: scale(1.02);
}

/* ===== Quick Brief Animations ===== */
@keyframes backgroundShift {
  0%,
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
  25% {
    opacity: 1;
    transform: scale(1.05);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }
  75% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(100%) rotate(45deg);
    opacity: 0;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-15px) translateX(-10px) rotate(180deg);
    opacity: 0.15;
  }
  75% {
    transform: translateY(-40px) translateX(15px) rotate(270deg);
    opacity: 0.25;
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 15px 60px rgba(255, 238, 112, 0.3),
      0 0 0 2px rgba(255, 238, 112, 0.3), 0 0 80px rgba(255, 238, 112, 0.1);
  }
  50% {
    box-shadow: 0 15px 60px rgba(255, 238, 112, 0.4),
      0 0 0 2px rgba(255, 238, 112, 0.4), 0 0 100px rgba(255, 238, 112, 0.2),
      0 0 120px rgba(255, 238, 112, 0.1);
  }
}

.quick-brief-form .theme-btn.style-one:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 238, 112, 0.3),
    0 0 0 2px rgba(255, 238, 112, 0.3);
}

.quick-brief-form .theme-btn.style-one:active {
  transform: translateY(-1px);
}

.quick-brief-form .form-message p {
  color: var(--text-color);
  font-style: italic;
  margin-top: 25px;
  font-size: 16px;
  text-align: center;
  padding: 15px;
  background: rgba(255, 238, 112, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 238, 112, 0.1);
}

.quick-brief-form .form-group {
  margin-bottom: 25px;
}

.quick-brief-form .section-title {
  margin-bottom: 60px;
}

.quick-brief-form .section-title h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

.quick-brief-form .section-title .sub-title {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* ===== GOAT Creative Hero Section ===== */
.goat-hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
  padding: 120px 0 80px;
  width: 100%;
  max-width: 100%;
}

.goat-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.goat-bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  animation: goatFloat 20s ease-in-out infinite;
}

.goat-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.goat-circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: 60%;
  right: 15%;
  animation-delay: 5s;
  opacity: 0.1;
}

.goat-circle-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 10s;
}

@keyframes goatFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-30px) scale(1.1);
    opacity: 0.12;
  }
}

.goat-floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
}

.goat-floating-dots span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: goatDotFloat 8s ease-in-out infinite;
}

.goat-floating-dots span:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}
.goat-floating-dots span:nth-child(2) {
  top: 40%;
  left: 80%;
  animation-delay: 1s;
}
.goat-floating-dots span:nth-child(3) {
  top: 70%;
  left: 25%;
  animation-delay: 2s;
}
.goat-floating-dots span:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 3s;
}
.goat-floating-dots span:nth-child(5) {
  top: 80%;
  left: 60%;
  animation-delay: 4s;
}
.goat-floating-dots span:nth-child(6) {
  top: 15%;
  left: 50%;
  animation-delay: 5s;
}
.goat-floating-dots span:nth-child(7) {
  top: 60%;
  left: 10%;
  animation-delay: 6s;
}
.goat-floating-dots span:nth-child(8) {
  top: 85%;
  left: 85%;
  animation-delay: 7s;
}
.goat-floating-dots span:nth-child(9) {
  top: 45%;
  left: 40%;
  animation-delay: 8s;
}
.goat-floating-dots span:nth-child(10) {
  top: 25%;
  left: 90%;
  animation-delay: 9s;
}

@keyframes goatDotFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
  }
}

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

.goat-hero-container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  margin-top: 0;
  padding: 0 20px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding-top: 80px;
}

.goat-hero-content {
  animation: goatFadeInUp 1s ease-out;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

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

.goat-hero-left {
  flex: 1;
  min-width: 0;
  max-width: 50%;
}

.goat-hero-right {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding-right: 0;
  margin-top: 0;
  max-width: 50%;
}

.goat-hero-title-wrapper {
  margin-bottom: 25px;
}

.goat-hero-title {
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white-color);
  text-shadow: 0 0 30px rgba(255, 238, 112, 0.3);
  margin: 0;
  width: 100%;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.goat-static-text {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}

.goat-changing-text-wrapper {
  position: relative;
  margin-left: 0px;
  display: block;
  height: auto;
  margin-top: 15px;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}
.mobile-d-none {
  display: block;
}

@media (max-width: 767px) {
  .mobile-d-none {
    display: none;
  }
}
.goat-changing-text {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  color: var(--primary-color);
  font-weight: 300;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 0 10px var(--primary-color);
  animation: goatTrustedGlow 2s ease-in-out infinite alternate;
  display: inline-block;
  width: auto;
}

@keyframes goatTextGlow {
  from {
    text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
  }
  to {
    text-shadow: 0 0 30px var(--primary-color), 0 0 60px var(--primary-color),
      0 0 80px var(--primary-color);
  }
}

.goat-hero-subtitle-wrapper {
  margin-bottom: 20px;
}

.goat-hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--white-color);
  margin: 0;
  opacity: 0.9;
  position: relative;
  white-space: normal;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@keyframes goatLineGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
}

.goat-hero-button-wrapper {
  position: relative;
  text-align: center;
}

.goat-hero-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 10px 30px;
  background: linear-gradient(45deg, var(--primary-color), #292929);
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 238, 112, 0.3),
    0 0 0 0 rgba(255, 238, 112, 0.7);
  animation: goatButtonPulse 2s infinite;
}

@keyframes goatButtonPulse {
  0% {
    box-shadow: 0 10px 30px rgba(255, 238, 112, 0.3),
      0 0 0 0 rgba(255, 238, 112, 0.7);
  }
  70% {
    box-shadow: 0 10px 30px rgba(255, 238, 112, 0.3),
      0 0 0 20px rgba(255, 238, 112, 0);
  }
  100% {
    box-shadow: 0 10px 30px rgba(255, 238, 112, 0.3),
      0 0 0 0 rgba(255, 238, 112, 0);
  }
}

/* Header WhatsApp Button Styles */
.header-whatsapp-btn {
  background: linear-gradient(135deg, #1a1a00 0%, #0d0d00 100%) !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 10px 30px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(237, 186, 44, 0.25),
    0 0 0 2px rgba(237, 186, 44, 0.2),
    0 0 60px rgba(237, 186, 44, 0.1);
  animation: headerWhatsappGlow 3s ease-in-out infinite;
}

.header-whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(237, 186, 44, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

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

.header-whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 50px rgba(237, 186, 44, 0.35),
    0 0 0 3px rgba(237, 186, 44, 0.3),
    0 0 80px rgba(237, 186, 44, 0.15);
}

.header-whatsapp-btn:active {
  transform: translateY(-1px) scale(1.01);
}

.header-whatsapp-btn .text {
  color: var(--primary-color) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header-whatsapp-btn .icon {
  color: var(--primary-color) !important;
  transition: all 0.3s ease;
  display: inline-block;
}

.header-whatsapp-btn:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

@keyframes headerWhatsappGlow {
  0%, 100% {
    box-shadow: 0 10px 35px rgba(237, 186, 44, 0.25),
      0 0 0 2px rgba(237, 186, 44, 0.2),
      0 0 60px rgba(237, 186, 44, 0.1);
  }
  50% {
    box-shadow: 0 10px 40px rgba(237, 186, 44, 0.3),
      0 0 0 2px rgba(237, 186, 44, 0.25),
      0 0 70px rgba(237, 186, 44, 0.15);
  }
}

/* Responsive adjustments for header WhatsApp button */
@media (max-width: 768px) {
  .header-whatsapp-btn {
    padding: 12px 28px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 480px) {
  .header-whatsapp-btn {
    padding: 10px 24px !important;
    font-size: 0.95rem;
  }
}

/* ===== Services CTA Section ===== */
.services-cta-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  overflow: hidden;
}

.services-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: ctaFloat 20s ease-in-out infinite;
}

.cta-circle-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation-delay: 0s;
}

.cta-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: 5s;
}

.cta-circle-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes ctaFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translateY(-40px) scale(1.1);
    opacity: 0.2;
  }
}

.cta-floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.cta-floating-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: particleFloat 10s ease-in-out infinite;
  box-shadow: 0 0 15px var(--primary-color);
}

.cta-floating-particles span:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-floating-particles span:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.cta-floating-particles span:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.cta-floating-particles span:nth-child(4) {
  top: 30%;
  right: 25%;
  animation-delay: 1s;
}

.cta-floating-particles span:nth-child(5) {
  bottom: 35%;
  left: 60%;
  animation-delay: 3s;
}

.cta-floating-particles span:nth-child(6) {
  top: 70%;
  right: 40%;
  animation-delay: 5s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.3);
    opacity: 1;
  }
}

.services-cta-content {
  position: relative;
  z-index: 2;
}

.cta-heading {
  margin-bottom: 40px;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.cta-title .title-line {
  display: block;
  color: var(--white-color);
  margin-bottom: 10px;
}

.cta-title .title-highlight {
  display: block;
  color: var(--primary-color);
  text-shadow: 0 0 40px rgba(237, 186, 44, 0.5);
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 0 40px rgba(237, 186, 44, 0.5);
  }
  50% {
    text-shadow: 0 0 60px rgba(237, 186, 44, 0.7),
                 0 0 80px rgba(237, 186, 44, 0.4);
  }
}

.cta-description {
  margin-bottom: 50px;
}

.cta-description p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 800px;
  margin: 0 auto;
  font-weight: 300;
}

.cta-button-wrapper {
  margin-bottom: 60px;
}

.services-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #d4a529 100%);
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 50px rgba(237, 186, 44, 0.3),
              0 0 0 3px rgba(237, 186, 44, 0.2),
              0 0 80px rgba(237, 186, 44, 0.15);
  animation: ctaButtonPulse 3s ease-in-out infinite;
  z-index: 1;
}

.services-cta-button .button-bg-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
  z-index: -1;
}

.services-cta-button:hover .button-bg-effect {
  left: 100%;
}

.services-cta-button .button-content {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.services-cta-button .button-text {
  transition: all 0.3s ease;
}

.services-cta-button .button-icon {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.services-cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(237, 186, 44, 0.4),
              0 0 0 4px rgba(237, 186, 44, 0.3),
              0 0 100px rgba(237, 186, 44, 0.2);
}

.services-cta-button:hover .button-icon {
  transform: scale(1.2) rotate(10deg);
}

.services-cta-button:active {
  transform: translateY(-2px) scale(1.02);
}

@keyframes ctaButtonPulse {
  0%, 100% {
    box-shadow: 0 15px 50px rgba(237, 186, 44, 0.3),
                0 0 0 3px rgba(237, 186, 44, 0.2),
                0 0 80px rgba(237, 186, 44, 0.15);
  }
  50% {
    box-shadow: 0 15px 55px rgba(237, 186, 44, 0.35),
                0 0 0 3px rgba(237, 186, 44, 0.25),
                0 0 90px rgba(237, 186, 44, 0.18);
  }
}

.cta-decorative-line {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.line-glow {
  display: block;
  width: 200px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  box-shadow: 0 0 20px var(--primary-color);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }
}

/* Responsive for Services CTA */
@media (max-width: 992px) {
  .services-cta-section {
    padding: 100px 0;
  }

  .cta-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
  }

  .cta-description p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
  }

  .services-cta-button {
    padding: 18px 45px;
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .services-cta-section {
    padding: 80px 0;
  }

  .cta-heading {
    margin-bottom: 30px;
  }

  .cta-description {
    margin-bottom: 40px;
  }

  .cta-description p {
    font-size: clamp(0.95rem, 3vw, 1.2rem);
    line-height: 1.7;
    padding: 0 15px;
  }

  .services-cta-button {
    padding: 16px 40px;
    font-size: 1.1rem;
  }

  .cta-button-wrapper {
    margin-bottom: 50px;
  }

  .cta-circle {
    filter: blur(80px);
  }
}

@media (max-width: 480px) {
  .services-cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .cta-title .title-line {
    margin-bottom: 8px;
  }

  .cta-description p {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    line-height: 1.6;
  }

  .services-cta-button {
    padding: 14px 35px;
    font-size: 1rem;
  }

  .services-cta-button .button-content {
    gap: 12px;
  }

  .services-cta-button .button-icon {
    font-size: 1.2rem;
  }

  .line-glow {
    width: 150px;
  }

  .cta-floating-particles span {
    width: 4px;
    height: 4px;
  }
}

.goat-hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 238, 112, 0.4),
    0 0 0 0 rgba(255, 238, 112, 0.7);
}

.goat-hero-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.goat-hero-button:hover::before {
  left: 100%;
}

.goat-button-text {
  position: relative;
  z-index: 1;
}

.goat-button-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.goat-hero-button:hover .goat-button-icon {
  transform: translateX(5px);
}

/* ===== GOAT Trusted Company Section ===== */
.goat-trusted-section {
  position: relative;
  overflow: hidden;
}

.goat-trusted-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.goat-trusted-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  animation: goatTrustedFloat 15s ease-in-out infinite;
}

.goat-trusted-circle-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.goat-trusted-circle-2 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #8778f5 0%, transparent 70%);
  top: 60%;
  right: 20%;
  animation-delay: 5s;
}

.goat-trusted-circle-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 10s;
}

@keyframes goatTrustedFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.3;
  }
}

.goat-trusted-content {
  position: relative;
  z-index: 2;
}

.goat-trusted-subtitle {
  background: linear-gradient(45deg, var(--primary-color), #ffee70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  position: relative;
}

.goat-trusted-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  animation: goatTrustedLine 3s ease-in-out infinite;
}

@keyframes goatTrustedLine {
  0%,
  100% {
    transform: scaleX(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scaleX(1.2);
    opacity: 1;
  }
}

.goat-trusted-heading {
  background: linear-gradient(45deg, var(--white-color), #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 238, 112, 0.2);
  position: relative;
}

.goat-trusted-highlight {
  color: var(--primary-color);
  font-weight: 700;
  text-shadow: 0 0 10px var(--primary-color);
  animation: goatTrustedGlow 2s ease-in-out infinite alternate;
}

@keyframes goatTrustedGlow {
  from {
    text-shadow: 0 0 30px
      color-mix(in srgb, var(--primary-color) 60%, transparent);
  }
  to {
    text-shadow: 0 0 20px
        color-mix(in srgb, var(--primary-color) 60%, transparent),
      0 0 60px color-mix(in srgb, var(--primary-color) 50%, transparent);
  }
}

.goat-trusted-clients {
  position: relative;
  z-index: 2;
}

.goat-trusted-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.goat-trusted-item {
  position: relative;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.goat-trusted-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(255, 238, 112, 0.2);
}

.goat-trusted-client {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.goat-trusted-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  width: 100%;
  height: 120px;
}

.goat-trusted-image img {
  transition: all 0.4s ease;
  filter: grayscale(100%) brightness(0.8);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.goat-trusted-item:hover .goat-trusted-image img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

.goat-trusted-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 238, 112, 0.15),
    rgba(135, 120, 245, 0.15)
  );
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 15px;
}

.goat-trusted-item:hover .goat-trusted-overlay {
  opacity: 1;
}

.goat-trusted-item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    #8778f5,
    var(--primary-color)
  );
  border-radius: 21px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.goat-trusted-item:hover::before {
  opacity: 1;
  animation: goatTrustedBorder 3s linear infinite;
}

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

/* Responsive for Trusted Section */
@media (max-width: 768px) {
  .goat-trusted-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .goat-trusted-item {
    padding: 15px;
  }

  .goat-trusted-image {
    min-height: 90px;
    height: 90px;
  }

  .goat-trusted-circle {
    filter: blur(40px);
  }

  #loading-icon {
    max-width: 200px !important;
    width: 200px !important;
  }

  #loading-icon img {
    max-width: 200px !important;
    min-width: 200px !important;
  }
}

@media (max-width: 480px) {
  .goat-trusted-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .goat-trusted-item {
    padding: 12px;
  }

  .goat-trusted-image {
    min-height: 80px;
    height: 80px;
  }

  .goat-trusted-circle {
    filter: blur(30px);
  }

  #loading-icon {
    max-width: 150px !important;
    width: 150px !important;
  }

  #loading-icon img {
    max-width: 150px !important;
    min-width: 150px !important;
  }
}

/* ===== Creative Service Items ===== */
.creative-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.creative-content {
  text-align: center;
  padding: 0 10px;
}

.creative-content h4 {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.creative-content p {
  color: var(--text-color);
  font-size: 12px;
  margin: 0;
  transition: all 0.3s ease;
}

.agenko-client-item:hover .creative-icon {
  transform: scale(1.1);
  color: var(--primary-color);
  text-shadow: 0 0 20px var(--primary-color);
}

.agenko-client-item:hover .creative-content h4 {
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
}

.agenko-client-item:hover .creative-content p {
  color: var(--white-color);
}

/* Responsive for Creative Items */
@media (max-width: 768px) {
  .creative-icon {
    font-size: 40px;
    margin-bottom: 12px;
  }
  
  .creative-content h4 {
    font-size: 14px;
  }
  
  .creative-content p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .creative-icon {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .creative-content h4 {
    font-size: 13px;
  }
  
  .creative-content p {
    font-size: 10px;
  }
}

/* ===== FORCE PRELOADER LOGO SIZE ===== */
#loading-icon {
  max-width: 200px !important;
  width: 200px !important;
  height: auto !important;
}

#loading-icon img {
  width: 100% !important;
  height: auto !important;
  max-width: 200px !important;
  min-width: 200px !important;
  max-height: 200px !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  .loading-container,
  .loading {
    height: 280px;
    width: 280px;
  }
  
  #loading-icon {
    max-width: 150px !important;
    width: 150px !important;
  }
  
  #loading-icon img {
    max-width: 150px !important;
    min-width: 150px !important;
  }
}

@media (max-width: 480px) {
  .loading-container,
  .loading {
    height: 220px;
    width: 220px;
  }
  
  #loading-icon {
    max-width: 120px !important;
    width: 120px !important;
  }
  
  #loading-icon img {
    max-width: 120px !important;
    min-width: 120px !important;
  }
}

/* Responsive Design for GOAT Hero */

/* Tablet Landscape */
@media (max-width: 992px) {
  .goat-hero-section {
    padding: 80px 0 50px;
    min-height: 75vh;
  }

  .goat-hero-container {
    padding: 0 30px;
    margin-top: 0;
    padding-top: 80px;
  }

  .goat-hero-content {
    gap: 40px;
  }

  .goat-hero-left {
    max-width: 55%;
  }

  .goat-hero-right {
    max-width: 45%;
  }

  .goat-hero-right img {
    max-width: 100%;
    height: auto;
  }

  .goat-hero-title {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    line-height: 1.2;
  }

  .goat-changing-text-wrapper {
    display: block;
    margin-top: 12px;
  }

  .goat-hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.5rem);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .goat-hero-section {
    padding: 120px 0 50px;
    min-height: auto;
  }

  .goat-hero-container {
    padding: 0 20px;
    margin-top: 0;
    padding-top: 100px;
    margin-left: 0;
  }

  .goat-hero-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .goat-hero-left {
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .goat-hero-right {
    max-width: 100%;
    text-align: center;
    order: 2;
    display: none;
  }

  .goat-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px;
  }

  .goat-hero-title-wrapper {
    margin-bottom: 20px;
  }

  .goat-static-text {
    display: inline-block;
    margin: 0 5px;
    white-space: normal;
    animation: none; /* Remove animation on tablet */
  }

  .goat-static-text:nth-child(1) {
    animation-delay: 0s;
  }
  .goat-static-text:nth-child(2) {
    animation-delay: 0.5s;
  }
  .goat-static-text:nth-child(3) {
    animation-delay: 1s;
  }

  .goat-changing-text-wrapper {
    min-width: auto;
    display: block;
    height: auto;
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
    position: relative;
  }

  .goat-changing-text {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    text-align: center;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    white-space: normal;
    word-wrap: break-word;
  }

  .goat-hero-subtitle {
    font-size: clamp(1rem, 3.5vw, 1.4rem);
    font-weight: 300;
    margin-top: 20px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0.8;
    padding: 0 15px;
  }

  .goat-hero-subtitle-wrapper {
    margin-bottom: 25px;
  }

  .goat-hero-button {
    padding: 16px 32px;
    font-size: 1rem;
    margin-top: 30px;
  }

  .goat-hero-button-wrapper {
    text-align: center;
    margin-right: 0;
  }

  .goat-bg-circle {
    filter: blur(60px);
    opacity: 0.08;
  }

  /* Reduce animation movement on tablet */
  .goat-hero-content {
    animation: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .goat-hero-section {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .goat-hero-container {
    padding: 0 15px;
    margin-top: 0;
    margin-left: 0;
    padding-top: 80px;
    text-align: center;
  }

  .goat-hero-content {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .goat-hero-left {
    max-width: 100%;
    text-align: center;
    order: 1;
  }

  .goat-hero-right {
    max-width: 100%;
    text-align: center;
    order: 2;
    display: none;
  }

  .goat-hero-title {
    font-size: clamp(1.75rem, 7vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 12px;
  }

  .goat-hero-title-wrapper {
    margin-bottom: 18px;
  }

  .goat-static-text {
    display: inline-block;
    margin: 0 4px;
    white-space: normal;
    word-wrap: break-word;
    animation: none; /* Remove animation on mobile */
  }

  .goat-static-text:nth-child(1) {
    animation-delay: 0s;
  }
  .goat-static-text:nth-child(2) {
    animation-delay: 0.5s;
  }
  .goat-static-text:nth-child(3) {
    animation-delay: 1s;
  }

  .goat-changing-text-wrapper {
    min-width: auto;
    display: block;
    margin-left: 0px;
    height: auto;
    margin-top: 10px;
    text-align: center;
    position: relative;
  }

  .goat-changing-text {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    text-align: center;
    font-size: clamp(1.75rem, 7vw, 3rem);
    font-weight: 300;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .goat-hero-subtitle {
    font-size: clamp(0.9rem, 3.8vw, 1.2rem);
    font-weight: 300;
    margin-top: 18px;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    opacity: 0.85;
    padding: 0 10px;
    line-height: 1.5;
  }

  .goat-hero-subtitle-wrapper {
    margin-bottom: 18px;
  }

  .goat-hero-button {
    padding: 14px 28px;
    font-size: 0.95rem;
    margin-top: 20px;
  }

  .goat-hero-button-wrapper {
    text-align: center;
    margin-right: 0;
  }

  .goat-bg-circle {
    filter: blur(40px);
    opacity: 0.06;
  }

  /* Reduce animation movement on mobile */
  .goat-hero-content {
    animation: none;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .goat-hero-section {
    padding: 90px 0 30px;
  }

  .goat-hero-container {
    padding: 0 10px;
    padding-top: 70px;
  }

  .goat-hero-title {
    font-size: clamp(1.6rem, 8.5vw, 2.8rem);
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .goat-hero-title-wrapper {
    margin-bottom: 15px;
  }

  .goat-static-text {
    margin: 0 3px;
    animation: none; /* Remove animation on extra small mobile */
  }

  .goat-changing-text {
    font-size: clamp(1.6rem, 8.5vw, 2.8rem);
    margin-top: 8px;
  }

  .goat-hero-subtitle {
    font-size: clamp(0.85rem, 4.2vw, 1.1rem);
    padding: 0 8px;
    line-height: 1.5;
    margin-top: 15px;
  }

  .goat-hero-subtitle-wrapper {
    margin-bottom: 15px;
  }

  .goat-hero-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    margin-top: 18px;
  }

  /* Remove animations on extra small mobile */
  .goat-hero-content {
    animation: none;
  }
}

html {
  font-size: 100%;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

i,
span,
a {
  display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0px;
  color: var(--white-color);
  font-family: var(--heading-font);
}

h1 {
  font-size: 85px;
  line-height: 100px;
}

h2 {
  font-size: 52px;
  line-height: 58px;
}

h3 {
  font-size: 27px;
  line-height: 40px;
}

h4 {
  font-size: 24px;
  line-height: 34px;
}

h5 {
  font-size: 20px;
  line-height: 1;
}

h6 {
  font-size: 18px;
  line-height: 1;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  margin: 0px;
}

input,
textarea {
  display: inherit;
}

button {
  border: none;
}

label {
  margin-bottom: 0;
}

iframe {
  width: 100%;
  border: none;
  display: inherit;
}

img {
  max-width: 100%;
}

body {
  background-color: var(--primary-black-color);
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
}

main {
  display: inline-block;
  width: 100%;
}

/*===== Scrollbar =====*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #abafb9;
}

::-webkit-scrollbar-thumb {
  background-color: #13172b;
}

/* Preloader CSS */
.preloader {
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary-black-color);
}

.loading-container,
.loading {
  height: 350px;
  position: relative;
  width: 350px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--border-color) transparent var(--border-color);
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 300px !important;
  width: 300px !important;
  height: auto !important;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

#loading-icon img {
  width: 100% !important;
  height: auto !important;
  max-width: 300px !important;
  min-width: 300px !important;
  max-height: 300px !important;
}

@-webkit-keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*  Back To Top */
.scrollTop {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  z-index: 1;
}
.scrollTop:hover {
  color: var(--heading-color);
}

/*---- 

====================
01. Base CSS
    # Common CSS
====================

----*/
#smooth-wrapper {
  z-index: 1;
}

label {
  margin-bottom: 0;
}

@media (min-width: 1451px) {
  .container {
    max-width: 1314px;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .container {
    max-width: 1200px;
  }
}
.p-r {
  position: relative;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}

.font-200 {
  font-weight: 200;
}

.form-group {
  position: relative;
}

.form_control {
  width: 100%;
}

.gray-dark {
  background-color: var(--gray-dark);
}

.sub-title {
  border: 3px solid var(--primary-color);
  padding: 20px;
  border-radius: 30px;
  color: var(--white-color);
  line-height: 10px;
  text-transform: capitalize;
  margin-bottom: 20px;
  font-size: 30px;
}

.section-title h2 {
  color: var(--white-color);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .section-title h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media screen and (max-width: 991px) {
  .section-title h2 {
    font-size: 36px;
    line-height: 47px;
  }
}
@media (max-width: 767px) {
  .section-title h2 {
    font-size: 28px;
    line-height: 40px;
  }
}

.text-white p,
.text-white h6,
.text-white h5,
.text-white h4,
.text-white h3,
.text-white h2,
.text-white h1 {
  color: var(--white-color);
}
.text-white .sub-heading {
  background-color: var(--white-color);
  color: var(--heading-color);
  border-color: transparent;
}

.video-popup {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  z-index: 1;
}

.play-button.style-one .video-popup {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  font-size: 24px;
  color: var(--white-color);
}
.play-button.style-one .video-popup:hover {
  color: var(--white-color);
}

@-webkit-keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }
  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}
.theme-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.theme-btn.style-one {
  background-color: var(--primary-color);
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--heading-color);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.1s cubic-bezier(0.68, 0.01, 0.58, 0.75);
  transition: all 0.1s cubic-bezier(0.68, 0.01, 0.58, 0.75);
}
.theme-btn.style-one:hover .text-flip {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}
.theme-btn.style-one:hover .text-flip .text:nth-child(1) {
  opacity: 0;
}
.theme-btn.style-one:hover .text-flip .text:nth-child(2) {
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  opacity: 1;
}
.theme-btn.style-one:hover .icon i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.theme-btn.style-one .text-flip {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.8s;
  transition: opacity 0.6s, -webkit-transform 0.8s;
  transition: opacity 0.6s, transform 0.8s;
  transition: opacity 0.6s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.theme-btn.style-one .text-flip .text {
  -webkit-transition: opacity 0.6s, -webkit-transform 0.8s;
  transition: opacity 0.6s, -webkit-transform 0.8s;
  transition: opacity 0.6s, transform 0.8s;
  transition: opacity 0.6s, transform 0.8s, -webkit-transform 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
}
.theme-btn.style-one .text-flip .text:nth-child(2) {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 80%);
  transform: translate(-50%, 80%);
  opacity: 0;
}
.theme-btn.style-one .icon {
  margin-left: 10px;
}
.theme-btn.style-one .icon i {
  -webkit-transition: all 0.3s cubic-bezier(0.68, 0.01, 0.58, 0.75);
  transition: all 0.3s cubic-bezier(0.68, 0.01, 0.58, 0.75);
}
.theme-btn.style-two {
  padding: 10px 20px;
  font-weight: 500;
  background-color: var(--primary-color);
  color: var(--heading-color);
  line-height: 20px;
  border-radius: 40px;
}

.read-more {
  color: var(--white-color);
  font: 600 16px var(--body-font);
}
.read-more.style-one {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.read-more.style-one:after {
  content: "";
  width: 40px;
  height: 1px;
  margin-left: 10px;
  background-color: var(--white-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.read-more.style-one:hover {
  color: var(--primary-color);
}
.read-more.style-one:hover:after {
  width: 50px;
}

.check-list.style-one li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.check-list.style-one li:not(:last-child) {
  margin-bottom: 10px;
}
.check-list.style-one li i {
  color: var(--primary-color);
  margin-right: 10px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .check-list.style-one li {
    font-size: 14px;
  }
}

.ratings li {
  display: inline-block;
  color: #ff9900;
}

/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 1;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

/* Animated List Wrap */
.headline-wrap {
  font-size: 250px;
  line-height: normal;
  font-family: var(--heading-font);
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .headline-wrap {
    font-size: 80px;
  }
}
.headline-wrap .marquee-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.headline-wrap .marquee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 50px;
}
.headline-wrap .marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.headline-wrap .marquee-inner.left {
  -webkit-animation: marquee_left 15s linear infinite;
  animation: marquee_left 15s linear infinite;
}
.headline-wrap.style-one {
  color: var(--white-color);
}
.headline-wrap.style-two {
  color: var(--heading-color);
}

/* Headline Animation */
@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}
@-webkit-keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate-float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.animate-float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}
@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotate360 {
  -webkit-animation: spin 7s linear infinite;
  animation: spin 7s linear infinite;
}

.zoomInOut {
  -webkit-animation: zoomInOut 6s linear infinite;
  animation: zoomInOut 6s linear infinite;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

.sidebar-btn {
  margin-left: 15px;
  cursor: pointer;
  text-align: right;
}

.sidebar-btn span {
  width: 30px;
  display: block;
  height: 2px;
  background-color: var(--heading-color);
}
.sidebar-btn span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
  width: 25px;
  margin-left: auto;
}

.sidebar-panel {
  position: fixed;
  z-index: 1111;
  right: 0;
  top: 0;
  width: 350px;
  height: 100%;
  opacity: 1;
  background-color: var(--white-color);
  -webkit-transition: opacity 0.45s ease-in-out,
    -webkit-transform 0.45s ease-in-out;
  transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out,
    -webkit-transform 0.45s ease-in-out;
  -webkit-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  padding: 40px 30px;
  overflow: auto;
}
.sidebar-panel.info-open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.sidebar-panel .panel-close .panel-close-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}
.sidebar-panel .panel-body .panel-box h5 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}
.sidebar-panel .panel-body .panel-box p {
  margin-bottom: 15px;
}
.sidebar-panel .panel-body .panel-box p i {
  width: 20px;
  margin-right: 10px;
  color: var(--primary-color);
}
.sidebar-panel .panel-body .panel-box ul.social-link li {
  display: inline-block;
  margin-right: 5px;
}
.sidebar-panel .panel-body .panel-box ul.social-link li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}
.sidebar-panel .panel-body .panel-box ul.social-link li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Agenko Pagination */
.agenko-pagination.text-center ul li {
  margin-left: 7px;
}
.agenko-pagination ul li {
  display: inline-block;
  margin-right: 7px;
}
.agenko-pagination ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(31, 31, 31, 0.1);
  font: 600 16px var(--heading-font);
  letter-spacing: -0.36px;
}
.agenko-pagination ul li a:hover,
.agenko-pagination ul li a.active {
  background-color: var(--primary-color);
  color: var(--heading-color);
  border-color: transparent;
}

/*---- 
====================
3. Components CSS
    # Header CSS
====================

----*/
/*  Transparent Header  */
.transparent-header {
  position: absolute;
  background-color: transparent;
  top: 30px;
  left: 0;
  width: 100%;
  z-index: 999;
}

/*  Header Area */
.header-area {
  position: relative;
  z-index: 9999;
}

/* Vision Mission Section */
.agk-vision-mission {
  background: transparent;
}

.agk-vision-mission .row {
  display: flex;
  align-items: stretch;
}

.agk-vision-mission .col-lg-6 {
  display: flex;
}

.vision-mission-box {
  padding: 40px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}

.vision-mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vision-mission-box .section-title {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vision-mission-box .section-title h3 {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white-color);
  flex: 1;
}

/* Responsive for Vision Mission */
@media (max-width: 991px) {
  .agk-vision-mission .row {
    display: block;
  }
  
  .agk-vision-mission .col-lg-6 {
    display: block;
  }
  
  .vision-mission-box {
    min-height: auto;
  }
}

/* Our Edge Section */
.agk-our-edge {
  background: radial-gradient(
    circle at center,
    rgba(255, 238, 112, 0.08) 0%,
    rgba(255, 238, 112, 0.05) 30%,
    rgba(0, 0, 0, 0.98) 70%
  );
  position: relative;
  overflow: hidden;
}

.agk-our-edge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 238, 112, 0.03) 50%,
    transparent 70%
  );
  pointer-events: none;
}

.agk-our-edge .section-title h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.agk-our-edge .section-title h3 {
  color: var(--white-color);
  font-size: 24px;
  margin-bottom: 15px;
}

.agk-our-edge .section-title p {
  color: var(--white-color);
  font-size: 18px;
}

/* Edge Subtitle */
.edge-subtitle {
  display: block;
  font-size: 16px;
  color: rgba(255, 238, 112, 0.9);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.edge-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffee70, transparent);
}

/* Edge Main Title */
.edge-main-title {
  color: var(--white-color);
  font-size: 48px;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 6px 25px rgba(255, 238, 112, 0.3);
  background: linear-gradient(45deg, #ffee70, #ffffff, #ffee70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.edge-main-title::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffee70, transparent);
  border-radius: 2px;
}

/* Edge Description */
.edge-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

/* Edge Content Box */
.edge-content-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 50px 40px;
  border-radius: 25px;
  border: 1px solid rgba(255, 238, 112, 0.15);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.edge-content-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 238, 112, 0.05),
    transparent
  );
  transition: left 0.8s ease;
}

.edge-content-box:hover::before {
  left: 100%;
}

/* Edge Text */
.edge-text {
  margin-bottom: 40px;
}

.edge-text p {
  color: var(--white-color);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Responsive Edge Section */
@media (max-width: 768px) {
  .edge-content-box {
    padding: 40px 30px;
  }

  .edge-main-title {
    font-size: 36px;
  }
}

/* Team Experience Section */
.agk-team-experience {
  background: transparent;
}

.experience-note .note-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid var(--primary-color);
  backdrop-filter: blur(10px);
}

.experience-note .note-box p {
  color: var(--white-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Call to Action Section */
.agk-cta-section {
  background: radial-gradient(
    circle at center,
    rgba(255, 238, 112, 0.12) 0%,
    rgba(255, 238, 112, 0.08) 25%,
    rgba(0, 0, 0, 0.98) 60%
  );
  color: var(--white-color);
  position: relative;
  overflow: hidden;
}

.agk-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  animation: grain 20s linear infinite;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0%);
  }
  70% {
    transform: translate(0%, 10%);
  }
  80% {
    transform: translate(3%, 15%);
  }
  90% {
    transform: translate(-10%, 10%);
  }
}

/* CTA Content */
.cta-subtitle {
  display: block;
  font-size: 16px;
  color: rgba(255, 238, 112, 0.9);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
}

.cta-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffee70, transparent);
}

.cta-main-title {
  color: var(--white-color);
  font-size: 52px;
  margin-bottom: 25px;
  font-weight: 800;
  text-shadow: 0 6px 25px rgba(255, 238, 112, 0.3);
  background: linear-gradient(45deg, #ffee70, #ffffff, #ffee70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.cta-main-title::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffee70, transparent);
  border-radius: 2px;
}

.cta-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  margin-bottom: 0;
  font-weight: 300;
}

/* CTA Buttons Container */
.cta-buttons-container {
  margin: 60px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-button-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  width: 100%;
}

.cta-button-row:last-child {
  margin-bottom: 0;
}

/* Responsive CTA Buttons */
@media (max-width: 768px) {
  .cta-button {
    width: 100%;
    max-width: 320px;
  }

  .cta-button-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* CTA Button Styles */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 0;
  background: rgba(255, 238, 112, 0.08);
  border: 1px solid rgba(255, 238, 112, 0.25);
  border-radius: 25px;
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 360px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(255, 238, 112, 0.8);
  box-shadow: 0 25px 50px rgba(255, 238, 112, 0.25),
    0 0 30px rgba(255, 238, 112, 0.1);
  background: rgba(255, 238, 112, 0.15);
}

.cta-button .button-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover .button-bg {
  left: 100%;
}

.cta-button .button-content {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  position: relative;
  z-index: 2;
}

.cta-button .button-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 238, 112, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 238, 112, 0.2);
}

.cta-button:hover .button-icon {
  background: rgba(255, 238, 112, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.cta-accent:hover .button-icon i {
  color: #ffee70;
  text-shadow: 0 0 10px rgba(255, 238, 112, 0.8);
}

.cta-button .button-icon i {
  font-size: 20px;
  color: var(--white-color);
}

.cta-accent .button-icon i {
  color: #ffee70;
}

.cta-button .button-text {
  flex: 1;
  text-align: left;
}

.cta-button .button-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.cta-button .button-subtitle {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  transition: all 0.3s ease;
}

.cta-button:hover .button-title {
  color: #ffffff;
}

.cta-button:hover .button-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.cta-button .button-arrow {
  width: 45px;
  height: 45px;
  background: rgba(255, 238, 112, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 238, 112, 0.15);
}

.cta-button:hover .button-arrow {
  background: rgba(255, 238, 112, 0.3);
  transform: translateX(5px);
}

.cta-button .button-arrow i {
  font-size: 16px;
  color: var(--white-color);
  transition: transform 0.3s ease;
}

.cta-button:hover .button-arrow i {
  transform: translateX(3px);
}

/* CTA Button Variants */
.cta-primary {
  border-color: rgba(255, 238, 112, 0.4);
}

.cta-primary:hover {
  border-color: rgba(255, 238, 112, 0.7);
}

.cta-secondary {
  border-color: rgba(255, 238, 112, 0.35);
}

.cta-secondary:hover {
  border-color: rgba(255, 238, 112, 0.65);
}

.cta-tertiary {
  border-color: rgba(255, 238, 112, 0.3);
}

.cta-tertiary:hover {
  border-color: rgba(255, 238, 112, 0.6);
}

.cta-accent {
  border-color: rgba(255, 238, 112, 0.6);
}

.cta-accent:hover {
  border-color: rgba(255, 238, 112, 0.9);
}

/* CTA Footer */
.cta-footer {
  margin-top: 40px;
}

.cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-style: italic;
  margin: 0;
  position: relative;
  display: inline-block;
}

.cta-note::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 1px;
  background: rgba(255, 238, 112, 0.5);
}

.cta-note::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 20px;
  height: 1px;
  background: rgba(255, 238, 112, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
  .cta-button-row {
    flex-direction: column;
    gap: 20px;
  }

  .cta-button {
    min-width: 100%;
  }

  .cta-main-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .cta-main-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
  }

  .cta-button .button-content {
    padding: 20px 25px;
  }

  .cta-button .button-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .cta-button .button-icon i {
    font-size: 16px;
  }
}

/* Utility Classes */
.mt-20 {
  margin-top: 20px;
}

.mb-3 {
  margin-bottom: 1rem;
}

.me-3 {
  margin-right: 1rem;
}

/* Header Navigation */
.header-navigation .primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}
.header-navigation .site-branding {
  max-width: 15rem;
  line-height: 1;
  text-align: center;
  padding: 3px 5px;
}
.header-navigation .site-branding a {
  line-height: 1;
}
.header-navigation .pf-nav-menu {
  padding: 5px;
  border-radius: 40px;
  border: 1px solid var(--border-color);
  background: #0e0f11;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 100px;
}
@media screen and (max-width: 991px) {
  .header-navigation .pf-nav-menu {
    margin-left: 0;
  }
}
.header-navigation .main-menu ul > li {
  display: inline-block;
  position: relative;
}
.header-navigation .main-menu ul > li > a {
  position: relative;
  display: block;
  font: 600 16px var(--heading-font);
  text-transform: capitalize;
  line-height: 1;
  color: var(--white-color);
  padding: 11px 20px;
  border-radius: 40px;
  line-height: 14px;
}
.header-navigation .main-menu ul > li > a span.dd-trigger {
  margin-left: 5px;
}
.header-navigation .main-menu ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  padding: 10px 10px;
  background-color: #0e0f11;
  height: auto;
  text-align: left;
  -webkit-box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 30px 80px 15px rgba(0, 0, 0, 0.09);
  border-radius: 7px;
}
.header-navigation .main-menu ul > li .sub-menu li {
  display: block;
  margin: 0;
}
.header-navigation .main-menu ul > li .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 15px;
  position: relative;
  line-height: 2.5;
  margin: 0;
  color: var(--white-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.header-navigation .main-menu ul > li .sub-menu li a span.dd-trigger {
  margin-left: auto;
}
.header-navigation .main-menu ul > li .sub-menu li a:hover {
  color: var(--primary-color);
}
.header-navigation .main-menu ul > li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .header-navigation .main-menu ul > li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .header-navigation .main-menu ul > li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}
.header-navigation .main-menu ul > li .sub-menu li:hover .sub-menu {
  top: 0%;
}
.header-navigation .main-menu ul > li .sub-menu li:hover > a {
  color: var(--primary-color);
}
.header-navigation .main-menu ul > li:hover > a {
  color: var(--primary-color);
  background-color: #18191b;
}
.header-navigation .main-menu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 115%;
}
.header-navigation .navbar-toggler {
  padding: 11px 7px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background-color: transparent;
  cursor: pointer;
  display: none;
  border-radius: 5px;
  margin-left: 20px;
}
.header-navigation .navbar-toggler span {
  position: relative;
  border-radius: 3px;
  display: block;
  height: 2px;
  padding: 0;
  width: 30px;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: rgba(255, 255, 255, 0.5);
}
.header-navigation .navbar-toggler span:not(:first-child) {
  margin-top: 5px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 7px;
}
.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}
.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -7px;
}
@media screen and (max-width: 991px) {
  .header-navigation .pf-nav-menu {
    text-align: left;
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 20px 20px 30px;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9999;
    border-radius: 0;
    background-color: var(--primary-black-color);
  }
  .header-navigation .pf-nav-menu.menu-on {
    left: 0;
  }
  .header-navigation .pf-nav-menu .site-branding {
    margin: 0 auto 20px;
  }
  .header-navigation .pf-nav-menu .main-menu {
    margin-top: 30px;
  }
  .header-navigation .pf-nav-menu .main-menu ul li {
    display: block;
    margin: 0;
  }
  .header-navigation .pf-nav-menu .main-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }
  .header-navigation .pf-nav-menu .main-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }
  .header-navigation .pf-nav-menu .main-menu ul li a:after {
    display: none;
  }
  .header-navigation .pf-nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
  }
  .header-navigation .pf-nav-menu .main-menu ul li .sub-menu > li > a {
    padding: 5px 20px;
    color: var(--white-color);
  }
  .header-navigation .pf-nav-menu .main-menu ul li .sub-menu > li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-left: 30px;
  }
  .header-navigation .pf-nav-menu .main-menu ul li .dd-trigger {
    position: absolute;
    right: 0;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
  }
  .header-navigation .navbar-close {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    font-size: 16px;
  }
  .header-navigation .navbar-toggler {
    display: block;
  }
  .header-navigation .pf-nav-button .theme-btn.style-one {
    padding: 10px 40px;
  }
  .header-navigation .pf-menu-bottom h5 {
    margin-bottom: 25px;
  }
  .header-navigation .pf-menu-bottom .social-link li {
    display: inline-block;
    margin-right: 10px;
  }
  .header-navigation .pf-menu-bottom .social-link li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .header-navigation .pf-menu-bottom .social-link li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
}

.nav-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-one.transparent-header {
  top: 30px;
}

/* Agenko Eotate Image */
.agenko-rotate-image {
  text-align: center;
}
.agenko-rotate-image .agenko-image img {
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
  border-radius: 20px;
}

/* Agenko Dot */
.agenko-dot {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary-color);
}

/* Agenko Icon Button */
.icon-btn.style-one {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--gray-dark);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon-btn.style-one i {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

/* Agenko Setp */
.agenko-step {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--primary-color);
  color: var(--heading-color);
  border-radius: 30px;
  padding: 5px 15px;
  line-height: 20px;
}

/* Agenko Iconic Box */
.agenko-iconic-box.style-one {
  padding: 23px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 300px;
  background-color: var(--gray-dark);
  border: 1px solid var(--border-color);
  border-radius: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-iconic-box.style-one:hover {
  background-color: var(--primary-color);
}
.agenko-iconic-box.style-one:hover .content h4.title {
  color: var(--heading-color);
}
.agenko-iconic-box.style-one .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #2f3031;
  font-size: 30px;
  color: var(--white-color);
  margin-right: 15px;
}
.agenko-iconic-box.style-one .content h4.title {
  font-size: 20px;
  color: var(--white-color);
  line-height: 1.4;
}
.agenko-iconic-box.style-two {
  background-color: var(--gray-dark);
  padding: 30px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agenko-iconic-box.style-two {
    padding: 30px 25px 30px;
  }
}
.agenko-iconic-box.style-two .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 25px;
  color: var(--white-color);
  font-size: 20px;
}
.agenko-iconic-box.style-two .content h4 {
  margin-bottom: 15px;
}
.agenko-iconic-box.style-two .content p {
  margin-bottom: 40px;
}
.agenko-iconic-box.style-two .content .step {
  display: inline-block;
  padding: 7px 10px;
  line-height: 10px;
  color: var(--heading-color);
  background-color: var(--primary-color);
  border-radius: 30px;
  letter-spacing: 0.48px;
}
.agenko-iconic-box.style-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.agenko-iconic-box.style-three .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-margin-end: 20px;
  margin-inline-end: 20px;
}
.agenko-iconic-box.style-three .content h6 {
  margin-bottom: 10px;
}
.agenko-iconic-box.style-three .content p {
  letter-spacing: 0.48px;
  line-height: 20px;
}
.agenko-iconic-box.style-three .content p:hover a {
  color: var(--primary-color);
}
.agenko-iconic-box.style-four {
  background-color: var(--gray-dark);
  padding: 35px 40px 30px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-iconic-box.style-four {
    padding: 35px 30px 30px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-iconic-box.style-four {
    margin-top: 40px;
  }
}
.agenko-iconic-box.style-four .icon {
  font-size: 60px;
  color: var(--white-color);
  margin-bottom: 25px;
}
.agenko-iconic-box.style-four .content h4.title {
  margin-bottom: 20px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-iconic-box.style-four .content h4.title {
    font-size: 20px;
  }
}
.agenko-iconic-box.style-four .content p {
  margin-bottom: 25px;
}
.agenko-iconic-box.style-five {
  background-color: var(--gray-dark);
  padding: 30px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agenko-iconic-box.style-five {
    padding: 30px 25px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-iconic-box.style-five {
    padding: 30px 10px;
  }
}
.agenko-iconic-box.style-five .icon {
  font-size: 40px;
  color: var(--white-color);
  margin-bottom: 30px;
}
.agenko-iconic-box.style-five .content h5 {
  margin-bottom: 15px;
}
.agenko-iconic-box.style-six {
  background-color: var(--gray-dark);
  padding: 40px;
}
.agenko-iconic-box.style-six > .icon {
  font-size: 45px;
  margin-bottom: 20px;
}
.agenko-iconic-box.style-six .content h4 {
  margin-bottom: 15px;
}
.agenko-iconic-box.style-six .content p {
  margin-bottom: 20px;
}
.agenko-iconic-box.style-seven {
  background-color: var(--primary-black-color);
  padding: 30px;
}
.agenko-iconic-box.style-seven:hover .icon {
  color: var(--primary-color);
}
.agenko-iconic-box.style-seven .icon {
  font-size: 60px;
  color: var(--white-color);
  margin-bottom: 15px;
}
.agenko-iconic-box.style-seven .content h4 {
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .agenko-iconic-box.style-eight .agenko-dot {
    display: none;
  }
}
.agenko-iconic-box.style-eight .content .number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}
.agenko-iconic-box.style-eight .content h4 {
  margin-bottom: 20px;
}
.agenko-iconic-box.style-eight .content p {
  margin-bottom: 35px;
}

/* Agenko Card Item */
.agenko-card-item.style-one {
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--primary-black-color);
  border: 1px solid var(--border-color);
  border-radius: 40px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-card-item.style-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.agenko-card-item.style-one .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.agenko-card-item.style-one .card-title .sn-number {
  font-size: 40px;
  margin-right: 30px;
  font-family: var(--heading-font);
  font-weight: 700;
}
@media (max-width: 767px) {
  .agenko-card-item.style-one .card-title .sn-number {
    font-size: 20px;
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .agenko-card-item.style-one .card-title h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-card-item.style-one .content {
    padding: 20px 0;
  }
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-one .content {
    padding: 20px 0;
  }
}
.agenko-card-item.style-one .content p {
  max-width: 430px;
  padding: 0 30px;
}
.agenko-card-item.style-one .content p span {
  color: var(--white-color);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-card-item.style-one .content p {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-one .content p {
    max-width: 100%;
    padding: 0;
  }
}
.agenko-card-item.style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px;
  background-color: var(--gray-dark);
  border-radius: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.agenko-card-item.style-two:hover {
  background-color: var(--primary-color);
}
.agenko-card-item.style-two:hover .card-title h2 {
  color: var(--heading-color);
}
.agenko-card-item.style-two:hover .card-title h4 {
  color: var(--heading-color);
}
.agenko-card-item.style-two:hover .content p {
  color: var(--heading-color);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-card-item.style-two .thumbnail {
    max-width: 250px;
  }
}
@media (min-width: 1201px) {
  .agenko-card-item.style-two .thumbnail {
    max-width: 250px;
  }
}
.agenko-card-item.style-two .thumbnail img {
  border-radius: 110px;
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-two .thumbnail img {
    border-radius: 30px;
  }
}
.agenko-card-item.style-two .card-title {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 10%;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agenko-card-item.style-two .card-title {
    padding-left: 5%;
  }
}
@media (min-width: 1451px) {
  .agenko-card-item.style-two .card-title {
    padding-left: 5%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-card-item.style-two .card-title {
    padding-left: 5%;
  }
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-two .card-title {
    padding-left: 0;
    padding: 30px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agenko-card-item.style-two .card-title h2 {
    font-size: 37px;
    line-height: 45px;
  }
}
@media (min-width: 1451px) {
  .agenko-card-item.style-two .card-title h2 {
    font-size: 37px;
    line-height: 45px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-card-item.style-two .card-title h2 {
    font-size: 27px;
    line-height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-two .card-title h2 {
    font-size: 24px;
    line-height: 35px;
  }
}
.agenko-card-item.style-two .card-title h4 {
  color: var(--text-color);
  font-family: var(--body-font);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-card-item.style-two .card-title h4 {
    font-size: 22px;
    line-height: 35px;
  }
}
@media (min-width: 1201px) {
  .agenko-card-item.style-two .card-title h4 {
    font-size: 22px;
    line-height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-two .card-title h4 {
    font-size: 22px;
    line-height: 35px;
  }
}
.agenko-card-item.style-two .content {
  max-width: 20rem;
}
@media screen and (max-width: 991px) {
  .agenko-card-item.style-two .content {
    max-width: 100%;
  }
}

/* Agenko Client Item */
.agenko-client-item.style-one {
  padding: 60px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .agenko-client-item.style-one {
    padding: 20px 15px;
  }
}
.agenko-client-item.style-one:hover .client-image img {
  opacity: 1;
}
.agenko-client-item.style-one .client-image {
  cursor: pointer;
}
.agenko-client-item.style-one .client-image img {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-client-item.style-two {
  width: 235px;
  height: 235px;
  border-radius: 50%;
  background-color: var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agenko-client-item.style-two {
    width: 200px;
    height: 200px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-client-item.style-two {
    width: 170px;
    height: 170px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-client-item.style-two {
    width: 200px;
    height: 200px;
  }
}
.agenko-client-item.style-two .client-image img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  max-width: 150px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-client-item.style-two .client-image img {
    max-width: 120px;
  }
}

/* Agenko Experince Box */
.agenko-experince-box.style-one {
  display: inline-block;
  background-color: var(--primary-color);
  padding: 20px 25px;
  border-radius: 10px;
  max-width: 160px;
  text-align: center;
}
.agenko-experince-box.style-one h2 {
  color: var(--heading-color);
  margin-bottom: 10px;
}
.agenko-experince-box.style-one p {
  font-size: 16px;
  line-height: 26px;
  color: var(--heading-color);
}

/* Agenko Skill Item */
.agenko-skill-item.style-one .progress-title {
  margin-bottom: 15px;
}
.agenko-skill-item.style-one .progress-title h5 span {
  float: right;
}
.agenko-skill-item.style-one .progress {
  height: 6px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.1);
}
.agenko-skill-item.style-one .progress .progress-bar {
  border-radius: 0;
  background-color: var(--primary-color);
}

/* Agenko Award Box */
.agenko-award-box.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--gray-dark);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 26px 40px;
}
@media (max-width: 767px) {
  .agenko-award-box.style-one {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}
.agenko-award-box.style-one:hover .award-date h5,
.agenko-award-box.style-one:hover .award-platform h5 {
  color: var(--white-color);
}
.agenko-award-box.style-one:hover .award-name h5 {
  color: var(--primary-color);
}
.agenko-award-box.style-one .award-platform {
  width: 30%;
}
@media (max-width: 767px) {
  .agenko-award-box.style-one .award-platform {
    width: 100%;
  }
}
.agenko-award-box.style-one .award-platform h5 {
  font-size: 18px;
  color: var(--text-color);
}
.agenko-award-box.style-one .award-name {
  width: 50%;
}
@media (max-width: 767px) {
  .agenko-award-box.style-one .award-name {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .agenko-award-box.style-one .award-name {
    padding: 20px 0;
  }
}
.agenko-award-box.style-one .award-date {
  width: 20%;
  text-align: right;
}
.agenko-award-box.style-one .award-date h5 {
  font-size: 18px;
  color: var(--text-color);
}
@media (max-width: 767px) {
  .agenko-award-box.style-one .award-date {
    width: 100%;
    text-align: center;
  }
}

/* Agenko Counter Box */
.agenko-counter-box.style-one .content h2 {
  color: #ffee70;
}
.agenko-counter-box.style-two .content h2 {
  margin-bottom: 15px;
}
.agenko-counter-box.style-two .content p {
  font-weight: 500;
}

.agenko-info-box .content h3 {
  margin-bottom: 15px;
}
.agenko-info-box .content p {
  font: 500 20px var(--heading-font);
  margin-bottom: 10px;
}
.agenko-info-box .content .social-link a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--white-color);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  margin-right: 5px;
}
.agenko-info-box .content .social-link a:hover {
  background-color: var(--primary-color);
}

.agenko-project-item:hover .thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.agenko-project-item .thumbnail {
  overflow: hidden;
}
.agenko-project-item .thumbnail img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (max-width: 991px) {
  .agenko-project-item.style-one {
    max-width: 550px;
    margin: 0 auto 45px;
  }
}
.agenko-project-item.style-one:hover .thumbnail .project-button a {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.agenko-project-item.style-one .thumbnail {
  position: relative;
}
.agenko-project-item.style-one .thumbnail img {
  border-radius: 10px;
}
.agenko-project-item.style-one .thumbnail .project-button a {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary-black-color);
  color: var(--white-color);
  font-size: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-project-item.style-one .content {
  padding-top: 20px;
}
.agenko-project-item.style-one .content .project-categories {
  margin-bottom: 15px;
}
.agenko-project-item.style-one .content .project-categories a {
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  line-height: 18px;
  margin-bottom: 10px;
}
.agenko-project-item.style-one .content .project-categories a:not(:last-child) {
  margin-right: 5px;
}
.agenko-project-item.style-one .content h4.title:hover {
  color: var(--primary-color);
}
.agenko-project-item.style-two {
  padding: 30px 30px 25px;
  background-color: var(--gray-dark);
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
  .agenko-project-item.style-two {
    max-width: 600px;
    margin: 0 auto 60px;
  }
}
@media (max-width: 575px) {
  .agenko-project-item.style-two {
    padding: 30px 15px 25px;
  }
}
.agenko-project-item.style-two .thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.agenko-project-item.style-two .thumbnail img {
  width: 100%;
  border-radius: 20px;
}
.agenko-project-item.style-two .thumbnail .hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px;
}
@media (max-width: 575px) {
  .agenko-project-item.style-two .thumbnail .hover-content {
    padding: 15px;
  }
}
.agenko-project-item.style-two .thumbnail .hover-content .project-categories a {
  padding: 9px 20px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  background-color: var(--gray-dark);
  color: var(--white-color);
  line-height: 20px;
  margin-bottom: 10px;
}
@media (max-width: 575px) {
  .agenko-project-item.style-two
    .thumbnail
    .hover-content
    .project-categories
    a {
    padding: 9px 15px;
    font-size: 14px;
  }
}
.agenko-project-item.style-two .content {
  padding-top: 25px;
}
.agenko-project-item.style-two .content h4.title {
  margin-bottom: 5px;
}
.agenko-project-item.style-two .content h4.title:hover {
  color: var(--primary-color);
}
.agenko-project-item.style-three .thumbnail {
  position: relative;
  z-index: 1;
}
.agenko-project-item.style-three .thumbnail img {
  border-radius: 10px;
  width: 100%;
}
.agenko-project-item.style-three .thumbnail .hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.agenko-project-item.style-three .thumbnail .project-categories a {
  background-color: var(--primary-black-color);
  padding: 10px 20px;
  line-height: 20px;
  color: var(--white-color);
  border-radius: 30px;
}
@media (max-width: 575px) {
  .agenko-project-item.style-three .thumbnail .project-categories a {
    padding: 7px 15px;
    font-size: 14px;
  }
}
.agenko-project-item.style-three .content {
  padding-top: 20px;
}
.agenko-project-item.style-three .content h4:hover {
  color: var(--primary-color);
}
.agenko-project-item.style-four:hover .thumbnail .hover-content {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}
.agenko-project-item.style-four .thumbnail {
  position: relative;
  z-index: 1;
}
.agenko-project-item.style-four .thumbnail img {
  width: 100%;
  min-height: 300px;
}
.agenko-project-item.style-four .thumbnail .hover-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80%;
  padding: 20px 20px 15px;
  background-color: #ffee70;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-project-item.style-four .thumbnail .hover-content {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .agenko-project-item.style-four .thumbnail .hover-content {
    width: 90%;
  }
}
.agenko-project-item.style-four .content {
  text-align: center;
}
.agenko-project-item.style-four .content .category-btn {
  padding: 8px 15px;
  line-height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  color: var(--heading-color);
  font-weight: 500;
  margin-bottom: 10px;
}
.agenko-project-item.style-four .content h4 {
  max-width: 350px;
  margin: 0 auto;
  color: var(--heading-color);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-project-item.style-four .content h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .agenko-project-item.style-four .content h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

/*  Accordion Item */
.agenko-accordion-item {
  border-radius: 10px;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background-color: var(--gray-dark);
  padding: 16px 30px;
}
.agenko-accordion-item .accordion-header .accordion-title {
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 575px) {
  .agenko-accordion-item .accordion-header .accordion-title {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 16px;
  }
}
.agenko-accordion-item .accordion-header .accordion-title span.sn {
  margin-right: 8px;
}
.agenko-accordion-item .accordion-header .accordion-title:after {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  content: "\f067";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  margin-left: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-accordion-item
  .accordion-header
  .accordion-title[aria-expanded="true"]:after {
  border-color: #26272b;
  content: "\f068";
}
.agenko-accordion-item .accordion-content p {
  padding-top: 10px;
  padding-bottom: 10px;
  letter-spacing: 0.48px;
}

.agenko-pricing-item.style-one {
  position: relative;
  z-index: 1;
  background-color: var(--gray-dark);
  padding: 30px;
}
.agenko-pricing-item.style-one .shape {
  position: absolute;
  z-index: -1;
}
.agenko-pricing-item.style-one .shape.shape-one {
  bottom: 20px;
  right: 20px;
}
.agenko-pricing-item.style-one .pricing-head {
  margin-bottom: 25px;
}
.agenko-pricing-item.style-one .pricing-head h2 {
  margin-bottom: 15px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-pricing-item.style-one .pricing-head h2 {
    font-size: 27px;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .agenko-pricing-item.style-one .pricing-head h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
.agenko-pricing-item.style-one .pricing-body {
  margin-bottom: 25px;
}
.agenko-pricing-item.style-one .pricing-footer .theme-btn.style-two {
  padding: 12px 30px;
}
.agenko-pricing-item.style-two {
  background-color: var(--gray-dark);
  padding: 30px 30px 25px;
}
.agenko-pricing-item.style-two .pricing-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.agenko-pricing-item.style-two .pricing-head h4 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.agenko-pricing-item.style-two .pricing-head .pricing {
  color: var(--primary-color);
  font-size: 27px;
  font-weight: 700;
  font-family: var(--heading-font);
}
.agenko-pricing-item.style-three {
  background-color: var(--gray-dark);
  padding: 40px 35px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.agenko-pricing-item.style-three .shape {
  position: absolute;
  top: -35%;
  right: -40%;
}
.agenko-pricing-item.style-three .shape span {
  width: 328px;
  height: 328px;
  border-radius: 50%;
  border: 50px solid rgba(255, 238, 112, 0.02);
}
.agenko-pricing-item.style-three .pricing-head {
  padding-bottom: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}
.agenko-pricing-item.style-three .pricing-head h2 {
  margin-bottom: 15px;
}
.agenko-pricing-item.style-three .pricing-body {
  margin-bottom: 25px;
}
.agenko-pricing-item.style-three .pricing-footer .theme-btn {
  width: 100%;
  padding: 15px 35px;
}

.agenko-team-item.style-one .member-image {
  position: relative;
}
.agenko-team-item.style-one .member-image img {
  width: 100%;
}
.agenko-team-item.style-one .member-image .icon-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}
.agenko-team-item.style-one .member-image .icon-btn a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
}
.agenko-team-item.style-one .member-info {
  padding-top: 5px;
}
.agenko-team-item.style-one .member-info span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}
.agenko-team-item.style-one .member-info span:before {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  content: "";
  width: 50px;
  height: 1px;
  background-color: var(--border-color);
  margin-right: 10px;
}
.agenko-team-item.style-two:hover .member-image .hover-content {
  right: 30px;
}
.agenko-team-item.style-two .member-image {
  position: relative;
  overflow: hidden;
}
.agenko-team-item.style-two .member-image .hover-content {
  position: absolute;
  bottom: 30px;
  right: -50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.agenko-team-item.style-two
  .member-image
  .hover-content
  ul.social-link
  li:not(:last-child) {
  margin-bottom: 10px;
}
.agenko-team-item.style-two .member-image .hover-content ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--heading-color);
}
.agenko-team-item.style-two
  .member-image
  .hover-content
  ul.social-link
  li
  a:hover {
  background-color: var(--primary-color);
}
.agenko-team-item.style-two .member-info {
  padding-top: 20px;
}
.agenko-team-item.style-three:hover .member-image .hover-content {
  visibility: visible;
  opacity: 1;
}
.agenko-team-item.style-three:hover .member-info {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.agenko-team-item.style-three .member-image {
  position: relative;
  z-index: 1;
}
.agenko-team-item.style-three .member-image img {
  width: 100%;
}
.agenko-team-item.style-three .member-image .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(17.41%, rgba(255, 238, 112, 0)),
    color-stop(90.28%, #ffee70)
  );
  background: linear-gradient(
    180deg,
    rgba(255, 238, 112, 0) 17.41%,
    #ffee70 90.28%
  );
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-team-item.style-three .member-info {
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.agenko-team-item.style-three .member-info ul.social-link {
  margin-top: 20px;
}
.agenko-team-item.style-three .member-info ul.social-link li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}
.agenko-team-item.style-three .member-info ul.social-link li a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--heading-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.agenko-team-item.style-three .member-info h4 {
  color: var(--heading-color);
}
.agenko-team-item.style-three .member-info span.position {
  font: 700 18px var(--heading-font);
  color: var(--heading-color);
}
.agenko-team-item.style-four:hover .member-image .hover-content {
  visibility: visible;
  opacity: 1;
}
.agenko-team-item.style-four .member-image {
  position: relative;
  z-index: 1;
}
.agenko-team-item.style-four .member-image img {
  width: 100%;
}
.agenko-team-item.style-four .member-image .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 238, 112, 0.1);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.agenko-team-item.style-four .member-image .social-box {
  position: absolute;
  top: 20px;
  left: 20px;
}
.agenko-team-item.style-four .member-image .social-box a {
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
}
.agenko-team-item.style-four .member-image .social-box a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.agenko-team-item.style-four .member-info {
  padding-top: 20px;
}

.author-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.author-item .author-thumb {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
  -o-object-fit: cover;
  object-fit: cover;
}
.author-item .author-thumb img {
  width: 100%;
  border-radius: 50%;
}
.author-item .author-info h4 {
  margin-bottom: 10px;
}
.author-item .author-info h5 {
  color: var(--text-color);
  font-weight: 500;
}

.agenko-testimonial-item.style-one .testimonial-content ul.ratings {
  margin-bottom: 20px;
}
.agenko-testimonial-item.style-one .testimonial-content ul.ratings li {
  color: var(--primary-color);
  font-size: 30px;
}
.agenko-testimonial-item.style-one .testimonial-content p {
  font: 700 24px var(--heading-font);
  color: var(--white-color);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .agenko-testimonial-item.style-one .testimonial-content p {
    font-size: 16px;
  }
}
.agenko-testimonial-item.style-one
  .testimonial-content
  .author-item-quote
  .quote
  i {
  font-size: 30px;
  color: var(--primary-color);
}
.agenko-testimonial-item.style-two .testimonial-content ul.ratings {
  margin-bottom: 40px;
}
.agenko-testimonial-item.style-two .testimonial-content p {
  font: 700 27px var(--heading-font);
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .agenko-testimonial-item.style-two .testimonial-content p {
    font-size: 24px;
  }
}
.agenko-testimonial-item.style-three .testimonial-content ul.ratings {
  margin-bottom: 22px;
}
.agenko-testimonial-item.style-three .testimonial-content ul.ratings li i {
  color: var(--primary-color);
}
.agenko-testimonial-item.style-three .testimonial-content p {
  line-height: 45px;
  font: 500 32px var(--heading-font);
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-testimonial-item.style-three .testimonial-content p {
    font-size: 22px;
    line-height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-testimonial-item.style-three .testimonial-content p {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .agenko-testimonial-item.style-three .testimonial-content p {
    font-size: 15px;
    line-height: 25px;
  }
}

.post-categories a {
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  font-weight: 600;
  line-height: 20px;
  color: var(--white-color);
}

.agenko-blog-item.style-one {
  position: relative;
  background-color: var(--gray-dark);
  padding: 0 30px;
}
.agenko-blog-item.style-one:hover .post-hover-wrap {
  visibility: visible;
  opacity: 1;
}
.agenko-blog-item.style-one .post-hover-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .agenko-blog-item.style-one .post-hover-wrap {
    display: none;
  }
}
.agenko-blog-item.style-one .post-inner-wrap {
  padding: 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .agenko-blog-item.style-one .post-inner-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.agenko-blog-item.style-one .author-item {
  width: 20%;
}
@media screen and (max-width: 991px) {
  .agenko-blog-item.style-one .author-item {
    width: 100%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-blog-item.style-one .author-item .author-thumb {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-blog-item.style-one .author-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.agenko-blog-item.style-one .post-content {
  width: 60%;
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  .agenko-blog-item.style-one .post-content {
    width: 100%;
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  .agenko-blog-item.style-one .post-content .post-categories {
    padding: 20px 0;
  }
}
.agenko-blog-item.style-one .post-content h3.title {
  margin-bottom: 15px;
}
.agenko-blog-item.style-one .post-content h3.title:hover {
  color: var(--primary-color);
}
.agenko-blog-item.style-one .post-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20%;
}
@media screen and (max-width: 991px) {
  .agenko-blog-item.style-one .post-date {
    width: 100%;
  }
}
.agenko-blog-item.style-one .post-date i {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white-color);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(26, 26, 26, 0.2);
  margin-right: 15px;
}
.agenko-blog-item.style-two {
  background-color: var(--gray-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .agenko-blog-item.style-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.agenko-blog-item.style-two .post-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 260px;
  margin-right: 30px;
}
.agenko-blog-item.style-two .post-thumbnail img {
  border-radius: 7px;
}
@media (max-width: 767px) {
  .agenko-blog-item.style-two .post-thumbnail {
    margin-bottom: 25px;
    max-width: 100%;
    margin-right: 0;
  }
  .agenko-blog-item.style-two .post-thumbnail img {
    width: 100%;
  }
}
.agenko-blog-item.style-two .post-content .post-categories {
  margin-bottom: 15px;
}
.agenko-blog-item.style-two .post-content .post-categories a {
  padding: 9px 20px;
  line-height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
}
.agenko-blog-item.style-two .post-content h4.title {
  margin-bottom: 15px;
}
.agenko-blog-item.style-two .post-content h4.title:hover {
  color: var(--primary-color);
}
.agenko-blog-item.style-two .post-content p {
  margin-bottom: 10px;
}
.agenko-blog-item.style-three:hover .post-button .icon-btn.style-one {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.agenko-blog-item.style-three:hover .post-button .icon-btn.style-one i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.agenko-blog-item.style-three .post-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.agenko-blog-item.style-three .post-thumbnail img {
  width: 100%;
}
.agenko-blog-item.style-three .post-content {
  padding-top: 20px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 30px;
}
.agenko-blog-item.style-three .post-content h4.title:hover {
  color: var(--primary-color);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-blog-item.style-three .post-content h4.title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-blog-item.style-three .post-content h4.title {
    font-size: 20px;
    line-height: 30px;
  }
}
.agenko-blog-item.style-three .post-meta span {
  margin-bottom: 5px;
}
.agenko-blog-item.style-three .post-meta span:not(:last-child):after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 8px;
}
.agenko-blog-item.style-four .post-thumbnail img {
  width: 100%;
}
.agenko-blog-item.style-four .post-content {
  padding-top: 25px;
}
.agenko-blog-item.style-four .post-content .post-meta span {
  margin-bottom: 10px;
}
.agenko-blog-item.style-four .post-content .post-meta span:not(:last-child) {
  margin-right: 15px;
}
.agenko-blog-item.style-four .post-content .post-meta span i {
  margin-right: 10px;
}
.agenko-blog-item.style-four .post-content .post-meta span:last-child {
  float: right;
}
.agenko-blog-item.style-four .post-content h4.title {
  margin-bottom: 15px;
}
.agenko-blog-item.style-four .post-content h4.title:hover {
  color: var(--primary-color);
}
@media screen and (max-width: 991px) {
  .agenko-blog-item.style-four .post-content h4.title {
    font-size: 20px;
    line-height: 30px;
  }
}

/*---- 
====================
3. Components CSS
    # Header CSS
====================

----*/
.agenko-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.agenko-footer .shape {
  position: absolute;
  z-index: -1;
}
.agenko-footer .shape.shape-one {
  left: -35px;
  bottom: 110px;
}

.agenko-footer .shape.shape-one img {
  filter: hue-rotate(-80deg) saturate(1.5) brightness(1.2);
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agenko-footer .shape.shape-one img {
    width: 50%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-footer .shape.shape-one {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .agenko-footer .shape.shape-one {
    display: none;
  }
}
.agenko-footer .shape.shape-two {
  bottom: 140px;
  right: 130px;
}

.agenko-footer .shape.shape-two img {
  filter: hue-rotate(60deg) saturate(1.5) brightness(1.2);
}
.agenko-footer .shape.shape-blur_one {
  top: -150px;
  left: -150px;
}
.agenko-footer .shape.shape-blur_one span {
  width: 261px;
  height: 261px;
  background-color: rgba(255, 238, 112, 0.3);
  -webkit-filter: blur(80px);
  filter: blur(80px);
}
.agenko-footer .shape.shape-blur_two {
  bottom: -150px;
  right: -150px;
}
.agenko-footer .shape.shape-blur_two span {
  width: 261px;
  height: 261px;
  background-color: rgba(255, 238, 112, 0.2);
  -webkit-filter: blur(80px);
  filter: blur(80px);
}

.footer-widget {
  color: var(--white-color);
}
.footer-widget .footer-content .widget-title {
  margin-bottom: 15px;
}
.footer-widget .footer-content .footer-logo {
  display: inline-block;
  border-radius: 40px;
  margin-bottom: 20px;
  width: 22rem;
  margin-left: -41px;
}
.footer-widget .footer-content ul li:not(:last-child) {
  margin-bottom: 13px;
}
.footer-widget .footer-content ul li a:hover {
  color: var(--primary-color);
}
.footer-widget .footer-content .form-group {
  max-width: 340px;
}
.footer-widget .footer-content .form-group .form_control {
  width: 100%;
  background-color: var(--white-color);
  border-radius: 30px;
  padding: 10px 130px 10px 50px;
  color: var(--heading-color);
  border: none;
}
.footer-widget
  .footer-content
  .form-group
  .form_control::-webkit-input-placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .form_control::-moz-placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .form_control:-ms-input-placeholder {
  color: var(--heading-color);
}
.footer-widget
  .footer-content
  .form-group
  .form_control::-ms-input-placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .form_control::placeholder {
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group label {
  position: absolute;
  top: 12px;
  left: 20px;
  color: var(--heading-color);
}
.footer-widget .footer-content .form-group .theme-btn {
  position: absolute;
  top: 5px;
  right: 5px;
}
.footer-widget.footer-about-widget .footer-content p {
  max-width: 340px;
  margin-bottom: 20px;
}
.footer-widget.footer-contact-info-widget {
  padding-left: 40px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-widget.footer-contact-info-widget {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .footer-widget.footer-contact-info-widget {
    padding-left: 0;
  }
}
.footer-widget.footer-contact-info-widget .footer-content p {
  max-width: 230px;
  line-height: 27px;
  letter-spacing: 0.48px;
}
.footer-widget.footer-nav-widget {
  padding-left: 40px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .footer-widget.footer-nav-widget {
    padding-left: 0;
  }
}
@media screen and (max-width: 991px) {
  .footer-widget.footer-nav-widget {
    padding-left: 0;
  }
}
.footer-widget.footer-contact-widget .footer-content h4.widget-title {
  margin-bottom: 20px;
}

.footer-copyright {
  border-top: 1px solid var(--border-color);
  padding: 35px 0 30px;
}
@media (max-width: 767px) {
  .footer-copyright .copyright-text {
    text-align: center;
  }
}
.footer-copyright .copyright-text p {
  font: 500 18px var(--heading-font);
  color: var(--white-color);
}
.footer-copyright .copyright-text p span {
  color: var(--primary-color);
}
.footer-copyright .copyright-nav {
  float: right;
}
@media (max-width: 767px) {
  .footer-copyright .copyright-nav {
    float: none;
    text-align: center;
  }
}
.footer-copyright .copyright-nav ul li {
  display: inline-block;
}
.footer-copyright .copyright-nav ul li:not(:last-child) {
  margin-right: 20px;
}
@media (max-width: 767px) {
  .footer-copyright .copyright-nav ul li {
    margin-left: 10px;
    margin-right: 10px;
  }
  .footer-copyright .copyright-nav ul li:not(:last-child) {
    margin-right: 0px;
  }
}
.footer-copyright .copyright-nav ul li a {
  font: 500 18px var(--heading-font);
  color: var(--white-color);
}
.footer-copyright .copyright-nav ul li a:hover {
  color: var(--primary-color);
}
@media (max-width: 767px) {
  .footer-copyright .copyright-nav ul li a {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .footer-copyright .copyright-nav ul li a {
    font-size: 16px;
  }
}

.hero-wrapper-one {
  background-color: #000;
  padding: 180px 0 200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero-wrapper-one .shape {
  position: absolute;
  z-index: -1;
}
.hero-wrapper-one .shape.shape-blur_one {
  top: -30%;
  left: -25%;
}
.hero-wrapper-one .shape.shape-blur_one span {
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: rgba(255, 238, 112, 0.6);
  -webkit-filter: blur(200px);
  filter: blur(200px);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-one .shape.shape-blur_one span {
    width: 500px;
    height: 500px;
    -webkit-filter: blur(100px);
    filter: blur(100px);
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-one .shape.shape-blur_one span {
    width: 360px;
    height: 360px;
    -webkit-filter: blur(100px);
    filter: blur(100px);
  }
}
.hero-wrapper-one .shape.shape-blur_two {
  top: -30%;
  right: -15%;
}
.hero-wrapper-one .shape.shape-blur_two span {
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: #8778f5;
  -webkit-filter: blur(150px);
  filter: blur(150px);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-one .shape.shape-blur_two span {
    width: 500px;
    height: 500px;
    -webkit-filter: blur(100px);
    filter: blur(100px);
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-one .shape.shape-blur_two span {
    width: 300px;
    height: 300px;
    -webkit-filter: blur(70px);
    filter: blur(70px);
  }
}
.hero-wrapper-one .shape.shape-blur_three {
  bottom: -70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hero-wrapper-one .shape.shape-blur_three span {
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: rgba(255, 238, 112, 0.6);
  -webkit-filter: blur(200px);
  filter: blur(200px);
}
.hero-wrapper-one .hero-content {
  position: relative;
  margin-bottom: 130px;
  text-align: center;
}
.hero-wrapper-one .hero-content .why-choose-text {
  margin-bottom: 40px;
}
.hero-wrapper-one .hero-content .why-choose-text h1 {
  font-size: 120px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 0;
}
.hero-wrapper-one .hero-content .why-choose-text .changing-text {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  min-width: 200px;
}
.hero-wrapper-one .hero-content .subtitle-text {
  margin-bottom: 60px;
}
.hero-wrapper-one .hero-content .subtitle-text h2 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 0;
}
.hero-wrapper-one .hero-content h1 {
  font-size: 200px;
  line-height: 1;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-one .hero-content .why-choose-text h1 {
    font-size: 90px;
  }
  .hero-wrapper-one .hero-content .subtitle-text h2 {
    font-size: 36px;
  }
  .hero-wrapper-one .hero-content h1 {
    font-size: 140px;
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-one .hero-content .why-choose-text h1 {
    font-size: 60px;
  }
  .hero-wrapper-one .hero-content .subtitle-text h2 {
    font-size: 28px;
  }
  .hero-wrapper-one .hero-content h1 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper-one .hero-content .why-choose-text h1 {
    font-size: 40px;
  }
  .hero-wrapper-one .hero-content .why-choose-text .changing-text {
    min-width: 120px;
  }
  .hero-wrapper-one .hero-content .subtitle-text h2 {
    font-size: 24px;
  }
  .hero-wrapper-one .hero-content h1 {
    font-size: 60px;
  }
}
.hero-wrapper-one .hero-content .big-text {
  font-size: 200px;
  line-height: 1;
  font-weight: 700;
  color: var(--white-color);
  text-align: right;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-one .hero-content .big-text {
    font-size: 130px;
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-one .hero-content .big-text {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper-one .hero-content .big-text {
    font-size: 60px;
  }
}
.hero-wrapper-one .hero-content .text-box {
  position: absolute;
  bottom: 20%;
  left: 0;
  max-width: 400px;
}
@media screen and (max-width: 991px) {
  .hero-wrapper-one .hero-content .text-box {
    bottom: 30%;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper-one .hero-content .text-box {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 45px;
  }
}
.hero-wrapper-one .hero-content .element {
  position: absolute;
  top: 5%;
  right: 15%;
}
@media (max-width: 767px) {
  .hero-wrapper-one .hero-content .element {
    top: 0;
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-one .hero-content .hero-button {
    margin-top: 60px;
  }
}

.hero-wrapper-two {
  position: relative;
  z-index: 1;
  padding: 180px 0 130px;
  background-color: #000;
  overflow: hidden;
}
.hero-wrapper-two .shape {
  position: absolute;
  z-index: -1;
}
.hero-wrapper-two .shape.shape-one {
  top: 17%;
  left: 10%;
}
@media screen and (max-width: 991px) {
  .hero-wrapper-two .shape.shape-one {
    top: 8%;
  }
}
.hero-wrapper-two .shape.shape-two {
  top: 33%;
  right: 10%;
}
.hero-wrapper-two .shape.circle-one {
  top: -20%;
  left: -10%;
}
.hero-wrapper-two .shape.circle-one span {
  width: 980px;
  height: 980px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 991px) {
  .hero-wrapper-two .shape.circle-one {
    display: none;
  }
}
.hero-wrapper-two .shape.circle-two {
  top: -50%;
  right: -5%;
}
.hero-wrapper-two .shape.circle-two span {
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-wrapper-two .hero-content {
  position: relative;
  margin-bottom: 80px;
}
.hero-wrapper-two .hero-content h1 {
  font-size: 140px;
  line-height: 160px;
  color: var(--white-color);
}
@media screen and (max-width: 991px) {
  .hero-wrapper-two .hero-content h1 {
    font-size: 70px;
    line-height: 90px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .hero-wrapper-two .hero-content h1 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  }
}
.hero-wrapper-two .hero-content .text-box {
  max-width: 530px;
  position: absolute;
  bottom: 5%;
  right: 20%;
}
.hero-wrapper-two .hero-content .text-box p {
  margin-bottom: 25px;
}
.hero-wrapper-two .hero-content .text-box p span {
  color: var(--white-color);
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .hero-wrapper-two .hero-content .text-box {
    right: 10%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-two .hero-content .text-box {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-two .hero-content .text-box {
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.hero-wrapper-two .hero-content .pro {
  position: absolute;
  top: 15%;
  right: 15%;
  border: 1px solid var(--primary-color);
  padding: 20px 25px;
  font-size: 50px;
  color: var(--primary-color);
  border-radius: 40px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-two .hero-content .pro {
    top: 45%;
    right: 35%;
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-two .hero-content .pro {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .hero-wrapper-two .hero-content .pro {
    right: 5%;
  }
}
.hero-wrapper-two .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 767px) {
  .hero-wrapper-two .service-list {
    margin-bottom: 30px;
  }
}
.hero-wrapper-two .service-list li {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .hero-wrapper-two .service-list li {
    margin: 0 auto 15px;
  }
}
.hero-wrapper-two .service-list li:nth-child(odd) {
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.hero-wrapper-two .service-list li:nth-child(even) {
  -webkit-transform: rotate(3deg);
  transform: rotate(3deg);
  margin-bottom: 5px;
}

.hero-image.style-one img {
  border-radius: 30px;
}

.agk-video {
  position: relative;
  z-index: 1;
  margin-top: -200px;
}
.agk-video .agk-play-image-box .agk-image img {
  border-radius: 15px;
}

.text-box {
  max-width: 530px;
}
.text-box p span {
  color: var(--white-color);
}

/* Hero Wrapper Three */
.hero-wrapper-three {
  padding: 160px 0;
}
.hero-wrapper-three .hero-content h1 span {
  position: relative;
  padding: 5px 20px;
  color: var(--heading-color);
  z-index: 1;
}
.hero-wrapper-three .hero-content h1 span:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  background-color: var(--primary-color);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  z-index: -1;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
}
@media (max-width: 767px) {
  .hero-wrapper-three .hero-content h1 {
    font-size: 48px;
    line-height: 60px;
  }
}
.hero-wrapper-three .hero-image-box {
  margin: 0 50px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .hero-wrapper-three .hero-image-box {
    margin: 0 15px;
  }
}
.hero-wrapper-three .hero-image-box img {
  border-radius: 40px;
  width: 100%;
  min-height: 400px;
}
@media screen and (max-width: 991px) {
  .hero-wrapper-three .hero-image-box img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.hero-wrapper-three .hero-image-box .text-box {
  position: absolute;
  top: 0;
  right: 10%;
  text-align: left;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-three .hero-image-box .text-box {
    right: 5%;
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-three .hero-image-box .text-box {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 40px;
  }
}
.hero-wrapper-three .hero-image-box svg {
  position: absolute;
  right: -1px;
  top: -1px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .hero-wrapper-three .hero-image-box svg {
    top: -15px;
    width: 75%;
  }
}
@media screen and (max-width: 991px) {
  .hero-wrapper-three .hero-image-box svg {
    display: none;
  }
}

/* Page Banner CSS */
.agenko-page-banner {
  padding: 187px 0 120px;
  background-color: var(--gray-dark);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .agenko-page-banner {
    padding-bottom: 80px;
  }
}
.agenko-page-banner .shape {
  position: absolute;
  z-index: -1;
}
.agenko-page-banner .shape span {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.agenko-page-banner .shape.shape-circle1 {
  top: -45%;
  left: -5%;
}
.agenko-page-banner .shape.shape-circle1 span {
  width: 979px;
  height: 979px;
}
.agenko-page-banner .shape.shape-circle2 {
  top: -120%;
  right: 0;
}
.agenko-page-banner .shape.shape-circle2 span {
  width: 765px;
  height: 765px;
}
.agenko-page-banner .page-content h1 {
  margin-bottom: 40px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agenko-page-banner .page-content h1 {
    font-size: 60px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-page-banner .page-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-page-banner .page-content h1 {
    font-size: 42px;
    line-height: 50px;
  }
}
.agenko-page-banner .page-content .text-box .icon {
  margin-right: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 85px;
}
.agenko-page-banner .page-content ul.breadcrumb-link {
  display: block;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 10px 30px;
  float: right;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-page-banner .page-content ul.breadcrumb-link {
    float: left;
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-page-banner .page-content ul.breadcrumb-link {
    float: left;
    margin: 40px 0;
  }
}
.agenko-page-banner .page-content ul.breadcrumb-link li {
  display: inline-block;
}
.agenko-page-banner .page-content ul.breadcrumb-link li:not(:last-child):after {
  display: inline-block;
  content: "|";
  margin-left: 13px;
  margin-right: 13px;
}
.agenko-page-banner .page-content ul.breadcrumb-link li.active {
  color: var(--primary-color);
}

.agk-service-ca .text-box {
  max-width: 300px;
}

.agk-process-box {
  text-align: center;
}
.agk-process-box .agenko-step {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.agk-process-box .agenko-step::after {
  position: absolute;
  content: "";
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background-color: var(--border-color);
  z-index: -1;
}

.agk-company-ca .client-list {
  padding-left: 100px;
}
@media screen and (max-width: 991px) {
  .agk-company-ca .client-list {
    padding-left: 0;
  }
}
.agk-company-ca .client-list ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
}

.agk-award-ca .text-box {
  max-width: 300px;
}

.agenko-content-box > p {
  margin-bottom: 30px;
}

.agk-content-box.style-one {
  max-width: 710px;
  padding-right: 100px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agk-content-box.style-one {
    padding-right: 70px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agk-content-box.style-one {
    padding-right: 0;
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 991px) {
  .agk-content-box.style-one {
    padding-right: 0;
  }
}
.agk-content-box.style-one > p {
  margin-bottom: 30px;
}
.agk-content-box.style-one ul li {
  display: inline-block;
  margin-bottom: 20px;
}
.agk-content-box.style-one ul li:not(:last-child) {
  padding-right: 45px;
  border-right: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .agk-content-box.style-one ul li:not(:last-child) {
    padding-right: 0;
    border-right: none;
  }
}
.agk-content-box.style-one ul li:last-child {
  padding-left: 45px;
}
@media (max-width: 767px) {
  .agk-content-box.style-one ul li:last-child {
    padding-left: 0;
  }
}

.agk-image-box.style-one {
  position: relative;
  max-width: 440px;
  max-height: 530px;
  margin-left: auto;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agk-image-box.style-one {
    margin: 0 auto 50px;
    max-width: 550px;
  }
}
@media screen and (max-width: 991px) {
  .agk-image-box.style-one {
    margin: 0 auto 50px;
    max-width: 550px;
  }
}
.agk-image-box.style-one .agenko-experince-box {
  position: absolute;
  top: 37%;
  left: -80px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agk-image-box.style-one .agenko-experince-box {
    left: 20px;
  }
}
@media screen and (max-width: 991px) {
  .agk-image-box.style-one .agenko-experince-box {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .agk-image-box.style-one .agenko-experince-box {
    left: 0;
  }
}
.agk-image-box.style-one .agk-image {
  text-align: right;
}
.agk-image-box.style-one .agk-image img {
  width: auto;
  border-radius: 20px;
}

.agk-who-we .big-text {
  border-top: 1px solid var(--border-color);
}
.agk-who-we .big-text h2 {
  color: rgba(255, 255, 255, 0);
  font-size: 140px;
  text-transform: uppercase;
  line-height: 1em;
  font-family: var(--heading-font);
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  stroke: #ffffff;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .agk-who-we .big-text h2 {
    font-size: 110px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agk-who-we .big-text h2 {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .agk-who-we .big-text h2 {
    font-size: 30px;
  }
}

.agk-play-image-box .agk-image {
  position: relative;
}
.agk-play-image-box .agk-image .play-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.agk-play-image-box .agk-image .play-box .video-popup {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--primary-color);
  font-size: 24px;
  color: var(--heading-color);
}
@media (max-width: 767px) {
  .agk-play-image-box .agk-image .play-box .video-popup {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

/* Agenko Process Wrapper */
.testimonial-wrapper {
  padding: 0 70px;
}
@media (max-width: 767px) {
  .testimonial-wrapper {
    padding: 0;
  }
}

.faq-big-text {
  color: rgba(255, 255, 255, 0.03);
  font-family: var(--heading-font);
  font-size: 200px;
  font-weight: 700;
  line-height: 200px; /* 100% */
  text-transform: uppercase;
}

.agk-team .container-fluid {
  padding-left: 70px;
  padding-right: 70px;
}
@media (max-width: 767px) {
  .agk-team .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.client-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .client-list ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.client-list ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .client-list ul li {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
  }
}

/* Agenko Process Wrapper */
.agk-process-wrapper {
  position: relative;
  z-index: 1;
}
.agk-process-wrapper .process-line {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .agk-process-wrapper .process-line {
    display: none;
  }
}

/* Agenko Testimoial */
.agk-testimonial-ca {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.agk-testimonial-ca .shape {
  position: absolute;
  z-index: -1;
}
.agk-testimonial-ca .shape span {
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 85.395px solid rgba(255, 255, 255, 0.03);
}
.agk-testimonial-ca .shape.shape-one {
  bottom: -45%;
  left: -20%;
}
.agk-testimonial-ca .shape.shape-two {
  top: -45%;
  right: -20%;
}
.agk-testimonial-ca .agk-content-box {
  position: relative;
  z-index: 1;
}
.agk-testimonial-ca .agk-content-box .fill-text {
  position: absolute;
  top: -50px;
  left: 0;
  color: rgba(255, 255, 255, 0);
  font-size: 100px;
  text-transform: uppercase;
  line-height: 1em;
  font-weight: 700;
  font-family: var(--heading-font);
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.05);
  z-index: -1;
}

/* Agenko Service Details */
.agenko-service-details {
  position: relative;
  z-index: 1;
}
.agenko-service-details:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: -1;
  background-color: var(--gray-dark);
}

/* Agenko join Team */
.agenko-join-team .big-text {
  font-size: 140px;
  font-weight: 700;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--white-color);
}
@media (max-width: 767px) {
  .agenko-join-team .big-text span img {
    display: none;
  }
}
.agenko-join-team .big-text span.fill-text {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--text-color);
  color: transparent;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .agenko-join-team .big-text {
    font-size: 100px;
  }
}
@media screen and (max-width: 991px) {
  .agenko-join-team .big-text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .agenko-join-team .big-text {
    font-size: 80px;
  }
}
.agenko-join-team .agenko-team-image {
  max-width: 490px;
}
@media screen and (max-width: 991px) {
  .agenko-join-team .agenko-team-image {
    margin: 0 auto 50px;
  }
}

/* Team Details Wrapper */
.team-details-wrapper .member-info h2 {
  margin-bottom: 20px;
}
.team-details-wrapper .member-info span.position {
  margin-bottom: 25px;
}
.team-details-wrapper .member-info p {
  margin-bottom: 25px;
}
.team-details-wrapper .member-info ul.social-link li {
  display: inline-block;
  margin-right: 10px;
}
.team-details-wrapper .member-info ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--heading-color);
  background-color: var(--white-color);
}
.team-details-wrapper .member-info ul.social-link li a:hover {
  background-color: var(--primary-color);
}

/* Project Page */
.agenko-project .container-fluid {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 991px) {
  .agenko-project .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Project Details Wrapper */
.project-details-wrapper .agenko-content-box h2 {
  margin-bottom: 30px;
  max-width: 650px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .project-details-wrapper .agenko-content-box h2 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media screen and (max-width: 991px) {
  .project-details-wrapper .agenko-content-box h2 {
    font-size: 27px;
    line-height: 40px;
  }
}
.project-details-wrapper .agenko-content-box h3 {
  margin-bottom: 15px;
}
.project-details-wrapper .project-duration-box h3 {
  font-size: 20px;
}

/* Page 404 */
.page-404 {
  padding: 130px 0;
}
.page-404 .page-content img {
  margin-bottom: 50px;
}
.page-404 .page-content h4 {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .page-404 .page-content h4 {
    font-weight: 500;
    font-size: 18px;
  }
}

/* Agenko CTA Wrapper */
.agenko-cta-wrappper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.agenko-cta-wrappper .shape {
  position: absolute;
  z-index: -1;
}
.agenko-cta-wrappper .shape span {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.03);
}
.agenko-cta-wrappper .shape.shape_one {
  top: -250px;
  left: -8%;
}
.agenko-cta-wrappper .shape.shape_two {
  bottom: -250px;
  right: -8%;
}

.company-slider {
  margin-left: -25px;
  margin-right: -25px;
}
@media screen and (max-width: 991px) {
  .company-slider {
    margin-left: -12px;
    margin-right: -12px;
  }
}
.company-slider .slick-slide {
  margin-left: 25px;
  margin-right: 25px;
}
@media screen and (max-width: 991px) {
  .company-slider .slick-slide {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.company-list {
  gap: 0 15px;
}

.agenko-process-wrapper-two {
  position: relative;
}
.agenko-process-wrapper-two .process-line {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
}

/* Blog Standard Wrapper */
.blog-standard-wrapper {
  padding-right: 75px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-standard-wrapper {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .blog-standard-wrapper {
    padding-right: 0;
  }
}

/* Blog Details Wrapper */
.blog-details-wrapper {
  padding-right: 75px;
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-details-wrapper {
    padding-right: 0;
  }
}
@media screen and (max-width: 991px) {
  .blog-details-wrapper {
    padding-right: 0;
  }
}
.blog-details-wrapper .agenko-post-item .post-thumbnail {
  margin-bottom: 35px;
}
.blog-details-wrapper .agenko-post-item .post-thumbnail img {
  width: 100%;
}
.blog-details-wrapper .agenko-post-item .post-content .post-meta {
  margin-bottom: 15px;
}
.blog-details-wrapper .agenko-post-item .post-content .post-meta span {
  margin-bottom: 10px;
}
.blog-details-wrapper
  .agenko-post-item
  .post-content
  .post-meta
  span:not(:last-child) {
  margin-right: 15px;
}
.blog-details-wrapper .agenko-post-item .post-content .post-meta span i {
  margin-right: 10px;
}
.blog-details-wrapper
  .agenko-post-item
  .post-content
  .post-meta
  span:last-child {
  float: right;
}
.blog-details-wrapper .agenko-post-item .post-content h4 {
  margin-bottom: 25px;
}
.blog-details-wrapper .agenko-post-item .post-content p {
  margin-bottom: 35px;
}
.blog-details-wrapper .agenko-post-item .block-image img {
  width: 100%;
}
.blog-details-wrapper .agenko-post-item blockquote {
  position: relative;
  z-index: 1;
  background-color: var(--gray-dark);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}
.blog-details-wrapper .agenko-post-item blockquote .icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .blog-details-wrapper .agenko-post-item blockquote h4 {
    font-size: 20px;
  }
}
.blog-details-wrapper .agenko-post-item blockquote .author-info h4 {
  margin-bottom: 5px;
}
.blog-details-wrapper .agenko-post-item blockquote .author-info h5 {
  font-weight: 500;
  color: var(--text-color);
}
.blog-details-wrapper .agenko-post-item .main-post {
  margin-bottom: 40px;
}
.blog-details-wrapper .agenko-post-item .entry-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 767px) {
  .blog-details-wrapper .agenko-post-item .entry-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.blog-details-wrapper .agenko-post-item .entry-footer .social-share span,
.blog-details-wrapper .agenko-post-item .entry-footer .tag-links span {
  font: 600 18px var(--heading-font);
  text-transform: uppercase;
  margin-right: 15px;
}
.blog-details-wrapper .agenko-post-item .entry-footer .tag-links a {
  font: 500 16px var(--heading-font);
  background-color: var(--gray-dark);
  text-transform: uppercase;
  padding: 12px 20px;
  line-height: 20px;
  border-radius: 30px;
}
.blog-details-wrapper
  .agenko-post-item
  .entry-footer
  .tag-links
  a:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .blog-details-wrapper .agenko-post-item .entry-footer .social-share {
    margin-top: 25px;
  }
}
.blog-details-wrapper .agenko-post-item .entry-footer .social-share a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--white-color);
  color: var(--heading-color);
}
.blog-details-wrapper .agenko-post-item .entry-footer .social-share a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.blog-details-wrapper
  .agenko-post-item
  .entry-footer
  .social-share
  a:not(:last-child) {
  margin-right: 5px;
}

.comments-area h3.comments-title {
  margin-bottom: 30px;
}
.comments-area .comments-list .comment {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.comments-area .comments-list .comment .comment-avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  margin-right: 30px;
}
.comments-area .comments-list .comment .comment-avatar img {
  width: 100%;
}
.comments-area
  .comments-list
  .comment
  .comment-author-content
  span.author-name {
  display: block;
  text-transform: uppercase;
  font: 600 18px var(--heading-font);
  margin-bottom: 15px;
  color: var(--white-color);
}
.comments-area
  .comments-list
  .comment
  .comment-author-content
  span.author-name
  span {
  float: right;
  font: 500 16px var(--body-font);
}
.comments-area .comments-list .comment .comment-author-content p {
  margin-bottom: 10px;
}
.comments-area .comments-list .comment .comment-author-content .reply {
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid var(--border-color);
  padding: 5px 10px;
  line-height: 20px;
  border-radius: 5px;
  font-weight: 500;
}
.comments-area .comments-list .comment-reply .comment {
  margin-left: 50px;
}

.sidebar-widget-area .sidebar-widget {
  background-color: var(--gray-dark);
  border-radius: 10px;
  padding: 20px 30px 30px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .sidebar-widget-area .sidebar-widget {
    padding: 20px 20px 30px;
  }
}
@media (max-width: 575px) {
  .sidebar-widget-area .sidebar-widget {
    padding: 20px 20px 30px;
  }
}
.sidebar-widget-area .sidebar-widget .sidebar-title {
  margin-bottom: 20px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: var(--gray-dark);
  padding: 15px 25px;
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::-moz-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .form_control::placeholder {
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-search-widget
  .widget-content
  .form-group
  .search-btn {
  position: absolute;
  top: 15px;
  right: 30px;
  background-color: transparent;
  color: var(--white-color);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-category-widget
  .widget-content
  li:not(:last-child) {
  margin-bottom: 30px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-category-widget
  .widget-content
  li
  a {
  display: block;
  color: var(--white-color);
  font: 700 18px var(--heading-font);
}
.sidebar-widget-area
  .sidebar-widget.sidebar-category-widget
  .widget-content
  li
  a
  span {
  float: right;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  ul
  li:not(:last-child) {
  margin-bottom: 20px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-thumbnail-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-thumbnail-content
  img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 110px;
  margin-right: 20px;
  border-radius: 10px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-title-date
  span {
  margin-bottom: 10px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-title-date
  span
  a {
  padding: 8px 12px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
  letter-spacing: 0.48px;
  color: var(--white-color);
  line-height: 20px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-post-widget
  .widget-content
  .post-title-date
  h6 {
  line-height: 27px;
  letter-spacing: 0.48px;
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .sidebar-widget-area
    .sidebar-widget.sidebar-post-widget
    .widget-content
    .post-title-date
    h6 {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .sidebar-widget-area
    .sidebar-widget.sidebar-post-widget
    .widget-content
    .post-title-date
    h6 {
    font-size: 16px;
  }
}
.sidebar-widget-area .sidebar-widget.sidebar-tag-widget {
  padding: 20px 30px 20px;
}
.sidebar-widget-area .sidebar-widget.sidebar-tag-widget .widget-content a {
  padding: 10px;
  background-color: var(--primary-black-color);
  border-radius: 30px;
  padding: 12px 20px;
  line-height: 20px;
  letter-spacing: 0.48px;
  margin-bottom: 10px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-tag-widget
  .widget-content
  a:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
}
.sidebar-widget-area .sidebar-widget.sidebar-banner-widget {
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-widget-area .sidebar-widget.sidebar-banner-widget .widget-content {
  padding: 30px;
  position: relative;
  z-index: 1;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(181deg, rgba(0, 0, 0, 0) 0.62%, #000 89.85%);
  z-index: -1;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content
  .content {
  padding-top: 70%;
  text-align: center;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content
  .content
  h3 {
  margin-bottom: 30px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-banner-widget
  .widget-content
  .content
  .theme-btn {
  width: 100%;
  padding: 15px 30px;
  border-radius: 10px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-contact-widget
  .widget-content
  .sidebar-title {
  margin-bottom: 10px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-contact-widget
  .agenko-contact-form.style-one
  .form_control {
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}
.sidebar-widget-area
  .sidebar-widget.sidebar-contact-widget
  .agenko-contact-form.style-one
  .theme-btn {
  padding: 11px 20px;
}

/* Slider */
.team-slider-one {
  margin-right: -5px;
  margin-left: -5px;
}
.team-slider-one .slick-slide {
  margin-left: 5px;
  margin-right: 5px;
}

.form-message {
  padding: 10px 0;
}
.form-message.success {
  color: var(--primary-color);
}
.form-message.error {
  color: rgba(209, 12, 12, 0.808);
}

.contact-info-wrapper {
  position: relative;
  background-color: transparent;
  margin: 0;
  padding: 0 40px;
  z-index: 1;
  text-align: center;
  margin-top: -30px;
}
@media (max-width: 767px) {
  .contact-info-wrapper {
    padding: 0 20px;
    margin-top: -20px;
  }
}
.contact-info-wrapper .shape {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.contact-info-wrapper ul li:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.contact-info-wrapper ul li:first-child {
  padding-bottom: 0;
  border-bottom: none;
}
.contact-info-wrapper ul li .phone {
  font: 700 40px var(--heading-font);
  color: var(--primary-color);
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .contact-info-wrapper ul li .phone {
    font-size: 27px;
  }
}
@media screen and (max-width: 991px) {
  .contact-info-wrapper ul li .phone {
    font-size: 27px;
  }
}

.map-box iframe {
  height: 100px;
}

.agenko-contact-form.style-one .form_control {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #1a1b1d;
  padding: 15px 30px;
  margin-bottom: 30px;
  color: var(--white-color);
  font: 700 20px var(--heading-font);
}
.agenko-contact-form.style-one .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control::-moz-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-one .form_control::placeholder {
  color: white;
}
.agenko-contact-form.style-one .theme-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--heading-color);
  font: 700 20px var(--heading-font);
  border-radius: 10px;
  padding: 16px 30px;
}
.agenko-contact-form .form_control {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #1a1b1d;
  padding: 15px 30px;
  margin-bottom: 30px;
  color: var(--white-color);
  font: 700 20px var(--heading-font);
}
.agenko-contact-form .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control::-moz-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control:-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control::-ms-input-placeholder {
  color: var(--white-color);
}
.agenko-contact-form .form_control::placeholder {
  color: var(--white-color);
}
.agenko-contact-form.style-two .theme-btn {
  width: 100%;
  padding: 15px 30px;
  border-radius: 10px;
}

/* ===== Contact Banner Section ===== */
.contact-banner {
  background-color: #0e0f11;
  position: relative;
  overflow: hidden;
}

.contact-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 238, 112, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 15, 59, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 20%, rgba(29, 67, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-banner .section-title h2 {
  color: var(--white-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.contact-banner .contact-info-wrapper {
  background-color: #0e0f11;
  border: 1px solid #313131;
  margin-right: 0;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 238, 112, 0.1);
}

.contact-banner .agenko-info-box .content h3 {
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-banner .agenko-info-box .content p {
  color: var(--white-color);
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-banner .agenko-info-box .content p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-banner .agenko-info-box .content p a:hover {
  color: var(--white-color);
  text-decoration: underline;
}

.contact-banner .theme-btn {
  background: linear-gradient(135deg, #ffee70 0%, #f4d03f 100%);
  border: none;
  padding: 20px 50px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 50px rgba(255, 238, 112, 0.2),
    0 0 0 1px rgba(255, 238, 112, 0.2);
}

.contact-banner .theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(255, 238, 112, 0.3),
    0 0 0 2px rgba(255, 238, 112, 0.3);
}

/* ===== Contact Info Box ===== */
.contact-info-box {
  position: relative;
  border-radius: 25px;
  border: 2px solid rgba(49, 49, 49, 0.8);
  background: linear-gradient(135deg, #0e0f11 0%, #1a1b1d 50%, #0e0f11 100%);
  padding: 45px 35px;
  z-index: 1;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.contact-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 238, 112, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 15, 59, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(29, 67, 0, 0.04) 0%,
      transparent 60%
    );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.contact-info-box::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 238, 112, 0.1) 25%,
    rgba(255, 238, 112, 0.2) 50%,
    rgba(255, 238, 112, 0.1) 75%,
    transparent 100%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.contact-info-box:hover {
  border-color: rgba(255, 238, 112, 0.6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 238, 112, 0.3),
    0 0 40px rgba(255, 238, 112, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-info-box:hover::before {
  opacity: 1;
}

.contact-info-box:hover::after {
  opacity: 1;
  animation: borderGlow 2s ease-in-out infinite;
}

.contact-info-box .shape {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 15px;
  opacity: 0.15;
  transition: all 0.5s ease;
  filter: drop-shadow(0 0 10px rgba(255, 238, 112, 0.3));
}

.contact-info-box:hover .shape {
  opacity: 0.25;
  transform: rotate(5deg) scale(1.1);
  filter: drop-shadow(0 0 20px rgba(255, 238, 112, 0.5));
}

.contact-info-box .shape img {
  width: 85px;
  height: auto;
  filter: brightness(0.9) saturate(1.2);
  transition: all 0.5s ease;
}

.contact-info-box .content {
  position: relative;
  z-index: 3;
  transition: all 0.4s ease;
}

.contact-info-box:hover .content {
  transform: translateY(-3px);
}

.contact-info-box .content h3 {
  color: var(--white-color);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 22px;
  position: relative;
  transition: all 0.4s ease;
  text-shadow: 0 0 20px rgba(255, 238, 112, 0.3);
}

.contact-info-box:hover .content h3 {
  color: rgba(255, 238, 112, 0.9);
  text-shadow: 0 0 30px rgba(255, 238, 112, 0.5);
}

.contact-info-box .content h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  transition: width 0.6s ease;
}

.contact-info-box:hover .content h3::after {
  width: 100%;
}

.contact-info-box .content p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  transition: all 0.4s ease;
  opacity: 0.8;
}

.contact-info-box:hover .content p {
  color: var(--white-color);
  opacity: 1;
  transform: translateX(5px);
}

.contact-info-box .content p a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  font-weight: 500;
}

.contact-info-box .content p a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.4s ease;
}

.contact-info-box .content p a:hover {
  color: rgba(156, 254, 79, 0.9);
  text-shadow: 0 0 15px rgba(156, 254, 79, 0.4);
}

.contact-info-box .content p a:hover::before {
  width: 100%;
}

/* Floating particles effect */
.contact-info-box .floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.contact-info-box .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 238, 112, 0.3);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
}

.contact-info-box .particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.contact-info-box .particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.contact-info-box .particle:nth-child(3) {
  top: 80%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

/* Animations */
@keyframes borderGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) translateX(-5px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) translateX(15px);
    opacity: 0.4;
  }
}

/* Staggered animation for cards */
.contact-info-box:nth-child(1) {
  animation: slideInUp 0.8s ease-out 0.1s both;
}

.contact-info-box:nth-child(2) {
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.contact-info-box:nth-child(3) {
  animation: slideInUp 0.8s ease-out 0.5s both;
}

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

@media (max-width: 767px) {
  .contact-info-box {
    padding: 35px 25px;
  }

  .contact-info-box .shape img {
    width: 65px;
  }

  .contact-info-box .content h3 {
    font-size: 20px;
  }

  .contact-info-box .content p {
    font-size: 15px;
  }
}

/* ===== Quick Contact Options - Modern Card Design ===== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
  width: 100%;
  padding: 0;
}

.contact-card {
  position: relative;
  perspective: 1000px;
}

.contact-card .card-inner {
  position: relative;
  background: linear-gradient(135deg, #0e0f11 0%, #1a1b1d 50%, #0e0f11 100%);
  border: 2px solid rgba(49, 49, 49, 0.8);
  border-radius: 25px;
  padding: 45px 35px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.contact-card .card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 238, 112, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 15, 59, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(29, 67, 0, 0.04) 0%,
      transparent 60%
    );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.contact-card .card-inner::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 238, 112, 0.1) 25%,
    rgba(255, 238, 112, 0.2) 50%,
    rgba(255, 238, 112, 0.1) 75%,
    transparent 100%
  );
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.contact-card:hover .card-inner {
  transform: translateY(-10px) rotateX(5deg);
  border-color: rgba(255, 238, 112, 0.3);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 238, 112, 0.1),
    0 0 40px rgba(255, 238, 112, 0.1);
}

.contact-card:hover .card-inner::before {
  opacity: 1;
}

.contact-card:hover .card-inner::after {
  opacity: 1;
}

/* Card Icon Styles */
.contact-card .card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.1) 0%,
    rgba(255, 238, 112, 0.05) 100%
  );
  border-radius: 50%;
  border: 2px solid rgba(255, 238, 112, 0.2);
  transition: all 0.4s ease;
}

.contact-card .card-icon i {
  font-size: 32px;
  color: var(--primary-color);
  z-index: 2;
  position: relative;
  transition: all 0.4s ease;
}

.contact-card .card-icon .icon-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 238, 112, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: iconPulse 2s ease-in-out infinite;
}

.contact-card:hover .card-icon {
  transform: scale(1.1);
  border-color: rgba(255, 238, 112, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.15) 0%,
    rgba(255, 238, 112, 0.08) 100%
  );
}

.contact-card:hover .card-icon .icon-glow {
  opacity: 1;
}

.contact-card:hover .card-icon i {
  transform: scale(1.1);
  color: #ffffff;
}

/* WhatsApp Icon Special Styling */
.contact-card.whatsapp-card .card-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.1) 0%,
    rgba(255, 238, 112, 0.05) 100%
  );
  border-color: rgba(255, 238, 112, 0.2);
}

.contact-card.whatsapp-card .card-icon i {
  color: #ffee70;
}

.contact-card.whatsapp-card:hover .card-icon {
  border-color: rgba(255, 238, 112, 0.4);
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.15) 0%,
    rgba(255, 238, 112, 0.08) 100%
  );
}

.contact-card.whatsapp-card .card-icon .icon-glow {
  background: radial-gradient(
    circle,
    rgba(37, 211, 102, 0.3) 0%,
    transparent 70%
  );
}

/* Card Content Styles */
.contact-card .card-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-card .card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.contact-card:hover .card-content h3 {
  color: var(--primary-color);
}

.contact-card .card-content p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.contact-card:hover .card-content p {
  color: var(--white-color);
}

/* Email Link Styling */
.contact-card .email-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.contact-card .email-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.contact-card:hover .email-link::after {
  width: 100%;
}

.contact-card .email-link:hover {
  color: #ffffff;
}

/* Phone Number Styling */
.contact-card .phone-number a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-card .phone-number a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 238, 112, 0.5);
}

/* Action Hint */
.contact-card .action-hint {
  margin-top: 15px;
  opacity: 0.7;
}

.contact-card .action-hint span {
  font-size: 14px;
  color: var(--text-color);
  font-style: italic;
}

/* Map Preview */
.contact-card .map-preview {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-card:hover .map-preview {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* WhatsApp Button Styling */
.contact-card .whatsapp-quick-btn {
  margin-top: 20px;
}

.contact-card .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffee70 0%, #f4d03f 100%);
  color: white !important;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.2),
    0 0 0 5px rgba(37, 211, 102, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card .whatsapp-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;
}

.contact-card .whatsapp-btn:hover::before {
  left: 100%;
}

.contact-card .whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4),
    0 0 0 2px rgba(37, 211, 102, 0.3);
}

.contact-card .whatsapp-btn .btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  color: #ffffff !important;
}

.contact-card .whatsapp-btn .text-primary {
  font-size: 16px;
  opacity: 1;
  color: #ffffff !important;
  font-weight: 600;
}

.contact-card .whatsapp-btn .text-secondary {
  font-size: 18px;
  font-weight: 700;
}

.contact-card .whatsapp-btn .btn-icon {
  font-size: 20px;
  color: #ffffff !important;
}

/* Card Hover Effect */
.contact-card .card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 238, 112, 0.05) 25%,
    rgba(255, 238, 112, 0.1) 50%,
    rgba(255, 238, 112, 0.05) 75%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.contact-card:hover .card-hover-effect {
  opacity: 1;
}

/* Gradient Text for Title */
.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    #ffffff 50%,
    var(--primary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
}

.subtitle-glow {
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(255, 238, 112, 0.3);
  animation: subtitlePulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes subtitlePulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .contact-card .card-inner {
    padding: 30px 25px;
  }

  .contact-card .card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .contact-card .card-icon i {
    font-size: 28px;
  }

  .contact-card .card-content h3 {
    font-size: 22px;
  }

  .contact-card .card-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .contact-card .card-inner {
    padding: 25px 20px;
  }

  .contact-card .card-icon {
    width: 60px;
    height: 60px;
  }

  .contact-card .card-icon i {
    font-size: 24px;
  }

  .contact-card .whatsapp-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

/* ===== Contact Form Section ===== */
.contact-form-section {
  background: linear-gradient(135deg, #0e0f11 0%, #1a1b1d 50%, #0e0f11 100%);
  position: relative;
  overflow: visible;
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 238, 112, 0.02) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 238, 112, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(255, 238, 112, 0.02) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.contact-form-wrapper {
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Form Title Styles */
.contact-form-section .section-title h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-form-section .form-subtitle {
  font-size: 28px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.contact-form-section .form-description {
  font-size: 18px;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Form Container */
.contact-form-container {
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.8) 0%,
    rgba(26, 27, 29, 0.9) 100%
  );
  border: 2px solid rgba(49, 49, 49, 0.8);
  border-radius: 30px;
  padding: 60px 50px;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 238, 112, 0.1);
  position: relative;
  overflow: visible;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 238, 112, 0.1) 25%,
    rgba(255, 238, 112, 0.2) 50%,
    rgba(255, 238, 112, 0.1) 75%,
    transparent 100%
  );
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.contact-form-container:hover::before {
  opacity: 1;
}

/* Form Row */
.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.contact-form .form-group {
  padding: 0 15px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

/* Dropdown form group'ları yüksek z-index */
.contact-form .form-group:has(.custom-dropdown) {
  z-index: 10;
  position: relative;
  overflow: visible;
}

.contact-form .form-group:has(.custom-dropdown.active) {
  z-index: 100;
}

.contact-form .form-group.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.contact-form .form-group:not(.col-md-6) {
  flex: 0 0 100%;
  max-width: 100%;
  z-index: 1;
}

/* Input Wrapper */
.input-wrapper,
.select-wrapper,
.textarea-wrapper {
  position: relative;
  background: rgba(14, 15, 17, 0.6);
  border-radius: 20px;
  border: 2px solid rgba(49, 49, 49, 0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
}

/* Textarea wrapper z-index normal */
.textarea-wrapper {
  z-index: 1;
}

.input-wrapper::before,
.select-wrapper::before,
.textarea-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.input-wrapper:focus-within::before,
.select-wrapper:focus-within::before,
.textarea-wrapper:focus-within::before {
  opacity: 1;
}

.input-wrapper:focus-within,
.select-wrapper:focus-within,
.textarea-wrapper:focus-within {
  border-color: rgba(255, 238, 112, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 238, 112, 0.1), 0 8px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* Form Controls */
.contact-form .form-control {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px 20px 60px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-form .form-control::placeholder {
  color: transparent;
}

.contact-form textarea.form-control {
  padding: 20px 25px 20px 60px;
  resize: none;
  height: 60px;
  min-height: 60px;
  max-height: 60px;
  z-index: 1;
}

.contact-form select.form-control {
  appearance: none;
  cursor: pointer;
}

/* Dropdown Menu Container - Açılan menünün kendisine */
.contact-form select.form-control:focus {
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.98) 0%,
    rgba(20, 22, 25, 0.95) 100%
  ) !important;
  border: 2px solid rgba(156, 254, 79, 0.6);
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgba(156, 254, 79, 0.2), 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Custom dropdown floating label artık gizlenmiyor */

/* Açılan Dropdown Menünün Kendisine - Native Select Styling */
.contact-form select.form-control {
  background-color: transparent !important;
}

/* Dropdown Menu Container Background */
.contact-form select.form-control:focus {
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.98) 0%,
    rgba(20, 22, 25, 0.95) 100%
  ) !important;
}

/* Dropdown Menu Container Border */
.contact-form select.form-control:focus {
  border: 2px solid rgba(156, 254, 79, 0.6);
  border-radius: 12px;
}

/* Dropdown Menu Container Shadow */
.contact-form select.form-control:focus {
  box-shadow: 0 0 0 4px rgba(156, 254, 79, 0.2), 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Dropdown Menu Container Padding */
.contact-form select.form-control:focus {
  padding: 20px 25px 20px 60px;
}

/* Dropdown Menu Container Overflow */
.contact-form select.form-control:focus {
  overflow: hidden;
  border-radius: 12px;
}

/* Custom Dropdown Styling */
.custom-dropdown {
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: visible;
}

.custom-dropdown .dropdown-menu.show {
  z-index: 999999;
}

.dropdown-btn {
  width: 100%;
  padding: 20px 25px;
  background: rgba(14, 15, 17, 0.8);
  border: 2px solid rgba(49, 49, 49, 0.6);
  border-radius: 20px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 99999;
  pointer-events: auto;
}

.dropdown-btn:hover {
  border-color: rgba(156, 254, 79, 0.3);
  background: rgba(14, 15, 17, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(156, 254, 79, 0.15), 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dropdown-btn:focus {
  outline: none;
  border-color: rgba(156, 254, 79, 0.6);
  background: rgba(14, 15, 17, 0.9);
  box-shadow: 0 0 0 6px rgba(156, 254, 79, 0.2), 0 12px 35px rgba(0, 0, 0, 0.4);
}

.dropdown-text {
  color: var(--white-color);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  flex: 1;
  text-align: left;
}

.dropdown-icon {
  color: var(--white-color);
  font-size: 18px;
  margin-right: 15px;
  opacity: 0.9;
  flex-shrink: 0;
}

.dropdown-arrow {
  color: var(--white-color);
  font-size: 14px;
  transition: transform 0.3s ease;
  opacity: 0.8;
  flex-shrink: 0;
  margin-left: auto;
}

.dropdown-btn.active .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary-color);
}

/* Dropdown Menu - Açılan Menü */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.98) 0%,
    rgba(20, 22, 25, 0.95) 100%
  );
  border: 2px solid rgba(156, 254, 79, 0.6);
  border-radius: 16px;
  margin-top: 8px;
  padding: 8px;
  box-shadow: 0 0 0 4px rgba(156, 254, 79, 0.2), 0 15px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(156, 254, 79, 0.15);
  backdrop-filter: blur(15px);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  pointer-events: auto;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown Items - Menü Öğeleri */
.dropdown-item {
  padding: 16px 20px;
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 12px;
  margin: 2px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: auto;
}

.dropdown-item:hover {
  background: linear-gradient(
    135deg,
    rgba(156, 254, 79, 0.15) 0%,
    rgba(156, 254, 79, 0.08) 100%
  );
  color: var(--primary-color);
  border-color: rgba(156, 254, 79, 0.4);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 4px 15px rgba(156, 254, 79, 0.2),
    0 0 0 1px rgba(156, 254, 79, 0.3);
}

.dropdown-item:active {
  transform: translateX(5px) scale(0.98);
  background: linear-gradient(
    135deg,
    rgba(156, 254, 79, 0.25) 0%,
    rgba(156, 254, 79, 0.15) 100%
  );
}

.dropdown-item.selected {
  background: linear-gradient(
    135deg,
    rgba(156, 254, 79, 0.3) 0%,
    rgba(156, 254, 79, 0.2) 100%
  );
  color: var(--primary-color);
  border-color: rgba(156, 254, 79, 0.8);
  box-shadow: 0 3px 12px rgba(156, 254, 79, 0.25),
    0 0 0 1px rgba(156, 254, 79, 0.5);
}

/* Dropdown Scrollbar Styling */
.contact-form select.form-control::-webkit-scrollbar {
  width: 8px;
}

.contact-form select.form-control::-webkit-scrollbar-track {
  background: rgba(14, 15, 17, 0.8);
  border-radius: 4px;
}

.contact-form select.form-control::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    rgba(156, 254, 79, 0.6) 0%,
    rgba(156, 254, 79, 0.4) 100%
  );
  border-radius: 4px;
  border: 1px solid rgba(156, 254, 79, 0.2);
}

.contact-form select.form-control::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    rgba(156, 254, 79, 0.8) 0%,
    rgba(156, 254, 79, 0.6) 100%
  );
}

/* Floating Labels */
.floating-label {
  position: absolute;
  top: 20px;
  left: 60px;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left top;
  z-index: 1;
}

.input-wrapper:focus-within .floating-label,
.select-wrapper:focus-within .floating-label,
.textarea-wrapper:focus-within .floating-label,
.input-wrapper.has-value .floating-label,
.select-wrapper.has-value .floating-label,
.textarea-wrapper.has-value .floating-label {
  top: 8px;
  left: 60px;
  font-size: 12px;
  color: var(--primary-color);
  transform: scale(0.85);
}

/* Input Icons */
.input-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.input-wrapper:focus-within .input-icon,
.select-wrapper:focus-within .input-icon,
.textarea-wrapper:focus-within .input-icon {
  color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

/* Select Arrow - Removed for cleaner look */

/* Input Border Animation - Removed for cleaner look */

/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffee70 100%);
  border: none;
  padding: 20px 50px;
  border-radius: 50px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(255, 238, 112, 0.3),
    0 0 0 1px rgba(255, 238, 112, 0.2);
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

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

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 238, 112, 0.4),
    0 0 0 2px rgba(255, 238, 112, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* Button Content */
.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn-text {
  font-weight: 700;
}

.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Button Loading State */
.btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.submit-btn.loading .btn-content {
  opacity: 0;
}

.submit-btn.loading .btn-loading {
  opacity: 1;
  visibility: visible;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(14, 15, 17, 0.3);
  border-top: 3px solid var(--heading-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Additional Info Section */
.additional-info-section {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(10, 10, 10, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
}

.additional-info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.additional-info-wrapper {
  position: relative;
  z-index: 2;
}

/* Section Title Styling */
.additional-info-section .section-title h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.title-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.separator-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  border-radius: 1px;
}

/* Social Links Grid */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.social-links-grid .social-link-card:last-child {
  grid-column: 1 / -1;
  max-height: 200px;
  padding: 25px 30px;
}

.behance-wide {
  display: flex;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.behance-wide .social-icon-wrapper {
  margin-bottom: 0;
  flex-shrink: 0;
  margin-left: 45px;
}

.behance-wide .social-content {
  flex: 1;
  margin-left: -150px;
}

.behance-wide .social-title {
  margin-bottom: 10px;
}

.behance-wide .social-description {
  margin-bottom: 20px;
}

/* Social Link Card */
.social-link-card {
  background: linear-gradient(
    135deg,
    rgba(25, 26, 28, 0.95) 0%,
    rgba(35, 37, 40, 0.9) 100%
  );
  border: 2px solid rgba(80, 80, 80, 0.6);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.social-link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 238, 112, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.social-link-card:hover::before {
  left: 100%;
}

.social-link-card:hover {
  border-color: rgba(156, 254, 79, 0.6);
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(30, 31, 33, 0.95) 0%,
    rgba(40, 42, 45, 0.9) 100%
  );
  box-shadow: 0 0 0 4px rgba(156, 254, 79, 0.2), 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Social Icon Wrapper */
.social-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
}

.social-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffee70 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.social-link-card:hover .social-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(255, 238, 112, 0.4);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    rgba(255, 238, 112, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Social Content */
.social-content {
  position: relative;
  z-index: 2;
}

.social-title {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.social-description {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Social Link Button */
.social-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.1) 0%,
    rgba(255, 238, 112, 0.05) 100%
  );
  border: 2px solid rgba(255, 238, 112, 0.3);
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link-btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.2) 0%,
    rgba(255, 238, 112, 0.1) 100%
  );
  border-color: rgba(255, 238, 112, 0.6);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 238, 112, 0.3);
}

.social-link-btn .btn-icon {
  transition: transform 0.3s ease;
}

.social-link-btn:hover .btn-icon {
  transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .additional-info-section .section-title h2 {
    font-size: 2.5rem;
  }

  .social-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-link-card {
    padding: 30px 20px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .behance-wide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .behance-wide .social-icon-wrapper {
    margin-bottom: 0;
  }
}

/* Closing Statement Section */
.closing-statement-section {
  background: linear-gradient(
    135deg,
    rgba(14, 15, 17, 0.95) 0%,
    rgba(20, 22, 25, 0.9) 100%
  );
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

.closing-statement-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 238, 112, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 238, 112, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.closing-statement-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(
    to top,
    rgba(14, 15, 17, 0.9) 0%,
    rgba(14, 15, 17, 0.6) 40%,
    rgba(14, 15, 17, 0.3) 70%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.closing-statement-wrapper {
  position: relative;
  z-index: 2;
}

/* Background Elements */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 238, 112, 0.1) 0%,
    rgba(255, 238, 112, 0.05) 100%
  );
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Statement Content */
.statement-content {
  position: relative;
  z-index: 3;
  margin-top: -40px;
}

/* Statement Logo */
.statement-logo {
  width: 320px;
  height: auto;
  margin: 0 0 20px 0;
  padding: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Statement Title */
.statement-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  color: var(--white-color);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffee70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 15px rgba(255, 238, 112, 0.3);
}

/* Statement Subtitle */
.statement-subtitle {
  font-size: 20px;
  color: var(--text-color);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.9;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  min-width: 200px;
  justify-content: center;
}

.cta-btn.primary-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #ffee70 100%);
  color: var(--heading-color);
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(255, 238, 112, 0.3);
}

.cta-btn.secondary-btn {
  background: transparent;
  color: var(--white-color);
  border: 2px solid rgba(255, 238, 112, 0.4);
  backdrop-filter: blur(10px);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 238, 112, 0.4);
}

.cta-btn.primary-btn:hover {
  border-color: rgba(255, 238, 112, 0.6);
  box-shadow: 0 15px 40px rgba(255, 238, 112, 0.5);
}

.cta-btn.secondary-btn:hover {
  background: rgba(255, 238, 112, 0.1);
  border-color: rgba(255, 238, 112, 0.8);
  color: var(--primary-color);
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.cta-btn:hover .btn-icon {
  transform: translateX(4px);
}

.cta-btn.secondary-btn:hover .btn-icon {
  transform: translateY(-2px);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-btn:hover .btn-glow {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .statement-title {
    font-size: 2.5rem;
  }

  .statement-subtitle {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    min-width: 250px;
  }

  .floating-shape {
    display: none;
  }
}

/* Form Footer */
.form-footer {
  margin-top: 40px;
}

.recaptcha-notice {
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.6;
}

.recaptcha-notice i {
  color: var(--primary-color);
  margin-right: 8px;
}

.privacy-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.privacy-link:hover {
  color: var(--white-color);
  text-decoration: underline;
}

/* Form Validation Styles - Removed red text validation */

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 40px 30px;
  }

  .contact-form-section .section-title h2 {
    font-size: 36px;
  }

  .contact-form-section .form-subtitle {
    font-size: 24px;
  }

  .contact-form-section .form-description {
    font-size: 16px;
  }

  .contact-form .form-group.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .submit-btn {
    padding: 18px 40px;
    font-size: 16px;
    min-width: 180px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 30px 20px;
  }

  .contact-form .form-control {
    padding: 18px 20px 18px 50px;
    font-size: 15px;
  }

  .floating-label {
    left: 50px;
    font-size: 15px;
  }

  .input-icon {
    left: 15px;
  }

  .submit-btn {
    padding: 16px 35px;
    font-size: 15px;
    min-width: 160px;
  }
}

/* Form Animation Delays */
.contact-form .form-group[data-aos-delay="100"] {
  animation-delay: 0.1s;
}
.contact-form .form-group[data-aos-delay="150"] {
  animation-delay: 0.15s;
}
.contact-form .form-group[data-aos-delay="200"] {
  animation-delay: 0.2s;
}
.contact-form .form-group[data-aos-delay="250"] {
  animation-delay: 0.25s;
}
.contact-form .form-group[data-aos-delay="300"] {
  animation-delay: 0.3s;
}
.contact-form .form-group[data-aos-delay="350"] {
  animation-delay: 0.35s;
}
.contact-form .form-group[data-aos-delay="400"] {
  animation-delay: 0.4s;
}
.contact-form .form-group[data-aos-delay="500"] {
  animation-delay: 0.5s;
}
.contact-form .form-group[data-aos-delay="600"] {
  animation-delay: 0.6s;
}

/* ===== Portfolio Isotope Section ===== */
.portfolio-isotope-section {
  background: var(--primary-black-color);
  position: relative;
  overflow: hidden;
}

/* Portfolio Filter Menu */
.portfolio-filter-menu {
  margin-bottom: 60px;
}

/* Filter Buttons Wrap */
.filter-buttons-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

/* Type Filter Wrap */
.type-filter-wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  position: relative;
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.filter-btn::after {
  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 ease, height 0.6s ease;
}

.filter-btn:active::after {
  width: 300px;
  height: 300px;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
  left: 0;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--primary-color);
  color: var(--primary-black-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(237, 186, 44, 0.4);
}

.filter-btn.active {
  animation: activeButton 0.6s ease;
}

@keyframes activeButton {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    transform: translateY(-3px) scale(1);
  }
}

.filter-count {
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.filter-btn.active .filter-count,
.filter-btn:hover .filter-count {
  background: rgba(0, 0, 0, 0.2);
}

/* Type Button Styles */
.type-btn {
  position: relative;
  background: var(--primary-black-color);
  border: 2px solid var(--border-color);
  color: var(--white-color);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.type-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.type-btn:active::after {
  width: 200px;
  height: 200px;
}

.type-btn i {
  font-size: 18px;
}

.type-btn:hover,
.type-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--primary-black-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(237, 186, 44, 0.3);
}

.type-btn.active {
  animation: activeTypeButton 0.5s ease;
}

@keyframes activeTypeButton {
  0%, 100% {
    transform: translateY(-2px) scale(1);
  }
  50% {
    transform: translateY(-4px) scale(1.03);
  }
}

/* Isotope Grid Container */
.portfolio-isotope-grid {
  width: 100%;
}

/* No Results Message */
.no-results-message {
  width: 100%;
  padding: 80px 20px;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.no-results-content {
  max-width: 500px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(10px);
  border: 2px solid rgba(237, 186, 44, 0.15);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.no-results-content i {
  font-size: 64px;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

.no-results-content h3 {
  font-size: 28px;
  color: var(--white-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.no-results-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

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

@media (max-width: 768px) {
  .no-results-message {
    padding: 60px 15px;
  }
  
  .no-results-content {
    padding: 40px 25px;
  }
  
  .no-results-content i {
    font-size: 48px;
  }
  
  .no-results-content h3 {
    font-size: 22px;
  }
  
  .no-results-content p {
    font-size: 14px;
  }
}

/* Isotope Portfolio Item - Performance Optimized */
.portfolio-item-isotope {
  width: calc(33.333% - 20px);
  margin-bottom: 30px;
  float: left;
  cursor: pointer;
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Portfolio Item Inner */
.portfolio-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  background: var(--primary-black-color);
  height: 100%;
  will-change: transform;
  transform: translateZ(0);
}

.portfolio-item-isotope:hover .portfolio-item-inner {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(237, 186, 44, 0.35);
}

/* Portfolio Thumb */
.portfolio-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  min-height: 350px;
  background: var(--primary-black-color);
}

.portfolio-thumb img,
.portfolio-thumb video.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease, opacity 0.3s ease;
  will-change: transform;
  transform: translateZ(0);
  display: block;
}

.portfolio-thumb video.video-thumbnail {
  pointer-events: none;
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover !important;
}

/* Lazy Loading Images - Performance Optimized */
.lazy-load {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  background-size: 200% 200%;
  animation: shimmer 1.5s infinite;
  min-height: 300px;
}

.lazy-load.loaded {
  opacity: 1;
  animation: none;
  background: none;
}

@keyframes shimmer {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Faster transitions on mobile for performance */
@media (max-width: 768px) {
  .lazy-load {
    transition: opacity 0.4s ease-in-out;
    animation-duration: 1.2s;
  }
  
  .lazy-load.loaded {
    min-height: auto;
  }
  
  /* Mobile GPU Acceleration */
  .portfolio-item-isotope {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
  }
  
  .portfolio-thumb {
    transform: translateZ(0);
    will-change: auto; /* Don't keep will-change active on mobile */
  }
  
  .portfolio-thumb img {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  /* Reduce animations on slower mobile devices */
  @media (prefers-reduced-motion: reduce) {
    .lazy-load {
      animation: none !important;
      transition: opacity 0.2s ease !important;
    }
    
    .portfolio-item-isotope,
    .portfolio-thumb img {
      transition: none !important;
    }
  }
}

.portfolio-item-isotope:hover .portfolio-thumb img,
.portfolio-item-isotope:hover .portfolio-thumb video.video-thumbnail {
  transform: scale(1.08);
  opacity: 0.95;
}

.portfolio-item-isotope:active .portfolio-thumb img,
.portfolio-item-isotope:active .portfolio-thumb video.video-thumbnail {
  transform: scale(1.05);
}

/* Video Badge */
.video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(237, 186, 44, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
  pointer-events: none;
}

.video-badge i {
  color: var(--primary-black-color);
  font-size: 36px;
  margin-left: 5px;
}

.portfolio-item-isotope:hover .video-badge {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--primary-color);
  box-shadow: 0 0 30px rgba(237, 186, 44, 0.6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(237, 186, 44, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(237, 186, 44, 0);
  }
}

/* Portfolio Overlay - Performance Optimized */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(14, 15, 17, 0.95) 0%,
    rgba(14, 15, 17, 0.8) 50%,
    rgba(14, 15, 17, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  pointer-events: none;
  will-change: opacity;
}

.portfolio-item-isotope:hover .portfolio-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Portfolio Info - Performance Optimized */
.portfolio-info {
  transform: translateY(20px) translateZ(0);
  transition: transform 0.3s ease 0.1s;
  will-change: transform;
}

.portfolio-item-isotope:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info .category {
  display: inline-block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  background: rgba(237, 186, 44, 0.15);
  padding: 6px 18px;
  border-radius: 20px;
}

.portfolio-info .title {
  color: var(--white-color);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Type Badge */
.type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.photo-badge {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.video-badge.type-badge {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

/* View Button */
.view-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-black-color);
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: scale(0.5);
  z-index: 3;
}

.portfolio-item-isotope:hover .view-btn {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.2s;
}

.view-btn:hover {
  background: var(--white-color);
  transform: scale(1.15) rotate(90deg);
}

/* Fancybox 5 Custom Styles - Ultra Modern & Creative */

/* Fix scroll jump bug when modal closes */
html.with-fancybox {
  scroll-behavior: auto !important;
}

body.compensate-for-scrollbar {
  overflow: visible !important;
  margin-right: 0 !important;
}

/* Overlay Background - Light & Blurred (Same as Images) */
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(15px) !important;
}

/* Main Container */
.fancybox__container {
  --fancybox-accent-color: #edba2c;
  --fancybox-bg: transparent;
}

/* Slide Content - Modern Shadow & Border */
.fancybox__slide {
  padding: 40px;
  background: transparent !important;
}

.fancybox__content {
  background: transparent !important;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 
              0 0 0 1px rgba(237, 186, 44, 0.1);
  border-radius: 20px;
  overflow: hidden;
  width: auto !important;
  height: auto !important;
}

/* Image Styling - Smooth & Modern */
.fancybox__content > .carousel__slide > img {
  border-radius: 20px;
  object-fit: contain;
}

/* Video Wrapper - Match Image Behavior Exactly */
.fancybox__content > .carousel__slide > .fancybox__html5video {
  border-radius: 20px;
  max-width: calc(100vw - 80px) !important;
  max-height: calc(100vh - 80px) !important;
  width: auto !important;
  height: auto !important;
  position: relative !important;
  background: transparent !important;
}

.fancybox__content > .carousel__slide > iframe {
  border-radius: 20px;
}

/* Make video behave exactly like image */
.fancybox__slide:has(.fancybox__html5video) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: transparent !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
}

/* HTML5 Video Player - EXACT Same as Images */
.fancybox__content video {
  max-width: calc(100vw - 80px) !important;
  max-height: calc(100vh - 80px) !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 20px;
  background: transparent !important;
  display: block;
}

.fancybox__html5video {
  max-width: calc(100vw - 80px) !important;
  max-height: calc(100vh - 80px) !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: transparent !important;
}

/* Video container - Match image container EXACTLY */
.fancybox__content:has(video) {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  height: auto !important;
  max-width: calc(100vw - 80px) !important;
  max-height: calc(100vh - 80px) !important;
  background: transparent !important;
}

/* Close Button - Hidden (Click outside to close) */
.fancybox__button--close,
button[data-fancybox-close],
.fancybox__button[data-fancybox-close] {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Navigation Arrows - Gold Premium Style */
.fancybox__button--prev,
.fancybox__button--next {
  background: linear-gradient(135deg, rgba(237, 186, 44, 0.95) 0%, rgba(212, 166, 41, 0.95) 100%);
  color: var(--primary-black-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  box-shadow: 0 8px 30px rgba(237, 186, 44, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.fancybox__button--prev:hover,
.fancybox__button--next:hover {
  background: linear-gradient(135deg, var(--primary-color) 0%, #c99921 100%);
  transform: scale(1.2);
  box-shadow: 0 12px 40px rgba(237, 186, 44, 0.6);
}

.fancybox__button--prev svg,
.fancybox__button--next svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  width: 20px;
  height: 20px;
}

/* Loading Spinner - Brand Colors */
.fancybox__spinner {
  border-color: rgba(237, 186, 44, 0.2);
  border-top-color: var(--primary-color);
  width: 60px;
  height: 60px;
}

/* Zoom Animation - Smooth Entry */
.fancybox-zoomIn {
  animation: fancyboxZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fancybox-fadeOut {
  animation: fancyboxFadeOut 0.3s ease-out;
}

@keyframes fancyboxFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Custom Gallery Class */
.goat-media-gallery .fancybox__content {
  background: linear-gradient(
    135deg,
    rgba(237, 186, 44, 0.03) 0%,
    rgba(14, 15, 17, 0.3) 100%
  );
}

/* Video Thumbnail - Force Proper Sizing for All Orientations */
.portfolio-thumb video.video-thumbnail {
  max-width: none !important;
  max-height: none !important;
}

/* Ensure video fills container completely */
.portfolio-thumb {
  position: relative;
  overflow: hidden !important;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
  .fancybox__slide {
    padding: 10px;
  }
  
  .fancybox__content video {
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 20px) !important;
  }
  
  .fancybox__html5video {
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 20px) !important;
  }
  
  .fancybox__content:has(video) {
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 20px) !important;
  }
  
  .fancybox__content > .carousel__slide > .fancybox__html5video {
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 20px) !important;
  }
  
  .fancybox__button--prev,
  .fancybox__button--next {
    width: 45px;
    height: 45px;
  }
}

/* Responsive Design */
@media (max-width: 1400px) {
  .portfolio-item-isotope {
    width: calc(33.333% - 18px);
  }
  
  .portfolio-thumb {
    min-height: 300px;
  }
  
  .portfolio-info .title {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .portfolio-item-isotope {
    width: calc(50% - 15px);
    margin-bottom: 30px;
  }
  
  .portfolio-thumb {
    min-height: 280px;
  }
}

@media (max-width: 991px) {
  .filter-buttons-wrap {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .portfolio-info .title {
    font-size: 19px;
  }
  
  .portfolio-item-isotope {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
  
  .portfolio-thumb {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .filter-buttons-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 15px;
  }
  
  .filter-btn {
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 30px;
    justify-content: space-between;
    min-width: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(237, 186, 44, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #d4a720);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(237, 186, 44, 0.4);
    transform: translateY(-2px);
  }
  
  /* 5. buton (Restaurants) tek başına kalırsa ortala */
  .filter-btn:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .filter-text {
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  
  .filter-count {
    padding: 3px 8px;
    font-size: 10px;
    border-radius: 15px;
    background: rgba(237, 186, 44, 0.25);
    font-weight: 700;
    min-width: 24px;
    text-align: center;
  }
  
  .filter-btn.active .filter-count,
  .filter-btn:hover .filter-count {
    background: rgba(0, 0, 0, 0.25);
  }
  
  .type-filter-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0 15px;
  }
  
  .type-btn {
    padding: 10px 12px;
    font-size: 11px;
    border-radius: 25px;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    font-weight: 600;
  }
  
  .type-btn:hover,
  .type-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #d4a720);
    border-color: var(--primary-color);
    box-shadow: 0 5px 18px rgba(237, 186, 44, 0.35);
    transform: translateY(-1px) scale(1.02);
  }
  
  .type-btn i {
    font-size: 14px;
  }
  
  .portfolio-overlay {
    padding: 25px;
  }
  
  .portfolio-info .title {
    font-size: 20px;
  }
  
  .video-badge {
    width: 75px;
    height: 75px;
  }
  
  .video-badge i {
    font-size: 32px;
  }
  
  .portfolio-item-isotope {
    width: 100%;
    margin-bottom: 30px;
  }
  
  .portfolio-thumb {
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .portfolio-item-inner {
    margin-bottom: 0;
  }
  
  .portfolio-overlay {
    opacity: 0.9;
    padding: 20px;
  }
  
  .view-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .portfolio-info .title {
    font-size: 18px;
  }
  
  .portfolio-item-isotope {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .filter-buttons-wrap {
    gap: 8px;
    padding: 0 10px;
  }
  
  .filter-btn {
    padding: 9px 12px;
    font-size: 11px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(237, 186, 44, 0.25);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  }
  
  .filter-btn:active {
    transform: translateY(0) scale(0.98);
  }
  
  /* 5. buton (Restaurants) tek başına kalırsa ortala */
  .filter-btn:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
  
  .filter-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    letter-spacing: 0.2px;
  }
  
  .filter-count {
    padding: 2px 7px;
    font-size: 9px;
    min-width: 22px;
    text-align: center;
    border-radius: 12px;
    background: rgba(237, 186, 44, 0.3);
    font-weight: 700;
  }
  
  .type-filter-wrap {
    gap: 8px;
    padding: 0 10px;
  }
  
  .type-btn {
    padding: 8px 10px;
    font-size: 10px;
    border-radius: 20px;
    gap: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
  }
  
  .type-btn:active {
    transform: scale(0.97);
  }
  
  .type-btn i {
    font-size: 13px;
  }
  
  .portfolio-filter-menu {
    margin-bottom: 40px;
  }
  
  .portfolio-thumb {
    min-height: 280px;
  }
}
