/*
************
*************************

   Template Name: Choicy - Digital Marketing Agency HTML Template
   Description: Choicy is a beautifully handcrafted, pixel perfect Digital Marketing Agency HTMLtemplate & designed with great attention to details, flexibility and performance.


   Author: themexriver
   Version: 1.0

-----------------------------------------------------------------------------------

CSS INDEX
=================== 
01. common

******************************************************* 
*************************************************************** */
/* 
    01. common
*/
/* Google Fonts imports removed - added via preconnect links in header */
:root {
  --urbanist: "Urbanist", sans-serif;
  --galada: "Galada", cursive;
  --black-color: #000000;
  --white-color: #fff;
  --chy-pr-1: #5b00aa;
  --chy-pr-2: #5b00aa;
  --chy-pr-3: #5b00aa;
  --chy-pr-4: #5b00aa;
  --chy-sd-1: #4a0088;
  --chy-h1-color: #141515;
  --chy-h2-color: #252A4E;
  --chy-p1-color: #141515;
  --chy-gd-1: linear-gradient( 32deg, #5b00aa 20%, #4a0088 100%);
  --chy-gd-2: linear-gradient(90deg, #5b00aa -2.17%, #4a0088 100%);
}

body {
  font-family: var(--urbanist);
  font-weight: 400;
  font-style: normal;
  color: #5b5b5b;
  font-size: 18px;
  line-height: 1.66;
}

/* QR System Styles */
.qr-system-area {
  background: #f8f9fa;
}

.qr-stats-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.qr-stat-item {
  display: flex;
  justify-content: center;
}

.stat-circle {
  width: 120px;
  height: 120px;
  border: 2px solid #5b00aa;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin: 0;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: #000;
  margin: 5px 0 0 0;
  text-align: center;
  line-height: 1.2;
}

.qr-phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: #000;
  border-radius: 35px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 25px;
  padding: 20px;
  overflow-y: auto;
}

.phone-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.phone-header h4 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

.new-badge {
  background: #5b00aa;
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
  margin-left: 8px;
}

.qr-modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.module-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  background: #f8f9fa;
  transition: all 0.3s ease;
}

.module-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.module-item i {
  font-size: 16px;
  color: #5b00aa;
  margin-bottom: 5px;
}

.module-item span {
  font-size: 10px;
  text-align: center;
  color: #000;
  line-height: 1.2;
}

.coming-soon-section {
  margin-top: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.coming-soon-section h5 {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  text-align: center;
}

.coming-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.coming-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px;
  border-radius: 6px;
  background: #f1f3f4;
}

.coming-item i {
  font-size: 12px;
  color: #999;
  margin-bottom: 3px;
}

.coming-item span {
  font-size: 9px;
  color: #666;
  text-align: center;
  line-height: 1.1;
}

.qr-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.monitor-mockup {
  display: flex;
  justify-content: center;
}

.monitor-screen {
  width: 200px;
  height: 150px;
  background: white;
  border: 15px solid #e0e0e0;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.screen-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 40px;
  height: 40px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.qr-description {
  text-align: center;
}

.qr-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .qr-stats-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .qr-stat-item {
    margin: 0 10px 20px 0;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
  
  .monitor-screen {
    width: 150px;
    height: 110px;
  }
}

@media (max-width: 767px) {
  .qr-stats-wrap {
    flex-direction: column;
    align-items: center;
  }
  
  .phone-frame {
    width: 200px;
    height: 400px;
    padding: 15px;
  }
  
  .phone-screen {
    padding: 15px;
  }
  
  .qr-modules-grid {
    grid-template-columns: 1fr;
  }
  
  .coming-modules {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Contact Section */
.enhanced-contact-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1px 0;
  position: relative;
}

.contact-hero-enhanced {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(162, 73, 237, 0.02) 0%, rgba(92, 0, 169, 0.02) 100%);
  border-radius: 30px;
  overflow: hidden;
}

.hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(162, 73, 237, 0.1) 0%, rgba(92, 0, 169, 0.1) 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); }
}


.contact-description-enhanced {
  font-size: 20px;
  color: #2c3e50;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  padding: 25px 15px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--chy-pr-1);
}

.contact-description-enhanced::before {
  content: '"';
  font-size: 60px;
  color: var(--chy-pr-1);
  position: absolute;
  top: -5px;
  left: 20px;
  font-family: 'Georgia', serif;
  opacity: 0.3;
}

.contact-description-enhanced::after {
  content: '"';
  font-size: 60px;
  color: var(--chy-pr-1);
  position: absolute;
  bottom: -15px;
  right: 20px;
  font-family: 'Georgia', serif;
  opacity: 0.3;
}

.contact-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.contact-card-enhanced {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(162, 73, 237, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-background-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(162, 73, 237, 0.05) 0%, rgba(92, 0, 169, 0.05) 100%);
  border-radius: 0 24px 0 100px;
  opacity: 0.6;
}

.contact-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--chy-gd-1);
  border-radius: 24px 24px 0 0;
}

.contact-card-enhanced:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 40px 80px rgba(162, 73, 237, 0.2);
  border-color: rgba(162, 73, 237, 0.4);
}

.contact-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.contact-icon-enhanced {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--chy-gd-1);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(162, 73, 237, 0.3);
  transition: all 0.3s ease;
}

.contact-icon-enhanced i {
  color: white;
  font-size: 28px;
  position: relative;
  z-index: 1;
}

.contact-card-enhanced:hover .icon-background {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 35px rgba(162, 73, 237, 0.4);
}

.card-number {
  display: none !important;
}

.contact-card-body {
  margin-bottom: 35px;
  flex-grow: 1;
}

/* Tablet görünüm - 2 sütun */
@media (max-width: 991px) {
  .contact-grid-enhanced {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
  }
}

/* Mobil ekranda - tek sütun */
@media (max-width: 767px) {
  .contact-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .contact-card-enhanced {
    padding: 20px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .contact-icon-enhanced {
    width: 50px;
    height: 50px;
  }
  
  .contact-icon-enhanced i {
    font-size: 20px;
  }
  
  .card-number {
    font-size: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  
  .card-title {
    font-size: 16px;
    margin-bottom: 6px;
    text-align: center;
  }

  .contact-value-enhanced {
    font-size: 14px;
    margin-bottom: 4px;
    text-align: center;
    font-weight: 600;
  }
  
  .contact-info-enhanced {
    font-size: 11px;
    text-align: center;
    color: #666;
  }
  
  .contact-btn-enhanced {
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 8px;
  }
  
  .btn-text {
    font-size: 12px;
  }
  
  .btn-icon i {
    font-size: 12px;
  }
}

.contact-btn-enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  background: var(--chy-gd-1);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--urbanist);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(162, 73, 237, 0.3);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.contact-btn-enhanced::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-btn-enhanced:hover::before {
  left: 100%;
}

.btn-text {
  font-weight: 600;
  font-size: 16px;
}

.btn-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-btn-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(162, 73, 237, 0.4);
  color: white;
  text-decoration: none;
}

.contact-btn-enhanced:hover .btn-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Social Media Section */
.social-media-section {
  background: linear-gradient(135deg, rgba(162, 73, 237, 0.05) 0%, rgba(92, 0, 169, 0.05) 100%);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  border: 1px solid rgba(162, 73, 237, 0.1);
  margin-bottom: 5px;
}

.social-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-family: var(--urbanist);
}

.social-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-family: var(--urbanist);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  padding: 10px 0;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 15px;
  background: #ffffff;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  min-width: 100px;
  flex-shrink: 0;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon i {
  font-size: 24px;
  color: white;
}

.social-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.social-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  font-family: var(--urbanist);
}

.social-handle {
  font-size: 12px;
  color: #666;
  font-family: var(--urbanist);
  line-height: 1.2;
}

/* Social Media Colors */
.social-btn.facebook::before {
  background: #1877F2;
}

.social-btn.facebook:hover .social-icon {
  background: #1877F2;
  transform: scale(1.1);
}

.social-btn.facebook .social-icon {
  background: #1877F2;
}

.social-btn.instagram::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover .social-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  transform: scale(1.1);
}

.social-btn.instagram .social-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin::before {
  background: #0A66C2;
}

.social-btn.linkedin:hover .social-icon {
  background: #0A66C2;
  transform: scale(1.1);
}

.social-btn.linkedin .social-icon {
  background: #0A66C2;
}

.social-btn.twitter::before {
  background: #1DA1F2;
}

.social-btn.twitter:hover .social-icon {
  background: #1DA1F2;
  transform: scale(1.1);
}

.social-btn.twitter .social-icon {
  background: #1DA1F2;
}

.social-btn.youtube::before {
  background: #FF0000;
}

.social-btn.youtube:hover .social-icon {
  background: #FF0000;
  transform: scale(1.1);
}

.social-btn.youtube .social-icon {
  background: #FF0000;
}

.social-btn.whatsapp::before {
  background: #25D366;
}

.social-btn.whatsapp:hover .social-icon {
  background: #25D366;
  transform: scale(1.1);
}

.social-btn.whatsapp .social-icon {
  background: #25D366;
}

/* Map Container */
.contact-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 5px;
}


.contact-map .map {
  position: relative;
  z-index: 2;
}

.contact-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 0, 145, 0.15) 0%, rgba(79, 0, 145, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: 20px;
}

.contact-map iframe {
  transition: all 0.3s ease;
  filter: sepia(20%) saturate(1.2) hue-rotate(270deg) brightness(0.95);
}

.contact-map:hover iframe {
  transform: scale(1.02);
  filter: sepia(25%) saturate(1.3) hue-rotate(270deg) brightness(0.98);
}


/* Enhanced Responsive Design */
@media (max-width: 991px) {
  .contact-description-enhanced {
    font-size: 18px;
    padding: 20px 12px;
  }
  
  .contact-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .contact-card-enhanced {
    padding: 20px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .social-media-section {
    padding: 40px 30px;
  }
  
  .social-buttons {
    gap: 15px;
    flex-wrap: nowrap;
  }
  
  .social-btn {
    padding: 18px 12px;
    min-width: 90px;
  }
  
  .social-icon {
    width: 55px;
    height: 55px;
  }
  
  .social-icon i {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .contact-description-enhanced {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
  }
  
  .contact-hero-enhanced {
    margin-bottom: 30px;
  }
  
  .contact-description-enhanced::before,
  .contact-description-enhanced::after {
    font-size: 50px;
  }
  
  .contact-description-enhanced::before {
    left: 10px;
  }
  
  .contact-description-enhanced::after {
    right: 10px;
  }
  
  .contact-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .contact-card-enhanced {
    padding: 15px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    margin-bottom: 10px;
  }
  
  .contact-icon-enhanced {
    width: 40px;
    height: 40px;
  }
  
  .contact-icon-enhanced i {
    font-size: 16px;
  }
  
  .card-number {
    font-size: 12px;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }
  
  .social-media-section {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .contact-map {
    margin-top: 20px;
  }
  
  .social-content h3 {
    font-size: 24px;
  }
  
  .social-content p {
    font-size: 16px;
  }
  
  .social-buttons {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .social-btn {
    padding: 18px 12px;
    min-width: 90px;
  }
  
  .social-icon {
    width: 55px;
    height: 55px;
  }
  
  .social-icon i {
    font-size: 22px;
  }
  
  .social-name {
    font-size: 14px;
  }
  
  .social-handle {
    font-size: 11px;
  }
  
  .floating-shape {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-title h2 {
    font-size: 32px;
  }
  
  .contact-description p {
    font-size: 15px;
  }
  
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  
  .contact-icon i {
    font-size: 24px;
  }
  
  .contact-banner {
    font-size: 15px;
    padding: 10px 25px;
  }
  
  .contact-method {
    min-width: 250px;
    padding: 20px;
  }
}

/* Simple Page Header Styles */
.simple-page-header {
  background: var(--chy-h1-color);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--urbanist);
}

.breadcrumb-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: var(--chy-pr-1);
}

.breadcrumb-separator {
  color: var(--chy-pr-2);
  font-size: 18px;
  font-weight: bold;
}

.breadcrumb-current {
  color: var(--chy-pr-2);
  font-size: 16px;
  font-weight: 600;
}

/* Responsive Simple Header */
@media (max-width: 767px) {
  .simple-page-header {
    padding: 15px 0;
  }
  
  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 14px;
  }
  
  .breadcrumb-separator {
    font-size: 16px;
  }
}

/* Legal Modal Styles */
.legal-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: modalFadeIn 0.3s ease-out;
}

.legal-modal-content {
  background: #ffffff;
  margin: 2% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: modalSlideIn 0.3s ease-out;
  border: 1px solid rgba(162, 73, 237, 0.3);
}

.legal-modal-header {
  background: var(--chy-gd-1);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-modal-header h3 {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  font-family: var(--urbanist);
}

.legal-modal-close {
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.legal-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.legal-modal-body {
  padding: 30px;
  color: #333333;
  line-height: 1.7;
  font-size: 16px;
  max-height: 60vh;
  overflow-y: auto;
}

.legal-modal-body::-webkit-scrollbar {
  width: 8px;
}

.legal-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
  background: var(--chy-pr-1);
  border-radius: 4px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--chy-sd-1);
}

.legal-modal-body h4 {
  color: var(--chy-pr-1);
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 15px 0;
  font-family: var(--urbanist);
}

.legal-modal-body h4:first-child {
  margin-top: 0;
}

.legal-modal-body p {
  margin-bottom: 15px;
  font-family: var(--urbanist);
}

.legal-modal-body ul {
  margin: 15px 0;
  padding-left: 20px;
}

.legal-modal-body li {
  margin-bottom: 8px;
  font-family: var(--urbanist);
}

.legal-modal-body strong {
  color: #000000;
  font-weight: 600;
}

/* Modal Animations */
@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Modal */
@media (max-width: 768px) {
  .legal-modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 85vh;
  }
  
  .legal-modal-header {
    padding: 20px 25px;
  }
  
  .legal-modal-header h3 {
    font-size: 20px;
  }
  
  .legal-modal-body {
    padding: 25px;
    font-size: 15px;
    max-height: 55vh;
  }
  
  .legal-modal-body h4 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .legal-modal-content {
    width: 98%;
    margin: 2% auto;
    border-radius: 15px;
  }
  
  .legal-modal-header {
    padding: 15px 20px;
  }
  
  .legal-modal-header h3 {
    font-size: 18px;
  }
  
  .legal-modal-close {
    font-size: 28px;
    width: 35px;
    height: 35px;
  }
  
  .legal-modal-body {
    padding: 20px;
    font-size: 14px;
  }
}

img, a, button, h1, h2, h3, h4, h5, h6, span, p {
  transition: 100ms ease;
  -webkit-transition: 100ms ease;
  text-decoration: none;
}

.img, img {
  max-width: 100%;
}

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

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--urbanist);
  color: #141515;
  text-transform: capitalize;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 42px;
}

h4 {
  font-size: 27px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-family: var(--urbanist);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.66;
  color: #5b5b5b;
}

*::-moz-selection {
  background-color: #3065D0;
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background-color: #3065D0;
  color: white;
  text-shadow: none;
}

::selection {
  background-color: #3065D0;
  color: white;
  text-shadow: none;
}

/* <<<<<<<    Input Placeholder   >>>>>>>>> */
input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
input:-moz-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
input::-moz-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

textarea::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
textarea:-moz-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
textarea::-moz-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
textarea:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
  opacity: 1;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
  box-shadow: none;
  border: none;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: none;
  border: none;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgb(162, 73, 237) 20%, rgb(97, 49, 232) 100%);
  border-radius: 30px;
}
/* <<<<<<<    Overlay   >>>>>>>>> */
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

/* <<<<<<<    Margin & Padding     >>>>>>>>> */
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 0;
}

.pt-120 {
  padding-top: 5px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}
.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-235 {
  padding-bottom: 235px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-250 {
  padding-bottom: 250px;
}

.pb-255 {
  padding-bottom: 255px;
}

.pb-260 {
  padding-bottom: 260px;
}

.pb-265 {
  padding-bottom: 265px;
}

.pb-270 {
  padding-bottom: 270px;
}

.pb-275 {
  padding-bottom: 275px;
}

.pb-280 {
  padding-bottom: 280px;
}

.pb-285 {
  padding-bottom: 285px;
}

.pb-290 {
  padding-bottom: 290px;
}

.pb-295 {
  padding-bottom: 295px;
}

.pb-300 {
  padding-bottom: 300px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  --bs-gutter-x: 30px;
}
.row.g-0 {
  --bs-gutter-x: 0;
}

@media (min-width: 1200px) {
  .container.chy-container-1 {
    max-width: 1280px;
  }
  .container.chy-container-2 {
    max-width: 1320px;
  }
}
/* <<<<<<<    Declaration   >>>>>>>>> */
.h2-body-bg {
  background: #F2F2F2;
}

.fix {
  overflow: hidden;
}

.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-default {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.no-after::after {
  display: none;
}

.p-relative {
  position: relative;
}

.z-index-3 {
  position: relative;
  z-index: 3;
}

.black-bg {
  background-color: #0D0D0D;
}

.ECF3F4 {
  background-color: #ECF3F4;
}

.chy-split-in-right {
  text-transform: unset !important;
  letter-spacing: -0.7px !important;
  overflow: hidden;
}
.chy-split-in-right .split-line div div:nth-child(1) {
  text-transform: capitalize;
}

.chy-split-in-right-2 {
  text-transform: unset !important;
  letter-spacing: -2.5px !important;
  overflow: hidden;
}
.chy-split-in-right-2 .split-line div div:nth-child(1) {
  text-transform: capitalize;
}

.chy-split-in-hero-1 {
  text-transform: unset !important;
  letter-spacing: -3px !important;
}
.chy-split-in-hero-1 .split-line div div:nth-child(1) {
  text-transform: capitalize;
}

.chy-split-in-hero-4 {
  text-transform: unset !important;
  letter-spacing: -3px !important;
}
.chy-split-in-hero-4 .split-line div div:nth-child(1) {
  text-transform: capitalize;
}


.chy-cart-btn-1 {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: var(--chy-h1-color);
  position: relative;
  transition: 400ms ease;
}
.chy-cart-btn-1::after {
  content: "2";
  width: 26px;
  height: 26px;
  background: var(--chy-gd-1);
  position: absolute;
  top: -30px;
  right: -30px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-family: var(--urbanist);
  color: #fff;
  line-height: 26px;
  transition: 400ms ease;
}
.chy-cart-btn-1:hover {
  color: var(--chy-sd-1);
}
.chy-cart-btn-1:hover::after {
  scale: 1.1;
}

.chy-cart-btn-2 {
  display: inline-block;
  font-size: 24px;
  line-height: 1;
  color: var(--chy-h1-color);
  position: relative;
  transition: 400ms ease;
}
.chy-cart-btn-2 .number {
  width: 25px;
  height: 25px;
  background: var(--chy-gd-2);
  position: absolute;
  top: 11px;
  right: 7px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  font-family: var(--urbanist);
  color: #fff;
  line-height: 25px;
  transition: 400ms ease;
}
.chy-cart-btn-2:hover {
  color: var(--chy-pr-1);
}
.chy-cart-btn-2:hover::after {
  scale: 1.1;
}

.chy-pr-btn-1 {
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--chy-gd-1);
  font-family: var(--urbanist);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  padding: 21px 28px;
  box-shadow: 0px 8px 23.22px 3.78px rgba(26, 26, 26, 0.2);
  border-radius: 30px;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  transition: 400ms;
  cursor: pointer;
}
.chy-pr-btn-1::after {
  background: var(--chy-pr-3);
  content: "";
  height: 24px;
  width: 24px;
  border-radius: 50%;
  position: absolute;
  right: 24px;
  top: 29%;
  z-index: -1;
  transition: 400ms ease;
  scale: 1;
}
.chy-pr-btn-1 .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 14px;
  margin-left: 11px;
  color: var(--chy-h1-color);
}
.chy-pr-btn-1:hover {
  color: #fff;
}
.chy-pr-btn-1:hover .icon {
  color: #fff;
}
.chy-pr-btn-1:hover::after {
  scale: 21;
}
.chy-pr-btn-2 {
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  background-color: var(--chy-pr-2);
  font-family: var(--urbanist);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  padding: 22px 47px;
  border-radius: 30px;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  cursor: pointer;
}
.chy-pr-btn-2::after {
  background-color: #141515;
  border-radius: 3rem;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}
.chy-pr-btn-2:hover {
  color: #fff;
  transform: scale(1.05);
  will-change: transform;
}
.chy-pr-btn-2:hover::after {
  transform: translate(0, 0);
}
.chy-pr-btn-2:hover i {
  transform: translate(25px, 2px);
}

.chy-pr-btn-3 {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  font-size: 15px;
  font-family: var(--urbanist);
  font-weight: 900;
  text-transform: uppercase;
  background: #141515;
  color: #fff;
  padding: 18px 24px;
  border-radius: 31px;
  transition: 500ms cubic-bezier(0, 0, 0.2, 1);
  cursor: pointer;
}
.chy-pr-btn-3 i {
  margin-left: 25px;
}
.chy-pr-btn-3 .text {
  position: relative;
  z-index: 1;
}
.chy-pr-btn-3 i {
  position: relative;
  z-index: 1;
}
.chy-pr-btn-3::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 77%;
  height: 100%;
  background: var(--chy-pr-2);
  border-radius: 0px 0px 31px 0px;
  transition: 500ms cubic-bezier(0, 0, 0.2, 1);
}
.chy-pr-btn-3:hover {
  color: #fff;
  letter-spacing: 0.5px;
}
.chy-pr-btn-3:hover::after {
  width: 100%;
}

.chy-pr-btn-4 {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  font-size: 19px;
  font-weight: 900;
  font-family: var(--urbanist);
  text-transform: capitalize;
  color: #262420;
  background: var(--chy-pr-3);
  padding: 10px 31px;
  border-radius: 4px;
  transition: 0.4s ease-in-out;
}
.chy-pr-btn-4::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  transform: translate(1px, 10px);
  z-index: -1;
  border-radius: 4px;
  transition: 0.4s ease-in-out;
}
.chy-pr-btn-4:hover {
  background-color: transparent;
  color: var(--chy-pr-3);
}
.chy-pr-btn-4:hover::after {
  transform: translate(0);
}

.chy-pr-btn-5 {
  overflow: hidden;
  z-index: 1;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  background: var(--chy-gd-2);
  font-family: var(--urbanist);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 23px 40px;
  border-radius: 30px;
  transition: 0.2s transform ease-in-out;
  will-change: transform;
  transition: 400ms;
  cursor: pointer;
  border: 0.5px solid transparent;
}
.chy-pr-btn-5::after {
  background: #fff;
  content: "";
  height: 24px;
  width: 24px;
  border-radius: 50%;
  position: absolute;
  right: 34px;
  top: 31%;
  z-index: -1;
  transition: 400ms ease;
  scale: 1;
}
.chy-pr-btn-5 .icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 14px;
  margin-left: 11px;
  color: #B55EF5;
}
.chy-pr-btn-5:hover {
  color: #B55EF5;
  border-color: var(--chy-pr-4);
}
.chy-pr-btn-5:hover::after {
  scale: 21;
}

.chy-plybtn-1 .icon {
  flex: 0 0 auto;
  width: 63px;
  height: 63px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background: #fff;
  border-radius: 50%;
  font-size: 22px;
  color: var(--chy-h1-color);
  animation: chy-plybtn-1 3s infinite ease;
}
.chy-plybtn-1 .text {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  text-transform: capitalize;
  margin-left: 18px;
  font-weight: 900;
}

@keyframes chy-plybtn-1 {
  0% {
    outline: 0px solid rgba(85, 90, 241, 0);
  }
  50% {
    outline: 7px solid rgba(85, 90, 241, 0.8);
  }
  100% {
    outline: 0px solid rgba(85, 90, 241, 0);
  }
}
.chy-plybtn-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 150px;
  height: 150px;
  background: var(--chy-gd-1);
  border-radius: 50%;
  font-size: 25px;
  color: #fff;
}
.chy-plybtn-2 .text-img {
  position: absolute;
  left: 15px;
  top: 15px;
  animation: chy-plybtn-2 4s infinite ease-in-out;
  height: unset;
  width: unset;
}
.chy-plybtn-2:hover {
  color: #fff;
}

@keyframes chy-plybtn-2 {
  0% {
    transform: rotate(0deg);
  }
  0% {
    transform: rotate(360deg);
  }
}
.chy-plybtn-3 {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chy-plybtn-3 .text {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  display: block;
  color: #131835;
}

.chy-search-btn-1 {
  display: flex;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 50%;
  color: var(--chy-h1-color);
  transition: 400ms ease-in-out;
}
.chy-search-btn-1:hover {
  background-color: var(--chy-pr-2);
  color: #fff;
}

.chy-call-1-icon {
  flex: 0 0 auto;
  position: relative;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F5F9FA;
  text-align: center;
  line-height: 55px;
  color: #000;
  transition: 0.4s ease-in-out;
}
.chy-call-1-icon::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  z-index: -1;
  transition: 0.4s ease-in-out;
}
.chy-call-1-icon:hover {
  background-color: transparent;
  color: var(--chy-pr-3);
}
.chy-call-1-icon:hover::after {
  top: 0;
}

.chy-call-2-icon {
  flex: 0 0 auto;
  position: relative;
  font-size: 25px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--chy-gd-2);
  text-align: center;
  line-height: 67px;
  color: white;
  transition: 0.4s ease-in-out;
  overflow: hidden;
}
.chy-call-2-icon i {
  display: inline-block;
  transition: 400ms;
  color: #fff;
}
.chy-call-2-icon:hover i {
  animation: chy-call-2 0.5s ease-in-out;
  color: #fff;
}

@keyframes chy-call-2 {
  25% {
    transform: translateX(60px);
  }
  50% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
  }
}
.chy-call-1-btn-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.chy-call-1-content .text {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  color: #382c4d;
  display: block;
}
.chy-call-1-content .phone {
  font-size: 20px;
  font-weight: 800;
  color: #382c4d;
  line-height: 1;
  transition: 0.4s ease-in-out;
}
.chy-call-1-content .phone:hover {
  color: var(--chy-pr-3);
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999999;
  display: flex;
  background: linear-gradient(135deg, #5b00aa 0%, #7c3aed 50%, #a855f7 100%);
  overflow: hidden;
}

#preloader::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
  animation: background-pulse 4s ease-in-out infinite;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background: linear-gradient(135deg, #5b00aa 0%, #7c3aed 50%, #a855f7 100%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#preloader:after {
  bottom: 0;
  top: unset;
  right: 0;
}

/* QR Kod Tarama Efekti - Ultra Gelişmiş Versiyon */
#preloader .qr-scanner {
  margin: auto;
  width: 280px;
  height: 280px;
  position: relative;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 
    0 0 80px rgba(91, 0, 170, 0.6),
    0 0 40px rgba(124, 58, 237, 0.4),
    inset 0 0 60px rgba(255, 255, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.3);
  animation: qr-scanner-glow 3s ease-in-out infinite;
}

/* QR Kod Deseni - Ultra Detaylı */
.qr-scanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    /* QR kod köşeleri - daha büyük */
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.9) 12px, transparent 12px),
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.9) 12px, transparent 12px),
    radial-gradient(circle at 15% 85%, rgba(255,255,255,0.9) 12px, transparent 12px),
    /* QR kod noktaları - daha fazla */
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 45% 30%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 60% 30%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 75% 30%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 30% 45%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 45% 45%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 60% 45%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 75% 45%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 30% 60%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 45% 60%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 60% 60%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 75% 60%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 30% 75%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 45% 75%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 60% 75%, rgba(255,255,255,0.7) 4px, transparent 4px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.7) 4px, transparent 4px),
    /* Tarama çizgisi - daha parlak */
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.95) 50%, transparent 100%);
  background-size: 100% 100%;
  animation: qr-scan-complex 2.5s linear infinite;
}

/* QR Kod Köşeleri - Ultra Detaylı */
.qr-scanner .qr-corners {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qr-corners::before,
.qr-corners::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.8),
    0 0 15px rgba(91, 0, 170, 0.6);
  animation: corner-glow 2s ease-in-out infinite;
}

.qr-corners::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
  border-radius: 12px 0 0 0;
}

.qr-corners::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 12px 0;
}

/* QR Kod Merkez Deseni - Ultra Detaylı */
.qr-scanner .qr-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: 
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.9) 8px, transparent 8px),
    radial-gradient(circle at 75% 25%, rgba(255,255,255,0.9) 8px, transparent 8px),
    radial-gradient(circle at 25% 75%, rgba(255,255,255,0.9) 8px, transparent 8px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.9) 8px, transparent 8px),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.5) 6px, transparent 6px);
  border-radius: 20px;
  animation: qr-center-pulse 1.8s ease-in-out infinite;
  box-shadow: 
    0 0 40px rgba(255, 255, 255, 0.3),
    inset 0 0 20px rgba(91, 0, 170, 0.2);
}

/* Tarama Işını - Ultra Parlak */
.qr-scanner .scan-beam {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255,255,255,0.9) 15%, 
    rgba(91, 0, 170, 0.9) 35%,
    rgba(124, 58, 237, 0.9) 50%,
    rgba(91, 0, 170, 0.9) 65%, 
    rgba(255,255,255,0.9) 85%, 
    transparent 100%);
  box-shadow: 
    0 0 30px rgba(91, 0, 170, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6);
  animation: scan-beam 2s linear infinite;
}

/* QR Kod Noktaları - Ultra Animasyonlu */
.qr-scanner .qr-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.qr-dots::before,
.qr-dots::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: qr-dot-blink 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.qr-dots::before {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.qr-dots::after {
  bottom: 20%;
  right: 20%;
  animation-delay: 0.75s;
}

/* QR Kod Metni - Ultra Parlak */
.qr-scanner .qr-text {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-shadow: 
    0 0 20px rgba(255, 255, 255, 0.8),
    0 0 40px rgba(91, 0, 170, 0.6);
  animation: qr-text-glow 2s ease-in-out infinite;
  letter-spacing: 1px;
}

.qr-scanner .qr-text::after {
  content: "...";
  animation: qr-dots-animation 1.2s ease-in-out infinite;
}

/* Eski loader_line sınıfını gizle */
#preloader .loader_line {
  display: none;
}

@keyframes background-pulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes qr-scanner-glow {
  0%, 100% {
    box-shadow: 
      0 0 80px rgba(91, 0, 170, 0.6),
      0 0 40px rgba(124, 58, 237, 0.4),
      inset 0 0 60px rgba(255, 255, 255, 0.1),
      0 8px 32px rgba(0, 0, 0, 0.3);
  }
  50% {
    box-shadow: 
      0 0 120px rgba(91, 0, 170, 0.8),
      0 0 60px rgba(124, 58, 237, 0.6),
      inset 0 0 80px rgba(255, 255, 255, 0.2),
      0 12px 48px rgba(0, 0, 0, 0.4);
  }
}

@keyframes corner-glow {
  0%, 100% {
    box-shadow: 
      0 0 30px rgba(255, 255, 255, 0.8),
      0 0 15px rgba(91, 0, 170, 0.6);
  }
  50% {
    box-shadow: 
      0 0 50px rgba(255, 255, 255, 1),
      0 0 25px rgba(91, 0, 170, 0.8),
      0 0 10px rgba(124, 58, 237, 0.6);
  }
}

@keyframes qr-scan-complex {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes qr-center-pulse {
  0%, 100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 
      0 0 40px rgba(255, 255, 255, 0.3),
      inset 0 0 20px rgba(91, 0, 170, 0.2);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
      0 0 60px rgba(255, 255, 255, 0.5),
      inset 0 0 30px rgba(91, 0, 170, 0.4),
      0 0 20px rgba(124, 58, 237, 0.3);
  }
}

@keyframes scan-beam {
  0% {
    left: -100%;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes qr-dot-blink {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
    box-shadow: 
      0 0 25px rgba(255, 255, 255, 0.9),
      0 0 10px rgba(91, 0, 170, 0.6);
  }
}

@keyframes qr-text-glow {
  0%, 100% {
    opacity: 0.8;
    text-shadow: 
      0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(91, 0, 170, 0.6);
  }
  50% {
    opacity: 1;
    text-shadow: 
      0 0 30px rgba(255, 255, 255, 1),
      0 0 60px rgba(91, 0, 170, 0.8),
      0 0 20px rgba(124, 58, 237, 0.6);
  }
}

@keyframes qr-dots-animation {
  0%, 15% {
    content: "";
  }
  20%, 35% {
    content: ".";
  }
  40%, 55% {
    content: "..";
  }
  60%, 75% {
    content: "...";
  }
  80%, 95% {
    content: "....";
  }
  100% {
    content: "";
  }
}

@keyframes qr-scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

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

@keyframes qr-text-fade {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes lineheight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes lineround {
  0% {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(200%);
    -ms-transform: translateY(200%);
    -o-transform: translateY(200%);
    transform: translateY(200%);
  }
}
.preloaded .loader_line:after {
  opacity: 0;
}

.preloaded .loader_line {
  opacity: 0;
  width: 100% !important;
}

.preloaded:before,
.preloaded:after {
  -webkit-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  -o-animation: preloadedzero 300ms ease-in-out 500ms forwards;
  animation: preloadedzero 300ms ease-in-out 500ms forwards;
}

@keyframes preloadedzero {
  0% {
    width: 50%;
  }
  100% {
    width: 0%;
  }
}
/*
************
*************************
06. title
******************************************************* 
*************************************************************** */
.chy-heading-1 {
  font-family: var(--urbanist);
  color: #141515;
  text-transform: capitalize;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 0;
}

.chy-heading-2 {
  font-family: var(--urbanist);
  color: var(--chy-h2-color);
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 0;
}

.chy-para-1 {
  font-family: var(--urbanist);
  color: #504e4e;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.556;
  margin-bottom: 0;
}

.chy-para-2 {
  font-family: var(--urbanist);
  color: #575757;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.3px;
  margin-bottom: 0;
}

.chy-para-3 {
  font-family: var(--urbanist);
  color: #7e7e7e;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 0;
}

.chy-para-4 {
  font-family: var(--urbanist);
  color: #666A83;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}
.chy-para-4:is(.has-20) {
  font-size: 20px;
}

.chy-section-para-1 {
  font-family: var(--urbanist);
  color: #504e4e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.556;
  margin-bottom: 0;
}

.chy-subtitle-1 {
  display: inline-block;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--urbanist);
  text-transform: uppercase;
  color: #5b5b5b;
  margin-bottom: 20px;
  position: relative;
  padding-left: 25px;
}
.chy-subtitle-1::after {
  position: absolute;
  content: "";
  width: 17px;
  height: 16px;
  background: var(--chy-gd-1);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.chy-subtitle-2 {
  display: inline-block;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--urbanist);
  text-transform: uppercase;
  color: var(--chy-pr-2);
  margin-bottom: 20px;
  position: relative;
}
.chy-subtitle-2 .icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 31px;
}

.chy-subtitle-3 {
  display: inline-block;
  font-size: 15.65px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--urbanist);
  text-transform: uppercase;
  color: #121212;
  padding-left: 16px;
  position: relative;
  margin-bottom: 5px;
}
.chy-subtitle-3::after {
  width: 8px;
  height: 13px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--chy-pr-3);
  border-radius: 3px;
}
.chy-subtitle-3::before {
  width: 8px;
  height: 13px;
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  background: #000;
  border-radius: 3px;
}

.chy-subtitle-4 {
  position: relative;
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.32px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--galada);
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFA835 -3.85%, #FA3DCC 97.3%, #FA3AD0 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-left: 90px;
  margin-bottom: 12px;
}
.chy-subtitle-4::after {
  width: 0px;
  height: 1.5px;
  content: "";
  position: absolute;
  top: 48%;
  left: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #FFA835 -3.85%, #FA3DCC 97.3%, #FA3AD0 100%);
  border-radius: 30px;
  transition: 2000ms ease-in-out;
  transition-delay: 1;
}
.chy-subtitle-4:is(.has-center) {
  padding-right: 90px;
}
.chy-subtitle-4:is(.has-center)::before {
  width: 0px;
  height: 1.5px;
  content: "";
  position: absolute;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #FFA835 -3.85%, #FA3DCC 97.3%, #FA3AD0 100%);
  border-radius: 30px;
  transition: 2000ms ease-in-out;
  transition-delay: 1;
}
.chy-subtitle-4:is(.active)::after {
  width: 80px;
}
.chy-subtitle-4:is(.active):is(.has-center)::before {
  width: 80px;
}

.chy-title-1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--urbanist);
  text-transform: capitalize;
  color: #141515;
  margin-bottom: 20px;
}
.chy-title-1:is(.has-55) {
  font-size: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-title-1:is(.has-55) {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .chy-title-1:is(.has-55) {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-title-1:is(.has-55) {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-title-1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .chy-title-1 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-title-1 {
    font-size: 40px;
  }
}

.chy-title-2 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.16;
  font-family: var(--urbanist);
  text-transform: capitalize;
  color: #141515;
  margin-bottom: 22px;
}
.chy-title-2:is(.has-55) {
  font-size: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-title-2:is(.has-55) {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .chy-title-2:is(.has-55) {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-title-2:is(.has-55) {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-title-2 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-title-2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .chy-title-2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-title-2 {
    font-size: 40px;
  }
}

.chy-title-3 {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.15;
  font-family: var(--urbanist);
  text-transform: capitalize;
  color: #272324;
  margin-bottom: 7px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-title-3 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-title-3 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-title-3 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .chy-title-3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-title-3 {
    font-size: 40px;
  }
}

.chy-title-4 {
  font-size: 55px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.55px;
  font-family: var(--urbanist);
  text-transform: capitalize;
  color: var(--chy-h2-color);
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-title-4 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-title-4 {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .chy-title-4 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-title-4 {
    font-size: 40px;
  }
}

/* 
  header-1-start
*/
.header_sticky:is(.sticky) {
  -webkit-transition: all 400ms ease 0s;
  -moz-transition: all 400ms ease 0s;
  -ms-transition: all 400ms ease 0s;
  -o-transition: all 400ms ease 0s;
  transition: all 400ms ease 0s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: slideInDown 0.5s;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-400px);
    -ms-transform: translateY(-400px);
    transform: translateY(-400px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
}

.chy-header-1-area {
  padding-top: 10px;
}
.chy-header-1-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.chy-header-1-wrap .left {
  display: flex;
  align-items: center;
  gap: 40px;
}
.chy-header-1-wrap .chy-logo {
  flex: 0 0 auto;
  padding: 20px 0;
}

.chy-cart-1 {
  position: relative;
}
.chy-cart-1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  background: #dcdcdc;
  height: 40px;
  width: 1.5px;
}
.chy-cart-1 input {
  max-width: 300px;
  border: none;
  outline: none;
  background: #fff;
  height: 60px;
  border-radius: 30px;
  display: inline-block;
  padding: 0 65px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--urbanist);
  color: var(--chy-h1-1);
}
.chy-cart-1 input::placeholder {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--urbanist);
  color: #504e4e;
  text-transform: capitalize;
}
.chy-cart-1 .search-icon {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
  color: var(--chy-h1-color);
}
.chy-cart-1 .cart-btn-position {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.chy-main-menu-1 .main-navigation .navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: row;
  gap: 25px;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.chy-main-menu-1 .main-navigation .navbar-nav li {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
}
.chy-main-menu-1 .main-navigation .navbar-nav li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -13px;
  color: #e0e0e0;
  font-weight: 300;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.chy-main-menu-1 .main-navigation .navbar-nav li:is(.dropdown) > a {
  padding-right: 15px;
}
.chy-main-menu-1 .main-navigation .navbar-nav li:is(.dropdown) > a::before {
  content: "\f0d7";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  position: absolute;
  font-size: 14px;
  border-radius: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.chy-main-menu-1 .main-navigation .navbar-nav li a {
  font-family: var(--urbanist);
  font-size: 15px;
  color: #1b1a1a;
  font-weight: 600;
  text-decoration: none;
  padding: 0 8px;
  display: flex;
  align-items: center;
  height: 100%;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: 400ms ease;
  white-space: nowrap;
}
.chy-main-menu-1 .main-navigation .navbar-nav li a:is(.active) {
  color: var(--chy-pr-1);
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu {
  left: 0;
  top: 100%;
  z-index: 100;
  margin: 0px;
  padding: 20px 0;
  height: auto;
  min-width: 250px;
  display: block;
  border-top: 3px solid var(--chy-pr-1);
  border-radius: 0;
  position: absolute;
  background: #fff;
  border-radius: 2px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li {
  display: block;
  margin: 0;
  position: relative;
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li a {
  width: 100%;
  display: block;
  position: relative;
  padding: 14px 30px;
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li a::before {
  right: 20px;
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li a::after {
  width: 12px;
  height: 2px;
  background: var(--chy-gd-1);
  content: "";
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
  position: absolute;
  rotate: 90deg;
  opacity: 0;
  transition: 400ms ease;
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  top: 0%;
  transform: translateY(-50%);
  left: 100%;
  min-width: 250px;
  transform-origin: 0 0 0;
  transform: scaleY(0);
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li:hover > a {
  letter-spacing: 0.5px;
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li:hover > a::after {
  opacity: 1;
  left: 15px;
  rotate: 0deg;
}
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.chy-main-menu-1 .main-navigation .navbar-nav li:hover > a {
  color: var(--chy-pr-1);
}
.chy-main-menu-1 .main-navigation .navbar-nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
}

/* 
header 1
======end====== 
*/
/* 
header 2
======start====== 
*/
.chy-header-2-area {
  padding-top: 35px;
}

.chy-header-2-wrap {
  max-width: 1700px;
  padding-left: 15px;
  padding-right: 15px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li:not(:last-child) {
  margin-right: 46px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li:not(:last-child) {
    margin-right: 20px;
  }
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li a {
  font-size: 20px;
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li a:is(.active) {
  color: var(--chy-pr-2);
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li a:is(.has-new) {
  position: relative;
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li a:is(.has-new)::after {
  content: "new";
  background: var(--chy-pr-2);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  position: absolute;
  top: 9px;
  right: -13px;
  padding: 5px 10px;
  text-transform: uppercase;
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li:hover > a {
  color: var(--chy-pr-2);
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li .dropdown-menu {
  border-top-color: var(--chy-pr-2);
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li .dropdown-menu li {
  margin-right: 0;
}
.chy-main-menu-1:is(.has-menu-2) .main-navigation .navbar-nav li .dropdown-menu li a::after {
  background: var(--chy-pr-2);
}

.chy-header-2-action-btn {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 
header 2
======end====== 
*/
/* 
header 3
======start====== 
*/
.chy-header-3-area {
  padding: 22px 0;
  border-bottom: 10px solid #121212;
  background-color: #fff;
}
.chy-header-3-wrap {
  max-width: 1720px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.chy-main-menu-3 {
  margin-bottom: -25px;
}
.chy-main-menu-3 .main-navigation .navbar-nav {
  display: inherit;
}
.chy-main-menu-3 .main-navigation .navbar-nav li {
  display: inline-block;
  position: relative;
  padding-bottom: 25px;
}
.chy-main-menu-3 .main-navigation .navbar-nav li:not(:last-child)::before {
  background: #000;
  width: 2px;
  height: 16px;
  content: "";
  position: absolute;
  right: -20px;
  top: 33%;
  transform: translateY(-50%);
  transition: 400ms ease;
}
.chy-main-menu-3 .main-navigation .navbar-nav li:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-main-menu-3 .main-navigation .navbar-nav li:not(:last-child) {
    margin-right: 15px;
  }
}
.chy-main-menu-3 .main-navigation .navbar-nav li:is(.dropdown) > a {
  padding-right: 15px;
}
.chy-main-menu-3 .main-navigation .navbar-nav li:is(.dropdown) > a::before {
  content: "\f0d7";
  font-family: "Font Awesome 6 Pro";
  font-weight: 700;
  position: absolute;
  font-size: 14px;
  border-radius: 50%;
  right: 5px;
  top: 49%;
  transform: translateY(-50%);
}
.chy-main-menu-3 .main-navigation .navbar-nav li a {
  font-family: var(--urbanist);
  font-size: 18px;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 15px;
  display: inline-block;
  text-transform: capitalize;
  line-height: 1;
  position: relative;
  transition: 400ms ease;
  border-radius: 4px;
}
.chy-main-menu-3 .main-navigation .navbar-nav li a::after {
  background: #000;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 4px;
  z-index: -1;
  border-radius: 4px;
  transition: 400ms ease;
  opacity: 0;
  transition-delay: 0s;
}
.chy-main-menu-3 .main-navigation .navbar-nav li a:is(.active) {
  background-color: var(--chy-pr-3);
}
.chy-main-menu-3 .main-navigation .navbar-nav li a:is(.active)::after {
  transform: translate(1px, 8px);
  opacity: 1;
  transition-delay: 0.2s;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu {
  left: 0;
  top: 100%;
  z-index: 100;
  margin: 0px;
  padding: 10px 0px;
  padding-right: 2px;
  height: auto;
  min-width: 250px;
  display: block;
  border-radius: 0;
  position: absolute;
  background: #fff;
  border-radius: 2px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li {
  display: block;
  margin: 0;
  position: relative;
  padding-bottom: 4px;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li::before {
  display: none;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li a {
  width: 100%;
  display: block;
  position: relative;
  padding: 14px 30px;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li a::before {
  right: 20px;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li a:is(.active) {
  background-color: var(--chy-pr-3);
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li a:is(.active)::after {
  transform: translate(1px, 3px);
  opacity: 1;
  transition-delay: 0.2s;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  top: 0%;
  transform: translateY(-50%);
  left: 100%;
  min-width: 250px;
  transform-origin: 0 0 0;
  transform: scaleY(0);
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li:hover > a {
  letter-spacing: 0.5px;
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li:hover > a::after {
  transform: translate(1px, 3px);
}
.chy-main-menu-3 .main-navigation .navbar-nav li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.chy-main-menu-3 .main-navigation .navbar-nav li:hover > a {
  background-color: var(--chy-pr-3);
}
.chy-main-menu-3 .main-navigation .navbar-nav li:hover > a::after {
  transform: translate(1px, 8px);
  opacity: 1;
  transition-delay: 0.2s;
}
.chy-main-menu-3 .main-navigation .navbar-nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  transform-origin: 0 0 0;
  -webkit-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  -o-transform-origin: 0 0 0;
}

.chy-header-3-action-btn {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-header-3-action-btn .chy-call-1-btn-wrap {
    display: none;
  }
}
@media (max-width: 767px) {
  .chy-header-3-action-btn .chy-call-1-btn-wrap {
    display: none;
  }
}

/* 
header 3
======end====== 
*/
/* 
header 4
======start====== 
*/
.chy-header-4-area {
  padding-top: 45px;
}
.chy-header-4-wrap {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 110px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-header-4-wrap {
    padding-left: 35px;
    padding-right: 35px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .chy-header-4-wrap {
    padding-left: 35px;
    padding-right: 35px;
    gap: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-header-4-wrap {
    padding-left: 35px;
    padding-right: 35px;
    gap: 30px;
  }
}
.chy-header-4-wrap .menu-wrap {
  background: #fff;
  display: flex;
  align-items: center;
  padding-left: 60px;
  padding-right: 7px;
  gap: 90px;
  border-radius: 52px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-header-4-wrap .menu-wrap {
    gap: 30px;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-header-4-wrap .menu-wrap {
    gap: 30px;
    padding-left: 30px;
    border: 0.3px solid rgba(0, 0, 0, 0.1019607843);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-header-4-wrap .menu-wrap {
    gap: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border: 0.3px solid rgba(0, 0, 0, 0.1019607843);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-header-4-wrap .menu-wrap .chy-pr-btn-5 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-header-4-wrap .chy-logo {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-header-4-wrap .chy-main-menu-1 .main-navigation .navbar-nav li:not(:last-child) {
    margin-right: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-header-4-wrap .chy-main-menu-1 .main-navigation .navbar-nav li:not(:last-child) {
    margin-right: 30px;
  }
}
.chy-header-4-wrap .chy-main-menu-1 .main-navigation .navbar-nav li:is(.dropdown) > a {
  padding-right: 15px;
}
.chy-header-4-wrap .chy-main-menu-1 .main-navigation .navbar-nav li a {
  color: var(--chy-h2-color);
  font-weight: 500;
  padding: 28px 0;
}
.chy-header-4-wrap .chy-main-menu-1 .main-navigation .navbar-nav li:hover > a {
  color: var(--chy-pr-4);
}

.chy-header-4-action-button {
  display: flex;
  align-items: center;
  gap: 30px;
}
.chy-header-4-action-button .chy-call-1-btn-wrap {
  flex: 0 0 auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-header-4-action-button .chy-call-1-btn-wrap {
    display: none;
  }
}
.chy-header-4-action-button .chy-call-1-btn-wrap .chy-call-1-content .text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.chy-header-4-action-button .chy-call-1-btn-wrap .chy-call-1-content .phone {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
}
.chy-header-4-action-button .chy-call-1-btn-wrap .chy-call-1-content .phone:hover {
  color: var(--chy-pr-4);
}
.chy-header-4-action-button .chy-search-btn-1 {
  width: unset;
  height: unset;
  font-size: 24px;
  background: transparent;
  color: var(--chy-h2-color);
}
.chy-header-4-action-button .chy-search-btn-1:hover {
  color: var(--chy-pr-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-header-4-action-button .chy-search-btn-1 {
    display: none;
  }
}
@media only screen and (min-width: 1800px) and (max-width: 1900px) {
  .chy-header-4-wrap {
    padding-left: 20px;
  }
}
/* 
header 4
======end====== 
*/
/* 
header innter
======start====== 
*/
.chy-header-1-area:is(.has-inner-page) .chy-main-menu-1 .main-navigation .navbar-nav li a {
  color: white;
}
.chy-header-1-area:is(.has-inner-page) .chy-main-menu-1 .main-navigation .navbar-nav li a:is(.active) {
  color: var(--chy-pr-1);
}
.chy-header-1-area:is(.has-inner-page) .chy-main-menu-1 .main-navigation .navbar-nav li:hover a {
  color: var(--chy-pr-1);
}
.chy-header-1-area:is(.has-inner-page) .chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li a {
  color: #000;
}
.chy-header-1-area:is(.has-inner-page) .chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li a:is(.active) {
  color: var(--chy-pr-1);
}
.chy-header-1-area:is(.has-inner-page) .chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li:hover > a {
  color: var(--chy-pr-1);
}

/* 
header innter
======end====== 
*/
.chy-hero-1-area {
  position: relative;
  padding-top: 140px;
  padding-bottom: 160px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-1-area {
    padding-top: 240px;
  }
}
.chy-hero-1-area .il-shape-4 {
  position: absolute;
  right: -340px;
  bottom: 0;
  opacity: 0;
  transition: 1000ms ease;
}
.chy-hero-1-area:is(.active) .il-shape-4 {
  opacity: 1;
  right: 0;
}
.chy-hero-1-area:is(.active) .chy-hero-1-img .main-img::after {
  width: 90%;
}
.chy-hero-1-area:is(.active) .chy-hero-1-img .main-img img {
  transform: translateY(0%);
}
.chy-hero-1-area:is(.active) .chy-hero-1-content .il-shape-1 {
  top: -80px;
  opacity: 1;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.chy-hero-1-area:is(.active) .chy-hero-1-img .il-shape-2 {
  left: -40px;
  opacity: 1;
}
.chy-hero-1-area:is(.active) .chy-hero-1-img .il-shape-1 {
  right: -30px;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-1-area:is(.active) .chy-hero-1-img .il-shape-1 {
    right: 0;
  }
}
@media (max-width: 767px) {
  .chy-hero-1-area:is(.active) .chy-hero-1-img .il-shape-1 {
    right: 0;
    bottom: 66%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-1-area:is(.active) .chy-hero-1-img .il-shape-1 {
    right: 0;
  }
}
.chy-hero-1-area:is(.active) .chy-hero-1-img .il-shape-3 {
  bottom: -60px;
  opacity: 1;
}
.chy-hero-1-content {
  position: relative;
  max-width: 500px;
  margin-bottom: -70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-1-content {
    margin-bottom: 50px;
  }
}
.chy-hero-1-content .subtitle {
  text-transform: capitalize;
  padding-left: 0;
}
.chy-hero-1-content .subtitle::after {
  display: none;
}
.chy-hero-1-content .title {
  font-size: 90px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: -2px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-hero-1-content .title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-1-content .title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-1-content .title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .chy-hero-1-content .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-1-content .title {
    font-size: 50px;
  }
}
.chy-hero-1-content .disc {
  color: var(--chy-h1-color);
  font-weight: 500;
  margin-bottom: 35px;
  letter-spacing: 0.2px;
}
.chy-hero-1-content .btn-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.chy-hero-1-content .il-shape-1 {
  position: absolute;
  right: -90px;
  top: -20px;
  opacity: 0;
  transition: 1500ms ease;
  transition-delay: 1.2s;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}
@media (max-width: 767px) {
  .chy-hero-1-content .il-shape-1 {
    right: 0px;
    width: 50%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-1-content .il-shape-1 {
    right: -250px;
    width: 100%;
  }
}

.chy-hero-1-img {
  text-align: center;
  position: relative;
}
.chy-hero-1-img::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(-3deg, rgb(253, 59, 69) 0%, rgb(250, 134, 64) 100%);
  left: 23%;
  top: 42%;
  animation: chyh1curle 4s infinite ease-in-out;
  transition-delay: 2s;
  z-index: 1;
}
.chy-hero-1-img::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(-3deg, rgb(253, 59, 69) 0%, rgb(250, 134, 64) 100%);
  right: 20%;
  top: 35%;
  animation: chyh1curle 3s infinite ease-in-out;
  transition-delay: 2s;
  z-index: 2;
}
.chy-hero-1-img .main-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.chy-hero-1-img .main-img::after {
  width: 0%;
  height: 290px;
  background: #FBF3FD;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-radius: 20px;
  transition: 1000ms ease;
}
.chy-hero-1-img .main-img img {
  transform: translateY(100%);
  transition: 1000ms ease;
  transition-delay: 1s;
}
.chy-hero-1-img .il-shape-1 {
  position: absolute;
  right: -90px;
  bottom: 39%;
  z-index: 1;
  opacity: 0;
  transition: 1000ms ease;
  transition-delay: 1.5s;
}
.chy-hero-1-img .il-shape-2 {
  position: absolute;
  left: -150px;
  bottom: 40px;
  z-index: 1;
  opacity: 0;
  transition: 1500ms ease;
  transition-delay: 1.5s;
}
.chy-hero-1-img .il-shape-3 {
  position: absolute;
  bottom: -120px;
  right: 30px;
  z-index: 1;
  opacity: 0;
  transition: 1000ms ease;
  transition-delay: 1.5s;
}

@keyframes chyh1curle {
  0% {
    scale: 0.2;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.2;
  }
}
.chy-hero-2-area {
  padding-top: 210px;
  padding-bottom: 150px;
  background-position: bottom;
  background-size: cover;
}

.chy-hero-2-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  padding: 0 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-2-item {
    padding: 0 0px;
    flex-wrap: wrap-reverse;
    gap: 100px;
  }
}

.chy-hero-2-item-img {
  position: relative;
  flex: 0 0 auto;
  transform: rotateX(28deg) rotateY(21deg) scale3d(0.12, 0.1, 0.02);
  transition: 1000ms ease-in-out;
}
.chy-hero-2-item-img .il-img-1 {
  position: absolute;
  top: 76px;
  right: -13px;
  z-index: 2;
  rotate: -45deg;
  transition: 2000ms ease-in-out;
}
.chy-hero-2-item-img .il-img-2 {
  position: absolute;
  top: 26px;
  left: -64px;
  z-index: 1;
}
.chy-hero-2-item-img .il-img-3 {
  position: absolute;
  bottom: -80px;
  left: -10px;
}
.chy-hero-2-item-img .main-img {
  max-width: 480px;
  height: 675px;
  position: relative;
  text-align: center;
  display: flex;
  align-items: end;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-2-item-img .main-img {
    max-width: 329px;
    height: 506px;
  }
}
@media (max-width: 767px) {
  .chy-hero-2-item-img .main-img {
    max-width: 280px;
    height: 446px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-2-item-img .main-img {
    max-width: 480px;
    height: 675px;
  }
}
.chy-hero-2-item-img .main-img .person-img {
  position: absolute;
  bottom: 51px;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: 1000ms ease-in-out;
  transition-delay: 0s;
}

.chy-hero-2-item-content .hero-2-subtitle {
  font-size: 20px;
  font-weight: 900;
  background: #141515;
  color: #fff;
  display: inline-block;
  padding: 15px;
  clip-path: polygon(0 0, 100% 30%, 100% 30%, 0% 0%);
  margin-left: 55px;
  transition: 500ms ease-in-out;
}
.chy-hero-2-item-content .hero-2-title {
  background: var(--chy-pr-2);
  color: #fff;
  font-size: 84px;
  font-weight: 900;
  display: inline-block;
  padding-top: 10px;
  padding-left: 50px;
  padding-right: 60px;
  padding-bottom: 25px;
  clip-path: polygon(6% 0, 100% 0, 100% 0%, 0% 0%);
  letter-spacing: -3px;
  transition: 500ms ease-in-out;
  transition-delay: 0.5s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-2-item-content .hero-2-title {
    font-size: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-2-item-content .hero-2-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .chy-hero-2-item-content .hero-2-title {
    font-size: 50px;
    padding-left: 25px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-2-item-content .hero-2-title {
    font-size: 60px;
    padding-left: 50px;
    padding-right: 60px;
  }
}
.chy-hero-2-item-content .hero-2-title-2 {
  background: #E1EAEA;
  font-size: 84px;
  font-weight: 900;
  display: inline-block;
  padding-top: 15px;
  padding-left: 40px;
  padding-right: 60px;
  padding-bottom: 15px;
  clip-path: polygon(6% 14%, 94% 0, 100% 0%, 0% 15%);
  letter-spacing: -3px;
  margin-top: -18px;
  margin-bottom: 20px;
  transition: 500ms ease-in-out;
  transition-delay: 1s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-2-item-content .hero-2-title-2 {
    font-size: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-2-item-content .hero-2-title-2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .chy-hero-2-item-content .hero-2-title-2 {
    font-size: 50px;
    padding-left: 25px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-2-item-content .hero-2-title-2 {
    font-size: 60px;
    padding-left: 50px;
    padding-right: 60px;
  }
}
.chy-hero-2-item-content .hero-2-disc {
  color: #575757;
  font-weight: 500;
  margin-bottom: 43px;
  transform: translateY(50px);
  opacity: 0;
  transition: 1000ms ease;
  transition-delay: 0s;
}
.chy-hero-2-item-content .chy-pr-btn-3 {
  transform: translateY(50px);
  opacity: 0;
  transition-delay: 0s;
}

.chy-hero-2-slider {
  position: relative;
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .hero-2-subtitle {
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0% 100%);
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .hero-2-title {
  clip-path: polygon(6% 0, 100% 0, 100% 81%, 0% 100%);
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .hero-2-title-2 {
  clip-path: polygon(6% 14%, 94% 0, 100% 100%, 0% 100%);
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .hero-2-disc {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.4s;
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .chy-pr-btn-3 {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 1s;
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .chy-hero-2-item-img {
  transform: none;
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .chy-hero-2-item-img .main-img .person-img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition-delay: 0.8s;
}
.chy-hero-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-2-item .chy-hero-2-item-img .il-img-1 {
  rotate: 0deg;
}
.chy-hero-2-slider .chy_hero_2_prev, .chy-hero-2-slider .chy_hero_2_next {
  width: 74px;
  height: 74px;
  background: #030303;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  transition: 400ms ease;
  z-index: 3;
}
@media (max-width: 767px) {
  .chy-hero-2-slider .chy_hero_2_prev, .chy-hero-2-slider .chy_hero_2_next {
    width: 45px;
    height: 45px;
  }
}
.chy-hero-2-slider .chy_hero_2_prev:hover, .chy-hero-2-slider .chy_hero_2_next:hover {
  background: var(--chy-pr-2);
}
.chy-hero-2-slider .chy_hero_2_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -207px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-hero-2-slider .chy_hero_2_prev {
    left: -80px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-hero-2-slider .chy_hero_2_prev {
    left: -60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-hero-2-slider .chy_hero_2_prev {
    left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-2-slider .chy_hero_2_prev {
    left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-2-slider .chy_hero_2_prev {
    left: 0px;
  }
}
@media (max-width: 767px) {
  .chy-hero-2-slider .chy_hero_2_prev {
    left: 0px;
  }
}
.chy-hero-2-slider .chy_hero_2_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -207px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-hero-2-slider .chy_hero_2_next {
    right: -80px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-hero-2-slider .chy_hero_2_next {
    right: -60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-hero-2-slider .chy_hero_2_next {
    right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-2-slider .chy_hero_2_next {
    right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-2-slider .chy_hero_2_next {
    right: 0px;
  }
}
@media (max-width: 767px) {
  .chy-hero-2-slider .chy_hero_2_next {
    right: 0px;
  }
}

.chy-hero-3-item-wrap {
  position: relative;
  padding-top: 210px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .chy-hero-3-item-wrap {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-3-item-wrap {
    padding-top: 210px;
  }
}
.chy-hero-3-item-wrap .bg-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.chy-hero-3-item-wrap .bg-img img {
  --_g: 10% /45% 45% no-repeat linear-gradient(#000 0 0);
  --m:
    left var(--_i,0%) top var(--_g),
    bottom var(--_i,0%) left var(--_g),
    top var(--_i,0%) right var(--_g),
    right var(--_i,0%) bottom var(--_g);
  -webkit-mask: var(--m);
  mask: var(--m);
  filter: grayscale(1);
  transition: 1s linear;
  scale: 1.2;
  transition-delay: 0.3s;
}

.chy-hero-3-item {
  position: relative;
}
.chy-hero-3-item .il-img-2 {
  position: absolute;
  left: 240px;
  bottom: -180px;
  transform: rotateY(90deg);
  transition: 1.5s ease-in-out;
  transition-delay: 0.7s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-3-item .il-img-2 {
    left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-3-item .il-img-2 {
    display: none;
  }
}
.chy-hero-3-item .il-img-1 {
  position: absolute;
  left: -40px;
  top: -90px;
  transform: rotate(114deg) scale(0);
  transition: 2s ease-in-out;
  transition-delay: 0.3s;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-hero-3-item .il-img-1 {
    left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-3-item .il-img-1 {
    display: none;
  }
}

.chy-hero-3-item-content {
  max-width: 575px;
  margin-left: auto;
}
.chy-hero-3-item-content .hero-3-subtitle {
  font-size: 19px;
  font-weight: 900;
  background: #141515;
  color: #fff;
  display: inline-block;
  padding: 15px;
  clip-path: polygon(0 0, 100% 20%, 100% 20%, 0% 0%);
  margin-left: 45px;
  transition: 500ms ease-in-out;
  transition-delay: 0.3s;
}
.chy-hero-3-item-content .hero-3-title {
  background: var(--chy-pr-3);
  color: var(--chy-h1-color);
  font-size: 84px;
  font-weight: 900;
  display: inline-block;
  padding: 5px 30px;
  padding-bottom: 10px;
  letter-spacing: -3px;
  clip-path: polygon(0 0, 93% 0, 100% 0%, 0 0%);
  padding-right: 40px;
  transition: 500ms ease-in-out;
  transition-delay: 0.8s;
  margin-left: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-3-item-content .hero-3-title {
    font-size: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-3-item-content .hero-3-title {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .chy-hero-3-item-content .hero-3-title {
    font-size: 50px;
    padding-left: 25px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-3-item-content .hero-3-title {
    font-size: 60px;
    padding-left: 50px;
    padding-right: 60px;
  }
}
.chy-hero-3-item-content .hero-3-title-2 {
  background: white;
  font-size: 84px;
  font-weight: 900;
  display: inline-block;
  padding-top: 15px;
  padding-left: 40px;
  padding-right: 60px;
  padding-bottom: 15px;
  letter-spacing: -3px;
  margin-bottom: 45px;
  transition: 500ms ease-in-out;
  transition-delay: 1.3s;
  clip-path: polygon(0% 0, 92% 11%, 100% 12%, 0 0%);
  margin-top: -15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-3-item-content .hero-3-title-2 {
    font-size: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-3-item-content .hero-3-title-2 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .chy-hero-3-item-content .hero-3-title-2 {
    font-size: 50px;
    padding-left: 25px;
    padding-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-3-item-content .hero-3-title-2 {
    font-size: 60px;
    padding-left: 50px;
    padding-right: 60px;
  }
}
.chy-hero-3-item-content .btn-position {
  transform: translateY(100px);
  transition: 1s ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
}

.chy-hero-3-slider {
  position: relative;
}
.chy-hero-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-3-item-wrap .bg-img img {
  --_i: 10%;
  filter: grayscale(0);
}
.chy-hero-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-3-item-wrap .chy-hero-3-item .il-img-1 {
  transform: rotate(0deg) scale(1);
}
.chy-hero-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-3-item-wrap .chy-hero-3-item .il-img-2 {
  transform: rotateY(0deg);
}
.chy-hero-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-3-item-wrap .chy-hero-3-item .chy-hero-3-item-content .hero-3-subtitle {
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}
.chy-hero-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-3-item-wrap .chy-hero-3-item .chy-hero-3-item-content .hero-3-title {
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 85%);
}
.chy-hero-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-3-item-wrap .chy-hero-3-item .chy-hero-3-item-content .hero-3-title-2 {
  clip-path: polygon(4% 0, 92% 11%, 100% 100%, 0 100%);
}
.chy-hero-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-hero-3-item-wrap .chy-hero-3-item .chy-hero-3-item-content .btn-position {
  transform: translateY(0px);
  opacity: 1;
}
.chy-hero-3-slider .chy_hero_2_prev, .chy-hero-3-slider .chy_hero_2_next {
  width: 89px;
  height: 89px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #000;
  transition: 400ms ease;
  z-index: 3;
}
@media (max-width: 767px) {
  .chy-hero-3-slider .chy_hero_2_prev, .chy-hero-3-slider .chy_hero_2_next {
    width: 45px;
    height: 45px;
  }
}
.chy-hero-3-slider .chy_hero_2_prev:hover, .chy-hero-3-slider .chy_hero_2_next:hover {
  background: var(--chy-pr-3);
  border-color: transparent;
}
.chy-hero-3-slider .chy_hero_2_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2vw;
}
@media (max-width: 767px) {
  .chy-hero-3-slider .chy_hero_2_prev {
    top: 90%;
  }
}
.chy-hero-3-slider .chy_hero_2_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2vw;
}
@media (max-width: 767px) {
  .chy-hero-3-slider .chy_hero_2_next {
    top: 90%;
  }
}

.chy-hero-4-wrap {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.chy-hero-4-wrap .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  z-index: -1;
}
.chy-hero-4-wrap .bg-img img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-4-wrap .bg-img img {
    object-fit: cover;
  }
}
.chy-hero-4-content-wrap {
  padding-top: 170px;
  padding-bottom: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-hero-4-content-wrap {
    padding-top: 225px;
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-4-content-wrap {
    padding-top: 255px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-4-content-wrap {
    padding-top: 210px;
    padding-bottom: 30px;
  }
}

.chy-hero-4-content {
  margin-bottom: 175px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-4-content {
    margin-bottom: 50px;
  }
}
.chy-hero-4-content .hero-title {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.21;
  margin-bottom: 25px;
}
.chy-hero-4-content .hero-title span {
  display: inline-block;
  color: var(--chy-pr-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-hero-4-content .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-hero-4-content .hero-title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .chy-hero-4-content .hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-4-content .hero-title {
    font-size: 50px;
  }
}
.chy-hero-4-content .disc {
  color: #515670;
  margin-bottom: 50px;
  margin-bottom: 50px;
}
.chy-hero-4-content .btn-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 42px;
}

.chy-hero-img {
  position: relative;
  text-align: right;
}
.chy-hero-img .il-img-1, .chy-hero-img .il-img-2, .chy-hero-img .il-img-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 2000ms cubic-bezier(0.13, 0.37, 0.58, 1);
  transition-delay: 1s;
}
.chy-hero-img .il-img-3 {
  left: 70%;
  top: 50%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-img .il-img-3 {
    display: none;
  }
}
.chy-hero-img .il-img-2 {
  top: 50%;
  left: 70%;
}
.chy-hero-img .il-img-1 {
  top: 50%;
  left: 70%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-img .il-img-1 {
    display: none;
  }
}
.chy-hero-img .main-img {
  overflow: hidden;
}
.chy-hero-img .main-img img {
  transform: translateY(100%);
  transition: 1000ms cubic-bezier(0.13, 0.37, 0.58, 1);
  transition-delay: 1.5s;
}
.chy-hero-img:is(.active) .il-img-3 {
  left: 100%;
  top: 60%;
  width: 200px;
}
.chy-hero-img:is(.active) .il-img-2 {
  top: 86%;
  left: 50%;
}
.chy-hero-img:is(.active) .il-img-1 {
  top: 40%;
  left: 23%;
}
.chy-hero-img:is(.active) .main-img img {
  transform: translateY(0%);
}

.chy-hero-4-social {
  position: absolute;
  top: 45%;
  left: 4vw;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-hero-4-social {
    display: none;
  }
}
.chy-hero-4-social .text {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 3.29px;
  writing-mode: vertical-lr;
  margin-left: 17px;
  font-weight: 600;
  padding-bottom: 76px;
  margin-bottom: 30px;
  position: relative;
  background: var(--Linear, linear-gradient(90deg, #30067C -2.17%, #6441C1 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chy-hero-4-social .text::after {
  position: absolute;
  width: 1px;
  height: 45px;
  background: linear-gradient(90deg, #5A1CCB -2.17%, #815EDC 100%);
  content: "";
  left: 7px;
  bottom: 0;
}
.chy-hero-4-social li:not(:last-child) {
  margin-bottom: 25px;
}
.chy-hero-4-social li a {
  display: inline-block;
  background: linear-gradient(90deg, #70DBFF 0%, #DD98FF 100%);
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  width: 52px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  color: #fff;
  transition: 400ms;
}
.chy-hero-4-social li a:hover {
  color: #000;
}

.chy-hero-4-scroll-btn-wrap {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 4vw;
  transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .chy-hero-4-scroll-btn-wrap {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-hero-4-scroll-btn-wrap {
    display: block;
  }
}
.chy-hero-4-scroll-btn-wrap .text {
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  writing-mode: vertical-lr;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #131835;
  margin-left: 12px;
  margin-bottom: 28px;
}
.chy-hero-4-scroll-btn-wrap .icon {
  position: relative;
  display: block;
  width: 57px;
  height: 57px;
  text-align: center;
  line-height: 60px;
  font-size: 20px;
  background: linear-gradient(90deg, #5A1CCB -2.17%, #815EDC 100%);
  border-radius: 50%;
  color: #fff;
  animation: colorChange 3s linear infinite;
  filter: drop-shadow(0px 13px 69px rgba(84, 104, 133, 0.09));
}
.chy-hero-4-scroll-btn-wrap .icon::after {
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  background: transparent;
  border-radius: 50%;
  border: 1px solid #774ED8;
  scale: 1.3;
  animation: scroll-btn-4 5s infinite ease-in-out;
}

@keyframes scroll-btn-4 {
  0% {
    scale: 0.8;
    opacity: 0;
  }
  50% {
    scale: 1.3;
    opacity: 1;
  }
  100% {
    scale: 0.8;
    opacity: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1900px) {
  .chy-hero-4-wrap .bg-img {
    padding: 30px 10px;
  }
}
.chy-trusted-1-area {
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

.chy-trusted-1-wrap {
  padding: 35px 45px;
  background: #191918;
  border-radius: 118px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 15px;
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-trusted-1-wrap {
    grid-template-columns: 1fr 1fr;
    border-radius: 30px;
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .chy-trusted-1-wrap {
    grid-template-columns: 1fr;
    border-radius: 30px;
    padding-left: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-trusted-1-wrap {
    grid-template-columns: 1fr 1fr;
    border-radius: 30px;
    padding-left: 45px;
  }
}

.chy-trusted-1-item {
  border-radius: 10px;
  overflow: hidden;
}
.chy-trusted-1-item:nth-child(2) {
  border-radius: 85px 10px 10px 85px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-trusted-1-item:nth-child(2) {
    border-radius: 10px 10px 10px 10px;
  }
}
.chy-trusted-1-item:nth-child(4) {
  border-radius: 10px 85px 85px 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-trusted-1-item:nth-child(4) {
    border-radius: 10px 10px 10px 10px;
  }
}

.chy-trusted-1-title {
  font-size: 37px;
  color: #fff;
  line-height: 1.35;
  font-weight: 800;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .chy-trusted-1-title {
    font-size: 25px;
    margin-top: 0px;
  }
}
.chy-trusted-1-title span {
  display: inline-block;
  animation: chy-t1-title 4s infinite ease-in-out;
}
.chy-trusted-1-title .icon-3 {
  animation: chy-t1-title 5s infinite ease-in-out;
}
.chy-trusted-1-title .icon-2 {
  animation: chy-t1-title 5s infinite ease-in-out;
}

@keyframes chy-t1-title {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.chy-trusted-1-video {
  position: relative;
  width: 100%;
  height: 100%;
}
.chy-trusted-1-video img {
  filter: grayscale(1);
}
.chy-trusted-1-video .chy-plybtn-1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chy-trusted-1-reating {
  height: 100%;
  background: #fff;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chy-trusted-1-reating .text {
  font-size: 17px;
  line-height: 25px;
  font-weight: 800;
}
.chy-trusted-1-reating .line {
  width: 100%;
  height: 1px;
  background: #eeeeee;
  display: block;
  margin-bottom: 10px;
}
.chy-trusted-1-reating .icon {
  font-size: 18px;
  color: #ea9034;
  margin-right: 3px;
  line-height: 1;
  margin-bottom: 10px;
}

.chy-trusted-1-progress {
  background: #fff;
  padding: 25px;
}
.chy-trusted-1-progress .title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 7px;
}
.chy-trusted-1-progress .line {
  display: block;
  width: 100%;
  height: 1px;
  background: #eeeeee;
  margin-bottom: 7px;
}
.chy-trusted-1-progress .number {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 5px;
}

.chy-trusted-1-progress-item .title {
  font-size: 14px;
  margin-bottom: 0;
}
.chy-trusted-1-progress-item .line {
  display: block;
  max-width: 163px;
  height: 13px;
  background: #EAEAEA;
  border-radius: 6.5px;
  position: relative;
  overflow: hidden;
}
.chy-trusted-1-progress-item .line .line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #9946EC;
  border-radius: 6.5px;
  transition: 5s;
}
.chy-trusted-1-progress-item:is(.active) .line .line-fill {
  width: 80%;
}

.chy-trusted-2-area .animation-line {
  height: 2px;
  width: 100%;
  background: #dddddd;
  display: block;
}
.chy-trusted-2-content {
  margin-top: -40px;
}
@media (max-width: 767px) {
  .chy-trusted-2-content {
    margin-top: 0px;
  }
}
.chy-trusted-2-content .title {
  font-size: 35px;
  color: #0d161a;
  font-weight: 900;
  margin-bottom: 10px;
}
.chy-trusted-2-content .disc {
  letter-spacing: 0.3px;
  margin-bottom: 30px;
}
.chy-trusted-2-content .team-group .title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}
.chy-trusted-2-slider-item {
  padding: 35px;
  border-radius: 30px;
  background: #fff;
  width: 100%;
}
.chy-trusted-2-slider-item .icon {
  width: 75px;
  height: 75px;
  display: flex;
  justify-content: center;
  line-height: 85px;
  background: #e7e3f2;
  border-radius: 50%;
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
}
.chy-trusted-2-slider-item .icon:is(.has-bg) {
  background: #ffecc9;
}
.chy-trusted-2-slider-item .title {
  font-size: 25px;
  font-weight: 800;
  color: #0d161a;
  margin-bottom: 8px;
}
.chy-trusted-2-slider-item .disc {
  letter-spacing: 0.2px;
}

.chy-trusted-2-slider {
  position: relative;
}
@media (max-width: 767px) {
  .chy-trusted-2-slider {
    margin-top: 50px;
  }
}
.chy-trusted-2-slider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 100px;
  background: #000;
  filter: blur(81px);
  opacity: 0.1;
}

.chy-trusted-2-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  padding-top: 30px;
  min-height: 20px;
  min-height: 52px;
}
.chy-trusted-2-pagination span {
  width: 11px;
  height: 11px;
  opacity: 1;
  background: #d6d6d6;
}
.chy-trusted-2-pagination span:is(.swiper-pagination-bullet-active) {
  background: var(--chy-pr-2);
  width: 19px;
  height: 19px;
}

.chy-trusted-3-area {
  position: relative;
  z-index: 1;
}
.chy-trusted-3-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-trusted-3-wrap {
    grid-template-columns: 1fr;
  }
}

.chy-trusted-3-content .title {
  font-size: 35px;
  font-weight: 800;
  color: #272324;
  margin-bottom: 10px;
}
.chy-trusted-3-content .disc {
  margin-bottom: 25px;
}
.chy-trusted-3-content .t3-btn {
  font-size: 19px;
  font-weight: 900;
  text-transform: capitalize;
  font-family: var(--urbanist);
  color: #272324;
  text-decoration: underline;
  transition: 400ms ease-in-out;
}
.chy-trusted-3-content .t3-btn:hover {
  color: cadetblue;
}

.chy-trusted-3-counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .chy-trusted-3-counter {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
  }
}
.chy-trusted-3-counter .item {
  position: relative;
}
.chy-trusted-3-counter .item::after {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--chy-pr-3);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  z-index: -1;
}
.chy-trusted-3-counter .item:is(.no-after)::after {
  display: none;
}
.chy-trusted-3-counter .number {
  font-size: 78px;
  font-weight: 800;
  color: #202022;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-trusted-3-counter .number {
    font-size: 50px;
  }
}
.chy-trusted-3-counter .disc {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #202022;
}
.chy-trusted-3-counter .icon {
  animation: chyt3ani 10s infinite ease;
  display: block;
  line-height: 1;
}
@media (max-width: 767px) {
  .chy-trusted-3-counter .icon {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-trusted-3-counter .icon {
    display: block;
  }
}

@keyframes chyt3ani {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.chy-services-1-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-1-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .chy-services-1-wrap {
    grid-template-columns: 1fr;
  }
}

.chy-services-1-item {
  text-align: center;
  background: #1c1c2d;
  border-radius: 190px 190px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.chy-services-1-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--chy-gd-1);
  z-index: -1;
  border-radius: 190px 190px 0 0;
  top: 430px;
  opacity: 0;
  transition: 400ms ease;
}
.chy-services-1-item .header {
  padding-top: 50px;
  padding-bottom: 25px;
  border-bottom: 1px solid #46465c;
  padding-left: 55px;
  padding-right: 55px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-services-1-item .header {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-1-item .header {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .chy-services-1-item .header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.chy-services-1-item .icon {
  width: 70px;
  margin: auto;
  margin-bottom: 25px;
}
.chy-services-1-item .title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-1-item .title {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .chy-services-1-item .title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-1-item .title {
    font-size: 30px;
  }
}
.chy-services-1-item .disc {
  color: #fff;
}
.chy-services-1-item-list {
  text-align: left;
}
.chy-services-1-item-list li {
  font-size: 20px;
  color: #fff;
  font-weight: 800;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .chy-services-1-item-list li {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-1-item-list li {
    font-size: 20px;
  }
}
.chy-services-1-item-list li:not(:last-child) {
  margin-bottom: 8px;
}
.chy-services-1-item-list li i {
  font-size: 13px;
  margin-right: 5px;
  position: relative;
  z-index: 1;
}
.chy-services-1-item-list li i::after {
  width: 21px;
  height: 16px;
  content: "";
  position: absolute;
  left: -6px;
  top: -3px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  opacity: 0.2;
  transition: 600ms ease;
  z-index: -4;
}
.chy-services-1-item .body {
  position: relative;
  padding-top: 24px;
  padding-bottom: 35px;
  padding-left: 55px;
  padding-right: 55px;
}
@media (max-width: 767px) {
  .chy-services-1-item .body {
    padding-left: 25px;
    padding-right: 45px;
    padding-bottom: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-1-item .body {
    padding-left: 55px;
    padding-right: 85px;
  }
}
.chy-services-1-item .s1-btn {
  display: flex;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  line-height: 50px;
  font-size: 25px;
  color: #fff;
  position: absolute;
  right: 25px;
  bottom: 40px;
  transition: 400ms ease;
}
@media (max-width: 767px) {
  .chy-services-1-item .s1-btn {
    right: unset;
    left: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-1-item .s1-btn {
    right: unset;
    left: 50px;
    bottom: 20px;
  }
}
.chy-services-1-item:hover::after {
  top: 0;
  opacity: 1;
}
.chy-services-1-item:hover .header {
  border-color: #9845ED;
}
.chy-services-1-item:hover .chy-services-1-item-list li i::after {
  background: #FB3937;
  opacity: 1;
}
.chy-services-1-item:hover .s1-btn {
  color: #000000;
  border-color: #000000;
}
.chy-services-1-item:hover .s1-btn:hover {
  background: #000;
  color: #fff;
  border-color: transparent;
  rotate: 45deg;
}

.chy-services-1-counter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 2px solid var(--chy-h1-color);
  border-top: none;
  padding: 55px 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-1-counter {
    padding: 55px 25px;
    border-top: 2px solid var(--chy-h1-color);
  }
}
@media (max-width: 767px) {
  .chy-services-1-counter {
    padding: 55px 25px;
    border-top: 2px solid var(--chy-h1-color);
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-1-counter {
    padding: 55px 25px;
    border-top: 2px solid var(--chy-h1-color);
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }
}

.chy-services-1-counter-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 2px solid var(--chy-h1-color);
}
@media (max-width: 767px) {
  .chy-services-1-counter-item {
    border-right: none;
  }
}
.chy-services-1-counter-item:nth-child(2) {
  justify-content: center;
}
@media (max-width: 767px) {
  .chy-services-1-counter-item:nth-child(2) {
    justify-content: left;
  }
}
.chy-services-1-counter-item:nth-child(3) {
  justify-self: end;
  border-right: none;
}
@media (max-width: 767px) {
  .chy-services-1-counter-item:nth-child(3) {
    justify-self: left;
  }
}
.chy-services-1-counter-item .number {
  font-size: 65px;
  line-height: 1;
  font-weight: 800;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-1-counter-item .number {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .chy-services-1-counter-item .number {
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-1-counter-item .number {
    font-size: 40px;
  }
}
.chy-services-1-counter-item .disc {
  font-size: 25px;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-services-1-counter-item .disc {
    font-size: 18px;
  }
}

.chy-services-2-item-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .chy-services-2-item-wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-2-item-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
.chy-services-2-item-wrap > .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .chy-services-2-item-wrap > .icon {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-2-item-wrap > .icon {
    display: block;
  }
}

.chy-services-2-item {
  background: #fff;
  box-shadow: -3.032px 10.574px 70px 0px rgba(12, 12, 12, 0.07);
  border-radius: 30px;
  text-align: center;
  padding: 50px 40px;
}
@media (max-width: 767px) {
  .chy-services-2-item {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-2-item {
    padding: 50px 20px;
  }
}
.chy-services-2-item .icon {
  font-size: 55px;
  color: #000;
  line-height: 1;
  margin-bottom: 20px;
}
.chy-services-2-item .title {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 10px;
  transition: 400ms ease-in-out;
}
.chy-services-2-item .title:hover {
  color: var(--chy-pr-2);
}

.chy-services-2-item {
  transition: 600ms ease-out;
  transition-delay: 0.3s;
}
.chy-services-2-item-wrap:is(.active) .chy-services-2-item {
  transform: translate(0px, 0px);
}
.chy-services-2-item:nth-child(2) {
  transform: translate(-30px, -30px);
}
.chy-services-2-item:nth-child(3) {
  transform: translate(30px, -30px);
}
.chy-services-2-item:nth-child(4) {
  transform: translate(-30px, 30px);
}
.chy-services-2-item:nth-child(5) {
  transform: translate(30px, 30px);
}

.chy-services-2-content {
  padding-left: 65px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-services-2-content {
    padding-left: 0;
    padding-right: 26vw;
    padding-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-2-content {
    padding-left: 0;
    padding-right: 10vw;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .chy-services-2-content {
    padding-left: 0;
    padding-right: 0;
    padding-top: 50px;
  }
}

.chy-services-2-work {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}
.chy-services-2-work .title {
  font-size: 20px;
  font-weight: 800;
}
.chy-services-2-work .number {
  font-size: 80px;
  font-weight: 800;
  color: var(--chy-pr-2);
}
@media (max-width: 767px) {
  .chy-services-2-work .number {
    font-size: 70px;
  }
}

.chy-services-3-content {
  padding-right: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-services-3-content {
    padding-right: 0px;
    padding-bottom: 60px;
  }
}
.chy-services-3-content .chy-services-2-work .title {
  color: #272324;
}
.chy-services-3-content .chy-services-2-work .number {
  font-size: 70px;
  color: var(--chy-pr-3);
}

.chy-services-3-item-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 25px;
}
@media (max-width: 767px) {
  .chy-services-3-item-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-3-item-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.chy-services-3-item {
  overflow: hidden;
  text-align: center;
  border: 1px solid;
  border-color: rgb(239, 239, 239);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 55px 20px;
  border-radius: 300px;
}
.chy-services-3-item .title {
  font-size: 21px;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-services-3-item .title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .chy-services-3-item .title {
    font-size: 18px;
  }
}
.chy-services-3-item .title:hover {
  color: var(--chy-pr-3);
}
.chy-services-3-item .icon {
  margin-bottom: 23px;
}

.chy-services-4-wrap {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1920px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-4-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .chy-services-4-wrap {
    grid-template-columns: 1fr;
  }
}

.chy-services-4-item {
  background: #EFF2FF;
  background: #EFF2FF;
  padding: 85px 100px;
  padding-bottom: 35px;
  transition: 0.5s ease-in-out;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-services-4-item {
    padding: 85px 60px;
    padding-bottom: 35px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-services-4-item {
    padding: 85px 50px;
    padding-bottom: 35px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-services-4-item {
    padding: 85px 40px;
    padding-bottom: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-4-item {
    padding: 60px 30px;
    padding-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .chy-services-4-item {
    padding: 60px 20px;
    padding-bottom: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-4-item {
    padding: 60px 80px;
    padding-bottom: 35px;
  }
}
.chy-services-4-item .main-img {
  width: 100%;
  height: 145px;
  overflow: hidden;
  border-radius: 300px;
  margin-bottom: 23px;
}
.chy-services-4-item .main-img .rotatedscal {
  height: 100%;
}
.chy-services-4-item .title {
  font-size: 37.32px;
  font-weight: 800;
  color: #0d0d0d;
  line-height: 1.56;
  margin-bottom: 13px;
  padding-left: 25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-services-4-item .title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-services-4-item .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-services-4-item .title {
    padding-left: 0px;
    font-size: 25px;
  }
}
.chy-services-4-item .disc {
  font-size: 18.66px;
  color: #262524;
  line-height: 28px;
  margin-bottom: 13px;
  padding-left: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-services-4-item .disc {
    padding-left: 0px;
  }
}
.chy-services-4-item-list {
  padding-left: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-services-4-item-list {
    padding-left: 0px;
  }
}
.chy-services-4-item-list li {
  font-family: var(--urbanist);
  font-weight: 800;
  color: #262524;
  text-transform: capitalize;
  transition: 0.4s ease-in-out;
}
.chy-services-4-item-list li:not(:last-child) {
  margin-bottom: 9px;
}
.chy-services-4-item-list li i {
  width: 25px;
  height: 25px;
  display: inline-flex;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--chy-pr-3);
  margin-right: 3px;
  transition: 0.4s ease-in-out;
}
.chy-services-4-item .s4-btn {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #262524;
  margin-left: 25px;
  transition: 0.4s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-services-4-item .s4-btn {
    margin-left: 0px;
  }
}
.chy-services-4-item .s4-btn:hover {
  background: #000;
  color: var(--chy-pr-3);
}
.chy-services-4-item:is(.has-black) {
  background: #0D0D0D;
}
.chy-services-4-item:is(.has-black) .title {
  color: #fff;
}
.chy-services-4-item:is(.has-black) .disc {
  color: #fff;
}
.chy-services-4-item:is(.has-black) .chy-services-4-item-list li {
  color: #fff;
}
.chy-services-4-item:is(.has-black):is(.active) .title {
  color: #0d0d0d;
}
.chy-services-4-item:is(.has-black):is(.active) .disc {
  color: #262524;
}
.chy-services-4-item:is(.has-black):is(.active) .chy-services-4-item-list li {
  color: #262524;
}
.chy-services-4-item:is(.has-black):is(.active) .chy-services-4-item-list li i {
  background: #000;
  color: #fff;
}
.chy-services-4-item:is(.active) {
  background: var(--chy-pr-3);
}
.chy-services-4-item:is(.active) .chy-services-4-item-list li i {
  background-color: #000;
  color: #fff;
}

.chy-services-5-area {
  background: rgba(200, 174, 255, 0.12);
}
.chy-services-5-area .s5-all-btn {
  font-size: 20px;
  font-weight: 500;
  color: #252A4E;
  line-height: 30px;
}
.chy-services-5-area .s5-all-btn a {
  color: var(--chy-pr-4);
}

.chy-services-5-item-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-services-5-item-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .chy-services-5-item-wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-5-item-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.chy-services-5-item {
  padding: 40px;
  position: relative;
  z-index: 1;
  transition: 400ms ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-services-5-item {
    border: 1px solid rgba(200, 174, 255, 0.5);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-services-5-item {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .chy-services-5-item {
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-services-5-item {
    padding: 30px 15px;
  }
}
.chy-services-5-item:nth-child(1) {
  border-right: 1px solid rgba(200, 174, 255, 0.5);
  border-bottom: 1px solid rgba(200, 174, 255, 0.5);
}
.chy-services-5-item:nth-child(1) .icon::before {
  background: rgba(210, 149, 255, 0.7);
}
.chy-services-5-item:nth-child(2) {
  border-right: 1px solid rgba(200, 174, 255, 0.5);
  border-bottom: 1px solid rgba(200, 174, 255, 0.5);
}
.chy-services-5-item:nth-child(2)::after {
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
}
.chy-services-5-item:nth-child(2) .icon {
  color: #FF7469;
}
.chy-services-5-item:nth-child(2) .icon::after {
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
}
.chy-services-5-item:nth-child(2) .icon::before {
  background: #FFCEC4;
}
.chy-services-5-item:nth-child(3) {
  border-bottom: 1px solid rgba(200, 174, 255, 0.5);
}
.chy-services-5-item:nth-child(3)::after {
  background: linear-gradient(90deg, #34AACF -2.17%, #30D8DF 100%);
}
.chy-services-5-item:nth-child(3) .icon {
  color: #34AACF;
}
.chy-services-5-item:nth-child(3) .icon::after {
  background: linear-gradient(90deg, #34AACF -2.17%, #30D8DF 100%);
}
.chy-services-5-item:nth-child(3) .icon::before {
  background: #0b97a3;
}
.chy-services-5-item:nth-child(4) {
  border-right: 1px solid rgba(200, 174, 255, 0.5);
}
.chy-services-5-item:nth-child(4)::after {
  background: linear-gradient(90deg, #FFA835 -3.85%, #FA3DCC 97.3%, #FA3AD0 100%);
}
.chy-services-5-item:nth-child(4) .icon {
  color: #FFA835;
}
.chy-services-5-item:nth-child(4) .icon::after {
  background: linear-gradient(90deg, #FFA835 -3.85%, #FA3DCC 97.3%, #FA3AD0 100%);
}
.chy-services-5-item:nth-child(4) .icon::before {
  background: #ce4b82;
}
.chy-services-5-item:nth-child(5) {
  border-right: 1px solid rgba(200, 174, 255, 0.5);
}
.chy-services-5-item:nth-child(5)::after {
  background: linear-gradient(85deg, #0050FF -0.78%, #00E9CC 97.77%);
}
.chy-services-5-item:nth-child(5) .icon {
  color: #0050FF;
}
.chy-services-5-item:nth-child(5) .icon::after {
  background: linear-gradient(85deg, #0050FF -0.78%, #00E9CC 97.77%);
}
.chy-services-5-item:nth-child(5) .icon::before {
  background: #009FE5;
}
.chy-services-5-item:nth-child(6)::after {
  background: linear-gradient(90deg, #5A1CCB -2.17%, #815EDC 100%);
}
.chy-services-5-item:nth-child(6) .icon {
  color: #5A1CCB;
}
.chy-services-5-item:nth-child(6) .icon::after {
  background: linear-gradient(90deg, #5A1CCB -2.17%, #815EDC 100%);
}
.chy-services-5-item:nth-child(6) .icon::before {
  background: #805DDC;
}
.chy-services-5-item::after {
  content: "";
  width: 10%;
  height: 10%;
  background: var(--chy-gd-2);
  position: absolute;
  top: 70px;
  left: 60px;
  border-radius: 50%;
  transition: 400ms ease-in-out;
  z-index: -1;
}
.chy-services-5-item .icon {
  width: 82px;
  height: 82px;
  background: #F4F0FF;
  border-radius: 50%;
  text-align: center;
  font-size: 45px;
  line-height: 92px;
  position: relative;
  color: var(--chy-pr-4);
  margin-bottom: 28px;
  transition: 400ms ease-in-out;
}
.chy-services-5-item .icon i {
  position: relative;
  z-index: 2;
}
.chy-services-5-item .icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--chy-gd-2);
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  z-index: -1;
  transition: 400ms ease-in-out;
}
.chy-services-5-item .icon::before {
  content: "";
  width: 100%;
  height: 100%;
  background: transparent;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 50%;
  z-index: 1;
  transition: 400ms ease-in-out;
  opacity: 0;
}
.chy-services-5-item .title {
  font-size: 26px;
  line-height: 1.38;
  font-weight: 800;
  margin-bottom: 15px;
  transition: 400ms ease-in-out;
}
@media (max-width: 767px) {
  .chy-services-5-item .title {
    font-size: 22px;
  }
}
.chy-services-5-item .disc-wrap {
  overflow: hidden;
  height: 120px;
}
.chy-services-5-item .disc {
  margin-bottom: 16px;
  height: 100%;
  overflow: hidden;
  transition: 400ms ease-in-out;
}
.chy-services-5-item .s5-btn {
  display: block;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  line-height: 30px;
  opacity: 0;
  transition: 400ms ease-in-out;
  margin-bottom: -40px;
}
.chy-services-5-item .s5-btn i {
  margin-left: 5px;
}
.chy-services-5-item .s5-btn:hover {
  color: #000;
}
.chy-services-5-item:hover {
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.1607843137);
}
.chy-services-5-item:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0;
}
.chy-services-5-item:hover .title {
  color: #fff;
}
.chy-services-5-item:hover .disc {
  height: 90px;
  color: #fff;
}
.chy-services-5-item:hover .icon {
  color: #fff;
  background: transparent;
}
.chy-services-5-item:hover .icon::after {
  top: 0px;
  left: 0px;
  z-index: 1;
}
.chy-services-5-item:hover .icon::before {
  opacity: 1;
}
.chy-services-5-item:hover .s5-btn {
  opacity: 1;
  transform: translateY(-20px);
}
.chy-solutions-1-content {
  margin-right: -50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-solutions-1-content {
    margin-right: 0px;
    margin-bottom: 50px;
  }
}
.chy-solutions-1-content .section-title-wrap .chy-section-para-1 {
  max-width: 480px;
}
.chy-solutions-1-content .inner-div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 440px;
}
.chy-solutions-1-content .inner-div .inner-img {
  box-shadow: 0px 2px 42.14px 6.86px rgba(28, 28, 45, 0.06);
  border-radius: 10px;
  overflow: hidden;
}
.chy-solutions-1-content .inner-div .inner-img img {
  width: 100%;
  height: 100%;
}
.chy-solutions-1-img {
  position: relative;
  padding-left: 130px;
}
@media (max-width: 767px) {
  .chy-solutions-1-img {
    padding-left: 0px;
  }
}

.chy-solutions-1-goals {
  background: #fff;
  box-shadow: 0px 14px 60.2px 9.8px rgba(28, 28, 45, 0.2);
  border-radius: 30px;
  position: absolute;
  bottom: -20px;
  left: 60px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-solutions-1-goals {
    bottom: -140px;
  }
}
@media (max-width: 767px) {
  .chy-solutions-1-goals {
    position: unset;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-solutions-1-goals {
    position: absolute;
    margin-top: 0px;
  }
}
.chy-solutions-1-goals .title {
  font-size: 27px;
  font-weight: 900;
  padding-top: 20px;
  padding-left: 40px;
  margin-bottom: 12px;
}

.chy-solutions-1-goals-item {
  padding: 20px 35px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.chy-solutions-1-goals-item .icon {
  width: 66px;
  height: 66px;
  background: #E1FFFD;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 35px;
  color: #000;
  flex: 0 0 auto;
}
.chy-solutions-1-goals-item .number {
  font-size: 30px;
  font-weight: 900;
}
.chy-solutions-1-goals-item .disc {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.chy-solutions-1-goals-item:is(.has-bg) {
  background: #FFF6F6;
}
.chy-solutions-1-goals-item:is(.has-bg) .icon {
  background: #F1FFA4;
}

.chy-solutions-2-area {
  padding-top: 130px;
  padding-bottom: 100px;
}

.chy-solutions-2-content {
  max-width: 530px;
}
.chy-solutions-2-content .section-title-wrap .chy-title-2 {
  color: #fff;
}
.chy-solutions-2-content .section-title-wrap .chy-para-2 {
  color: #fff;
}
.chy-solutions-2-content .inner-div {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.solutions-2-list li {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-transform: capitalize;
  font-family: var(--urbanist);
}
.solutions-2-list li:not(:last-child) {
  margin-bottom: 10px;
}
.solutions-2-list li i {
  color: var(--chy-pr-2);
  margin-right: 5px;
}

.chy-solutions-2-wrap {
  position: relative;
}
.chy-solutions-2-wrap::after {
  content: "";
  width: 380px;
  height: 670px;
  background: #b6c2c6;
  position: absolute;
  top: -190px;
  left: 46%;
  border-radius: 190px 190px 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-solutions-2-wrap::after {
    height: 510px;
    top: unset;
    bottom: -100px;
  }
}
@media (max-width: 767px) {
  .chy-solutions-2-wrap::after {
    display: none;
  }
}
.chy-solutions-2-wrap .chy-plybtn-2 {
  background: transparent;
  color: var(--chy-pr-2);
  position: absolute;
  right: -280px;
  bottom: -60px;
  z-index: 2;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-solutions-2-wrap .chy-plybtn-2 {
    right: -130px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-solutions-2-wrap .chy-plybtn-2 {
    right: -50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-solutions-2-wrap .chy-plybtn-2 {
    right: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-solutions-2-wrap .chy-plybtn-2 {
    right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-solutions-2-wrap .chy-plybtn-2 {
    display: none;
  }
}
.chy-solutions-2-wrap .hand-img {
  position: absolute;
  bottom: -100px;
  right: -20px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-solutions-2-wrap .hand-img {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .chy-solutions-2-wrap .hand-img {
    display: none;
  }
}
.chy-solutions-2-wrap .all-icon {
  position: absolute;
  top: -130px;
  right: 230px;
  width: 40%;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-solutions-2-wrap .all-icon {
    display: none;
  }
}

.chy-solutions-2-counter-wrap {
  max-width: 215px;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-solutions-2-counter-wrap {
    margin-top: 50px;
    position: unset;
  }
}

.chy-solutions-2-counter:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 2px solid var(--chy-pr-2);
  margin-bottom: 30px;
}
.chy-solutions-2-counter .number {
  font-size: 60px;
  color: var(--chy-pr-2);
  font-weight: 800;
  margin-bottom: 5px;
}
.chy-solutions-2-counter .disc {
  font-size: 17px;
  line-height: 25px;
  color: #e3e3e3;
  letter-spacing: 0.3px;
}

.chy-solutions-3-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 767px) {
  .chy-solutions-3-wrap {
    grid-template-columns: 1fr;
  }
}
.chy-solutions-3-wrap .line {
  display: block;
  grid-column-start: 1;
  grid-column-end: -1;
  height: 2px;
  background: #f1f1f1;
}
.chy-solutions-3-content .disc {
  margin-bottom: 38px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-solution-4-content {
    margin-bottom: 50px;
  }
}
.chy-solution-4-content .section-title-wrap .chy-para-4 {
  max-width: 540px;
}

.chy-solution-4-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D9D4EB;
}
@media (max-width: 767px) {
  .chy-solution-4-feature {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-solution-4-feature {
    grid-template-columns: auto 1fr;
  }
}
.chy-solution-4-feature li {
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--chy-h2-color);
  line-height: 30px;
}
.chy-solution-4-feature li i {
  display: inline-block;
  margin-right: 3px;
  transform: translateY(2px);
  color: var(--chy-pr-4);
}

.chy-solution-4-img {
  padding: 27px;
  padding-left: 5px;
  position: relative;
}
.chy-solution-4-img .bg-color {
  position: absolute;
  top: 0;
  right: 0;
  width: 95%;
  height: 90%;
  z-index: -1;
  border-radius: 0px 0px 0px 200px;
}
.chy-solution-4-img .il-img {
  position: absolute;
  bottom: 0;
  left: -170px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-solution-4-img .il-img {
    left: -70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-solution-4-img .il-img {
    left: -30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-solution-4-img .il-img {
    left: 0px;
  }
}
@media (max-width: 767px) {
  .chy-solution-4-img .il-img {
    left: 0px;
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-solution-4-img .il-img {
    left: 0;
    display: block;
  }
}
.chy-solution-4-img .main-img {
  width: 100%;
  height: 470px;
  overflow: hidden;
  border-radius: 0px 0px 0px 200px;
}
@media (max-width: 767px) {
  .chy-solution-4-img .main-img {
    height: 350px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-solution-4-img .main-img {
    height: 470px;
  }
}

.chy-research-1-area .section-title-wrap {
  max-width: 520px;
  margin: auto;
  margin-bottom: 80px;
}
.chy-research-1-area .section-title-wrap .chy-title-1, .chy-research-1-area .section-title-wrap .chy-subtitle-1, .chy-research-1-area .section-title-wrap .chy-section-para-1 {
  color: #333;
}

.chy-research-1-item {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}
.chy-research-1-item .main-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  margin-bottom: 15px;
}
.chy-research-1-item .main-img img {
  transition: 1000ms ease-in-out;
}
.chy-research-1-item .title {
  font-size: 28px;
  color: #333;
  font-weight: 800;
  line-height: 1.38;
  margin-bottom: 6px;
}
.chy-research-1-item .disc {
  color: #555;
}
.chy-research-1-item .icon {
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: -10px;
  left: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 400ms ease-in-out;
}
.chy-research-1-item .icon img {
  width: 60%;
}
.chy-research-1-item:hover .icon {
  transform: rotateY(180deg);
  background: var(--chy-pr-1);
}
.chy-research-1-item:hover .main-img > img {
  scale: 1.05;
  transform: rotateZ(10deg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-research-2-area {
    padding-bottom: 120px;
  }
}

.chy-research-2-img {
  position: relative;
  padding-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-research-2-img {
    padding-right: 30px;
  }
}
.chy-research-2-img .img-icon {
  position: absolute;
  left: -30px;
  top: 0;
}
.chy-research-2-content {
  padding-left: 20px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-research-2-content {
    padding-left: 0px;
    padding-bottom: 0px;
    padding-top: 50px;
  }
}
.chy-research-2-list li {
  font-weight: 800;
  font-size: 18px;
  line-height: 30px;
}
.chy-research-2-list li:not(:last-child) {
  margin-bottom: 10px;
}
.chy-research-2-list li i {
  color: var(--chy-pr-2);
  font-size: 16px;
  margin-right: 3px;
}
.chy-research-2-progress {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
}

.chy-research-2-progress-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.chy-research-2-progress-item .progress-circle canvas {
  background-color: #fff;
  border-radius: 50%;
}
.chy-research-2-progress-item .progress-circle .knob {
  font-size: 20px !important;
  color: #191825 !important;
  font-weight: 800 !important;
  font-family: var(--urbanist) !important;
}
.chy-research-2-progress-item .title {
  font-size: 20px;
  font-weight: 800;
  line-height: 25px;
}

.chy-research-3-wrap {
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-research-3-wrap {
    margin-left: 0px;
    margin-right: 0px;
  }
}
.chy-research-3-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 767px) {
  .chy-research-3-img {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-research-3-img {
    grid-template-columns: 1fr 1fr;
  }
}
.chy-research-3-img .main-img {
  width: 100%;
  height: 530px;
  overflow: hidden;
  border-radius: 300px;
}
.chy-research-3-img .main-img:nth-child(1) {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .chy-research-3-img .main-img {
    height: 400px;
  }
}

.chy-research-3-area {
  position: relative;
  z-index: 1;
}
.chy-research-3-contnet {
  padding-left: 55px;
  margin-top: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-research-3-contnet {
    padding-left: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-research-3-contnet {
    padding-left: 0px;
  }
}

.chy-research-3-list {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px 0;
}
@media (max-width: 767px) {
  .chy-research-3-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-research-3-list {
    grid-template-columns: 1.2fr 1fr;
  }
}
.chy-research-3-list li {
  font-size: 23px;
  font-weight: 800;
  color: #000;
  display: flex;
  align-items: center;
  gap: 13px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-research-3-list li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .chy-research-3-list li {
    font-size: 18px;
  }
}
.chy-research-3-list li i {
  width: 50px;
  height: 50px;
  background: #FFF7F2;
  display: inline-flex;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #FFBD8D;
  flex: 0 0 auto;
  transition: 600ms ease;
}
.chy-research-3-list li:nth-child(2) i {
  background-color: #FEF1F2;
  color: #F5818C;
}
.chy-research-3-list li:nth-child(3) i {
  background-color: #EBFBFF;
  color: #07D3FC;
}
.chy-research-3-list li:nth-child(4) i {
  background-color: #F0FBF7;
  color: #48D39B;
}
.chy-research-3-list li:hover i {
  transform: rotate(360deg) scale(1.3);
}

.chy-price-1-slider-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-price-1-slider-item {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .chy-price-1-slider-item {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}
.chy-price-1-slider-item .right {
  max-width: 580px;
  margin-bottom: -130px;
  transform-origin: 50% 0%;
  transform: rotateX(86deg);
  transition: 800ms ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-price-1-slider-item .right {
    margin-bottom: -70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-price-1-slider-item .right {
    margin-bottom: 0px;
  }
}
.chy-price-1-slider-item .left {
  perspective: 2000px;
  transform-style: preserve-3d;
}
.chy-price-1-slider-item .transform-orgn {
  perspective: 2000px;
  transform-style: preserve-3d;
}
.chy-price-1-slider-item .innter-div {
  display: flex;
  gap: 120px;
}
@media (max-width: 767px) {
  .chy-price-1-slider-item .innter-div {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-1-slider-item .innter-div {
    flex-wrap: nowrap;
    gap: 100px;
  }
}
.chy-price-1-slider-item-img {
  position: relative;
  transform: rotateX(-90deg);
  transition: 800ms ease-in-out;
  transform-origin: 50% 100%;
}
.chy-price-1-slider-item-img .chy_price_1_next {
  background: #fff;
  width: 60px;
  height: 40px;
  border-radius: 5px;
  box-shadow: 0px 14px 60.2px 9.8px rgba(28, 28, 45, 0.07);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--chy-pr-1);
  opacity: 0;
  scale: 0;
  transition: 500ms;
  z-index: 22;
  position: absolute;
}
.chy-price-1-slider-item-img:hover .chy_price_1_next {
  opacity: 1;
  scale: 1;
}

.chy-price-1-pricing {
  display: flex;
  align-items: center;
}
.chy-price-1-pricing .dollar {
  font-size: 55px;
  font-weight: 800;
  line-height: 1;
  padding-right: 15px;
  margin-right: 15px;
  border-right: 1px solid #EFEFEF;
}
@media (max-width: 767px) {
  .chy-price-1-pricing .dollar {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-1-pricing .dollar {
    font-size: 50px;
  }
}
.chy-price-1-pricing .monthly {
  font-size: 23px;
  line-height: 25px;
  text-transform: capitalize;
  color: #141515;
}

.chy-price-1-slider {
  padding-left: 65px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-price-1-slider {
    padding-left: 0;
  }
}
.chy-price-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-price-1-slider-item-img {
  transform: rotateX(0deg);
}
.chy-price-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-price-1-slider-item .right {
  transform: rotateX(0deg);
}

.chy-price-1-pagination {
  display: inline-flex;
  width: 20px !important;
  flex-direction: column;
  gap: 18px;
  position: absolute;
  align-items: center;
  top: 50% !important;
  left: 40px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-price-1-pagination {
    display: flex;
    width: 100% !important;
    flex-direction: row;
    justify-content: center;
    position: unset;
    padding-top: 40px;
  }
}
.chy-price-1-pagination span {
  width: 5px;
  height: 5px;
  opacity: 1;
  color: #fff;
  background: #999;
}
.chy-price-1-pagination span:is(.swiper-pagination-bullet-active) {
  width: 17px;
  height: 17px;
  background: #000;
}

.chy-price-1-animation-line {
  width: 10%;
  height: 2px;
  background: #6131E8;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  transition: 2s;
  transition-delay: 0.4s;
}
.chy-price-1-animation-line .icon {
  position: absolute;
  top: -14px;
  left: 0px;
  animation: chy-price-1 26s infinite ease-in-out;
}

@keyframes chy-price-1 {
  0% {
    left: 0;
  }
  50% {
    left: 95%;
  }
  100% {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-price-1-content {
    margin-bottom: 50px;
  }
}
.chy-price-1-content .section-title-wrap .chy-section-para-1 {
  max-width: 480px;
}
.chy-price-1-img {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.chy-price-1-img .animation {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--chy-pr-1);
}

.chy-price-card-1-hight {
  min-height: auto;
  align-items: stretch;
}

.chy-price-card-1-hight .col-xl-4,
.chy-price-card-1-hight .col-lg-6,
.chy-price-card-1-hight .col-md-6 {
  display: flex;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-price-card-1-hight {
    min-height: auto;
    align-items: stretch;
  }
}

.chy-price-card-1-item {
  overflow: hidden;
  position: relative;
  background: #fff;
  border-radius: 30px;
  border-style: solid;
  border-width: 3px;
  border-bottom-width: 6px;
  border-color: rgb(17, 17, 17);
  padding: 40px 35px;
  transition: 400ms ease-in-out;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-price-card-1-item {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .chy-price-card-1-item {
    padding: 25px 15px;
    min-height: 400px;
    text-align: center;
  }
  
  .chy-price-card-1-item .package-icon {
    margin: 0 auto 12px;
  }
  
  .chy-price-card-1-item .title {
    text-align: center;
    margin-bottom: 8px;
  }
  
  .package-features {
    text-align: center;
    margin: 15px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  .package-features li {
    justify-content: center;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  
  .package-buttons {
    text-align: center;
    margin-top: 15px;
  }
  
  .chy-price-card-1-item .date {
    text-align: center;
    margin-top: 15px;
  }
  
  .price-container {
    text-align: center;
    margin: 10px 0;
  }
  
  /* Grid düzenlemeleri */
  .chy-price-card-1-hight .col-6 {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .row.chy-price-card-1-hight {
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-card-1-item {
    padding: 40px 35px;
  }
}
.chy-price-card-1-item .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .chy-price-card-1-item .icon-wrap {
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-card-1-item .icon-wrap {
    padding-right: 40px;
  }
}
.chy-price-card-1-item .icon {
  width: 67px;
  height: 73px;
  border-style: solid;
  border-width: 3px;
  border-bottom-width: 6px;
  border-color: rgb(17, 17, 17);
  border-radius: 10px;
  padding: 5px;
  flex: 0 0 auto;
}
.chy-price-card-1-item .price {
  font-size: 25px;
  font-weight: 900;
  color: #0d161a;
  transition: 400ms ease-in-out;
}
.chy-price-card-1-item .title {
  font-size: 21px;
  font-weight: 900;
  color: #0d161a;
  margin-bottom: 7px;
  transition: 400ms ease-in-out;
}
.chy-price-card-1-item .disc {
  margin-bottom: 32px;
  transition: 400ms ease-in-out;
}
.chy-price-card-1-item .date {
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 35px;
  padding-left: 10px;
  transition: 400ms ease-in-out;
}
.chy-price-card-1-item .pc1-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  text-align: center;
  text-transform: capitalize;
  font-weight: 800;
  font-size: 22px;
  border: 3px solid #0d161a;
  border-radius: 30px;
  border-bottom-width: 6px;
  color: #0d161a;
  padding: 10px 0;
  margin-bottom: 15px;
  overflow: hidden;
  transition: 400ms ease-in-out;
}
.chy-price-card-1-item .pc1-btn::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--chy-gd-1);
  z-index: -1;
  transition: 400ms ease-in-out;
  opacity: 0;
}
.chy-price-card-1-item-list {
  padding-left: 20px;
}
@media (max-width: 767px) {
  .chy-price-card-1-item-list {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-card-1-item-list {
    padding-left: 20px;
  }
}
.chy-price-card-1-item-list li {
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  color: #0d161a;
  transition: 200ms ease-in-out;
}
.chy-price-card-1-item-list li:not(:last-child) {
  margin-bottom: 10px;
}
.chy-price-card-1-item-list li i {
  width: 35px;
  height: 35px;
  border: 2px solid #0d161a;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  border-radius: 50%;
  transition: 200ms ease-in-out;
  margin-right: 7px;
}
.chy-price-card-1-item .style-icon {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 600ms ease;
}
.chy-price-card-1-item:is(.active) {
  background: #132025;
  padding-bottom: 100px;
}
.chy-price-card-1-item:is(.active) .icon {
  border-color: var(--chy-pr-1);
}
.chy-price-card-1-item:is(.active) .price {
  color: #fff;
}
.chy-price-card-1-item:is(.active) .title, .chy-price-card-1-item:is(.active) .disc {
  color: #fff;
}
.chy-price-card-1-item:is(.active) .pc1-btn {
  border-bottom-width: 3px;
  color: #fff;
  border-color: transparent;
}
.chy-price-card-1-item:is(.active) .pc1-btn::after {
  opacity: 1;
  width: 100%;
}
.chy-price-card-1-item:is(.active) .date {
  color: #fff;
}
.chy-price-card-1-item:is(.active) .chy-price-card-1-item-list li {
  color: #fff;
}
.chy-price-card-1-item:is(.active) .chy-price-card-1-item-list li i {
  border-color: transparent;
  background: var(--chy-gd-1);
}
.chy-price-card-1-item:is(.active) .style-icon {
  bottom: 30px;
  opacity: 1;
}

.chy-price-1-area:is(.active) .chy-price-1-animation-line {
  width: 100%;
}

.chy-price-2-slider {
  width: 100%;
  max-width: 1425px;
  margin-left: auto;
  margin-right: auto;
}

.chy-price-2-item .img-item-wrap {
  display: flex;
  align-items: end;
  gap: 25px;
}
.chy-price-2-item .img-item {
  width: 180px;
  height: 255px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .chy-price-2-item .img-item {
    display: none;
  }
}
.chy-price-2-item .img-item-big {
  max-width: 525px;
  height: 415px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-left: 35px;
  margin-right: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-price-2-item .img-item-big {
    max-width: 445px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-price-2-item .img-item-big {
    max-width: 400px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-price-2-item .img-item-big {
    max-width: 350px;
    margin-left: 0;
    margin-right: 0;
    height: 400px;
  }
}
.chy-price-2-item .title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.16;
  color: #030303;
  margin-bottom: 10px;
  transform: translateY(40px);
  opacity: 0;
  transition: 500ms cubic-bezier(0.4, 0, 1, 1);
}
.chy-price-2-item .price {
  font-size: 46px;
  font-weight: 900;
  color: #030303;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  transform: translateY(40px);
  opacity: 0;
  transition: 500ms cubic-bezier(0.4, 0, 1, 1);
  transition-delay: 0s;
}
.chy-price-2-item .price .dollar-sine {
  font-size: 17px;
  text-transform: uppercase;
  margin-top: 6px;
}
.chy-price-2-item .price .sent {
  font-size: 22px;
  margin-top: 3px;
}
.chy-price-2-item .content-wrap {
  background: #fff;
  max-width: 730px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
  margin-top: -360px;
}
.chy-price-2-item .content-wrap .list-wrap {
  display: grid;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 410px;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
@media (max-width: 767px) {
  .chy-price-2-item .content-wrap .list-wrap {
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-2-item .content-wrap .list-wrap {
    padding-left: 20px;
    padding-right: 20px;
    grid-template-columns: 1fr 1.2fr;
  }
}
.chy-price-2-item .content-wrap .list-wrap .month {
  grid-column-start: 1;
  grid-column-end: -1;
  display: inline-block;
  background: #030303;
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  padding: 3px 20px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}
.chy-price-2-item .content-wrap .list-wrap .month::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 2px;
  background: #030303;
  opacity: 0.5;
  z-index: -1;
}
.chy-price-2-item .price-2-btn {
  display: block;
  font-size: 25px;
  font-family: var(--urbanist);
  font-weight: 900;
  text-transform: capitalize;
  background: var(--chy-pr-2);
  text-align: center;
  padding: 25px 10px;
  color: #fff;
  margin-top: -15px;
  transition: 400ms all;
}
.chy-price-2-item .price-2-btn:hover {
  background: var(--chy-h1-color);
}

.chy-price-2-list {
  transform: translateX(40px);
  opacity: 0;
  transition: 500ms cubic-bezier(0.4, 0, 1, 1);
}
.chy-price-2-list li {
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
  color: #0c0c0c;
}
.chy-price-2-list li:not(:last-child) {
  margin-bottom: 10px;
}
.chy-price-2-list li i {
  color: var(--chy-pr-2);
  margin-right: 10px;
}

.chy-price-2-slider {
  position: relative;
}
.chy-price-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-price-2-item .title {
  transform: translateY(0);
  opacity: 1;
}
.chy-price-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-price-2-item .price {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}
.chy-price-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-price-2-list {
  transform: translateX(0);
  opacity: 1;
}
.chy-price-2-slider .chy_price_2_prev, .chy-price-2-slider .chy_price_2_next {
  width: 74px;
  height: 74px;
  background: #030303;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  transition: 400ms ease;
  z-index: 3;
}
@media (max-width: 767px) {
  .chy-price-2-slider .chy_price_2_prev, .chy-price-2-slider .chy_price_2_next {
    width: 45px;
    height: 45px;
  }
}
.chy-price-2-slider .chy_price_2_prev:hover, .chy-price-2-slider .chy_price_2_next:hover {
  background: var(--chy-pr-2);
}
.chy-price-2-slider .chy_price_2_prev {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  left: 21vw;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-price-2-slider .chy_price_2_prev {
    left: 25vw;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-price-2-slider .chy_price_2_prev {
    left: 28vw;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-price-2-slider .chy_price_2_prev {
    left: 28vw;
  }
}
.chy-price-2-slider .chy_price_2_next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  right: 21.5vw;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-price-2-slider .chy_price_2_next {
    right: 26vw;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-price-2-slider .chy_price_2_next {
    right: 28vw;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-price-2-slider .chy_price_2_next {
    right: 28vw;
  }
}

.chy-price-3-tabs {
  border: none;
}
.chy-price-3-tabs-btn {
  border: none;
  justify-content: center;
}
@media (max-width: 767px) {
  .chy-price-3-tabs-btn {
    justify-content: flex-start;
    gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-3-tabs-btn {
    justify-content: center;
    gap: 30px;
  }
}
.chy-price-3-tabs-btn .nav-item {
  position: relative;
}
.chy-price-3-tabs-btn .nav-item:not(:last-child) {
  margin-right: 55px;
}
.chy-price-3-tabs-btn .nav-item:not(:last-child)::after {
  content: "/";
  color: #151f35;
  position: absolute;
  font-size: 24px;
  font-weight: 900;
  top: -2px;
  right: -30px;
}
@media (max-width: 767px) {
  .chy-price-3-tabs-btn .nav-item:not(:last-child)::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-3-tabs-btn .nav-item:not(:last-child)::after {
    display: block;
  }
}
.chy-price-3-tabs-btn .nav-item .nav-link {
  position: relative;
  font-size: 17px;
  line-height: 37px;
  color: #151f35;
  font-weight: 700;
  font-family: var(--urbanist);
  text-transform: capitalize;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
}
.chy-price-3-tabs-btn .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  border-radius: 2px;
  background-color: var(--chy-pr-3);
  bottom: -2px;
  left: 0;
  transition: 400ms ease;
}
.chy-price-3-tabs-btn .nav-item .nav-link:is(.active) {
  color: var(--chy-pr-3);
  border: none;
}
.chy-price-3-tabs-btn .nav-item .nav-link:is(.active)::after {
  width: 100%;
}

.chy-price-3-item {
  background: #fff;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  padding: 42px 45px;
  padding-bottom: 33px;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-price-3-item {
    padding: 42px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-price-3-item {
    padding: 42px 20px;
  }
}
@media (max-width: 767px) {
  .chy-price-3-item {
    padding: 42px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-3-item {
    padding: 42px 45px;
  }
}
.chy-price-3-item .header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .chy-price-3-item .header {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-3-item .header {
    flex-wrap: nowrap;
  }
}
.chy-price-3-item .left {
  display: inline-block;
  background: var(--chy-pr-3);
  padding: 35px 20px;
  border-radius: 50%;
  text-align: center;
}
.chy-price-3-item .price {
  font-size: 26.3px;
  font-weight: 900;
  color: #242424;
  margin-bottom: 5px;
}
.chy-price-3-item .monthly {
  display: block;
  font-size: 13.77px;
  font-weight: 800;
  color: #242424;
}
.chy-price-3-item .title {
  font-size: 34px;
  font-weight: 900;
  color: #272324;
  margin-bottom: 2px;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-price-3-item .title {
    font-size: 30px;
  }
}
.chy-price-3-item .disc {
  font-size: 16px;
  font-weight: 900;
  text-transform: capitalize;
  color: #a2a2a2;
}
.chy-price-3-item-list li {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--urbanist);
  color: #151f35;
  text-transform: capitalize;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
}
@media (max-width: 767px) {
  .chy-price-3-item-list li {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-price-3-item-list li {
    font-size: 20px;
  }
}
.chy-price-3-item-list li:not(:last-child) {
  margin-bottom: 8px;
}
.chy-price-3-item-list li i {
  font-size: 17px;
  margin-right: 5px;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
}
.chy-price-3-item .tax {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #1a1717;
  text-transform: capitalize;
  transition: 0.5s cubic-bezier(0.57, 0.16, 0.35, 0.82);
}
.chy-price-3-item .chy-pr-btn-4:hover::after {
  background: #fff;
}
.chy-price-3-item:is(.active) {
  background-color: #0D0D0D;
}
.chy-price-3-item:is(.active) .title {
  color: #fff;
}
.chy-price-3-item:is(.active) .chy-price-3-item-list li {
  color: #fff;
}
.chy-price-3-item:is(.active) .chy-price-3-item-list li i {
  color: var(--chy-pr-3);
}
.chy-price-3-item:is(.active) .tax {
  color: var(--chy-pr-3);
}

.chy-project-1-area .section-title-wrap {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.chy-project-1-area .section-title-wrap .chy-subtitle-1, .chy-project-1-area .section-title-wrap .chy-title-1 {
  color: #fff;
}

.chy-project-1-item {
  width: 100%;
  height: 490px;
  overflow: hidden;
  position: relative;
  transition: 400ms ease;
}
.chy-project-1-item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  background: linear-gradient(220deg, rgba(2, 6, 38, 0) 62%, rgb(0, 0, 0) 80%);
  width: 100%;
  height: 100%;
}
.chy-project-1-item .content-wrap {
  position: absolute;
  bottom: -30%;
  left: 0;
  z-index: 1;
  padding: 35px 45px;
  width: 100%;
  opacity: 0;
  transition: 500ms cubic-bezier(0.16, 0.43, 0.81, 0.4);
}
@media (max-width: 767px) {
  .chy-project-1-item .content-wrap {
    padding: 35px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-project-1-item .content-wrap {
    padding: 35px 45px;
  }
}
.chy-project-1-item .subtitle {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  background: var(--chy-gd-1);
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.chy-project-1-item .title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.57;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-project-1-item .title {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .chy-project-1-item .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-project-1-item .title {
    font-size: 30px;
  }
}
.chy-project-1-item .title:hover {
  color: var(--chy-pr-1);
}

.chy-project-1-slider {
  position: relative;
}
.chy-project-1-slider .swiper-container {
  padding-top: 55px;
  padding-bottom: 55px;
}
.chy-project-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) {
  z-index: 2;
}
.chy-project-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-project-1-item {
  border-bottom: 10px solid var(--chy-pr-1);
  border-radius: 10px;
  scale: 1.2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-project-1-item {
    scale: 1;
  }
}
.chy-project-1-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-project-1-item .content-wrap {
  bottom: 0;
  opacity: 1;
}

.chy-project-1-slider .chy_project_1_next, .chy-project-1-slider .chy_project_1_prev {
  width: 64px;
  height: 64px;
  background: #000;
  color: #fff;
  font-size: 20px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  line-height: 66px;
}
.chy-project-1-slider .chy_project_1_next:hover, .chy-project-1-slider .chy_project_1_prev:hover {
  background: var(--chy-gd-1);
}
.chy-project-1-slider .chy_project_1_next {
  position: absolute;
  right: 29vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-project-1-slider .chy_project_1_next {
    right: 23vw;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-project-1-slider .chy_project_1_next {
    right: 22vw;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-project-1-slider .chy_project_1_next {
    right: 20vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-1-slider .chy_project_1_next {
    position: unset;
  }
}
.chy-project-1-slider .chy_project_1_prev {
  position: absolute;
  left: 29vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-project-1-slider .chy_project_1_prev {
    left: 23vw;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-project-1-slider .chy_project_1_prev {
    left: 22vw;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-project-1-slider .chy_project_1_prev {
    left: 20vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-1-slider .chy_project_1_prev {
    position: unset;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-1-slider .chy-project-1-slider-btn {
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
    display: flex;
  }
}

.chy-project-3-item {
  position: relative;
}
.chy-project-3-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--chy-pr-3);
  clip-path: polygon(5% 5%, 60% 50%, 95% 95%, 57% 63%);
  transition: clip-path 500ms cubic-bezier(0.55, 0.06, 0.26, 0.71);
  opacity: 0;
}
.chy-project-3-item .main-img {
  height: 580px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-3-item .main-img {
    height: 450px;
  }
}
.chy-project-3-item .content-wrap {
  position: absolute;
  bottom: -200px;
  left: 0;
  width: 100%;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: end;
  padding: 60px 65px;
  z-index: 1;
  transition: 600ms cubic-bezier(0.55, 0.06, 0.26, 0.71);
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-3-item .content-wrap {
    padding: 60px 15px;
  }
}
.chy-project-3-item .subtitle {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.chy-project-3-item .title {
  font-size: 35px;
  font-weight: 900;
  color: #fff;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-project-3-item .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-3-item .title {
    font-size: 26px;
  }
}
.chy-project-3-item .p3-btn {
  font-size: 30px;
  line-height: 1;
  color: #FFF;
}
.chy-project-3-item:hover .content-wrap {
  bottom: 0px;
}
.chy-project-3-item:hover::after {
  clip-path: polygon(5% 5%, 90% 10%, 95% 95%, 7% 93%);
  transition: 600ms cubic-bezier(0.55, 0.06, 0.26, 0.71);
  opacity: 0.6;
}

.chy-project-3-slider {
  position: relative;
}
.chy-project-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-project-3-item .content-wrap {
  bottom: 0px;
}
.chy-project-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-project-3-item::after {
  clip-path: polygon(5% 5%, 90% 10%, 95% 95%, 7% 93%);
  opacity: 0.6;
}
@media (max-width: 767px) {
  .chy-project-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-project-3-item .content-wrap {
    bottom: 0px;
  }
  .chy-project-3-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-project-3-item::after {
    clip-path: polygon(5% 5%, 90% 10%, 95% 95%, 7% 93%);
    opacity: 0.6;
  }
}
.chy-project-3-slider .chy_project_3_prev, .chy-project-3-slider .chy_project_3_next {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #000;
  transition: 400ms ease;
  z-index: 3;
}
@media (max-width: 767px) {
  .chy-project-3-slider .chy_project_3_prev, .chy-project-3-slider .chy_project_3_next {
    width: 45px;
    height: 45px;
  }
}
.chy-project-3-slider .chy_project_3_prev:hover, .chy-project-3-slider .chy_project_3_next:hover {
  background: var(--chy-pr-3);
  border-color: transparent;
}
.chy-project-3-slider .chy_project_3_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2vw;
}
.chy-project-3-slider .chy_project_3_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2vw;
}

.position-sticky-item {
  position: sticky;
  top: 100px;
}

.project-page-item {
  position: relative;
}
.project-page-item .main-img {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.project-page-item .main-img::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 65.82%);
}
@media (max-width: 767px) {
  .project-page-item .main-img {
    height: 430px;
  }
}
.project-page-item .number {
  display: inline-block;
  font-size: 120px;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 10px;
  color: #fff;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .project-page-item .number {
    font-size: 80px;
  }
}
.project-page-item .content-wrap {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 60px 15px;
}
.project-page-item .subtitle {
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  line-height: 26px;
  background: #F08441;
  color: #fff;
  padding: 16px 30px;
  border-radius: 50px;
  margin-bottom: 7px;
}
.project-page-item .title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
}
.project-page-item .title:hover {
  color: var(--chy-pr-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-page-item .title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .project-page-item .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-page-item .title {
    font-size: 34px;
  }
}
.project-page-item .btn-position {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project-page-item .pp-btn {
  z-index: 1;
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  font-size: 70px;
  line-height: 150px;
  text-align: center;
  color: #fff;
  transition: 400ms ease-in-out;
}
.project-page-item .pp-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--chy-gd-1);
  position: absolute;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: 400ms ease-in-out;
}
.project-page-item .pp-btn:hover {
  border-color: transparent;
}
.project-page-item .pp-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

.project-page-2-item {
  border-radius: 10px;
  border: 1px solid rgba(30, 54, 146, 0.5);
  padding: 20px;
  overflow: hidden;
  height: 450px;
  transition: 400ms cubic-bezier(0.44, 0.42, 0.06, 0.67);
}
.project-page-2-item .project-page-item {
  height: 100%;
}
.project-page-2-item .project-page-item .main-img {
  height: 100%;
  border-radius: 10px;
}
.project-page-2-item .project-page-item .pp-btn {
  width: 110px;
  height: 110px;
  border: 2px solid #fff;
  font-size: 50px;
  line-height: 120px;
}
.project-page-2-item .project-page-item .title {
  font-size: 30px;
}
@media (max-width: 767px) {
  .project-page-2-item .project-page-item .title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-page-2-item .project-page-item .title {
    font-size: 22px;
  }
}
.project-page-2-item .project-page-item .content-wrap {
  padding: 16px 15px;
  bottom: -30%;
  transition: 600ms cubic-bezier(0.44, 0.42, 0.06, 0.67);
  opacity: 0;
  padding-bottom: 40px;
}
.project-page-2-item .project-page-item .subtitle {
  padding: 10px 30px;
}
.project-page-2-item .project-page-item .btn-position {
  top: 65%;
  opacity: 0;
  transition: 400ms cubic-bezier(0.44, 0.42, 0.06, 0.67);
}
.project-page-2-item .project-page-item .pp-btn:hover {
  border-color: transparent;
}
.project-page-2-item:hover {
  padding: 0;
}
.project-page-2-item:hover .project-page-item .btn-position {
  opacity: 1;
  top: 30%;
}
.project-page-2-item:hover .project-page-item .content-wrap {
  bottom: 0%;
  opacity: 1;
}

.chy-project-4-area {
  position: relative;
}
.chy-project-4-area .bg-img {
  width: 46%;
  height: 659px;
  border-radius: 0 500px 500px 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-4-area .bg-img {
    width: 100%;
    height: 350px;
  }
}
.chy-project-4-area .bg-color {
  display: block;
  width: 60%;
  height: 670px;
  background: #FFF7F6;
  top: 30px;
  right: 0;
  position: absolute;
  border-radius: 500px 0px 0px 500px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-4-area .bg-color {
    top: unset;
    bottom: 0;
    width: 100%;
    height: 70%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-4-content {
    margin-bottom: 100px;
  }
}
.chy-project-4-content .chy-title-4 {
  margin-bottom: 48px;
  color: #fff;
}

.chy-project-4-feature-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-project-4-feature-wrap {
    padding-left: 0px;
  }
}
@media (max-width: 767px) {
  .chy-project-4-feature-wrap {
    padding-left: 0px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-project-4-feature-wrap {
    padding-left: 0px;
    grid-template-columns: 1fr 1fr;
  }
}

.chy-project-4-feature {
  text-align: center;
  position: relative;
  padding: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-project-4-feature {
    padding: 40px 0;
  }
}
.chy-project-4-feature .icon {
  font-size: 75px;
  color: #FF816A;
  line-height: 1;
}
.chy-project-4-feature .number {
  font-size: 52px;
  font-weight: 900;
  text-transform: capitalize;
  margin-bottom: 6px;
}
.chy-project-4-feature .text {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--chy-h2-color);
}
.chy-project-4-feature:is(.has-affte-before)::after {
  content: "";
  width: 85%;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
  opacity: 0.4;
}
@media (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before)::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before)::after {
    display: block;
  }
}
.chy-project-4-feature:is(.has-affte-before)::before {
  content: "";
  width: 2px;
  height: 80%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  position: absolute;
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
  opacity: 0.4;
}
@media (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before)::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before)::before {
    display: block;
  }
}
.chy-project-4-feature:is(.has-affte-before2)::after {
  content: "";
  width: 85%;
  height: 2px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
  opacity: 0.4;
}
@media (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before2)::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before2)::after {
    display: block;
  }
}
.chy-project-4-feature:is(.has-affte-before2)::before {
  content: "";
  width: 2px;
  height: 80%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  position: absolute;
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
  opacity: 0.4;
}
@media (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before2)::before {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-project-4-feature:is(.has-affte-before2)::before {
    display: block;
  }
}

.chy-project-5-area .section-title-wrap {
  max-width: 775px;
  margin-right: auto;
  margin-left: auto;
}
.chy-project-5-area .section-title-wrap .chy-para-4 {
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.chy-project-5-wrap {
  align-items: start;
  display: flex;
  gap: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-project-5-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.chy-project-5-wrap2 {
  display: flex;
  gap: 30px;
  align-items: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-project-5-wrap2 {
    grid-template-columns: 1fr 1fr;
  }
}

.chy-project-5-item {
  flex: 0 0 auto;
}
.chy-project-5-item .main-img {
  position: relative;
  width: 682px;
  height: 730px;
  overflow: hidden;
  border-radius: 0 0 100px 100px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-project-5-item .main-img {
    border-radius: 0 0 50px 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-5-item .main-img {
    border-radius: 0 0 50px 50px;
    height: 530px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-5-item .main-img {
    border-radius: 0 0 50px 50px;
    height: 530px;
    width: 100%;
  }
}
.chy-project-5-item .main-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(129, 94, 220, 0) 0%, #815EDC 100%);
  transition: 400ms ease-in-out;
  opacity: 0;
}
.chy-project-5-item .main-img .btn-position {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: 400ms ease-in-out;
}
.chy-project-5-item .content-wrap {
  position: absolute;
  bottom: -100%;
  left: 0;
  padding: 50px;
  z-index: 1;
  width: 100%;
  transition: 400ms cubic-bezier(0.32, 0.36, 0.58, 1);
  opacity: 0;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-5-item .content-wrap {
    padding: 30px;
  }
}
.chy-project-5-item .subtitle {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
  display: inline-block;
  padding: 7px 20px;
  color: #fff;
  border-radius: 6px;
}
.chy-project-5-item .title {
  font-size: 32px;
  line-height: 1.06;
  font-weight: 700;
  background: #E7E0F2;
  padding: 20px;
  border-radius: 5px;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-project-5-item .title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .chy-project-5-item .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-project-5-item .title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-5-item .title {
    font-size: 20px;
  }
}
.chy-project-5-item .title:hover {
  color: var(--chy-pr-4);
}
.chy-project-5-item .p5-btn {
  z-index: 1;
  position: relative;
  display: inline-block;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  font-size: 70px;
  line-height: 160px;
  text-align: center;
  color: #fff;
  transition: 400ms ease-in-out;
}
.chy-project-5-item .p5-btn::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--chy-gd-1);
  position: absolute;
  z-index: -1;
  transform: scale(0);
  opacity: 0;
  transition: 400ms ease-in-out;
}
.chy-project-5-item .p5-btn:hover {
  border-color: transparent;
}
.chy-project-5-item .p5-btn:hover::after {
  opacity: 1;
  transform: scale(1);
}
.chy-project-5-item:hover .main-img .btn-position {
  top: 40%;
  opacity: 1;
}
.chy-project-5-item:hover .main-img::after {
  opacity: 1;
}
.chy-project-5-item:hover .main-img .content-wrap {
  bottom: 0%;
  opacity: 1;
}
.chy-project-5-item:is(.has-height-1) .main-img {
  height: 610px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-5-item:is(.has-height-1) .main-img {
    height: 430px;
  }
}
.chy-project-5-item:is(.has-height-2) .main-img {
  height: 770px;
  border-radius: 0 0 50px 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-project-5-item:is(.has-height-2) .main-img {
    height: 500px;
  }
}
.chy-project-5-item:is(.has-style-1) .main-img {
  border-radius: 100px 100px 0 0;
}

.chy-team-1-area {
  position: relative;
  z-index: 1;
}
.chy-team-1-area .bg-shape {
  position: absolute;
  width: 100%;
  height: 595px;
  background: #eddfff;
  bottom: 0px;
  z-index: -1;
}
.chy-team-1-area .section-title-wrap {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.chy-team-1-wrap {
  display: flex;
  justify-content: center;
  gap: 50px 140px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-team-1-wrap {
    gap: 30px 30px;
  }
}
@media (max-width: 767px) {
  .chy-team-1-wrap {
    gap: 30px 30px;
    flex-wrap: wrap;
  }
}
.chy-team-1-wrap .il-img-2 {
  width: 40px;
  z-index: 1;
  position: absolute;
  left: 48%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: chyh1curle 10s infinite ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-team-1-wrap .il-img-2 {
    display: none;
  }
}
.chy-team-1-wrap .il-img-3 {
  width: 80px;
  z-index: 1;
  position: absolute;
  left: 51%;
  top: 64%;
  transform: translate(-50%, -50%);
  animation: chyh1curle 7s infinite ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-team-1-wrap .il-img-3 {
    display: none;
  }
}

.chy-team-1-member {
  position: relative;
  padding-left: 50px;
  padding-bottom: 50px;
  padding-top: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-team-1-member {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .chy-team-1-member {
    padding-left: 0;
    padding-bottom: 0px;
    padding-top: 0px;
  }
}
.chy-team-1-member .main-img {
  position: relative;
  max-width: 440px;
  height: 525px;
  overflow: hidden;
  border-radius: 20px 20px 190px 190px;
  transition: all 0.3s cubic-bezier(0.55, 0.06, 0.47, 0.66);
}
.chy-team-1-member .text-img {
  position: absolute;
  left: 0;
  bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-team-1-member .text-img {
    display: none;
  }
}
.chy-team-1-member .content-wrap {
  background: #fff;
  text-align: center;
  padding: 23px 7px;
  border-radius: 10px;
  position: absolute;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: all 0.3s cubic-bezier(0.55, 0.06, 0.47, 0.66);
}
.chy-team-1-member .name {
  font-size: 22px;
  color: var(--chy-h1-color);
  margin-bottom: 5px;
}
.chy-team-1-member .name:hover {
  color: var(--chy-pr-1);
}
.chy-team-1-member .bio {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
}
.chy-team-1-member:is(.has-style-2) {
  padding-left: 0;
  padding-right: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-team-1-member:is(.has-style-2) {
    padding-right: 0px;
  }
}
.chy-team-1-member:is(.has-style-2) .main-img {
  border-radius: 190px 190px 20px 20px;
}
.chy-team-1-member:is(.has-style-2) .text-img {
  left: unset;
  bottom: unset;
  right: 0;
  top: 20px;
}
.chy-team-1-member:hover .main-img {
  filter: grayscale(1);
}
.chy-team-1-member:hover .main-img .content-wrap {
  bottom: 0;
}

.chy-team-slider-1-wrap {
  padding-left: 70px;
  padding-right: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-team-slider-1-wrap {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.chy-team-slider-1-item {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 767px) {
  .chy-team-slider-1-item {
    flex-wrap: wrap;
  }
}
.chy-team-slider-1-item .main-img {
  width: 470px;
  height: 470px;
  border-radius: 50%;
  overflow: hidden;
  text-align: center;
  position: relative;
  object-position: top;
  z-index: 1;
  flex: 0 0 auto;
  transform: rotateY(90deg);
  transition: 600ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-team-slider-1-item .main-img {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 767px) {
  .chy-team-slider-1-item .main-img {
    width: 100%;
    height: 350px;
  }
}
.chy-team-slider-1-item .main-img::after {
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(0deg, rgba(248, 244, 255, 1) 20%, rgba(248, 244, 255, 0) 100%);
  z-index: -1;
}
.chy-team-slider-1-item .main-img img {
  transform: translateY(100%);
  transition: 600ms ease-in-out;
  transition-delay: 0s;
}
.chy-team-slider-1-item .title {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 22px;
  transform: translateX(100px);
  transition: 600ms ease-in-out;
  opacity: 0;
}
.chy-team-slider-1-item .comment {
  font-size: 22px;
  font-weight: 500;
  color: #0d161a;
  line-height: 1.45;
  padding-left: 30px;
  border-left: 4px solid var(--chy-pr-1);
  margin-bottom: 60px;
  transform: translateX(100px);
  transition: 600ms ease-in-out;
  opacity: 0;
  transition-delay: 0.3s;
}
.chy-team-slider-1-item .name {
  font-size: 28px;
  font-weight: 800;
  color: #0d161a;
  margin-bottom: 5px;
}
.chy-team-slider-1-item .bio {
  display: inline-block;
  font-weight: 500;
  background: var(--chy-gd-1);
  -webkit-background-clip: text;
  color: transparent;
}
.chy-team-slider-1-item .content-wrap {
  transform: translateX(100px);
  transition: 1000ms ease-in-out;
  opacity: 0;
  transition-delay: 0.9s;
}

.chy-team-slider-1-wrap .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-team-slider-1-item .main-img {
  transform: rotateY(0deg);
}
.chy-team-slider-1-wrap .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-team-slider-1-item .main-img img {
  transform: translateY(0);
  transition-delay: 0.3s;
}
.chy-team-slider-1-wrap .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-team-slider-1-item .title {
  transform: translateX(0);
  opacity: 1;
}
.chy-team-slider-1-wrap .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-team-slider-1-item .comment {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0s;
}
.chy-team-slider-1-wrap .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-team-slider-1-item .content-wrap {
  transform: translateX(0px);
  opacity: 1;
  transition-delay: 0s;
}
.chy-team-slider-1-wrap .chy-team-slider-1-pagination {
  padding-top: 30px;
  padding-left: 170px;
  display: flex;
  gap: 25px;
}
@media (max-width: 767px) {
  .chy-team-slider-1-wrap .chy-team-slider-1-pagination {
    padding-left: 50px;
  }
}
.chy-team-slider-1-wrap .chy-team-slider-1-pagination span {
  opacity: 1;
  width: 14px;
  height: 14px;
  border: 2px solid var(--chy-pr-1);
  background: transparent;
}
.chy-team-slider-1-wrap .chy-team-slider-1-pagination span:is(.swiper-pagination-bullet-active) {
  background: var(--chy-gd-1);
  border-color: transparent;
}

.chy-team-2-item {
  margin-bottom: 40px;
}
.chy-team-2-item .main-img {
  height: 610px;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 300px 300px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-team-2-item .main-img {
    height: 560px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-team-2-item .main-img {
    height: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-team-2-item .main-img {
    height: 510px;
  }
}
@media (max-width: 767px) {
  .chy-team-2-item .main-img {
    height: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-team-2-item .main-img {
    height: 350px;
  }
}
.chy-team-2-item .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.chy-team-2-item .main-img::after {
  content: "";
  width: 100%;
  height: 75%;
  background: linear-gradient(90deg, #70DBFF 0%, #DD98FF 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 30px;
  transition: 400ms ease-in-out;
}
.chy-team-2-item .content-wrap {
  background: linear-gradient(90deg, rgba(112, 219, 255, 0.35) 0%, rgba(221, 152, 255, 0.35) 100%), #FFF;
  padding: 20px 10px;
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.chy-team-2-item .name {
  display: block;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: #252A4E;
  font-family: var(--urbanist);
  line-height: 1.2;
  margin-bottom: 3px;
  transition: 400ms;
}
.chy-team-2-item .name:hover {
  color: var(--chy-pr-1);
}
@media (max-width: 767px) {
  .chy-team-2-item .name {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-team-2-item .name {
    font-size: 24px;
  }
}
.chy-team-2-item .bio {
  display: block;
  background: linear-gradient(90deg, #5b00aa -2.17%, #BE60FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.chy-team-2-item .social-links {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  opacity: 0;
  transition: 400ms;
}
.chy-team-2-item .social-links li {
  display: inline-block;
  margin-right: 10px;
}
.chy-team-2-item .social-links li a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--chy-gd-2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: white;
  outline: 3px solid rgba(255, 255, 255, 0.5);
  transition: 400ms;
}
.chy-team-2-item .social-links li a .twitter {
  display: block;
  transform: translateY(3px);
}
.chy-team-2-item .social-links li a:hover {
  color: var(--chy-h2-color);
}
.chy-team-2-item:hover .main-img::after {
  border-radius: 300px;
}
.chy-team-2-item:hover .social-links {
  bottom: 25px;
  opacity: 1;
}

.chy-team-4-area .section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-team-4-area .section-title-wrap {
    flex-wrap: wrap;
    gap: 0px 30px;
  }
}
.chy-team-4-area .section-title-wrap .left {
  max-width: 560px;
}

.chy-client-1-wrap {
  padding-top: 60px;
  border-top: 3px solid var(--chy-pr-1);
  background: linear-gradient(135deg, rgba(92, 0, 169, 0.02) 0%, rgba(74, 0, 136, 0.02) 100%);
  padding-bottom: 20px;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-client-1-content {
    margin-bottom: 50px;
  }
}
.chy-client-1-content .title {
  font-size: 45px;
  line-height: 1.11;
  font-weight: 800;
  background: var(--chy-gd-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}
.chy-client-1-content .disc {
  font-weight: 500;
}
@media (max-width: 767px) {
  .chy-client-1-content .disc br {
    display: none;
  }
}
.chy-client-1-logo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 95px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-client-1-logo {
    gap: 95px 50px;
  }
}
@media (max-width: 767px) {
  .chy-client-1-logo {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-client-1-logo {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
}
.chy-client-1-logo .logo-item {
  position: relative;
  overflow: hidden;
  padding: 20px;
  background: white;
  border-radius: 15px;
  border: 2px solid rgba(92, 0, 169, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
.chy-client-1-logo .logo-item:hover {
  border-color: var(--chy-pr-1);
  box-shadow: 0 10px 25px rgba(92, 0, 169, 0.15);
  transform: translateY(-5px);
}
.chy-client-1-logo .logo-item .logo-2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(50px);
  transition: 400ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  opacity: 0;
}
.chy-client-1-logo .logo-item .logo-1 {
  transition: 400ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.chy-client-1-logo .logo-item:hover .logo-2 {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}
.chy-client-1-logo .logo-item:hover .logo-1 {
  transform: translateY(-50px);
  opacity: 0;
}

.chy-client-3-wrap {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  justify-content: space-between;
  gap: 20px 30px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 2px solid #F3F3F3;
  cursor: pointer;
}
@media (max-width: 767px) {
  .chy-client-3-wrap {
    grid-template-columns: auto auto auto;
    justify-content: start;
  }
}

.chy-brand-logo-4-wrap {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
  grid-template-columns: 24.8% 1fr;
  align-items: end;
  gap: 19px;
  margin-top: -194px;
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-brand-logo-4-wrap {
    gap: 13px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-brand-logo-4-wrap {
    gap: 9px;
    margin-top: -174px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-brand-logo-4-wrap {
    margin-top: 0px;
    grid-template-columns: 0.8fr 1fr;
  }
}
@media (max-width: 767px) {
  .chy-brand-logo-4-wrap {
    margin-top: 0px;
    grid-template-columns: 1fr;
  }
}

.chy-brand-logo-4-counter {
  width: 100%;
  background: linear-gradient(90deg, #5b00aa -2.17%, #BE60FF 100%);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  border-radius: 30px 45px 30px 30px;
  position: relative;
  padding: 30px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-brand-logo-4-counter {
    padding: 20px;
  }
}
.chy-brand-logo-4-counter .number {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
}
.chy-brand-logo-4-counter .disc {
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-brand-logo-4-counter .disc {
    font-size: 16px;
  }
}
.chy-brand-logo-4-counter .il-img-1 {
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 1600px) and (max-width: 1799px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-brand-logo-4-counter .il-img-1 {
    display: none;
  }
}

.chy-brand-logo-4-item {
  background: linear-gradient(90deg, #70DBFF 0%, #DD98FF 100%);
  border-radius: 0 0 35px 30px;
  overflow: hidden;
  padding: 40px 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-brand-logo-4-item {
    border-radius: 0 0 5px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-brand-logo-4-item {
    border-radius: 35px 35px 35px 35px;
  }
}
.chy-brand-logo-4-item .item {
  flex: 0 0 auto;
}
.chy-brand-logo-4-item .item img {
  transition: 400ms ease-in-out;
}
.chy-brand-logo-4-item .item:hover img {
  filter: brightness(0.1);
}
.chy-brand-logo-4-item .keyfram-slider {
  display: flex;
  align-items: center;
  gap: 95px;
  animation: keyfram-slider-1 30s infinite linear;
}

@keyframes keyfram-slider-1 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-105%);
  }
}
@keyframes keyfram-slider-2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media only screen and (min-width: 320px) and (max-width: 1900px) {
  .chy-brand-logo-4-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.chy-clients-page-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  padding: 20px 0;
}
@media (max-width: 992px) {
  .chy-clients-page-wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .chy-clients-page-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .chy-clients-page-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.chy-clients-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  border: 1px solid #E5E5E5;
  padding: 20px 15px;
  cursor: pointer;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.chy-clients-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chy-clients-item img {
  filter: grayscale(100%) brightness(0) sepia(100%) hue-rotate(270deg) saturate(15) brightness(0.7);
  transition: all 0.4s ease;
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.chy-clients-item:hover img {
  filter: grayscale(0%) brightness(1) sepia(0%) hue-rotate(0deg) saturate(1) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}
.chy-video-1-area {
  height: 670px;
  position: relative;
  overflow: hidden;
}
.chy-video-1-area::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 0, 169, 0.7) 0%, rgba(74, 0, 136, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
.chy-video-1-area .content-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-top: -60px;
}
.chy-video-1-area .title {
  color: #fff;
  font-size: 65px;
  line-height: 1.08;
  text-align: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-video-1-area .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-video-1-area .title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .chy-video-1-area .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-video-1-area .title {
    font-size: 45px;
  }
}

.chy-cta-1-area {
  margin-top: -150px;
  position: relative;
  z-index: 1;
}

.chy-cta-1-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f4ff 0%, #e8dcff 100%);
}
.chy-cta-1-wrap .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}

.chy-cta-1-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 90px;
  padding-bottom: 80px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-cta-1-content {
    padding: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .chy-cta-1-content {
    padding: 30px;
    padding-bottom: 30px;
  }
}
.chy-cta-1-content .chy-subtitle-1 {
  color: #111011;
}
.chy-cta-1-content .chy-title-1 {
  font-size: 48px;
  color: #111011;
  line-height: 1.16;
}
@media (max-width: 767px) {
  .chy-cta-1-content .chy-title-1 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-cta-1-content .chy-title-1 {
    font-size: 38px;
  }
}

.chy-cta-5-area {
  margin-bottom: -60px;
}
@media (max-width: 767px) {
  .chy-cta-5-area {
    margin-bottom: 40px;
  }
}

.chy-cta-5-form {
  position: relative;
}
.chy-cta-5-form input {
  width: 100%;
  height: 128px;
  padding-left: 60px;
  padding-right: 270px;
  background: linear-gradient(90deg, #70DBFF 0%, #DD98FF 100%);
  outline: none;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  border: 10px solid #fff;
}
@media (max-width: 767px) {
  .chy-cta-5-form input {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.chy-cta-5-form input::placeholder {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.chy-cta-5-form .chy-pr-btn-5 {
  outline: none;
  border: none;
  background: #252A4E;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .chy-cta-5-form .chy-pr-btn-5 {
    position: unset;
    transform: unset;
    margin-top: 20px;
  }
}

.chy-blog-1-item {
  margin-bottom: 30px;
}
.chy-blog-1-item .main-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
}
.chy-blog-1-item .main-img img {
  clip-path: polygon(0% 0%, 0% 100%, 60% 100%, 90% 40%, 60% 10%, 63% 40%, 90% 40%, 60% 100%, 100% 100%, 100% 0%);
  transition: 600ms ease-in-out;
}
.chy-blog-1-item .date {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(-148deg, rgb(162, 73, 237) 0%, rgb(97, 49, 232) 100%);
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 15px;
  border-radius: 20px;
  line-height: 1;
  margin-left: 15px;
  transform: translateY(-16px);
  margin-bottom: 7px;
}
.chy-blog-1-item .title {
  font-size: 33px;
  line-height: 1.36;
  font-weight: 800;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-blog-1-item .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .chy-blog-1-item .title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-blog-1-item .title {
    font-size: 28px;
  }
}
.chy-blog-1-item .title:hover {
  color: var(--chy-pr-1);
}
.chy-blog-1-item .disc {
  font-weight: 500;
  color: #504e4e;
  margin-bottom: 20px;
}
.chy-blog-1-item .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chy-blog-1-item .author .img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 auto;
}
.chy-blog-1-item .author .name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0d161a;
  flex: 0 0 auto;
}
.chy-blog-1-item .author .line {
  width: 100%;
  height: 4px;
  background: #f3f3f3;
  position: relative;
  margin-left: 30px;
}
.chy-blog-1-item .author .line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--chy-gd-1);
  opacity: 0.3;
  transition: 600ms ease-in-out;
}
.chy-blog-1-item:hover .main-img img {
  clip-path: polygon(0% 0%, 0% 100%, 60% 100%, 90% 40%, 60% 10%, 90% 10%, 90% 40%, 60% 100%, 100% 100%, 100% 0%);
  filter: grayscale(1);
  scale: 1.05;
}
.chy-blog-1-item:hover .author .line::after {
  width: 100%;
}

.chy-blog-2-item {
  margin-bottom: 30px;
}
.chy-blog-2-item .main-img {
  width: 100%;
  height: 285px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: 400ms ease;
  background: var(--chy-pr-2);
}
.chy-blog-2-item .main-img img {
  transition: all 0.3s cubic-bezier(0.56, 0.11, 0.51, 0.73);
  clip-path: polygon(0% 0%, 0% 100%, 88% 100%, 88% 0, 88% 0, 88% 100%, 100% 100%, 100% 0);
}
.chy-blog-2-item .categorie {
  display: inline-block;
  background: var(--chy-pr-2);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 3px;
  margin-bottom: 15px;
}
.chy-blog-2-item .title {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.29;
  letter-spacing: -0.2px;
  margin-bottom: 11px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-blog-2-item .title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .chy-blog-2-item .title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-blog-2-item .title {
    font-size: 24px;
  }
}
.chy-blog-2-item .title:hover {
  color: var(--chy-pr-2);
}
.chy-blog-2-item-meta {
  display: flex;
  align-items: center;
  gap: 50px;
}
.chy-blog-2-item-meta .date, .chy-blog-2-item-meta .author {
  font-size: 15px;
  text-transform: capitalize;
  color: var(--chy-h1-color);
  font-weight: 600;
  flex: 0 0 auto;
}
.chy-blog-2-item-meta .date i, .chy-blog-2-item-meta .author i {
  color: var(--chy-pr-2);
  margin-right: 5px;
}
.chy-blog-2-item-meta .author {
  position: relative;
}
.chy-blog-2-item-meta .author::after {
  content: "";
  position: absolute;
  right: -37px;
  top: 14px;
  width: 24px;
  height: 2px;
  background: #d8d8d8;
}
.chy-blog-2-item:hover .main-img img {
  scale: 1.1;
  clip-path: polygon(0% 0%, 0% 100%, 88% 100%, 88% 0, 90% 0, 90% 100%, 100% 100%, 100% 0);
  filter: grayscale(1);
}

.chy-blog-3-area .chy-blog-3-btn {
  font-size: 20px;
  color: #262524;
  font-weight: 500;
}
.chy-blog-3-area .chy-blog-3-btn a {
  color: #000;
  font-weight: 700;
}
.chy-blog-3-area .chy-blog-3-btn a:hover {
  color: var(--chy-pr-3);
}

.chy-blog-3-item {
  position: relative;
  margin-bottom: 30px;
}
.chy-blog-3-item .main-img {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
}
.chy-blog-3-item .content-wrap {
  padding: 0 20px;
}
.chy-blog-3-item .date {
  font-size: 18px;
  line-height: 15px;
  text-transform: uppercase;
  text-align: center;
  width: 82px;
  height: 82px;
  background: var(--chy-pr-3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  color: #262524;
  border: 3px solid #fff;
  position: absolute;
  left: 30px;
  top: -20px;
}
.chy-blog-3-item-meta {
  background: var(--chy-pr-3);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 30px;
  border: 3px solid #fff;
  gap: 15px;
  font-size: 16px;
  font-weight: 800;
  text-transform: capitalize;
  padding: 11px 17px;
  transform: translateY(-22px);
}
.chy-blog-3-item-meta span {
  display: block;
}
.chy-blog-3-item-meta span i {
  display: inline-block;
  line-height: 1;
  font-size: 13px;
  margin-right: 1px;
}
.chy-blog-3-item .title {
  font-size: 27px;
  font-weight: 800;
  color: #262524;
  line-height: 1.29;
  margin-bottom: 5px;
  transition: 300ms ease-in-out;
}
@media (max-width: 767px) {
  .chy-blog-3-item .title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-blog-3-item .title {
    font-size: 26px;
  }
}
.chy-blog-3-item .title:hover {
  color: var(--chy-pr-3);
}
.chy-blog-3-item .disc {
  font-size: 18px;
  font-weight: 400;
  color: #525252;
  line-height: 30px;
  letter-spacing: 0.1px;
}

.chy-blog-4-area .section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 30px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-blog-4-area .section-title-wrap {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 30px;
  }
}
.chy-blog-4-area .section-title-wrap .chy-para-4 {
  max-width: 540px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-blog-4-area .section-title-wrap .chy-para-4 {
    max-width: 350px;
  }
}
.chy-blog-4-area .section-title-wrap .left {
  max-width: 600px;
}

.chy-blog-4-item {
  position: relative;
  margin-bottom: 30px;
}
.chy-blog-4-item .main-img {
  width: 100%;
  height: 490px;
  overflow: hidden;
  border-radius: 10px;
  perspective: 70px;
  perspective-origin: 50% 50%;
}
.chy-blog-4-item .main-img img {
  transition: 500ms;
}
.chy-blog-4-item .content-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-blog-4-item .content-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.chy-blog-4-item .content-wrap .inner-div {
  background: #fff;
  border-radius: 0 10px 0 0;
  padding: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.chy-blog-4-item .content-wrap .inner-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #5b00aa -2.17%, #BE60FF 100%);
  z-index: -1;
  transition: 400ms;
  opacity: 0;
}
.chy-blog-4-item .subtitle {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  background: #5A1CCB;
  color: #fff;
  padding: 13px 20px;
  border-radius: 10px 10px 0 0;
  transition: 400ms;
}
.chy-blog-4-item .title {
  font-size: 24px;
  line-height: 1.41;
  margin-bottom: 18px;
  transition: 300ms;
}
@media (max-width: 767px) {
  .chy-blog-4-item .title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-blog-4-item .title {
    font-size: 24px;
  }
}
.chy-blog-4-item .author {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}
.chy-blog-4-item .author span {
  color: #FF5266;
}
.chy-blog-4-item:hover .subtitle {
  background: #FF7469;
}
.chy-blog-4-item:hover .main-img img {
  transform: scaleX(1) scaleY(1) scaleZ(0.1) rotateX(8deg) rotateY(0deg) rotateZ(0deg) translateX(0px) translateY(0px) translateZ(0px) skewX(0deg) skewY(0deg);
}
.chy-blog-4-item:hover .content-wrap .inner-div::after {
  opacity: 1;
}
.chy-blog-4-item:hover .title {
  color: #fff;
}
.chy-blog-4-item:hover .author {
  color: #fff;
}
.chy-blog-4-item:hover .author span {
  color: #fff;
}

/* 
    02. about
*/
.chy-about-2-img {
  position: relative;
}
.chy-about-2-img .il-img-1 {
  position: absolute;
  bottom: -60px;
  left: -50px;
  z-index: 1;
  box-shadow: 0px 3px 59px 0px rgba(0, 0, 0, 0.03);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-about-2-img .il-img-1 {
    left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-2-img .il-img-1 {
    left: unset;
    right: 0;
    bottom: 0;
  }
}
.chy-about-2-img .il-img-2 {
  position: absolute;
  bottom: 130px;
  right: -55px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-2-img .il-img-2 {
    display: none;
  }
}
.chy-about-2-img .il-img-3 {
  position: absolute;
  top: 80px;
  left: -70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-2-img .il-img-3 {
    left: 0;
  }
}
.chy-about-2-img::before {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(-3deg, rgb(253, 59, 69) 0%, rgb(250, 134, 64) 100%);
  left: 20%;
  top: 35%;
  animation: chyh1curle 4s infinite ease-in-out;
  z-index: 2;
}
.chy-about-2-img::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(-3deg, rgb(253, 59, 69) 0%, rgb(250, 134, 64) 100%);
  left: -2%;
  top: 46%;
  animation: chyh1curle 3s infinite ease-in-out;
  z-index: 2;
}
.chy-about-2-img .main-img {
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.chy-about-2-img .main-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 0%;
  height: 330px;
  border-radius: 20px;
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-delay: 0.5s;
}
.chy-about-2-img .main-img img {
  transform: translateY(100%);
  transition: all 1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-delay: 1s;
}
.chy-about-2-img:is(.active) .main-img::after {
  width: 100%;
}
.chy-about-2-img:is(.active) .main-img img {
  transform: translateY(0);
}

.chy-about-2-content {
  padding-left: 70px;
  margin-bottom: -40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-about-2-content {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-2-content {
    padding-top: 50px;
    padding-left: 0px;
  }
}
.chy-about-2-content .innter-div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 45px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-about-2-content .innter-div {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-about-2-content .innter-div {
    grid-template-columns: 1fr 1.2fr;
  }
}
@media (max-width: 767px) {
  .chy-about-2-content .innter-div {
    grid-template-columns: 1fr;
  }
}
.chy-about-2-content .innter-div::after {
  content: "";
  position: absolute;
  left: 46%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 116px;
  width: 2px;
  background: #dfdfdf;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-2-content .innter-div::after {
    display: none;
  }
}
.chy-about-2-brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.chy-about-2-brand li {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.chy-about-2-brand li:hover {
  transform: rotateX(15deg) rotateY(15deg) scaleZ(1.42);
  box-shadow: 0px 3px 59px 0px rgba(0, 0, 0, 0.02);
}
.chy-about-2-feature li {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chy-about-2-feature li:not(:last-child) {
  margin-bottom: 20px;
}
.chy-about-2-feature li i {
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 25px;
  align-items: center;
  color: #000;
  flex: 0 0 auto;
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.chy-about-2-feature li:hover i {
  transform: rotateX(15deg) rotateY(15deg) scaleZ(1.42);
  box-shadow: 0px 3px 59px 0px rgba(0, 0, 0, 0.02);
  background-color: var(--chy-pr-2);
  color: #fff;
}

.chy-about-4-area .section-title-wrap {
  display: flex;
  align-items: center;
  gap: 158px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-about-4-area .section-title-wrap {
    gap: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-4-area .section-title-wrap {
    flex-wrap: wrap;
    gap: 0px;
  }
}
.chy-about-4-area .section-title-wrap .left {
  max-width: 560px;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .chy-about-4-area .section-title-wrap .left {
    flex: unset;
  }
}

.chy-about-4-img {
  position: relative;
  padding: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-4-img {
    margin-bottom: 20px;
  }
}
.chy-about-4-img .bg-color {
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.chy-about-4-content .btn-wrap {
  display: flex;
  align-items: center;
  gap: 30px 58px;
  flex-wrap: wrap;
}
.chy-about-4-content .chy-call-2-icon {
  background: linear-gradient(85deg, #0050FF -0.78%, #00E9CC 97.77%);
}
.chy-about-4-content .chy-call-1-content .phone:hover {
  color: var(--chy-pr-4);
}

.chy-about-4-feature-wrap {
  padding-right: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-about-4-feature-wrap {
    padding-right: 0px;
  }
}

.chy-about-4-feature-item {
  display: flex;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(19, 24, 53, 0.1);
}
.chy-about-4-feature-item:not(:last-child) {
  margin-bottom: 25px;
}
.chy-about-4-feature-item .icon {
  flex: 0 0 auto;
  width: 78px;
  height: 84px;
  background: linear-gradient(90deg, #5A1CCB -2.17%, #815EDC 100%);
  border-radius: 50px 6px 6px 6px;
  text-align: center;
  line-height: 103px;
  color: #fff;
  font-size: 40px;
}
.chy-about-4-feature-item .title {
  font-size: 24px;
  line-height: 1.16;
  margin-bottom: 4px;
}
.chy-about-4-feature-item .disc {
  line-height: 26px;
}

.chy-portfolio-2-area .section-title-wrap {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.chy-portfolio-2-slider {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.chy-portfolio-2-item {
  width: 100%;
  position: relative;
  display: inline-block;
  transition: 600ms all;
}
.chy-portfolio-2-item::after {
  content: "";
  width: 92.8%;
  height: 250px;
  background: var(--chy-pr-2);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 26px;
  z-index: -1;
  transition: 400ms all;
  transition-delay: 0.3s;
}
.chy-portfolio-2-item .main-img {
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.chy-portfolio-2-item .content-wrap {
  background: #000000;
  border-radius: 20px;
  margin-left: 20px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 40px;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 60px;
  opacity: 0;
  transition: 600ms all;
}
.chy-portfolio-2-item .title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}
.chy-portfolio-2-item .title:hover {
  color: var(--chy-pr-2);
}
.chy-portfolio-2-item .subtitle {
  font-size: 12px;
  color: var(--chy-pr-2);
  text-transform: uppercase;
  font-weight: 900;
  display: block;
  margin-bottom: 10px;
}
.chy-portfolio-2-item .p2-btn {
  width: 60px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #151515;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  transition: 400ms all;
}
.chy-portfolio-2-item .p2-btn:hover {
  background-color: var(--chy-pr-2);
}
.chy-portfolio-2-slider .swiper-container {
  padding-top: 80px;
  padding-bottom: 150px;
}
.chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) {
  z-index: 1;
  transition: 600ms all;
}
.chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item {
  transform: translateY(20px) scale3d(1.2, 1.3, 1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item {
    transform: translateY(0px) scale3d(1.1, 1.1, 1);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item {
    transform: none;
  }
}
.chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item::after {
  width: 106%;
  left: -14px;
}
.chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item .main-img {
  border-radius: 30px;
}
.chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item .content-wrap {
  bottom: -30px;
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item {
    transform: none;
  }
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item::after {
    width: 100%;
    left: 0px;
  }
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item .main-img {
    border-radius: 0px;
  }
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-next) .chy-portfolio-2-item .content-wrap {
    bottom: 0px;
    opacity: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) {
    z-index: 1;
    transition: 600ms all;
  }
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-portfolio-2-item {
    transform: translateY(20px) scale3d(1.2, 1.3, 1);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px) {
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-portfolio-2-item {
    transform: translateY(0px) scale3d(1.1, 1.1, 1);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 767px), only screen and (max-width: 767px) and (min-width: 768px) and (max-width: 991px), (max-width: 767px) and (max-width: 767px) {
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-portfolio-2-item {
    transform: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-portfolio-2-item::after {
    width: 106%;
    left: -14px;
  }
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-portfolio-2-item .main-img {
    border-radius: 30px;
  }
  .chy-portfolio-2-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-portfolio-2-item .content-wrap {
    bottom: -30px;
    opacity: 1;
  }
}

.chy-portfolio-2-slider-btn {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  align-items: end;
  width: 600px;
  gap: 50px;
  margin-left: auto;
  margin-right: 10vw;
  height: 60px;
  margin-top: -130px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-portfolio-2-slider-btn {
    margin-right: 0;
    grid-template-columns: 1fr;
    width: 230px;
  }
}
.chy-portfolio-2-slider-btn .line {
  width: 100%;
  height: 8px;
  display: block;
  background: var(--chy-pr-2);
  border-radius: 4px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-portfolio-2-slider-btn .line {
    display: none;
  }
}

.chy-portfolio-2-pagination {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.chy-portfolio-2-pagination span {
  flex: 0 0 auto;
  font-family: var(--urbanist);
  font-size: 22px;
  font-weight: 800;
  background: transparent;
  color: #000;
  opacity: 1;
}
.chy-portfolio-2-pagination span:is(.swiper-pagination-bullet-active) {
  font-size: 50px;
  color: var(--chy-pr-2);
  transform: translateX(-7px);
}

.chy-testimonial-2-area {
  background: #000;
}

.chy-testimonial-2-slider {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.chy-testimonial-2-item {
  text-align: center;
}
.chy-testimonial-2-item .main-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}
.chy-testimonial-2-item .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-left: auto;
}
.chy-testimonial-2-item .comment {
  font-size: 25px;
  line-height: 1.44;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 38px;
}
@media (max-width: 767px) {
  .chy-testimonial-2-item .comment {
    font-size: 20px;
  }
}
.chy-testimonial-2-item .person-wrap {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.chy-testimonial-2-item .person-wrap .icon {
  width: 60px;
  height: 60px;
  background: var(--chy-pr-2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: #000;
}
.chy-testimonial-2-item .person-wrap .name {
  font-size: 25px;
  font-weight: 800;
  color: #fff;
}
.chy-testimonial-2-item .person-wrap .bio {
  font-size: 18px;
  color: var(--chy-pr-2);
  font-weight: 700;
  text-align: left;
}

.chy-testimonial-2-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  padding-top: 30px;
  min-height: 20px;
  min-height: 52px;
}
.chy-testimonial-2-pagination span {
  width: 11px;
  height: 11px;
  opacity: 1;
  background: #424242;
}
.chy-testimonial-2-pagination span:is(.swiper-pagination-bullet-active) {
  background: var(--chy-pr-2);
  width: 19px;
  height: 19px;
}

.chy-testimonial-2-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.chy-testimonial-2-logo img {
  opacity: 0.3;
  transition: 500ms ease;
}
.chy-testimonial-2-logo img:hover {
  opacity: 1;
}

.chy-testimonial-3-item {
  position: relative;
  border: 3px solid;
  border-color: rgb(242, 242, 242);
  padding-left: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 50px;
  transition: 400ms ease-in-out;
  margin-bottom: 22px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-testimonial-3-item {
    padding-left: 30px;
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-3-item {
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
  }
}
.chy-testimonial-3-item .number {
  font-size: 40px;
  display: inline-block;
  font-weight: 800;
  color: #272324;
  background: #F2F2F2;
  padding: 27px 27px;
  border-radius: 10px;
  transition: 400ms ease-in-out;
}
.chy-testimonial-3-item .title-wrap {
  flex: 0 0 auto;
  transform: translateY(45px);
  transition: 400ms ease-in-out;
}
@media (max-width: 767px) {
  .chy-testimonial-3-item .title-wrap {
    flex: 0 0 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-testimonial-3-item .title-wrap {
    flex: 0 0 auto;
  }
}
.chy-testimonial-3-item .subtitle {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
  color: #7e7e7e;
  margin-bottom: 10px;
}
.chy-testimonial-3-item .title {
  font-size: 35px;
  font-weight: 900;
  color: #272324;
  margin-bottom: 15px;
}
.chy-testimonial-3-item .title:hover {
  color: var(--chy-pr-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-testimonial-3-item .title {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .chy-testimonial-3-item .title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-testimonial-3-item .title {
    font-size: 35px;
  }
}
.chy-testimonial-3-item .bio {
  font-size: 17.2px;
  font-weight: 900;
  text-transform: uppercase;
  color: #272324;
  display: inline-block;
  background: var(--chy-pr-3);
  padding: 12px 15px;
  border-radius: 30px;
  opacity: 0;
  transition: 100ms ease-in-out;
  transform: translateY(5px);
}
.chy-testimonial-3-item .bio:not(:last-child) {
  margin-bottom: 5px;
}
.chy-testimonial-3-item .disc {
  transition: 400ms ease-in-out;
  transition-delay: 0.5s;
}
.chy-testimonial-3-item .main-img {
  position: absolute;
  right: 7vw;
  bottom: -40px;
  transform: scale(0.5) rotate(32deg);
  opacity: 0;
  transition: 600ms ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-testimonial-3-item .main-img {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-3-item .main-img {
    position: unset;
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
.chy-testimonial-3-item .p3-btn {
  display: flex;
  width: 170px;
  height: 175px;
  border-left: 3px solid;
  border-color: rgb(242, 242, 242);
  flex: 0 0 auto;
  text-align: center;
  justify-content: center;
  line-height: 190px;
  font-size: 55px;
  color: #000;
  transition: 800ms ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-testimonial-3-item .p3-btn {
    width: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-3-item .p3-btn {
    height: 150px;
    border-left-color: transparent;
  }
}
.chy-testimonial-3-item:is(.active) {
  border-color: var(--chy-pr-3);
  box-shadow: 0px 3px 60px 0px rgba(32, 42, 181, 0.11);
}
.chy-testimonial-3-item:is(.active) .number {
  background-color: var(--chy-pr-3);
}
.chy-testimonial-3-item:is(.active) .title-wrap {
  transform: translateY(0px);
}
.chy-testimonial-3-item:is(.active) .bio {
  opacity: 1;
  transform: translateY(0);
  transition: 800ms ease-in-out;
}
.chy-testimonial-3-item:is(.active) .disc {
  opacity: 0;
  transition-delay: 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-3-item:is(.active) .disc {
    opacity: 1;
  }
}
.chy-testimonial-3-item:is(.active) .main-img {
  bottom: 20px;
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.chy-testimonial-3-item:is(.active) .p3-btn {
  height: 266px;
  line-height: 280px;
  color: var(--chy-pr-3);
  border-left-color: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-3-item:is(.active) .p3-btn {
    height: 150px;
    line-height: 160px;
  }
}

.chy-testimonial-4-item {
  position: relative;
  display: flex;
  gap: 40px;
  padding-left: 10.4375rem;
  padding-top: 60px;
  padding-bottom: 30px;
  padding-right: 137px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-testimonial-4-item {
    padding-right: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-testimonial-4-item {
    padding-right: 100px;
    padding-left: 5.4375rem;
  }
}
@media (max-width: 767px) {
  .chy-testimonial-4-item {
    padding-right: 55px;
    padding-left: 55px;
    flex-wrap: wrap;
  }
}
.chy-testimonial-4-item::after {
  width: 500px;
  height: 500px;
  content: "";
  position: absolute;
  left: 500px;
  top: 0;
  background: #E5FFEF;
  border-radius: 50%;
  z-index: -1;
  transition: 1s cubic-bezier(0.76, 0.22, 0.39, 0.84);
  transform: scale(0.5);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-testimonial-4-item::after {
    left: 200px;
  }
}
@media (max-width: 767px) {
  .chy-testimonial-4-item::after {
    width: 280px;
    height: 280px;
  }
}
.chy-testimonial-4-item .icon {
  flex: 0 0 auto;
}
.chy-testimonial-4-item .subtitle {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  color: #262524;
  font-size: 17px;
  margin-bottom: 10px;
}
.chy-testimonial-4-item .comment {
  font-size: 43px;
  line-height: 1.51;
  font-weight: 800;
  color: #262524;
  margin-bottom: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-testimonial-4-item .comment {
    font-size: 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-testimonial-4-item .comment {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .chy-testimonial-4-item .comment {
    font-size: 22px;
  }
}
.chy-testimonial-4-item .person-img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}
.chy-testimonial-4-item .name {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #0d0d0d;
  margin-bottom: 9px;
}
.chy-testimonial-4-item .reating {
  font-size: 18px;
  color: #EA9034;
  margin-right: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.chy-testimonial-4-item .person-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.chy-testimonial-4-slider {
  position: relative;
}
.chy-testimonial-4-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-testimonial-4-item::after {
  left: 70px;
  transform: scale(1);
}
.chy-testimonial-4-slider .chy_testimonial_4_prev, .chy-testimonial-4-slider .chy_testimonial_4_next {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #000;
  transition: 400ms ease;
  z-index: 3;
}
@media (max-width: 767px) {
  .chy-testimonial-4-slider .chy_testimonial_4_prev, .chy-testimonial-4-slider .chy_testimonial_4_next {
    width: 45px;
    height: 45px;
  }
}
.chy-testimonial-4-slider .chy_testimonial_4_prev:hover, .chy-testimonial-4-slider .chy_testimonial_4_next:hover {
  background: var(--chy-pr-3);
  border-color: transparent;
}
.chy-testimonial-4-slider .chy_testimonial_4_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-4-slider .chy_testimonial_4_prev {
    left: 0px;
  }
}
.chy-testimonial-4-slider .chy_testimonial_4_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-4-slider .chy_testimonial_4_next {
    right: 0px;
  }
}

.chy-testimonial-5-area {
  background: rgba(59, 43, 82, 0.03);
  position: relative;
}
.chy-testimonial-5-area .chy-testimonial-5-preview {
  position: absolute;
  top: 60%;
  left: 8vw;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1600px) and (max-width: 1799px) {
  .chy-testimonial-5-area .chy-testimonial-5-preview {
    left: 1vw;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-5-area .chy-testimonial-5-preview {
    position: unset;
    margin-top: 100px;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.chy-testimonial-5-item {
  display: grid;
  grid-template-columns: 1.12fr 2fr;
  gap: 50px;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-5-item {
    grid-template-columns: 1fr;
  }
}
.chy-testimonial-5-item .main-img {
  border-radius: 10px 10px 0 0;
  height: 615px;
  overflow: hidden;
  display: flex;
  align-items: end;
}
@media (max-width: 767px) {
  .chy-testimonial-5-item .main-img {
    height: 415px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-testimonial-5-item .main-img {
    height: 615px;
  }
}
.chy-testimonial-5-item .main-img img {
  transform: translateY(100%);
  transition: 1000ms cubic-bezier(0.08, 0.28, 0.37, 0.99);
}
.chy-testimonial-5-item .section-title-wrap {
  max-width: 600px;
}
.chy-testimonial-5-item .comment-wrap {
  background: #fff;
  border-radius: 15px;
  padding: 45px;
  margin-left: 40px;
  position: relative;
  transform: translateX(106%);
  transition: 1000ms cubic-bezier(0.08, 0.28, 0.37, 0.99);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-5-item .comment-wrap {
    margin-left: 0px;
  }
}
.chy-testimonial-5-item .comment-wrap .arrow-icon {
  position: absolute;
  left: -38px;
  top: 30px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-5-item .comment-wrap .arrow-icon {
    display: none;
  }
}
.chy-testimonial-5-item .comment-wrap .qoute {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}
@media (max-width: 767px) {
  .chy-testimonial-5-item .comment-wrap .qoute {
    width: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-testimonial-5-item .comment-wrap .qoute {
    width: 300px;
  }
}
.chy-testimonial-5-item .comment-text {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.41;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-5-item .comment-text {
    font-size: 22px;
  }
}
.chy-testimonial-5-item .name {
  display: inline-block;
  font-size: 22px;
  line-height: 28px;
  background: linear-gradient(90deg, #5b00aa -2.17%, #BE60FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 7px;
}
.chy-testimonial-5-item .bio {
  font-size: 16px;
  display: block;
  line-height: 24px;
}

.chy-t5-preview-item {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #EAEBEE;
  border: 1px solid;
  border-color: transparent;
  object-position: top;
  cursor: pointer;
}

.chy-testimonial-5-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-testimonial-5-item .main-img img {
  transform: translateY(0);
}
.chy-testimonial-5-slider .swiper-container .swiper-wrapper .swiper-slide:is(.swiper-slide-active) .chy-testimonial-5-item .comment-wrap {
  transform: translateX(0%);
}

.chy-testimonial-5-preview .swiper-container .swiper-slide {
  height: 102px !important;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-testimonial-5-preview .swiper-container .swiper-slide {
    width: 102px !important;
  }
}
.chy-testimonial-5-preview .swiper-container .swiper-slide:is(.swiper-slide-thumb-active) .chy-t5-preview-item {
  border-color: #5b00aa;
}

.chy-marquee-text-2-area {
  background: #5FD7FF;
}
.chy-marquee-text-2-wrap {
  display: flex;
  align-items: center;
  animation: chymarquee2 30s infinite linear;
}
.chy-marquee-text-2-wrap .title {
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px #141515;
  color: transparent;
  flex: 0 0 auto;
  transition: 400ms ease-in-out;
  cursor: pointer;
}
.chy-marquee-text-2-wrap .title svg {
  margin-right: 40px;
  margin-left: 30px;
}
.chy-marquee-text-2-wrap .title:hover {
  color: var(--chy-h1-color);
}

@keyframes chymarquee2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.chy-marquee-4-area {
  background: linear-gradient(90deg, #FF7469 -2.17%, #FFB06D 100%);
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

.chy-marquee-4-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: keyfram-slider-1 30s infinite linear;
}
.chy-marquee-4-wrap .icon {
  flex: 0 0 auto;
}
.chy-marquee-4-wrap .title-1, .chy-marquee-4-wrap .title-2 {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  transition: 400ms ease-in-out;
}
.chy-marquee-4-wrap .title-1:hover {
  -webkit-text-stroke: 1px var(--chy-h2-color);
  color: transparent;
}
.chy-marquee-4-wrap .title-2 {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}
.chy-marquee-4-wrap .title-2:hover {
  color: var(--chy-h2-color);
  -webkit-text-stroke: 1px transparent;
}

.chy-marquee-5-area {
  background: linear-gradient(90deg, #70DBFF 0%, #DD98FF 100%);
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}

.chy-marquee-5-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: keyfram-slider-2 30s infinite linear;
  justify-content: end;
}
.chy-marquee-5-wrap .icon {
  flex: 0 0 auto;
}
.chy-marquee-5-wrap .title-1, .chy-marquee-5-wrap .title-2 {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--chy-h2-color);
  transition: 400ms ease-in-out;
}
.chy-marquee-5-wrap .title-1:hover {
  -webkit-text-stroke: 1px var(--chy-h2-color);
  color: transparent;
}
.chy-marquee-5-wrap .title-2 {
  -webkit-text-stroke: 1px var(--chy-h2-color);
  color: transparent;
}
.chy-marquee-5-wrap .title-2:hover {
  color: var(--chy-h2-color);
  -webkit-text-stroke: 1px transparent;
}

.marquee-text-6-wrap .title {
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: #EEE8F8;
  text-transform: uppercase;
}
.marquee-text-6-wrap .title:hover {
  color: var(--chy-pr-4);
}




.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 0;
  height: 60px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 20px 20px 0px 0px;
  z-index: 5;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: all 300ms linear;
  font-size: 20px;
  text-align: center;
  color: #fff;
  transform: translateY(80px);
}

.scroll-top-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 8px;
  padding-top: 16px;
}
.scroll-top-wrap .icon-2 {
  font-size: 16px;
  position: absolute;
  left: 33%;
  bottom: 22%;
  transform: translate(-50%, -50%);
}

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

.breadcrumb-area {
  padding-top: 280px;
  padding-bottom: 220px;
}
.breadcrumb-title {
  font-size: 90px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-title {
    font-size: 50px;
  }
}
.breadcrumb-list a, .breadcrumb-list span {
  font-weight: 800;
  font-size: 20px;
  font-family: var(--urbanist);
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.breadcrumb-list a {
  padding-right: 25px;
  position: relative;
  margin-right: 20px;
  transition: 400ms ease;
}
.breadcrumb-list a:hover {
  color: #f28541;
}
.breadcrumb-list a::after {
  content: "\f355";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  right: 3px;
  top: 53%;
  transform: translateY(-50%);
  font-size: 14px;
}
.breadcrumb-list a::before {
  content: "\f356";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  right: -15px;
  top: 53%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #f28541;
}
.breadcrumb-list span {
  position: relative;
  text-transform: capitalize;
  color: #f28541;
}
.breadcrumb-list span::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--clr-common-white);
  bottom: -2px;
  left: 0;
}

.breadcrumb-list {
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 17px 30px;
  border: 1px solid #873FEB;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7.5px);
}

.breadcrumb-wrap {
  position: relative;
  z-index: 1;
}

.has-breadcrumb-overlay {
  position: relative;
}
.has-breadcrumb-overlay::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #141515;
  opacity: 0.8;
}

/* 
services-details
======start====== 
*/
.service-details-main-img {
  width: 100%;
  height: 445px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 30px;
}

.service-details-title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .service-details-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-details-title {
    font-size: 32px;
  }
}

.service-details-subtitle {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.33;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-subtitle {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-subtitle {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .service-details-subtitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-details-subtitle {
    font-size: 24px;
  }
}

.inner-page-disc {
  margin-bottom: 20px;
}

.service-details-feature {
  border-radius: 10px;
  border: 1px solid #F08441;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 767px) {
  .service-details-feature {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-details-feature {
    grid-template-columns: 1fr 1fr;
  }
}

.service-details-feature-item {
  background: #FEF8F4;
  padding: 25px;
  border-radius: 5px;
}
.service-details-feature-item .icon {
  font-size: 45px;
  line-height: 1;
  color: #F08441;
  flex: 0 0 auto;
}
.service-details-feature-item .title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 0;
}
.service-details-feature-item .heading-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.service-details-feature-item .text {
  font-size: 16px;
  line-height: 26px;
  color: #5B5B5B;
}

.chy-sd-1-item .accordion-item {
  position: relative;
  background: transparent;
  border: none;
  border: 1px solid rgba(80, 78, 78, 0.2);
  border-radius: 6px;
}
.chy-sd-1-item .accordion-item:is(.tna_faq2_bg) .accordion-header .accordion-button .text {
  background: var(--tna-gd-2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chy-sd-1-item .accordion-item:is(.tna_faq2_bg) .accordion-header .accordion-button .icon {
  background: var(--tna-gd-2);
  border: transparent;
  color: #fff;
}
.chy-sd-1-item .accordion-item:is(.tna_faq2_bg) .accordion-header .accordion-button .icon i::before {
  content: "\f068";
}
.chy-sd-1-item .accordion-item .accordion-header {
  outline: none;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button {
  padding-right: 20px;
  padding-left: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  outline: none;
  box-shadow: none;
  transition: 400ms ease;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  text-transform: capitalize;
  margin-right: auto;
  transition: 400ms ease;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button .icon-2 {
  background: var(--chy-gd-1);
  font-size: 22px;
  transform: translateY(3px);
  transition: 400ms ease;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button .icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  color: #6934E9;
  transition: 400ms ease;
  background: linear-gradient(87deg, rgba(162, 73, 237, 0.13) 57.32%, rgba(105, 52, 233, 0.13) 97.15%);
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button:is(:not(.collapsed)) {
  background: var(--txa-gd-1);
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button:is(:not(.collapsed)) .title {
  background: var(--chy-gd-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button:is(:not(.collapsed)) .icon-2 {
  color: #fff;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button:is(:not(.collapsed)) .icon {
  background: var(--chy-gd-1);
  color: #fff;
}
.chy-sd-1-item .accordion-item .accordion-header .accordion-button:is(:not(.collapsed)) .icon i::before {
  content: "\f068";
}
.chy-sd-1-item .accordion-item .accordion-body {
  position: relative;
  z-index: 1;
  padding: 0;
}
.chy-sd-1-item .accordion-item .accordion-body .disc {
  margin-top: 15px;
  margin-bottom: 20px;
  padding-right: 60px;
  padding-left: 55px;
}

/* 
services-details
======end====== 
*/
/*
************
*************************
30. sidebar-widget
******************************************************* 
*************************************************************** */
.sidebar-box-wrap {
  border-radius: 20px;
  background: #F8F8F9;
  padding: 25px 20px;
}

.sidebar-box-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.38;
  margin-bottom: 15px;
}

.sidebar-category {
  list-style: none;
}
.sidebar-category li a {
  overflow: hidden;
  z-index: 1;
  position: relative;
  font-family: var(--urbanist);
  color: #141515;
  text-transform: capitalize;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 54px;
  padding: 18px 30px;
  transition: 400ms ease-in-out;
}
.sidebar-category li a .text {
  display: inline-block;
  margin-right: auto;
}
.sidebar-category li a .icon-1 {
  display: inline-block;
  line-height: 1;
  transition: 400ms;
  transform: translate(-20px, 2px);
  opacity: 0;
  color: #fff;
}
.sidebar-category li a .number {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #F5EFFF;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  color: #8C40EB;
  transition: 400ms ease-in-out;
}
.sidebar-category li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: auto;
  bottom: 0;
  background: var(--chy-gd-1);
  width: 100%;
  height: 0%;
  border-radius: 54px;
  z-index: -1;
  transition: 400ms ease-in-out;
}
.sidebar-category li a:hover {
  color: #fff;
}
.sidebar-category li a:hover::after {
  top: 0;
  height: 100%;
  bottom: auto;
}
.sidebar-category li a:hover .icon-1 {
  transform: translate(0px, 2px);
  opacity: 1;
}
.sidebar-category li a:hover .number {
  background: #fff;
}
.sidebar-category li:not(:last-child) {
  margin-bottom: 8px;
}
.sidebar-category:is(.has-number) li a {
  padding: 8px 10px;
  padding-left: 30px;
}

.sidebar-download li:not(:last-child) {
  margin-bottom: 10px;
}
.sidebar-download li a {
  font-family: var(--urbanist);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-transform: capitalize;
  background: #fff;
  align-items: center;
  padding: 5px 10px;
  padding-right: 20px;
  border-radius: 54px;
  transition: 400ms ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-download li a {
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .sidebar-download li a {
    gap: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-download li a {
    gap: 16px;
  }
}
.sidebar-download li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: auto;
  bottom: 0;
  background: var(--chy-gd-1);
  width: 100%;
  height: 0%;
  border-radius: 54px;
  z-index: -1;
  transition: 400ms ease-in-out;
}
.sidebar-download li a .text-wrap {
  margin-right: auto;
}
.sidebar-download li a .title {
  font-size: 18px;
  font-weight: 500;
  display: block;
  line-height: 26px;
  color: #141515;
  transition: 400ms ease-in-out;
}
.sidebar-download li a .kbs {
  display: block;
  color: #504E4E;
  font-size: 12px;
  font-weight: 500;
  transition: 400ms ease-in-out;
}
.sidebar-download li a .icon-1 {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  background: #141515;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 26px;
  color: #fff;
}
.sidebar-download li a .icon-2 {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: #FEEDE8;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 35px;
  color: #EE4619;
}
.sidebar-download li a:hover .title {
  color: #fff;
}
.sidebar-download li a:hover .kbs {
  color: #fff;
}
.sidebar-download li a:hover::after {
  top: 0;
  height: 100%;
  bottom: auto;
}

.sidebar-search-box {
  position: relative;
}
.sidebar-search-box .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  border: none;
  outline: none;
  font-size: 20px;
  color: #fff;
  background: var(--chy-gd-1);
  border-radius: 0 50px 50px 0;
  transition: 400ms ease;
}
.sidebar-search-box .search-btn:hover {
  color: var(--chy-h1-color);
}
.sidebar-search-box .search-input {
  background: #F1F1F8;
  border: none;
  outline: none;
  width: 100%;
  height: 60px;
  border-radius: 50px;
  font-family: var(--urbanist);
  font-size: 18px;
  color: #504E4E;
  font-weight: 400;
  text-transform: capitalize;
  padding: 0 20px;
  padding-right: 80px;
}
.sidebar-search-box .search-input::placeholder {
  font-family: var(--urbanist);
  font-size: 18px;
  color: #504E4E;
  font-weight: 400;
  text-transform: capitalize;
}

.latest-post-item {
  display: flex;
  align-items: center;
}
.latest-post-item:not(:last-child) {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(20, 21, 21, 0.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .latest-post-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .latest-post-item {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest-post-item {
    flex-wrap: nowrap;
  }
}
.latest-post-item .img {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}
.latest-post-item .img a {
  width: 100%;
  height: 100%;
}
.latest-post-item .content {
  padding: 10px 17px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .latest-post-item .content {
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .latest-post-item .content {
    padding: 10px 17px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .latest-post-item .content {
    padding: 10px 17px;
    padding-left: 10px;
  }
}
.latest-post-item .content .date {
  display: block;
  font-size: 14px;
  text-transform: capitalize;
  line-height: 20px;
  margin-bottom: 8px;
}
.latest-post-item .content .date i {
  display: inline-block;
  margin-right: 3px;
  color: #F08441;
}
.latest-post-item .content .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.latest-post-item .content .title:hover {
  color: var(--chy-pr-1);
}

.sidebar-tag {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sidebar-tag a {
  display: inline-block;
  background-color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-transform: capitalize;
  color: #504E4E;
  padding: 7px 20px;
  transition: 400ms;
}
.sidebar-tag a:hover {
  background-color: var(--chy-pr-1);
  color: #fff;
}

/* 
team-details-page
======start====== 
*/
.team-details-person-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.3fr;
  gap: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-person-wrap {
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-person-wrap {
    grid-template-columns: 1.1fr 1fr;
  }
}
@media (max-width: 767px) {
  .team-details-person-wrap {
    grid-template-columns: 1fr;
  }
}
.team-details-person-wrap .content-wrap {
  padding-top: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-person-wrap .content-wrap {
    grid-column-start: 1;
    grid-column-end: -1;
  }
}
.team-details-person-img {
  width: 100%;
  height: 465px;
  border-radius: 10px;
  overflow: hidden;
}
.team-details-person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-details-person-bio {
  padding-top: 15px;
}
.team-details-person-bio .name {
  font-size: 42px;
  line-height: 1.19;
  margin-bottom: 15px;
  font-weight: 800;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-details-person-bio .name {
    font-size: 36px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-person-bio .name {
    font-size: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-person-bio .name {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .team-details-person-bio .name {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team-details-person-bio .name {
    font-size: 36px;
  }
}
.team-details-person-bio .skill-name {
  font-size: 20px;
  text-transform: capitalize;
  background: var(--chy-gd-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  display: block;
  line-height: 1;
  margin-bottom: 28px;
}

.team-details-person-bio-list li {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--urbanist);
  color: #504E4E;
}
.team-details-person-bio-list li:not(:last-child) {
  margin-bottom: 10px;
}
.team-details-person-bio-list li span {
  display: inline-block;
  color: var(--chy-h1-color);
  width: 32%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details-person-bio-list li span {
    width: 40%;
  }
}

.team-details-person-social .title {
  font-size: 20px;
  margin-bottom: 20px;
}
.team-details-person-social li {
  display: inline-block;
}
.team-details-person-social li:not(:last-child) {
  margin-right: 10px;
}
.team-details-person-social li a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  color: #9A46ED;
  border: 1px solid #9A46ED;
  display: inline-block;
}
.team-details-person-social li a:hover {
  background-color: #9A46ED;
  color: #fff;
}

.team-details-person-short-bio .title {
  font-size: 30px;
  line-height: 1.33;
  font-weight: 700;
  color: #0E191E;
  margin-bottom: 20px;
}
.team-details-person-short-bio .text {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

.team-details-person-skill .title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 20px;
}
.team-details-person-skill .progress-item .progress-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.team-details-person-skill .progress-item .progress-heading .title, .team-details-person-skill .progress-item .progress-heading span {
  color: #0E191E;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  margin-bottom: 0;
}
.team-details-person-skill .progress-item .progress-heading span {
  color: #5b00aa;
}
.team-details-person-skill .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  background-color: #F4EFFD;
}
.team-details-person-skill .progress-item .progress-bar {
  background: var(--chy-gd-1);
  width: 50%;
  position: relative;
}
.team-details-person-skill .progress-item .progress-bar::after {
  content: "";
  width: 8px;
  height: 20px;
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
  background: #5b00aa;
}
.team-details-person-skill .progress-item .progress-bar:is(.w-60) {
  width: 60%;
}
.team-details-person-skill .progress-item .progress-bar:is(.w-85) {
  width: 85%;
}
.team-details-person-skill .progress-item .progress-bar:is(.w-90) {
  width: 90%;
}

.team-details-person-dic .title {
  font-size: 30px;
  line-height: 1.33;
  font-weight: 800;
  margin-bottom: 20px;
}
.team-details-person-dic .text {
  margin-bottom: 20px;
}

.contact-form-wrap {
  background: rgba(14, 25, 30, 0.04);
  border-radius: 10px;
  padding: 45px 40px;
}
@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 45px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrap {
    padding: 45px 40px;
  }
}
.contact-form-wrap .title {
  font-size: 36px;
  line-height: 1.27;
  margin-bottom: 20px;
}
.contact-form-wrap .text {
  margin-bottom: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}
@media (max-width: 767px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}
.contact-form input, .contact-form .option-selector, .contact-form textarea {
  width: 100%;
  height: 62px;
  border-radius: 100px;
  outline: none;
  border: none;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  color: #504E4E;
  text-transform: capitalize;
  font-family: var(--urbanist);
  padding: 0 30px;
}
.contact-form input::placeholder, .contact-form .option-selector::placeholder, .contact-form textarea::placeholder {
  font-size: 18px;
  font-weight: 400;
  color: #606364;
  font-family: var(--urbanist);
}
.contact-form .option-selector .current {
  padding-top: 12px;
  display: inline-block;
}
.contact-form textarea {
  height: 178px;
  padding-top: 15px;
  border-radius: 10px;
  grid-column-start: 1;
  grid-column-end: -1;
}
.contact-form .btn-wrap {
  grid-column-start: 1;
  grid-column-end: -1;
  text-align: center;
  padding-top: 20px;
}
.contact-form .btn-wrap .chy-pr-btn-1 {
  border: none;
  outline: none;
}
@media (max-width: 767px) {
  .contact-form .btn-wrap .chy-pr-btn-1 {
    padding: 21px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form .btn-wrap .chy-pr-btn-1 {
    padding: 21px 40px;
  }
}

.nice-select.option-selector::after {
  border-bottom: 1px solid #707480;
  border-right: 1px solid #707480;
  width: 8px;
  height: 8px;
  right: 35px;
}

/* 
team-details-page
======end====== 
*/
.chy-faq-page-content {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-faq-page-content {
    padding-bottom: 50px;
  }
}
.chy-faq-page-content .section-title-wrap {
  position: sticky;
  top: 120px;
  margin-bottom: 90px;
}

.chy-faq-page-accordion .chy-sd-1-item .accordion-item {
  background: #fff;
}
.chy-faq-page-accordion .chy-sd-1-item .accordion-item .accordion-header .accordion-button {
  background: transparent;
}
.chy-faq-page-accordion .chy-sd-1-item .accordion-item .accordion-header .accordion-button .icon-2 {
  -webkit-text-fill-color: #F08441;
}
.chy-faq-page-accordion .chy-sd-1-item .accordion-item .accordion-body .disc {
  margin-top: 0;
}

.chy-testimonial-page-item {
  background: #fff;
  border-radius: 10px;
  padding: 45px 40px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 25px;
  position: relative;
  overflow: hidden;
  transition: 400ms ease-in-out;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .chy-testimonial-page-item {
    grid-template-columns: auto;
    padding: 45px 15px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-testimonial-page-item {
    grid-template-columns: auto auto;
    padding: 45px 40px;
    padding-bottom: 45px;
  }
}
.chy-testimonial-page-item .comment {
  font-size: 24px;
  font-weight: 500;
  color: #141515;
  line-height: 1.66;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-testimonial-page-item .comment {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-testimonial-page-item .comment {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .chy-testimonial-page-item .comment {
    font-size: 18px;
  }
}
.chy-testimonial-page-item .icon i {
  background: var(--chy-gd-1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-size: 70px;
  line-height: 1;
}
.chy-testimonial-page-item .name {
  font-size: 24px;
  color: #F08441;
  margin-bottom: 10px;
}
.chy-testimonial-page-item .bio {
  font-size: 16px;
  font-weight: 500;
  color: #504E4E;
  display: block;
  line-height: 20px;
}
.chy-testimonial-page-item .person-img {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #5b00aa;
  overflow: hidden;
}
.chy-testimonial-page-item:hover {
  box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.3137254902);
}

/* 
progress-page
======start====== 
*/
.our-process-page-item {
  display: grid;
  grid-template-columns: 595px 1fr;
  align-items: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .our-process-page-item {
    grid-template-columns: 410px 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .our-process-page-item {
    grid-template-columns: 1fr;
  }
}
.our-process-page-item .img-wrap {
  width: 100%;
  height: 380px;
  border-radius: 30px;
  overflow: hidden;
}
.our-process-page-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-process-page-item .content-wrap {
  width: 100%;
  max-width: 740px;
  border-radius: 50px;
  background: #fff;
  padding: 40px 50px;
  margin-left: -175px;
  margin-bottom: -40px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .our-process-page-item .content-wrap {
    margin-left: 0;
    margin-right: 0;
    margin-top: -50px;
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .our-process-page-item .content-wrap {
    margin-left: 0;
    margin-right: 0;
    padding: 40px 20px;
    margin-top: -50px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .our-process-page-item .content-wrap {
    margin-left: 0;
    margin-right: 0;
    padding: 40px 50px;
    margin-top: -50px;
    margin-bottom: 0px;
  }
}
.our-process-page-item .title {
  font-size: 34px;
  line-height: 1.29;
  margin-bottom: 20px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .our-process-page-item .title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .our-process-page-item .title {
    font-size: 34px;
  }
}
.our-process-page-item .text {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 35px;
}
.our-process-page-item:is(.style-2) {
  grid-template-columns: 1fr 595px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .our-process-page-item:is(.style-2) {
    grid-template-columns: 1fr 410px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .our-process-page-item:is(.style-2) {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .our-process-page-item:is(.style-2) .img-wrap {
    grid-row-start: 1;
  }
}
.our-process-page-item:is(.style-2) .content-wrap {
  margin-left: 175px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .our-process-page-item:is(.style-2) .content-wrap {
    margin-left: 0;
    margin-right: 0;
    margin-top: -50px;
    margin-bottom: 0px;
  }
}

/* 
progress-page
======end====== 
*/
.projects-details-disc .title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects-details-disc .title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-disc .title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .projects-details-disc .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .projects-details-disc .title {
    font-size: 35px;
  }
}
.projects-details-disc .disc {
  margin-bottom: 20px;
}
.projects-details-disc .main-img {
  height: 375px;
  overflow: hidden;
  margin-bottom: 20px;
}

.projects-details-info {
  background: var(--chy-gd-1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .projects-details-info {
    margin-top: 30px;
  }
}
.projects-details-info > .title {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.08;
  padding: 30px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects-details-info > .title {
    font-size: 20px;
  }
}

.projects-details-info .padding-wrap {
  padding: 0 32px;
}

.projects-details-info-item {
  padding: 20px 0;
}
.projects-details-info-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.projects-details-info-item .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 30px;
}
.projects-details-info-item .text {
  font-size: 18px;
  color: #fff;
  display: block;
  text-transform: capitalize;
  font-weight: 400;
  line-height: 30px;
  line-break: anywhere;
}
.projects-details-wrap-2 {
  background-color: #F5F5F6;
}

.projects-details-info-social {
  text-align: center;
  padding: 22px 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.projects-details-info-social li {
  display: inline-block;
}
.projects-details-info-social li:not(:last-child) {
  margin-right: 20px;
}
.projects-details-info-social li a {
  display: block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
  line-height: 42px;
  color: #fff;
  transition: 400ms;
}
.projects-details-info-social li a:hover {
  color: var(--chy-pr-1);
  background-color: #fff;
}

.projects-details-feature-img {
  padding-right: 55px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-feature-img {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .projects-details-feature-img {
    padding-bottom: 50px;
    padding-right: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .projects-details-feature-img {
    padding-bottom: 50px;
    padding-right: 55px;
  }
}
.projects-details-feature-img .main-img {
  width: 100%;
  height: 585px;
  border-radius: 0 200px 0 0;
  overflow: hidden;
  margin-left: -18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-feature-img .main-img {
    margin-left: 0px;
  }
}
@media (max-width: 767px) {
  .projects-details-feature-img .main-img {
    margin-left: 0px;
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .projects-details-feature-img .main-img {
    margin-left: 0px;
    height: 585px;
  }
}
.projects-details-feature-img::after {
  width: 92%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  background: transparent;
  border: 3px solid #5b00aa;
  border-radius: 0 200px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .projects-details-feature-img::after {
    width: 97%;
    height: 95%;
  }
}
@media (max-width: 767px) {
  .projects-details-feature-img::after {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .projects-details-feature-img::after {
    width: 97%;
    height: 95%;
    display: block;
  }
}

.projects-details-feature-content .title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects-details-feature-content .title {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .projects-details-feature-content .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .projects-details-feature-content .title {
    font-size: 32px;
  }
}
.projects-details-feature-content .disc {
  margin-bottom: 20px;
}

.projects-details-feature-list li {
  font-family: var(--urbanist);
  font-size: 18px;
  font-weight: 400;
  color: #141515;
  line-height: 28px;
  margin-bottom: 15px;
}
.projects-details-feature-list li i {
  color: #F08441;
  margin-right: 5px;
  transform: translateY(3px);
  display: inline-block;
}

.projects-details-wrap-3 .projects-details-feature-img {
  padding-right: 0;
  padding-left: 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .projects-details-wrap-3 .projects-details-feature-img {
    padding-left: 0;
    padding-top: 70px;
    padding-bottom: 0;
  }
}
.projects-details-wrap-3 .projects-details-feature-img .main-img {
  margin-left: 0;
}
.projects-details-wrap-3 .projects-details-feature-img::after {
  top: -18px;
  background: #FDEDE3;
  border: 0;
  left: 70px;
  border-radius: 0 200px 0 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .projects-details-wrap-3 .projects-details-feature-img::after {
    top: unset;
    left: 70px;
    bottom: 0;
  }
}

.career-page-item-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .career-page-item-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .career-page-item-wrap {
    grid-template-columns: 1fr;
  }
}

.career-page-item {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 30px 25px;
  background-color: #fff;
  border: 2px solid;
  border-color: transparent;
  transition: 400ms ease-in-out;
}
.career-page-item .icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.career-page-item .icon {
  flex: 0 0 auto;
}
.career-page-item .full-time {
  border: 1px solid #F08441;
  border-radius: 50px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 28px;
  color: #F08441;
  padding: 4px 15px;
}
.career-page-item .title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.33;
  margin-bottom: 15px;
}
.career-page-item .meta {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(9, 9, 9, 0.1);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.career-page-item .meta span {
  font-size: 18px;
  display: inline-block;
  color: #504E4E;
  line-height: 30px;
  text-transform: capitalize;
}
.career-page-item .meta span i {
  color: #EB5C18;
  margin-right: 7px;
}
.career-page-item .disc {
  margin-bottom: 25px;
}
.career-page-item .btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.career-page-item .chy-pr-btn-1 {
  box-shadow: none;
}
.career-page-item .price {
  font-size: 26px;
  color: #504E4E;
}
.career-page-item:hover {
  border-color: #5b00aa;
}

.career-details-page-content {
  padding: 30px;
  background: #F7F8F8;
  border-radius: 10px;
}
.career-details-page-content .main-img {
  width: 100%;
  height: 266px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.career-details-page-content .title {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 40px;
}
@media (max-width: 767px) {
  .career-details-page-content .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .career-details-page-content .title {
    font-size: 35px;
  }
}
.career-details-page-content .subtitle {
  font-weight: 700;
  line-height: 1.33;
  margin-bottom: 20px;
  font-size: 30px;
}
@media (max-width: 767px) {
  .career-details-page-content .subtitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .career-details-page-content .subtitle {
    font-size: 28px;
  }
}
.career-details-page-content .disc {
  font-weight: 500;
  margin-bottom: 20px;
}

.career-details-page-content-list li {
  font-family: var(--urbanist);
  font-weight: 400;
  font-size: 18px;
  color: #504E4E;
  line-height: 28px;
}
.career-details-page-content-list li:not(:last-child) {
  margin-bottom: 15px;
}
.career-details-page-content-list li i {
  transform: translateY(3px);
  display: inline-block;
  margin-right: 5px;
  color: var(--chy-pr-1);
}

.career-details-page-sidebar {
  background: #141515;
  border-radius: 10px;
}
.career-details-page-sidebar .padding-wrap {
  padding: 0 40px;
}
.career-details-page-sidebar > .title {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  text-align: center;
  line-height: 1.08;
  padding: 30px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
}
.career-details-page-sidebar .btn-wrap {
  text-align: center;
  padding: 25px 15px;
}
.career-details-page-sidebar .projects-details-info-item .title i {
  color: #F08441;
  display: inline-block;
  margin-right: 3px;
  transform: translateY(3px);
}
.career-details-page-sidebar .projects-details-info-item:nth-last-child(1n) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.jobs-apply-area .upload-file {
  grid-column-start: 1;
  grid-column-end: -1;
}
.jobs-apply-area .upload-file .title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.jobs-apply-area .section-title-wrap .chy-section-para-1 {
  max-width: 707px;
  margin-left: auto;
  margin-right: auto;
}

.upload-file-btn-wrap .upload-file-btn {
  display: inline-block;
  border: none;
  outline: none;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 15px;
  background-color: #161D39;
  color: #fff;
  border-radius: 30px;
  padding: 15px 40px;
  transition: 400ms ease;
}
.upload-file-btn-wrap .upload-file-btn:hover {
  background-color: var(--chy-pr-1);
}
.upload-file-btn-wrap .text {
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  color: #0E191E;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .upload-file-btn-wrap .text {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .upload-file-btn-wrap .text {
    display: inline-block;
  }
}

.jobs-apply-wrap {
  padding-left: 120px;
  padding-right: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .jobs-apply-wrap {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.blog-page-item {
  overflow: hidden;
  border: 1px solid rgba(20, 21, 21, 0.15);
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  transition: 400ms cubic-bezier(0.17, 0.46, 0.55, 0.71);
}
.blog-page-item:not(:last-child) {
  margin-bottom: 30px;
}
.blog-page-item .main-img {
  border-radius: 20px;
  width: 100%;
  height: 333px;
  overflow: hidden;
}
.blog-page-item .main-img img {
  transform: rotateX(0deg) rotateY(0deg) scale(1);
  transition: 600ms cubic-bezier(0.17, 0.46, 0.55, 0.71);
}
.blog-page-item .meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 50px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(20, 21, 21, 0.1);
  margin-bottom: 22px;
}
.blog-page-item .meta span {
  display: inline-block;
  text-transform: capitalize;
}
.blog-page-item .meta span i {
  display: inline-block;
  margin-right: 5px;
  transform: translateY(2px);
}
.blog-page-item .title {
  font-size: 32px;
  line-height: 1.31;
  font-weight: 800;
  margin-bottom: 15px;
  transition: 400ms cubic-bezier(0.17, 0.46, 0.55, 0.71);
}
.blog-page-item .title:hover {
  color: var(--chy-pr-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-page-item .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-page-item .title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .blog-page-item .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-page-item .title {
    font-size: 26px;
  }
}
.blog-page-item .disc {
  margin-bottom: 25px;
}
.blog-page-item .chy-pr-btn-1 {
  background: #5B5B5B;
  box-shadow: none;
}
.blog-page-item .chy-pr-btn-1::after {
  background: #fff;
}
.blog-page-item .chy-pr-btn-1:hover::after {
  background: var(--chy-gd-1);
}
.blog-page-item:hover {
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
}
.blog-page-item:hover .main-img img {
  transform: rotateX(15deg) rotateY(-15deg) scale(1.2);
}

.page-next-prev-btn button, .page-next-prev-btn span, .page-next-prev-btn a {
  height: 54px;
  width: 54px;
  display: inline-block;
  border: none;
  text-decoration: none;
  outline: none;
  border-radius: 50%;
  text-align: center;
  background-color: transparent;
  line-height: 54px;
  text-transform: uppercase;
  color: #555555;
  font-size: 20px;
  font-weight: 700;
  margin: 0 2px;
  margin-bottom: 10px;
  border: 1px solid rgba(22, 35, 43, 0.1);
  transition: 400ms ease-in-out;
}
.page-next-prev-btn button:hover, .page-next-prev-btn span:hover, .page-next-prev-btn a:hover {
  border-color: var(--chy-pr-1);
  color: var(--chy-pr-1);
}
.page-next-prev-btn button:is(.active), .page-next-prev-btn span:is(.active), .page-next-prev-btn a:is(.active) {
  background: var(--chy-gd-1);
  color: #fff;
}
.page-next-prev-btn span {
  padding: 0 18px;
}

.blog-page-2-item .chy-blog-1-item .title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.38;
}
@media (max-width: 767px) {
  .blog-page-2-item .chy-blog-1-item .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-page-2-item .chy-blog-1-item .title {
    font-size: 26px;
  }
}
.blog-page-2-item .chy-blog-1-item .main-img img {
  clip-path: unset;
}
.blog-page-2-item .chy-blog-1-item:hover .main-img img {
  clip-path: unset;
}

.blog-details-content .main-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-details-content .main-img {
    height: 350px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-content .main-img {
    height: 420px;
  }
}
.blog-details-content .title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.19;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .title {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .blog-details-content .title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-content .title {
    font-size: 32px;
  }
}
.blog-details-content .subtitle {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
  color: #0E191E;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-content .subtitle {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-content .subtitle {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .blog-details-content .subtitle {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-content .subtitle {
    font-size: 28px;
  }
}
.blog-details-content .disc {
  margin-bottom: 20px;
}
.blog-details-content .inner-div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
}
@media (max-width: 767px) {
  .blog-details-content .inner-div {
    grid-template-columns: auto;
  }
}

.blog-details-content-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 50px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(20, 21, 21, 0.1);
  margin-bottom: 22px;
}
.blog-details-content-meta span {
  display: inline-block;
  text-transform: capitalize;
}
.blog-details-content-meta span i {
  display: inline-block;
  margin-right: 5px;
  transform: translateY(2px);
}

.blog-details-blockquote-1 {
  background-color: #F8F5FE;
  color: #141515;
  font-family: var(--urbanist);
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 32px;
  position: relative;
  padding: 30px;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 767px) {
  .blog-details-blockquote-1 {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-blockquote-1 {
    padding: 20px;
  }
}
.blog-details-blockquote-1 .author {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  color: var(--chy-pr-1);
  text-transform: uppercase;
  line-height: 30px;
  padding-left: 70px;
  margin-top: 14px;
}
.blog-details-blockquote-1 .author::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background: var(--chy-gd-1);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.blog-details-blockquote-1 .icon {
  font-size: 120px;
  color: var(--chy-pr-1);
  line-height: 1;
  position: absolute;
  left: 20px;
  top: 0;
  opacity: 0.1;
}

.blog-details-content-list li {
  font-size: 18px;
  font-family: var(--urbanist);
  color: #141515;
  line-height: 28px;
  font-weight: 400;
}
.blog-details-content-list li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-details-content-list li i {
  margin-right: 6px;
  display: inline-block;
  transform: translateY(3px);
  color: #F08441;
}

.blog-details-tag-share-wrap {
  padding: 25px 0;
  border-top: 1px solid rgba(20, 21, 21, 0.1);
  border-bottom: 1px solid rgba(20, 21, 21, 0.1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.blog-details-tag-share-wrap .title {
  font-size: 22px;
  display: inline-block;
  line-height: 26px;
  font-weight: 700;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .blog-details-tag-share-wrap .blog-details-tag {
    margin-bottom: 20px;
  }
}
.blog-details-tag-share-wrap .blog-details-tag a {
  background: #F8F8F9;
  color: #504E4E;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
  padding: 7px 25px;
  transition: 300ms ease;
}
.blog-details-tag-share-wrap .blog-details-tag a:hover {
  background-color: var(--chy-pr-1);
  color: #fff;
}
.blog-details-tag-share-wrap .blog-details-share a {
  display: inline-block;
  transition: 400ms;
}
.blog-details-tag-share-wrap .blog-details-share a:hover {
  scale: 1.03;
}

.blog-next-btn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px 25px;
  background: #F8F8F9;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-next-btn {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.blog-next-btn .btn-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-next-btn .btn-item:not(:last-child) {
  padding-right: 30px;
  border-right: 1px solid rgba(84, 86, 97, 0.08);
}
@media (max-width: 767px) {
  .blog-next-btn .btn-item:not(:last-child) {
    padding-right: 0px;
    border-right: 0px solid rgba(84, 86, 97, 0.08);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-next-btn .btn-item:not(:last-child) {
    padding-right: 30px;
    border-right: 1px solid rgba(84, 86, 97, 0.08);
  }
}
.blog-next-btn .btn-item:not(:first-child) {
  padding-left: 30px;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .blog-next-btn .btn-item:not(:first-child) {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-next-btn .btn-item:not(:first-child) {
    padding-left: 30px;
  }
}
.blog-next-btn .btn-item:not(:first-child) .content-wrap {
  text-align: right;
}
@media (max-width: 767px) {
  .blog-next-btn .btn-item {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-next-btn .btn-item {
    flex-wrap: nowrap;
  }
}
.blog-next-btn .main-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-next-btn .main-img {
    width: 80px;
    height: 80px;
  }
}
.blog-next-btn .main-img .arrow-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 30px;
  color: #fff;
  width: 52px;
  height: 52px;
  border: 2px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  transition: 400ms ease-in-out;
  z-index: 2;
}
.blog-next-btn .main-img::after {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(87deg, #5b00aa 57.32%, #4a0088 97.15%);
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 400ms ease-in-out;
}
.blog-next-btn .main-img:hover .arrow-btn {
  background: #fff;
  color: var(--chy-pr-1);
}
.blog-next-btn .main-img:hover::after {
  opacity: 0.5;
}
.blog-next-btn .date {
  font-size: 14px;
  font-weight: 500;
  color: var(--chy-pr-1);
  text-transform: uppercase;
  line-height: 26px;
  margin-bottom: 5px;
}
.blog-next-btn .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}
.blog-next-btn .title:hover {
  color: var(--chy-pr-1);
}

.blog-details-comment-item {
  background: var(--chy-gd-1);
  border-radius: 5px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .blog-details-comment-item {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-comment-item {
    flex-wrap: nowrap;
  }
}

.blog-details-comment-item .img-wrap {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 50%;
}
.blog-details-comment-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details-comment-item .name {
  font-size: 24px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}
.blog-details-comment-item .comment-text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
  margin-bottom: 20px;
}
.blog-details-comment-item .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.blog-details-comment-item .social-link li a {
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
.blog-details-comment-item .social-link li a:hover {
  color: #F08441;
}

.blog-details-comments-wrap .title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.27;
  margin-bottom: 20px;
}

.comments-box-single {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid rgba(20, 21, 21, 0.1);
}
@media (max-width: 767px) {
  .comments-box-single {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .comments-box-single {
    flex-wrap: nowrap;
  }
}
.comments-box-single:nth-last-child(1) {
  border-bottom: 1px solid rgba(20, 21, 21, 0.1);
}
.comments-box-single .person-img {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.comments-box-single .heading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.comments-box-single .name {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 5px;
}
.comments-box-single .date {
  display: block;
  font-family: var(--urbanist);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-transform: capitalize;
  color: #504E4E;
}
.comments-box-single .reply-btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-transform: capitalize;
  color: #F08441;
  transition: 400ms ease;
}
.comments-box-single .reply-btn i {
  display: inline-block;
  margin-right: 5px;
}
.comments-box-single .reply-btn:hover {
  color: var(--chy-pr-1);
}
.comments-box-single .comment-text {
  width: 80%;
}

.blog-details-content .contact-form-wrap .btn-wrap {
  text-align: left;
}

.blog-details-title {
  font-family: var(--urbanist);
  color: #111010;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 25px;
}

.blog-detalis-pera {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: #606364;
  margin-bottom: 20px;
}

.blog-details-inner-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
@media (max-width: 767px) {
  .blog-details-inner-img {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-inner-img {
    grid-template-columns: 1fr 1fr;
  }
}
.blog-details-inner-img .img-item {
  width: 100%;
  height: 245px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-details-inner-img .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details-subtitle {
  font-size: 36px;
  font-weight: 900;
  color: #0E191E;
  line-height: 1.27;
  margin-bottom: 20px;
  font-family: var(--urbanist);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-details-subtitle {
    font-size: 34px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-subtitle {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .blog-details-subtitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details-subtitle {
    font-size: 28x;
  }
}

.blog-details-post-next-btn {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid rgba(17, 16, 16, 0.1);
}
@media (max-width: 767px) {
  .blog-details-post-next-btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.blog-details-post-next-btn .next-prv-btn {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #0E191E;
  text-transform: uppercase;
  transition: 400ms ease;
}
.blog-details-post-next-btn .next-prv-btn i {
  margin: 0 5px;
}
.blog-details-post-next-btn .next-prv-btn:hover {
  color: var(--pr-ec4814);
}

.texdft a {
  display: inline-block;
  background-color: #F5F5F5;
  color: #080821;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
  height: 28px;
  padding: 0 12px;
  margin-right: 2px;
}
@media (max-width: 767px) {
  .texdft a {
    margin-bottom: 5px;
  }
}
.texdft a:hover {
  background-color: var(--h1-pr-color);
  color: #fff;
}

.contact-page-area .section-title-wrap {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-2-wrap {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15) inset;
  padding: 42px 55px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form-2-wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .contact-form-2-wrap {
    margin-bottom: 50px;
    padding: 42px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-2-wrap {
    margin-bottom: 50px;
    padding: 42px 55px;
  }
}
.contact-form-2-wrap .title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.19;
  margin-bottom: 30px;
}

.contact-form-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 18px;
  grid-template-areas: "item-1 item-5" "item-2 item-5" "item-3 item-5" "item-4 item-4" "item-6 item-6";
}
@media (max-width: 767px) {
  .contact-form-2 {
    grid-template-columns: 1fr;
    grid-template-areas: "item-1 " "item-2 " "item-3" "item-4" "item-5" "item-6";
  }
}
.contact-form-2 input, .contact-form-2 textarea, .contact-form-2 .option-selector {
  width: 100%;
  height: 62px;
  background: #F3F3F5;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 400;
  color: #504E4E;
  text-transform: capitalize;
}
.contact-form-2 input::placeholder, .contact-form-2 textarea::placeholder, .contact-form-2 .option-selector::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #504E4E;
  text-transform: capitalize;
}
.contact-form-2 textarea {
  padding: 16px 25px;
  height: 288px;
  border-radius: 15px;
}
.contact-form-2 .option-selector {
  display: flex;
  align-items: center;
}
.contact-form-2 label {
  display: block;
  font-size: 16px;
  color: #030617;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 26px;
  margin-bottom: 5px;
}
.contact-form-2 label span {
  color: #F08441;
}
.contact-form-2 .chy-pr-btn-1 {
  border: none;
  outline: none;
  box-shadow: none;
}
.contact-form-2 .item1 {
  grid-area: item-1;
}
.contact-form-2 .item2 {
  grid-area: item-2;
}
.contact-form-2 .item3 {
  grid-area: item-3;
}
.contact-form-2 .item4 {
  grid-area: item-4;
}
.contact-form-2 .item5 {
  grid-area: item-5;
}
.contact-form-2 .item6 {
  grid-area: item-6;
}

.contact-page-map {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  display: block;
  width: 100%;
  height: 290px;
  overflow: hidden;
}
.contact-page-map .iframe {
  width: 100%;
  height: 100%;
}

.contact-page-contact-list .item:not(:last-child) {
  margin-bottom: 25px;
}
.contact-page-contact-list .item:nth-child(1) .icon {
  font-size: 25px;
}
.contact-page-contact-list .icon {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  background: #EEDEFC;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5b00aa;
  font-size: 20px;
}
.contact-page-contact-list .title {
  font-size: 24px;
  line-height: 1.41;
  font-weight: 700;
}
.contact-page-contact-list .text {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  word-break: break-word;
}
.contact-page-contact-list .item {
  display: flex;
  gap: 15px;
}

.contact-page-social-link {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-page-social-link li a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid #5b00aa;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #5b00aa;
  font-size: 22px;
  transition: 400ms ease-in-out;
}
.contact-page-social-link li a:hover {
  background-color: #5b00aa;
  color: #fff;
}

.contact-page-content .border-left {
  padding-left: 40px;
  position: relative;
}
.contact-page-content .border-left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 15px;
  height: 100%;
  background: linear-gradient(87deg, #5b00aa 57.32%, #4a0088 97.15%);
}

/*
************
*************************
04. search
******************************************************* 
*************************************************************** */
.popup-search-box {
  background-color: #030303;
  position: fixed;
  display: flex;
  left: 0;
  top: -100px;
  width: 100%;
  z-index: 5;
  height: 100vh;
  align-items: center;
  transform: scaleY(0);
  transition: 700ms ease-in-out;
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
}
.popup-search-box .title {
  font-family: var(--ss4);
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .popup-search-box .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .popup-search-box .title {
    font-size: 36px;
  }
}
.popup-search-box-form {
  display: flex;
}
@media (max-width: 767px) {
  .popup-search-box-form {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .popup-search-box-form {
    flex-wrap: nowrap;
  }
}
.popup-search-box-form .popup-search-box-close-action-btn {
  height: 60px;
  width: 60px;
  font-size: 30px;
  border: none;
  outline: none;
  border-radius: 5px;
  margin-left: 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  flex: 0 0 auto;
}
@media (max-width: 767px) {
  .popup-search-box-form .popup-search-box-close-action-btn {
    margin: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .popup-search-box-form .popup-search-box-close-action-btn {
    margin-left: 25px;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.popup-search-box-form .popup-search-box-close-action-btn:hover {
  background-color: var(--h1-pr-color);
  border-color: transparent;
}
@media (max-width: 767px) {
  .popup-search-box {
    height: 100%;
    overflow-y: auto;
  }
}
.popup-search-box.active {
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.popup-search-box form {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .popup-search-box form {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .popup-search-box form {
    margin-bottom: 0px;
  }
}
.popup-search-box-input input {
  width: 100%;
  height: 60px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  padding: 0 30px;
  padding-right: 115px;
}
.popup-search-box-input input::placeholder {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 767px) {
  .popup-search-box-input input {
    width: 100%;
    background-color: transparent;
    opacity: 0.7;
  }
}
.popup-search-box button[type=submit] {
  position: absolute;
  right: 0;
  top: 0px;
  bottom: 0;
  padding: 0 30px;
  background: transparent;
  color: white;
  font-size: 24px;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: none;
  border-top: none;
  border-bottom: none;
}
.popup-search-box button[type=submit]:hover {
  color: #fff;
  background-color: var(--h1-pr-color);
}

.chy-footer-1-area {
  background: #5b00aa;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.chy-footer-1-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Footer Decorators */
.footer-top-decorator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.decorator-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float-shape 20s infinite ease-in-out;
}
.decorator-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  top: 10%;
  left: -100px;
  animation-delay: 0s;
}
.decorator-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  top: 60%;
  right: -80px;
  animation-delay: 5s;
}
.decorator-shape.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}
/* Newsletter Section */
.footer-newsletter-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.footer-newsletter-section:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.newsletter-content {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}
.newsletter-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.footer-newsletter-section:hover .newsletter-icon {
  transform: rotate(15deg) scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}
.newsletter-text {
  flex: 1;
}
.newsletter-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--urbanist);
}
.newsletter-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.6;
}
.newsletter-form {
  flex: 1;
  max-width: 500px;
}
.newsletter-form .input-group {
  display: flex;
  gap: 10px;
  position: relative;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 25px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 15px;
  font-family: var(--urbanist);
  outline: none;
  transition: all 0.3s ease;
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.newsletter-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.2);
}
.newsletter-btn {
  padding: 16px 35px;
  background: #fff;
  color: var(--chy-pr-1);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--urbanist);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.newsletter-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.newsletter-btn i {
  transition: all 0.3s ease;
}
.newsletter-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .footer-newsletter-section {
    flex-direction: column;
    padding: 35px 30px;
    text-align: center;
  }
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    width: 100%;
    max-width: 100%;
  }
  .newsletter-form .input-group {
    flex-direction: column;
  }
  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Footer Stats Section */
.footer-stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}
.stat-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.stat-item-animate {
  animation: statPulse 2s ease-in-out;
}

.stat-icon-animate {
  animation: iconRotate 2s ease-in-out;
}

.stat-number {
  transition: all 0.3s ease;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes statPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(162, 73, 237, 0.3);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

/* Enhanced hover effects */
.stat-item:hover .stat-icon {
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 4px 15px rgba(162, 73, 237, 0.4);
}
.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.stat-item:hover .stat-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: rotateY(180deg);
}
.stat-content {
  flex: 1;
}
.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
  font-family: var(--urbanist);
  line-height: 1;
}
.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-weight: 500;
}

@media (max-width: 991px) {
  .footer-stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .footer-stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Footer Features Grid */
.footer-features-grid-all {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.feature-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  width: 100%;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 16px;
  color: white;
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  width: 100%;
}

.feature-content h5 {
  font-size: 11px;
  font-weight: 600;
  color: white;
  margin: 0 0 2px 0;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

.feature-content p {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}

/* Responsive Features Grid */
@media (max-width: 768px) {
  .footer-features-grid-all {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    max-width: 400px;
  }
  
  .feature-box {
    height: 80px;
    padding: 8px 6px;
  }
  
  .feature-icon {
    width: 28px;
    height: 28px;
  }
  
  .feature-icon i {
    font-size: 14px;
  }
  
  .feature-content h5 {
    font-size: 10px;
    margin-bottom: 2px;
  }
  
  .feature-content p {
    font-size: 8px;
  }
}

@media (max-width: 480px) {
  .footer-features-grid-all {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 15px;
    max-width: 320px;
  }
  
  .feature-box {
    height: 70px;
    padding: 6px 4px;
  }
  
  .feature-icon {
    width: 24px;
    height: 24px;
  }
  
  .feature-icon i {
    font-size: 12px;
  }
  
  .feature-content h5 {
    font-size: 9px;
    margin-bottom: 1px;
  }
  
  .feature-content p {
    font-size: 7px;
  }
}

/* Footer App Buttons */
.footer-app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-button {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.app-button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
}

.app-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.app-icon i {
  font-size: 18px;
  color: white;
}

.app-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  margin-bottom: 2px;
  font-family: var(--urbanist);
  font-weight: 400;
}

.app-name {
  font-size: 14px;
  color: white;
  font-weight: 600;
  line-height: 1;
  font-family: var(--urbanist);
}

/* App Button Specific Styles */
.android:hover .app-icon {
  background: rgba(76, 175, 80, 0.3);
}

.ios:hover .app-icon {
  background: rgba(0, 0, 0, 0.3);
}

.windows:hover .app-icon {
  background: rgba(0, 120, 215, 0.3);
}


/* Responsive App Buttons */
@media (max-width: 768px) {
  .footer-app-buttons {
    gap: 10px;
  }
  
  .app-button {
    padding: 10px 14px;
  }
  
  .app-icon {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
  
  .app-icon i {
    font-size: 16px;
  }
  
  .app-label {
    font-size: 9px;
  }
  
  .app-name {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .footer-app-buttons {
    gap: 8px;
  }
  
  .app-button {
    padding: 8px 12px;
  }
  
  .app-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
  }
  
  .app-icon i {
    font-size: 14px;
  }
  
  .app-label {
    font-size: 8px;
  }
  
  .app-name {
    font-size: 12px;
  }
}

/* Footer Menu Links Enhanced */
.chy-footer-1-menu li a {
  font-family: var(--urbanist);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.chy-footer-1-menu li a:hover {
  font-weight: 700;
  color: var(--chy-sd-1);
  transform: translateX(5px);
  text-shadow: 0 2px 6px rgba(162, 73, 237, 0.4);
}

.chy-footer-1-menu li a i {
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-right: 8px;
}

.chy-footer-1-menu li a:hover i {
  color: var(--chy-sd-1);
  transform: scale(1.3);
  text-shadow: 0 2px 4px rgba(162, 73, 237, 0.5);
}

/* Scroll Top Button Enhanced */
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(162, 73, 237, 0.2);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

.scroll-top:hover {
  background: var(--chy-pr-1);
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(162, 73, 237, 0.4);
  border-color: var(--chy-pr-1);
}

.scroll-top-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.scroll-top .icon-1 {
  font-size: 14px;
  color: var(--chy-pr-1);
  transition: all 0.3s ease;
  font-weight: 600;
}

.scroll-top:hover .icon-1 {
  color: white;
}

/* Responsive Scroll Top */
@media (max-width: 768px) {
  .scroll-top {
    right: 12px;
    bottom: 12px;
    width: 32px;
    height: 32px;
  }
  
  .scroll-top .icon-1 {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .scroll-top {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
  
  .scroll-top .icon-1 {
    font-size: 11px;
  }
}

/* Footer Button Primary */
.footer-btn-primary {
  background: #fff !important;
  color: var(--chy-pr-1) !important;
}
.footer-btn-primary .icon {
  color: var(--chy-pr-1) !important;
}
.footer-btn-primary:hover {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}
.footer-btn-primary::after {
  background: var(--chy-pr-1) !important;
}

/* Footer Logo Widget */
.footer-logo-widget {
  grid-column: 1;
}
.footer-logo-section {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.footer-logo {
  margin-bottom: 30px;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.footer-logo:hover {
  transform: translateY(-3px);
}
.footer-logo img {
  height: 75px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 3px 10px rgba(255, 255, 255, 0.4));
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .footer-logo img {
    height: 60px;
  }
}
.footer-logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 5px 15px rgba(255, 255, 255, 0.6));
  transform: scale(1.08);
}
.footer-slogan {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 520px;
  font-weight: 400;
}
/* responsive overrides for logo section */
@media (max-width: 991px) {
  .footer-logo-section {
    flex-direction: column;
    text-align: center;
  }
  .footer-slogan {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.chy-footer-1-meddle {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px 50px;
  padding: 60px 0 70px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1200px) {
  .chy-footer-1-meddle {
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
  }
}
@media (max-width: 768px) {
  .chy-footer-1-meddle {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-footer-1-meddle {
    justify-content: left;
  }
}

.chy-footer-1-widget-title {
  font-size: 8px;
  line-height: 1.3;
  color: #fff !important;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: var(--urbanist);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding-bottom: 18px;
}
.chy-footer-1-widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.chy-footer-1-widget-title:hover::after {
  width: 80px;
}
.chy-footer-1-widget-title i {
  color: #fff;
  font-size: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.chy-footer-1-widget-title:hover i {
  background: rgba(255, 255, 255, 0.25);
  transform: rotateY(180deg);
}
.chy-footer-1-widget-title span {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.chy-footer-1-menu li:not(:last-child) {
  margin-bottom: 14px;
}
.chy-footer-1-menu li a {
  font-size: 15px;
  text-transform: capitalize;
  font-family: var(--urbanist);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: all 0.3s ease;
}
.chy-footer-1-menu li a i {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}
.chy-footer-1-menu li a:hover {
  color: #fff;
  padding-left: 8px;
}
.chy-footer-1-menu li a:hover i {
  color: #fff;
  transform: translateX(3px);
}


.chy-footer-1-social-link {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chy-footer-1-social-link li {
  display: inline-block;
}
.chy-footer-1-social-link li a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.chy-footer-1-social-link li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 0;
}
.chy-footer-1-social-link li a i {
  position: relative;
  z-index: 1;
  font-size: 18px;
}
.chy-footer-1-social-link li a:hover {
  border-color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.chy-footer-1-social-link li a:hover::before {
  transform: translateY(0);
}
.chy-footer-1-social-link li a:hover i {
  color: var(--chy-pr-1);
}

.chy-footer-1-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .chy-footer-1-bottom {
    justify-content: center;
    text-align: center;
  }
}
.chy-footer-1-bottom .copyright-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--urbanist);
  margin: 0;
}
.copyright-link .brand-name {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.copyright-link .separator {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
}
.copyright-link .rights {
  color: rgba(255, 255, 255, 0.75);
}

/* Footer Contact Info */
.footer-contact-info {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.contact-info-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--urbanist);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.contact-item:last-child {
  margin-bottom: 0;
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.contact-item:hover .contact-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.contact-icon i {
  font-size: 16px;
  color: #fff;
}
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--urbanist);
}
.contact-details span,
.contact-details a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--urbanist);
}
.contact-details a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Footer Bottom Layout */
.footer-bottom-left,
.footer-bottom-center,
.footer-bottom-right {
  flex: 1;
}
.footer-bottom-left {
  text-align: left;
}
.footer-bottom-center {
  text-align: center;
}
.footer-bottom-right {
  text-align: right;
}
.footer-links {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.footer-links a:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    text-align: center;
    margin-bottom: 20px;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-logo-section {
    text-align: center;
    margin-bottom: 30px;
  }
  .footer-slogan {
    max-width: 100%;
  }
  .footer-logo-widget {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* Header Layout - Perfect Three Equal Sections */
.chy-header-1-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  height: 88px;
  position: relative;
  padding: 0;
}

.header-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 88px;
  transform: translateY(-15px);
}

.header-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
}

/* Sol menü tipografisini dikeyde tam ortala */
.header-left .chy-main-menu-1 .main-navigation .navbar-nav {
  display: flex;
  align-items: center;
}

/* Sol menü ile logo ve butonlar arasında optik denge */
.chy-container-1 .chy-header-1-wrap {
  min-height: 88px;
}

/* Kurumsal altında yer alan İletişim öğesi için daha belirgin aralık */
.chy-main-menu-1 .main-navigation .navbar-nav li .dropdown-menu li a[href="iletisim.php"] {
  font-weight: 600;
}

.chy-logo {
  display: flex;
  align-items: center;
  height: 100%;
  max-height: 60px;
  width: auto;
  animation: logoFloat 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.chy-logo:hover {
  animation: logoPulse 0.6s ease-in-out infinite alternate;
  transform: scale(1.05);
}

.chy-logo img {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

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

@keyframes logoPulse {
  0% {
    transform: scale(1.05);
    filter: brightness(1);
  }
  100% {
    transform: scale(1.08);
    filter: brightness(1.1);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
  }
  100% {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
  }
}

/* Menü optik hizası: taban çizgisini eşitle */
.chy-main-menu-1 .main-navigation .navbar-nav li a {
  display: inline-flex;
  align-items: center;
}

/* Header Auth Buttons */
.header-auth-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--urbanist);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  height: 40px;
  cursor: pointer;
  position: relative;
  justify-content: center;
  min-width: 110px;
}

.login-btn {
  background: transparent;
  color: var(--chy-pr-1);
  border: 1.5px solid var(--chy-pr-1);
}

.login-btn:hover {
  background: var(--chy-pr-1);
  color: #fff;
  border-color: var(--chy-pr-1);
}

.register-btn {
  background: var(--chy-pr-1);
  color: #fff;
  border: 1.5px solid var(--chy-pr-1);
}

.register-btn:hover {
  background: var(--chy-pr-2);
  border-color: var(--chy-pr-2);
}

.auth-btn .btn-text {
  font-weight: 500;
  transition: all 0.25s ease;
}

.auth-btn .btn-icon {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.auth-btn:hover .btn-icon {
  transform: translateX(3px);
}

/* About Features Styles */
.about-features {
  margin-top: 40px;
}

.about-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 30px 20px;
  background: rgba(92, 0, 169, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature-item:hover {
  background: rgba(92, 0, 169, 0.1);
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--chy-pr-1) 0%, var(--chy-pr-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: #ffffff;
  font-size: 20px;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--chy-text-1);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--chy-text-2);
  margin: 0;
}

/* Kurumsal Intro Text Styles */
.kurumsal-intro-text {
  text-align: left;
  margin: 30px 0 40px;
}

.kurumsal-intro-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--chy-text-2);
  margin-bottom: 20px;
  text-align: justify;
}

.kurumsal-intro-text p:last-child {
  margin-bottom: 0;
}


/* Mobile responsive */
@media (max-width: 1200px) {
  .chy-header-1-wrap {
    padding: 0;
  }
  
  .chy-main-menu-1 .main-navigation .navbar-nav {
    gap: 20px;
  }
  
  .chy-main-menu-1 .main-navigation .navbar-nav li:not(:last-child)::after {
    right: -10px;
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .transparent-header {
    position: fixed;
    background: transparent;
    box-shadow: none;
    border: none;
    z-index: 999;
  }
  
  .chy-header-1-area {
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  
  .chy-header-1-wrap {
    flex-direction: column;
    height: auto;
    padding: 0;
    gap: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    min-height: auto;
  }
  
  .header-left,
  .header-center,
  .header-right {
    flex: none;
    width: 100%;
    height: auto;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
  }
  
  .header-center {
    order: -1;
    padding: 25px 0 15px 0;
    height: auto;
  }
  
  .header-left {
    order: 1;
    display: none;
  }
  
  .header-right {
    order: 2;
    display: none;
  }
  
  .header-auth-buttons {
    gap: 10px;
  }
  
  .auth-btn {
    padding: 9px 18px;
    font-size: 13px;
    height: 38px;
  }
  
  .chy-logo {
    max-height: 40px;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    height: auto;
  }
  
  .chy-logo img {
    max-height: 40px;
    height: auto;
  }
  
  
  body {
    padding-top: 80px !important;
  }
  
  .chy-hero-1-area {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 768px) {
  .transparent-header {
    background: transparent;
    box-shadow: none;
    border: none;
  }
  
  .chy-header-1-area {
    background: transparent;
    box-shadow: none;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .chy-header-1-wrap {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    gap: 0;
    min-height: auto;
  }
  
  .chy-main-menu-1 .main-navigation .navbar-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .chy-main-menu-1 .main-navigation .navbar-nav li:not(:last-child)::after {
    display: none;
  }
  
  .header-left,
  .header-center,
  .header-right {
    background: transparent;
    box-shadow: none;
    border: none;
  }
  
  .header-center {
    padding: 25px 0 15px 0;
    height: auto;
  }
  
  .header-auth-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  
  .auth-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
  }
  
  .chy-logo {
    max-height: 40px;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    height: auto;
  }
  
  .chy-logo img {
    max-height: 40px;
    height: auto;
  }
  
  body {
    padding-top: 80px !important;
  }
  
  .chy-hero-1-area {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 8px 0;
}

.mobile-bottom-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #6b7280;
  padding: 6px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-width: 50px;
}

.nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
  transition: all 0.2s ease;
  color: var(--chy-pr-1);
}

.nav-item span {
  font-size: 11px;
  font-weight: 700;
  font-family: 'Arial', sans-serif;
  transition: all 0.2s ease;
  color: #374151;
  letter-spacing: 0.3px;
}

.nav-item:hover {
  color: var(--chy-pr-1);
  background: rgba(92, 0, 169, 0.05);
}

.nav-item:hover i {
  transform: scale(1.1);
}

.nav-item:hover span {
  color: var(--chy-pr-1);
  font-weight: 700;
}

.nav-login {
  background: var(--chy-pr-1);
  color: #fff !important;
  border-radius: 12px;
  padding: 8px 10px;
  min-width: 60px;
}

.nav-login:hover {
  background: var(--chy-pr-2);
}

.nav-login span {
  color: #fff !important;
  font-weight: 700;
  font-size: 11px;
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.3px;
}

.nav-login i {
  color: #fff !important;
  font-size: 20px;
}

.nav-login:hover i {
  transform: scale(1.1);
}

/* Mobile - Add bottom padding for nav and adjust scroll-top */
@media (max-width: 992px) {
  body {
    padding-bottom: 70px;
  }
  
  .scroll-top.has-home-1 {
    bottom: 80px !important;
    right: 20px !important;
  }
}

/* Desktop - Hide mobile nav */
@media (min-width: 993px) {
  .mobile-bottom-nav {
    display: none !important;
  }
  
  body {
    padding-bottom: 0;
  }
  
  .scroll-top.has-home-1 {
    bottom: 30px !important;
    right: 30px !important;
  }
}

.chy-footer-2-area {
  background: #171717;
}
.chy-footer-2-content .title {
  font-size: 85px;
  color: white;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.4px;
}
@media (max-width: 767px) {
  .chy-footer-2-content .title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-footer-2-content .title {
    font-size: 65px;
  }
}
.chy-footer-2-content .disc {
  font-size: 18px;
  color: #878787;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
  max-width: 450px;
}
.chy-footer-2-content .copyright-link {
  color: #b6bdb9;
  font-size: 16px;
  font-weight: 600;
}
.chy-footer-2-content .copyright-link a:hover {
  color: var(--chy-pr-2);
}
.chy-footer-2-widget-wrap {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30px 100px;
  padding-left: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-footer-2-widget-wrap {
    gap: 30px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-footer-2-widget-wrap {
    padding-left: 0px;
    gap: 30px 30px;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .chy-footer-2-widget-wrap {
    padding-left: 0px;
    gap: 30px 30px;
    padding-top: 50px;
    grid-template-columns: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-footer-2-widget-wrap {
    padding-left: 0px;
    gap: 30px 30px;
    padding-top: 50px;
    grid-template-columns: auto auto auto;
  }
}

.chy-footer-2-widget:is(.has-full-widht) {
  grid-column-start: 1;
  grid-column-end: -1;
}
.chy-footer-2-widget .chy-footer-1-widget-title {
  font-size: 22px;
  font-weight: 900;
}
.chy-footer-2-widget .line {
  display: block;
  width: 100%;
  height: 2px;
  background: #313131;
}
.chy-footer-2-widget .chy-footer-1-menu li a {
  font-size: 16px;
  color: #b6bdb9;
  font-weight: 500;
}
.chy-footer-2-widget .chy-footer-1-menu li a::after {
  background: var(--chy-pr-2);
}
.chy-footer-2-widget .chy-footer-1-menu li a:hover {
  color: var(--chy-pr-2);
}
.chy-footer-2-widget .chy-footer-1-form input {
  width: 100%;
  padding: 0 40px;
  padding-right: 40px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--urbanist);
  border-radius: 5px;
  color: #737373;
  border: none;
  outline: none;
}
.chy-footer-2-widget .chy-footer-1-form input::placeholder {
  color: #737373;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--urbanist);
  text-transform: capitalize;
}
.chy-footer-2-widget .chy-footer-1-form button {
  position: unset;
  width: unset;
  height: unset;
  border: none;
  outline: none;
  background: var(--chy-pr-2);
  font-size: 16px;
  font-weight: 800;
  text-transform: capitalize;
  color: #fff;
  border-radius: 5px;
  padding: 18px 30px;
  margin-top: 10px;
  transition: 400ms ease-in;
}
.chy-footer-2-widget .chy-footer-1-form button:hover {
  background: var(--chy-pr-1);
  letter-spacing: 0.3px;
}

.chy-footer-2-social-link li {
  display: inline-block;
  margin-right: 15px;
}
.chy-footer-2-social-link li a {
  font-size: 25px;
  display: inline-block;
  color: #fff;
  transition: 400ms ease;
}
.chy-footer-2-social-link li a:hover {
  color: var(--chy-pr-2);
}

.chy-footer-2-team {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 15px;
}
.chy-footer-2-team .item {
  height: 125px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.chy-footer-2-team .item::after {
  content: "\f6fd";
  font-family: "Font Awesome 6 pro";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(238, 70, 25, 0.8);
  font-size: 25px;
  color: #fff;
  clip-path: circle(72% at 50% 50%);
  scale: 1.5;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.chy-footer-2-team .item:hover::after {
  scale: 1;
  clip-path: circle(30% at 50% 50%);
  opacity: 1;
}

.chy-footer-3-area {
  background: #1A1B1D;
}
.chy-footer-3-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #232426;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .chy-footer-3-top {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-footer-3-top {
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 50px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-footer-3-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
}
@media (max-width: 767px) {
  .chy-footer-3-top {
    grid-template-columns: 1fr;
    gap: 50px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-footer-3-top {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
}

.chy-footer-3-widget:is(.full-width) {
  grid-column-start: 1;
  grid-column-end: -1;
}
.chy-footer-3-widget .footer-logo {
  display: block;
  margin-bottom: 25px;
}
.chy-footer-3-widget .disc {
  font-size: 17px;
  font-weight: 400;
  color: #7F7F7F;
  line-height: 26px;
  margin-bottom: 28px;
}
.chy-footer-3-widget .chy-footer-2-team .item {
  height: 90px;
}
.chy-footer-3-widget .chy-footer-2-team .item::after {
  background: var(--chy-pr-3);
}
.chy-footer-3-widget .copyright-link {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 35px;
}
.chy-footer-3-widget .copyright-link span {
  color: var(--chy-pr-3);
}

.chy-footer-3-social li {
  display: inline-block;
}
.chy-footer-3-social li:not(:last-child) {
  margin-right: 20px;
}
.chy-footer-3-social li a {
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--urbanist);
  color: #fff;
  transition: 400ms;
}
.chy-footer-3-social li a i {
  display: inline-block;
  line-height: 1;
  margin-right: 3px;
  transform: translateY(2px);
}
.chy-footer-3-social li a:hover {
  color: var(--chy-pr-3);
}

.chy-footer-3-menu li:not(:last-child) {
  margin-bottom: 11px;
}
.chy-footer-3-menu li a {
  font-family: var(--urbanist);
  display: inline-block;
  color: #fff;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 1.75;
  transition: 400ms ease;
}
.chy-footer-3-menu li a i {
  display: inline-block;
  transform: translateY(3px);
  color: var(--chy-pr-3);
  font-size: 19px;
  transition: 400ms ease;
}
.chy-footer-3-menu li a:hover {
  color: var(--chy-pr-3);
}
.chy-footer-3-menu li a:hover i {
  transform: translateY(3px) rotate(45deg);
}

.chy-footer-3-bottom {
  display: grid;
  grid-template-columns: 1.5fr auto auto;
  gap: 50px;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .chy-footer-3-bottom {
    grid-template-columns: 1.5fr auto;
    gap: 50px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-footer-3-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
}
@media (max-width: 767px) {
  .chy-footer-3-bottom {
    grid-template-columns: 1fr;
    gap: 50px 30px;
  }
}

.chy-footer-3-widget-title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  line-height: 1.81;
  margin-bottom: 5px;
}

.chy-footer-3-form {
  position: relative;
}
.chy-footer-3-form input {
  width: 100%;
  height: 55px;
  font-family: var(--urbanist);
  font-weight: 400;
  color: #737373;
  text-transform: capitalize;
  border: none;
  outline: none;
  border-radius: 3px;
  padding-left: 30px;
  padding-right: 150px;
}
.chy-footer-3-form input::placeholder {
  font-family: var(--urbanist);
  font-weight: 400;
  color: #737373;
}
.chy-footer-3-form button {
  font-family: var(--urbanist);
  text-transform: capitalize;
  font-weight: 800;
  font-size: 16px;
  border: none;
  border-radius: 0 3px 3px 0;
  background: var(--chy-pr-3);
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 30px;
  border: 3px solid var(--chy-pr-3);
  border-left: none;
  transition: 400ms;
}
.chy-footer-3-form button:hover {
  border-color: #fff;
}

.chy-footer-3-contact li {
  margin-bottom: 5px;
}
.chy-footer-3-contact li a {
  font-family: var(--urbanist);
  font-weight: 800;
  color: #F9F9F9;
  text-transform: capitalize;
  transition: 400ms;
}
.chy-footer-3-contact li a i {
  display: inline-flex;
  width: 26px;
  height: 26px;
  background: var(--chy-pr-3);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-size: 14px;
  margin-right: 7px;
}
.chy-footer-3-contact li a:hover {
  color: var(--chy-pr-3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .chy-footer-4-il-img {
    margin-bottom: 30px;
  }
}

.chy-footer-4-widget-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-footer-4-widget-wrap {
    gap: 50px 50px;
  }
}
@media (max-width: 767px) {
  .chy-footer-4-widget-wrap {
    gap: 50px 50px;
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-footer-4-widget-wrap {
    gap: 50px 50px;
    grid-template-columns: 1fr 1fr;
  }
}

.chy-footer-4-widget:is(.full-width) {
  grid-column-start: 1;
  grid-column-end: -1;
}
.chy-footer-4-widget .disc {
  font-size: 20px;
  color: #fff;
  line-height: 30px;
}

.chy-footer-4-widget-title {
  font-size: 28px;
  line-height: 1.38;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-footer-4-widget-title {
    font-size: 26px;
  }
}

.chy-footer-4-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}
.chy-footer-4-menu li::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: var(--chy-gd-2);
  transition: 400ms ease-in-out;
}
.chy-footer-4-menu li:not(:last-child) {
  margin-bottom: 8px;
}
.chy-footer-4-menu li a {
  font-family: var(--urbanist);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 30px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  opacity: 0.9;
  text-transform: capitalize;
  padding: 8px 0;
  transition: 400ms ease-in-out;
}
.chy-footer-4-menu li:hover::after {
  width: 100%;
}
.chy-footer-4-menu li:hover a {
  opacity: 1;
  color: var(--chy-pr-4);
}

.chy-footer-4-contact li {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  opacity: 0.9;
  text-transform: capitalize;
}
.chy-footer-4-contact li:not(:last-child) {
  margin-bottom: 15px;
}
.chy-footer-4-contact li i {
  color: #4935DD;
  margin-right: 4px;
}

.chy-footer-4-opening .title {
  font-weight: 700;
  opacity: 1;
  text-decoration: underline;
}
.chy-footer-4-opening li {
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  opacity: 0.9;
}
.chy-footer-4-opening li:not(:last-child) {
  margin-bottom: 15px;
}

.chy-footer-4-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}
.chy-footer-4-bottom .copyright {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  text-transform: capitalize;
  opacity: 0.7;
}
.chy-footer-4-bottom .menu li {
  display: inline-block;
}
.chy-footer-4-bottom .menu li:not(:last-child) {
  margin-right: 50px;
}
.chy-footer-4-bottom .menu li a {
  font-size: 18px;
  line-height: 30px;
  opacity: 0.7;
  color: #fff;
  text-transform: capitalize;
  transition: 400ms ease-in-out;
}
.chy-footer-4-bottom .menu li a:hover {
  color: var(--chy-pr-4);
  opacity: 1;
}

/* ============================================
   Modüller Sayfası - Grid Tasarım
   ============================================ */

.section-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Ek Geliştirmeler */
.module-grid-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
}

.module-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.module-grid-card:hover::before {
  opacity: 1;
}

/* Hover efektleri için ek animasyonlar */
.module-grid-card:hover {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

/* İkon hover efektleri */
.module-grid-card:hover .module-grid-icon i {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.module-grid-card {
  border-radius: 16px;
  padding: 25px 15px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  height: 140px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.module-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #d1d5db;
}

.module-grid-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.module-grid-card:hover .module-grid-icon {
  transform: scale(1.15);
}

.module-grid-icon i {
  font-size: 36px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.module-grid-card:hover .module-grid-icon i {
  transform: scale(1.1);
}

.module-grid-title {
  font-size: 17px;
  font-weight: 600;
  color: #374151;
  margin: 0;
  line-height: 1.4;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-align: center;
  letter-spacing: -0.01em;
}

.module-grid-card:hover .module-grid-title {
  color: #1f2937;
  transform: translateY(-2px);
}

.module-grid-desc {
  display: none;
}

/* Modül Temaları - İkon Renkleri */
.module-theme-1 .module-grid-icon i { color: #3b82f6; } /* Web Site - Mavi */
.module-theme-1:hover { border-color: #3b82f6; }

.module-theme-2 .module-grid-icon i { color: #10b981; } /* Dijital Kart - Yeşil */
.module-theme-2:hover { border-color: #10b981; }

.module-theme-3 .module-grid-icon i { color: #ef4444; } /* PDF - Kırmızı */
.module-theme-3:hover { border-color: #ef4444; }

.module-theme-4 .module-grid-icon i { color: #8b5cf6; } /* Linkler - Mor */
.module-theme-4:hover { border-color: #8b5cf6; }

.module-theme-5 .module-grid-icon i { color: #f59e0b; } /* Resim Galeri - Turuncu */
.module-theme-5:hover { border-color: #f59e0b; }

.module-theme-6 .module-grid-icon i { color: #ec4899; } /* Video Galeri - Pembe */
.module-theme-6:hover { border-color: #ec4899; }

.module-theme-7 .module-grid-icon i { color: #06b6d4; } /* Yorum - Cyan */
.module-theme-7:hover { border-color: #06b6d4; }

.module-theme-8 .module-grid-icon i { color: #84cc16; } /* QR Menü - Lime */
.module-theme-8:hover { border-color: #84cc16; }

.module-theme-9 .module-grid-icon i { color: #6366f1; } /* App Listesi - İndigo */
.module-theme-9:hover { border-color: #6366f1; }

.module-theme-10 .module-grid-icon i { color: #f97316; } /* MP3 - Turuncu */
.module-theme-10:hover { border-color: #f97316; }

.module-theme-11 .module-grid-icon i { color: #eab308; } /* Kupon - Sarı */
.module-theme-11:hover { border-color: #eab308; }

.module-theme-12 .module-grid-icon i { color: #14b8a6; } /* Geri Bildirim - Teal */
.module-theme-12:hover { border-color: #14b8a6; }

.module-theme-13 .module-grid-icon i { color: #a855f7; } /* Oynatma Listesi - Violet */
.module-theme-13:hover { border-color: #a855f7; }

.module-theme-14 .module-grid-icon i { color: #64748b; } /* Açılış Sayfası - Slate */
.module-theme-14:hover { border-color: #64748b; }

.module-theme-15 .module-grid-icon i { color: #dc2626; } /* Etkinlik - Kırmızı */
.module-theme-15:hover { border-color: #dc2626; }

.module-theme-16 .module-grid-icon i { color: #059669; } /* Anketler - Emerald */
.module-theme-16:hover { border-color: #059669; }

.module-theme-17 .module-grid-icon i { color: #374151; } /* Araç Bilgim - Gray */
.module-theme-17:hover { border-color: #374151; }

.module-theme-18 .module-grid-icon i { color: #be123c; } /* Online Bağış - Rose */
.module-theme-18:hover { border-color: #be123c; }

.module-theme-19 .module-grid-icon i { color: #7c3aed; } /* Dijital Sertifika - Violet */
.module-theme-19:hover { border-color: #7c3aed; }

.module-theme-20 .module-grid-icon i { color: #ea580c; } /* E-Bilet - Orange */
.module-theme-20:hover { border-color: #ea580c; }

.module-theme-21 .module-grid-icon i { color: #f59e0b; } /* BTC Cüzdan - Amber */
.module-theme-21:hover { border-color: #f59e0b; }

.module-theme-22 .module-grid-icon i { color: #0d9488; } /* CV Modülü - Teal */
.module-theme-22:hover { border-color: #0d9488; }

.module-theme-23 .module-grid-icon i { color: #1f2937; } /* Dava Dosyası - Gray */
.module-theme-23:hover { border-color: #1f2937; }

.module-theme-24 .module-grid-icon i { color: #be185d; } /* Dijital Davetiye - Pink */
.module-theme-24:hover { border-color: #be185d; }

.module-theme-25 .module-grid-icon i { color: #16a34a; } /* Emlak - Green */
.module-theme-25:hover { border-color: #16a34a; }

.module-theme-26 .module-grid-icon i { color: #ca8a04; } /* Evcil Hayvan - Yellow */
.module-theme-26:hover { border-color: #ca8a04; }

.module-theme-27 .module-grid-icon i { color: #0891b2; } /* Firma Rehber - Cyan */
.module-theme-27:hover { border-color: #0891b2; }

.module-theme-28 .module-grid-icon i { color: #9333ea; } /* Geri Sayım - Purple */
.module-theme-28:hover { border-color: #9333ea; }

.module-theme-29 .module-grid-icon i { color: #0ea5e9; } /* E-Posta - Sky */
.module-theme-29:hover { border-color: #0ea5e9; }

.module-theme-30 .module-grid-icon i { color: #22c55e; } /* Direk Mesaj - Green */
.module-theme-30:hover { border-color: #22c55e; }

.module-theme-31 .module-grid-icon i { color: #f43f5e; } /* E-Resepsiyon - Rose */
.module-theme-31:hover { border-color: #f43f5e; }

.module-theme-32 .module-grid-icon i { color: #0f766e; } /* E-Tahsilat - Teal */
.module-theme-32:hover { border-color: #0f766e; }

.module-theme-33 .module-grid-icon i { color: #c2410c; } /* Hediye Çarkı - Orange */
.module-theme-33:hover { border-color: #c2410c; }

.module-theme-34 .module-grid-icon i { color: #1e40af; } /* Rent A Car - Blue */
.module-theme-34:hover { border-color: #1e40af; }

.module-theme-35 .module-grid-icon i { color: #7c2d12; } /* Ürün Sipariş - Red */
.module-theme-35:hover { border-color: #7c2d12; }

.module-theme-36 .module-grid-icon i { color: #4338ca; } /* E-Sınav - Indigo */
.module-theme-36:hover { border-color: #4338ca; }

.module-theme-37 .module-grid-icon i { color: #be123c; } /* E-Sipariş - Rose */
.module-theme-37:hover { border-color: #be123c; }

.module-theme-38 .module-grid-icon i { color: #059669; } /* SMS - Emerald */
.module-theme-38:hover { border-color: #059669; }

.module-theme-39 .module-grid-icon i { color: #6b7280; } /* S.S.S - Gray */
.module-theme-39:hover { border-color: #6b7280; }

.module-theme-40 .module-grid-icon i { color: #fbbf24; } /* Taxi - Amber */
.module-theme-40:hover { border-color: #fbbf24; }

.module-theme-41 .module-grid-icon i { color: #3b82f6; } /* Telefon - Blue */
.module-theme-41:hover { border-color: #3b82f6; }

.module-theme-42 .module-grid-icon i { color: #8b5cf6; } /* Ürün Detay - Purple */
.module-theme-42:hover { border-color: #8b5cf6; }

.module-theme-43 .module-grid-icon i { color: #10b981; } /* Ürün Listeleme - Emerald */
.module-theme-43:hover { border-color: #10b981; }

.module-theme-44 .module-grid-icon i { color: #06b6d4; } /* Mail Okundu - Cyan */
.module-theme-44:hover { border-color: #06b6d4; }

.module-theme-45 .module-grid-icon i { color: #64748b; } /* Site Sayaç - Slate */
.module-theme-45:hover { border-color: #64748b; }

.module-theme-46 .module-grid-icon i { color: #ea4335; } /* Google Yorumlar - Red */
.module-theme-46:hover { border-color: #ea4335; }

.module-theme-47 .module-grid-icon i { color: #e4405f; } /* Instagram - Pink */
.module-theme-47:hover { border-color: #e4405f; }

.module-theme-48 .module-grid-icon i { color: #0d9488; } /* Blog - Teal */
.module-theme-48:hover { border-color: #0d9488; }

.module-theme-49 .module-grid-icon i { color: #3b82f6; } /* Web Site - Blue */
.module-theme-49:hover { border-color: #3b82f6; }

.module-theme-50 .module-grid-icon i { color: #059669; } /* E-Rezervasyon - Emerald */
.module-theme-50:hover { border-color: #059669; }

/* Ek Modüller - Renk Temaları */
.module-theme-51 .module-grid-icon i { color: #1f2937; } /* QR Kod Oluşturucu - Gray */
.module-theme-51:hover { border-color: #1f2937; }

.module-theme-52 .module-grid-icon i { color: #3b82f6; } /* WiFi Bağlantı - Blue */
.module-theme-52:hover { border-color: #3b82f6; }

.module-theme-53 .module-grid-icon i { color: #ef4444; } /* Konum Paylaşımı - Red */
.module-theme-53:hover { border-color: #ef4444; }

.module-theme-54 .module-grid-icon i { color: #10b981; } /* Hızlı Arama - Green */
.module-theme-54:hover { border-color: #10b981; }

.module-theme-55 .module-grid-icon i { color: #0ea5e9; } /* E-Posta Gönder - Sky */
.module-theme-55:hover { border-color: #0ea5e9; }

.module-theme-56 .module-grid-icon i { color: #059669; } /* SMS Gönder - Emerald */
.module-theme-56:hover { border-color: #059669; }

.module-theme-57 .module-grid-icon i { color: #25d366; } /* WhatsApp Mesaj - WhatsApp Green */
.module-theme-57:hover { border-color: #25d366; }

.module-theme-58 .module-grid-icon i { color: #8b5cf6; } /* Takvim Etkinliği - Purple */
.module-theme-58:hover { border-color: #8b5cf6; }

.module-theme-59 .module-grid-icon i { color: #f59e0b; } /* Zamanlayıcı - Amber */
.module-theme-59:hover { border-color: #f59e0b; }

.module-theme-60 .module-grid-icon i { color: #f97316; } /* Hatırlatıcı - Orange */
.module-theme-60:hover { border-color: #f97316; }

.module-theme-61 .module-grid-icon i { color: #6366f1; } /* İçerik Paylaşımı - Indigo */
.module-theme-61:hover { border-color: #6366f1; }

.module-theme-62 .module-grid-icon i { color: #06b6d4; } /* Dosya İndirme - Cyan */
.module-theme-62:hover { border-color: #06b6d4; }

.module-theme-63 .module-grid-icon i { color: #ec4899; } /* Fotoğraf Çek - Pink */
.module-theme-63:hover { border-color: #ec4899; }

.module-theme-64 .module-grid-icon i { color: #14b8a6; } /* Ses Kaydı - Teal */
.module-theme-64:hover { border-color: #14b8a6; }

.module-theme-65 .module-grid-icon i { color: #84cc16; } /* Yön Bulucu - Lime */
.module-theme-65:hover { border-color: #84cc16; }

.module-theme-66 .module-grid-icon i { color: #0ea5e9; } /* Hava Durumu - Sky */
.module-theme-66:hover { border-color: #0ea5e9; }

.module-theme-67 .module-grid-icon i { color: #64748b; } /* Hesap Makinesi - Slate */
.module-theme-67:hover { border-color: #64748b; }

.module-theme-68 .module-grid-icon i { color: #a855f7; } /* Çeviri - Violet */
.module-theme-68:hover { border-color: #a855f7; }

.module-theme-69 .module-grid-icon i { color: #dc2626; } /* QR Tarayıcı - Red */
.module-theme-69:hover { border-color: #dc2626; }

.module-theme-70 .module-grid-icon i { color: #7c3aed; } /* Dijital İmza - Violet */
.module-theme-70:hover { border-color: #7c3aed; }

.module-theme-71 .module-grid-icon i { color: #374151; } /* Şifre Oluşturucu - Gray */
.module-theme-71:hover { border-color: #374151; }

.module-theme-72 .module-grid-icon i { color: #16a34a; } /* Güvenlik Kontrolü - Green */
.module-theme-72:hover { border-color: #16a34a; }

.module-theme-73 .module-grid-icon i { color: #ea580c; } /* Barkod Tarayıcı - Orange */
.module-theme-73:hover { border-color: #ea580c; }

.module-theme-74 .module-grid-icon i { color: #eab308; } /* Akıllı Ev - Yellow */
.module-theme-74:hover { border-color: #eab308; }

.module-theme-75 .module-grid-icon i { color: #1e40af; } /* Araç Takibi - Blue */
.module-theme-75:hover { border-color: #1e40af; }

.module-theme-76 .module-grid-icon i { color: #be123c; } /* Sağlık Takibi - Rose */
.module-theme-76:hover { border-color: #be123c; }

.module-theme-77 .module-grid-icon i { color: #f59e0b; } /* Spor Takibi - Amber */
.module-theme-77:hover { border-color: #f59e0b; }

.module-theme-78 .module-grid-icon i { color: #f97316; } /* Yemek Tarifi - Orange */
.module-theme-78:hover { border-color: #f97316; }

.module-theme-79 .module-grid-icon i { color: #0d9488; } /* E-Kitap - Teal */
.module-theme-79:hover { border-color: #0d9488; }

.module-theme-80 .module-grid-icon i { color: #8b5cf6; } /* Mini Oyun - Purple */
.module-theme-80:hover { border-color: #8b5cf6; }

.module-theme-81 .module-grid-icon i { color: #0891b2; } /* Vale Park - Cyan */
.module-theme-81:hover { border-color: #0891b2; }

.module-theme-82 .module-grid-icon i { color: #6366f1; } /* Anket - Indigo */
.module-theme-82:hover { border-color: #6366f1; }

.module-theme-83 .module-grid-icon i { color: #fbbf24; } /* Puan Ver - Amber */
.module-theme-83:hover { border-color: #fbbf24; }

.module-theme-84 .module-grid-icon i { color: #dc2626; } /* Video Oynatıcı - Red */
.module-theme-84:hover { border-color: #dc2626; }

.module-theme-85 .module-grid-icon i { color: #db2777; } /* Müzik Çalar - Pink */
.module-theme-85:hover { border-color: #db2777; }

.module-theme-86 .module-grid-icon i { color: #7c3aed; } /* Podcast - Violet */
.module-theme-86:hover { border-color: #7c3aed; }

.module-theme-87 .module-grid-icon i { color: #1f2937; } /* Haberler - Gray */
.module-theme-87:hover { border-color: #1f2937; }

.module-theme-88 .module-grid-icon i { color: #475569; } /* Karanlık Mod - Slate */
.module-theme-88:hover { border-color: #475569; }

.module-theme-89 .module-grid-icon i { color: #059669; } /* Biyometrik Giriş - Emerald */
.module-theme-89:hover { border-color: #059669; }

.module-theme-90 .module-grid-icon i { color: #3b82f6; } /* Yüz Tanıma - Blue */
.module-theme-90:hover { border-color: #3b82f6; }

.module-theme-91 .module-grid-icon i { color: #9333ea; } /* AI Asistan - Purple */
.module-theme-91:hover { border-color: #9333ea; }

.module-theme-92 .module-grid-icon i { color: #ec4899; } /* Yapay Zeka - Pink */
.module-theme-92:hover { border-color: #ec4899; }

.module-theme-93 .module-grid-icon i { color: #06b6d4; } /* 3D Model - Cyan */
.module-theme-93:hover { border-color: #06b6d4; }

.module-theme-94 .module-grid-icon i { color: #8b5cf6; } /* VR Deneyim - Purple */
.module-theme-94:hover { border-color: #8b5cf6; }

.module-theme-95 .module-grid-icon i { color: #f59e0b; } /* AR Uygulama - Amber */
.module-theme-95:hover { border-color: #f59e0b; }

.module-theme-96 .module-grid-icon i { color: #10b981; } /* Mağaza - Green */
.module-theme-96:hover { border-color: #10b981; }

.module-theme-97 .module-grid-icon i { color: #f97316; } /* Kargo Takip - Orange */
.module-theme-97:hover { border-color: #f97316; }

.module-theme-98 .module-grid-icon i { color: #ea580c; } /* Paket Servisi - Orange */
.module-theme-98:hover { border-color: #ea580c; }

.module-theme-99 .module-grid-icon i { color: #0ea5e9; } /* Kurye - Sky */
.module-theme-99:hover { border-color: #0ea5e9; }

.module-theme-100 .module-grid-icon i { color: #eab308; } /* Taksi Çağır - Yellow */
.module-theme-100:hover { border-color: #eab308; }

.module-theme-101 .module-grid-icon i { color: #1e40af; } /* E-Öğrenme - Blue */
.module-theme-101:hover { border-color: #1e40af; }

.module-theme-102 .module-grid-icon i { color: #0d9488; } /* Canlı Ders - Teal */
.module-theme-102:hover { border-color: #0d9488; }

.module-theme-103 .module-grid-icon i { color: #84cc16; } /* Sertifika - Lime */
.module-theme-103:hover { border-color: #84cc16; }

.module-theme-104 .module-grid-icon i { color: #f59e0b; } /* Ödül Sistemi - Amber */
.module-theme-104:hover { border-color: #f59e0b; }

.module-theme-105 .module-grid-icon i { color: #be123c; } /* Hediye Çeki - Rose */
.module-theme-105:hover { border-color: #be123c; }

.module-theme-106 .module-grid-icon i { color: #dc2626; } /* İndirim Kuponu - Red */
.module-theme-106:hover { border-color: #dc2626; }

.module-theme-107 .module-grid-icon i { color: #7c3aed; } /* Bilet Satış - Violet */
.module-theme-107:hover { border-color: #7c3aed; }

.module-theme-108 .module-grid-icon i { color: #059669; } /* Fitness - Emerald */
.module-theme-108:hover { border-color: #059669; }

.module-theme-109 .module-grid-icon i { color: #14b8a6; } /* Wellness - Teal */
.module-theme-109:hover { border-color: #14b8a6; }

.module-theme-110 .module-grid-icon i { color: #ec4899; } /* Kuaför Randevu - Pink */
.module-theme-110:hover { border-color: #ec4899; }

.module-theme-111 .module-grid-icon i { color: #6366f1; } /* Otel Rezervasyon - Indigo */
.module-theme-111:hover { border-color: #6366f1; }

.module-theme-112 .module-grid-icon i { color: #0ea5e9; } /* Uçak Bileti - Sky */
.module-theme-112:hover { border-color: #0ea5e9; }

.module-theme-113 .module-grid-icon i { color: #06b6d4; } /* Feribot - Cyan */
.module-theme-113:hover { border-color: #06b6d4; }

.module-theme-114 .module-grid-icon i { color: #3b82f6; } /* Tren Bileti - Blue */
.module-theme-114:hover { border-color: #3b82f6; }

.module-theme-115 .module-grid-icon i { color: #16a34a; } /* Otobüs Bileti - Green */
.module-theme-115:hover { border-color: #16a34a; }

.module-theme-116 .module-grid-icon i { color: #ef4444; } /* Metro Kart - Red */
.module-theme-116:hover { border-color: #ef4444; }

.module-theme-117 .module-grid-icon i { color: #65a30d; } /* Şarj İstasyonu - Lime */
.module-theme-117:hover { border-color: #65a30d; }

.module-theme-118 .module-grid-icon i { color: #dc2626; } /* Yakıt Takip - Red */
.module-theme-118:hover { border-color: #dc2626; }

.module-theme-119 .module-grid-icon i { color: #64748b; } /* Araç Bakım - Slate */
.module-theme-119:hover { border-color: #64748b; }

.module-theme-120 .module-grid-icon i { color: #374151; } /* Teknik Servis - Gray */
.module-theme-120:hover { border-color: #374151; }

/* Arka Plan Efektleri */
.project-page-area {
  position: relative;
  overflow: hidden;
}

.container.chy-container-1 {
  position: relative;
  z-index: 1;
}

/* Responsive Ayarlamalar */
@media (max-width: 1200px) {
  .module-grid-card {
    padding: 22px 12px;
    height: 130px;
  }
  
  .module-grid-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .module-grid-icon i {
    font-size: 32px;
  }
  
  .module-grid-title {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .module-grid-card {
    padding: 20px 10px;
    height: 120px;
  }
  
  .module-grid-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }
  
  .module-grid-icon i {
    font-size: 30px;
  }
  
  .module-grid-title {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  /* Mobil ekranda 3'lü grid düzeni */
  .col-sm-6 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  
  .module-grid-card {
    padding: 15px 6px;
    margin-bottom: 12px;
    height: 105px;
  }
  
  .module-grid-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
  
  .module-grid-icon i {
    font-size: 28px;
  }
  
  .module-grid-title {
    font-size: 13px;
    line-height: 1.3;
  }
  
  /* Grid boşluklarını azalt */
  .row.g-4 {
    margin-left: -8px;
    margin-right: -8px;
  }
  
  .row.g-4 > * {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  .module-grid-title {
    font-size: 14px;
  }
  
  /* Mobil için grid kart border renkleri */
  .module-theme-1 .module-grid-card { border-color: #3b82f6; }
  .module-theme-2 .module-grid-card { border-color: #10b981; }
  .module-theme-3 .module-grid-card { border-color: #ef4444; }
  .module-theme-4 .module-grid-card { border-color: #8b5cf6; }
  .module-theme-5 .module-grid-card { border-color: #f59e0b; }
  .module-theme-6 .module-grid-card { border-color: #ec4899; }
  .module-theme-7 .module-grid-card { border-color: #06b6d4; }
  .module-theme-8 .module-grid-card { border-color: #10b981; }
  .module-theme-9 .module-grid-card { border-color: #3b82f6; }
  .module-theme-10 .module-grid-card { border-color: #f59e0b; }
  .module-theme-11 .module-grid-card { border-color: #eab308; }
  .module-theme-12 .module-grid-card { border-color: #06b6d4; }
  .module-theme-13 .module-grid-card { border-color: #8b5cf6; }
  .module-theme-14 .module-grid-card { border-color: #6b7280; }
  .module-theme-15 .module-grid-card { border-color: #ef4444; }
  .module-theme-16 .module-grid-card { border-color: #10b981; }
  .module-theme-17 .module-grid-card { border-color: #374151; }
  .module-theme-18 .module-grid-card { border-color: #ef4444; }
  .module-theme-19 .module-grid-card { border-color: #f59e0b; }
  .module-theme-20 .module-grid-card { border-color: #8b5cf6; }
  .module-theme-21 .module-grid-card { border-color: #f59e0b; }
  .module-theme-22 .module-grid-card { border-color: #3b82f6; }
  .module-theme-23 .module-grid-card { border-color: #ef4444; }
  .module-theme-24 .module-grid-card { border-color: #ec4899; }
  .module-theme-25 .module-grid-card { border-color: #10b981; }
  .module-theme-26 .module-grid-card { border-color: #f59e0b; }
  .module-theme-27 .module-grid-card { border-color: #6b7280; }
  .module-theme-28 .module-grid-card { border-color: #10b981; }
  .module-theme-29 .module-grid-card { border-color: #3b82f6; }
  .module-theme-30 .module-grid-card { border-color: #06b6d4; }
  
  .section-description {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .project-page-area {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  
  /* Sayfa Başlık Alanı İyileştirmeleri */
  .section-title-wrap {
    margin-bottom: 60px !important;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(92, 0, 169, 0.05) 0%, rgba(139, 92, 246, 0.08) 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(92, 0, 169, 0.1);
  }
  
  /* Referanslar Özel Başlık Tasarımı */
  .referans-header-content {
    position: relative;
    z-index: 2;
  }
  
  .referans-header-content .chy-subtitle-1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--chy-pr-1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 20px !important;
    position: relative;
  }
  
  
  .referans-header-content .chy-subtitle-1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--chy-pr-1), var(--chy-pr-2));
    border-radius: 3px;
  }
  
  .referans-header-content .chy-title-1 {
    font-size: 52px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #141515 !important;
    margin-bottom: 25px !important;
    position: relative;
  }
  
  .referans-description {
    font-size: 18px !important;
    color: #5b5b5b !important;
    line-height: 1.6 !important;
    max-width: 600px;
    margin: 0 auto 35px !important;
    font-weight: 400;
  }
  
  
  /* Responsive İyileştirmeler */
  @media (max-width: 768px) {
    .section-title-wrap {
      margin-bottom: 40px !important;
      padding: 40px 15px;
    }
    
    .referans-header-content .chy-title-1 {
      font-size: 36px !important;
      line-height: 1.3 !important;
    }
    
    .referans-description {
      font-size: 16px !important;
      margin-bottom: 25px !important;
    }
    
  }
  
  @media (max-width: 576px) {
    .referans-header-content .chy-title-1 {
      font-size: 28px !important;
    }
    
  }
  
  .section-title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--chy-pr-1) 0%, var(--chy-pr-2) 50%, var(--chy-pr-3) 100%);
    border-radius: 20px 20px 0 0;
  }
  
  .section-title-wrap .chy-subtitle-1 {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--chy-pr-1) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 15px !important;
    position: relative;
    display: inline-block;
  }
  
  .section-title-wrap .chy-subtitle-1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--chy-pr-2);
    border-radius: 2px;
  }
  
  .section-title-wrap .chy-title-1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #141515 !important;
    margin-bottom: 20px !important;
    text-align: center;
    position: relative;
  }
  
  .section-title-wrap .section-description {
    font-size: 18px !important;
    color: #5b5b5b !important;
    line-height: 1.6 !important;
    max-width: 600px;
    margin: 0 auto !important;
    text-align: center;
    font-weight: 400;
  }
  
  /* Responsive İyileştirmeler */
  @media (max-width: 768px) {
    .section-title-wrap {
      margin-bottom: 40px !important;
      padding: 30px 15px;
    }
    
    .section-title-wrap .chy-title-1 {
      font-size: 32px !important;
      line-height: 1.3 !important;
    }
    
    .section-title-wrap .section-description {
      font-size: 16px !important;
    }
  }
  
  @media (max-width: 576px) {
    .section-title-wrap .chy-title-1 {
      font-size: 28px !important;
    }
  }
  
  .module-grid-card {
    padding: 16px 6px;
    height: 100px;
  }
  
  .module-grid-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
  
  .module-grid-icon i {
    font-size: 26px;
  }
  
  .module-grid-title {
    font-size: 13px;
  }
}

/* Module Modal Styles */
.module-modal {
  z-index: 10001 !important;
}

.module-modal .modal-content {
  border-radius: 20px;
  border: 1px solid rgba(92, 0, 169, 0.2);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
}

.module-modal .modal-header {
  background: linear-gradient(135deg, var(--chy-pr-1) 0%, var(--chy-pr-2) 100%);
  color: white;
  padding: 30px 35px;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  box-shadow: 0 4px 20px rgba(92, 0, 169, 0.3);
}

.module-modal .modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.module-modal .modal-icon i {
  font-size: 32px;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.module-modal .modal-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
  color: white;
  flex-grow: 1;
  font-family: var(--urbanist);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.module-modal .btn-close {
  position: relative;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.module-modal .btn-close::before,
.module-modal .btn-close::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: white;
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.module-modal .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.module-modal .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.module-modal .btn-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: rgba(255, 77, 87, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 6px 20px rgba(255, 77, 87, 0.5);
}

.module-modal .btn-close:hover::before,
.module-modal .btn-close:hover::after {
  background: white;
}

.module-modal .modal-body {
  padding: 30px 35px 35px;
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  background: #ffffff;
  position: relative;
  flex: 1;
  min-height: 0;
  border-radius: 0 0 20px 20px;
}

.module-modal .modal-body::-webkit-scrollbar {
  width: 8px;
}

.module-modal .modal-body::-webkit-scrollbar-track {
  background: #f1f3f4;
  border-radius: 8px;
}

.module-modal .modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--chy-pr-1), var(--chy-pr-2));
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.module-modal .modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--chy-pr-2), var(--chy-pr-1));
  box-shadow: 0 2px 8px rgba(92, 0, 169, 0.3);
}

.module-modal .module-description h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--chy-h1-color);
  margin: 30px 0 18px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(92, 0, 169, 0.15);
  font-family: var(--urbanist);
  position: relative;
}

.module-modal .module-description h4::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--chy-pr-1), var(--chy-pr-2));
  border-radius: 1px;
}

.module-modal .module-description h4:first-child {
  margin-top: 0;
}

.module-modal .module-description p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 20px;
  font-family: var(--urbanist);
  text-align: justify;
}

.module-modal .module-description ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.module-modal .module-description ul li {
  font-size: 15px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
  font-family: var(--urbanist);
}

.module-modal .module-description ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  font-weight: bold;
  font-size: 12px;
  background: linear-gradient(135deg, var(--chy-pr-1), var(--chy-pr-2));
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(92, 0, 169, 0.3);
}

.module-modal .module-description ul li strong {
  color: var(--chy-h1-color);
  font-weight: 600;
}

.module-modal .module-description ul li i.fas {
  color: var(--chy-pr-1);
  margin-right: 8px;
  font-size: 14px;
}

.module-modal .modal-footer {
  padding: 25px 40px;
  border-top: 1px solid rgba(92, 0, 169, 0.1);
  background: #f8f9fa;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.module-modal .modal-footer .btn {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: var(--urbanist);
  border: 2px solid transparent;
  min-width: 120px;
}

.module-modal .modal-footer .btn-secondary {
  background: transparent;
  border-color: #dee2e6;
  color: #6c757d;
}

.module-modal .modal-footer .btn-secondary:hover {
  background: #6c757d;
  color: white;
  border-color: #6c757d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}
.module-modal .modal-footer .btn-primary {
  background: linear-gradient(135deg, var(--chy-pr-1) 0%, var(--chy-pr-2) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(92, 0, 169, 0.3);
}

.module-modal .modal-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 0, 169, 0.4);
  background: linear-gradient(135deg, var(--chy-pr-2), var(--chy-pr-1));
}

/* Modal Animation */
.module-modal.fade .modal-dialog {
  transform: scale(0.8) translateY(-50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.module-modal.show .modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .module-modal .modal-content {
    margin: 5% auto;
    width: 95%;
    max-height: 90vh;
  }
  
  .module-modal .modal-header {
    padding: 25px 30px;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .module-modal .modal-icon {
    width: 60px;
    height: 60px;
  }
  
  .module-modal .modal-icon i {
    font-size: 24px;
  }
  
  .module-modal .modal-title {
    font-size: 22px;
  }
  
  .module-modal .modal-body {
    padding: 30px 25px;
    max-height: 60vh;
  }
  
  .module-modal .module-description h4 {
    font-size: 18px;
    margin: 25px 0 15px 0;
  }
  
  .module-modal .module-description p,
  .module-modal .module-description ul li {
    font-size: 14px;
  }
  
  .module-modal .modal-footer {
    padding: 20px 25px;
    flex-direction: column;
    gap: 10px;
  }
  
  .module-modal .modal-footer .btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
  }
  
}

/* Module Modal Enhanced Styles */
.module-modal .modal-dialog {
  max-width: 900px;
  margin: 100px auto 50px;
  max-height: calc(100vh - 150px);
}

.module-modal .modal-content {
  max-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
}

.module-stats {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgba(92, 0, 169, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 0, 169, 0.2);
}

.stat-item i {
  color: var(--chy-pr-1);
  font-size: 18px;
  width: 20px;
}

.stat-item span {
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

.module-support {
  background: linear-gradient(135deg, rgba(92, 0, 169, 0.05), rgba(162, 73, 237, 0.05));
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgba(92, 0, 169, 0.1);
}

.support-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  background: white;
  color: var(--chy-pr-1);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(92, 0, 169, 0.2);
}

.support-link:hover {
  background: var(--chy-pr-1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 0, 169, 0.3);
}

.module-modal .btn-outline-primary {
  border: 2px solid var(--chy-pr-1);
  color: var(--chy-pr-1);
  background: transparent;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--urbanist);
  transition: all 0.3s ease;
  min-width: 140px;
}

.module-modal .btn-outline-primary:hover {
  background: var(--chy-pr-1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 0, 169, 0.3);
}

/* ===================================
   FAQ Page Custom Styles
   =================================== */

/* Category Filter Pills */
.faq-categories-wrap {
  margin-bottom: 40px;
}

.faq-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.faq-pill {
  padding: 14px 28px;
  border: 2px solid var(--chy-pr-1);
  background: transparent;
  color: var(--chy-pr-1);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.faq-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--chy-gd-1);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.faq-pill:hover::before {
  left: 0;
}

.faq-pill i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.faq-pill:hover {
  color: var(--white-color);
  border-color: var(--chy-pr-1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(92, 0, 169, 0.25);
}

.faq-pill:hover i {
  transform: scale(1.2) rotate(15deg);
}

.faq-pill.active {
  background: var(--chy-gd-1);
  color: var(--white-color);
  border-color: var(--chy-pr-1);
  box-shadow: 0 8px 25px rgba(92, 0, 169, 0.35);
  transform: translateY(-3px);
}

.faq-pill.active::before {
  left: 0;
}

/* Category Sections */
.faq-category-section {
  margin-bottom: 60px;
}

.faq-category-header {
  padding: 30px 40px;
  background: var(--chy-gd-1);
  border-radius: 15px;
  margin-bottom: 35px;
  box-shadow: 0 8px 25px rgba(92, 0, 169, 0.25);
  position: relative;
  overflow: hidden;
}

.faq-category-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.faq-category-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--chy-pr-3) 0%, transparent 100%);
}

.faq-category-header h3 {
  margin: 0;
  color: var(--white-color);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-category-header h3 i {
  font-size: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

/* Accordion Container */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.accordion-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: var(--chy-gd-1);
  transition: height 0.3s ease;
}

.accordion-item:hover::before {
  height: 100%;
}

.accordion-item:hover {
  border-color: var(--chy-pr-2);
  box-shadow: 0 8px 30px rgba(92, 0, 169, 0.15);
  transform: translateY(-3px);
}

.accordion-item:last-child {
  margin-bottom: 0 !important;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  padding: 22px 25px;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 600;
  color: var(--chy-h1-color);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  text-align: left;
  cursor: pointer;
  min-height: 75px;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #f8f4fc 0%, #fff 100%);
  color: var(--chy-pr-1);
  box-shadow: none;
  border-bottom: 2px solid var(--chy-pr-1);
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(92, 0, 169, 0.2);
  border: none;
  outline: none;
  z-index: 3;
}

.accordion-button::after {
  display: none;
}

.accordion-button:hover {
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  padding-left: 28px;
}

/* FAQ Number removed - no longer used */

.accordion-button .title {
  flex: 1;
  text-align: left;
  line-height: 1.5;
  font-size: 17px;
  font-weight: 600;
  color: var(--chy-h1-color);
  padding-right: 15px;
  transition: color 0.3s ease;
}

.accordion-button:not(.collapsed) .title {
  color: var(--chy-pr-1);
  font-weight: 700;
}

.accordion-button .icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.accordion-button .icon i {
  font-size: 16px;
  color: var(--chy-pr-1);
  transition: all 0.3s ease;
  display: inline-block;
}

.accordion-button.collapsed .icon i {
  transform: rotate(0deg);
}

.accordion-button:not(.collapsed) .icon {
  background: var(--chy-pr-1);
}

.accordion-button:not(.collapsed) .icon i {
  color: var(--white-color);
  transform: rotate(45deg);
}

.accordion-body {
  padding: 28px 30px 32px;
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  background: #fafbfc;
  border-top: 1px solid #f0f0f0;
}

.accordion-body p {
  margin-bottom: 0;
  line-height: 1.85;
  color: #555;
}

.accordion-body p.mt-2 {
  margin-top: 15px !important;
}

.accordion-body p.mt-3 {
  margin-top: 18px !important;
}

.accordion-body p strong {
  color: var(--chy-pr-1);
  font-weight: 700;
  font-size: 16px;
}

.accordion-body em {
  color: #888;
  font-style: italic;
}

.accordion-body ul,
.accordion-body ol {
  margin-top: 12px;
  margin-bottom: 12px;
  padding-left: 25px;
}

.accordion-body ul li,
.accordion-body ol li {
  margin-bottom: 10px;
  line-height: 1.75;
  color: #555;
}

.accordion-body ul li strong,
.accordion-body ol li strong {
  color: var(--chy-pr-1);
  font-weight: 600;
}

/* CTA Section */
.faq-cta-section {
  margin-top: 80px;
  margin-bottom: 40px;
}

.faq-cta-box {
  background: #fff;
  padding: 40px 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  position: relative;
}

.faq-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--chy-pr-1);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 30px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(92, 0, 169, 0.2);
  position: relative;
  z-index: 1;
}

.faq-cta-box h3 {
  color: var(--chy-h1-color);
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.faq-cta-box p {
  color: #666;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.faq-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--chy-pr-1);
  color: var(--white-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(92, 0, 169, 0.2);
}

.cta-btn-primary:hover {
  background: var(--chy-pr-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 0, 169, 0.3);
  color: var(--white-color);
  text-decoration: none;
}

.cta-btn-primary i {
  font-size: 16px;
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: var(--chy-pr-1);
  text-decoration: none;
  border: 2px solid var(--chy-pr-1);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: var(--chy-pr-1);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 0, 169, 0.3);
  text-decoration: none;
}

.cta-btn-secondary i {
  font-size: 16px;
}

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

.faq-cta-box h3 {
  color: var(--chy-h1-color);
  margin-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.faq-cta-box p {
  color: #666;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.faq-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.faq-cta-buttons .btn-outline {
  background: transparent;
  border: 1px solid var(--chy-pr-1);
  color: var(--chy-pr-1);
  transition: all 0.3s ease;
  padding: 12px 20px;
  font-size: 14px;
}

.faq-cta-buttons .btn-outline:hover {
  background: var(--chy-pr-1);
  color: var(--white-color);
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(92, 0, 169, 0.2);
}


/* Two Column Independent Layout */
.faq-page-area .row.g-4 > .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.faq-page-area .row.g-4 > .col-lg-6 > .faq-category-section {
  flex: 1;
}

/* Better spacing for accordion items */
.accordion-item.mb-3 {
  margin-bottom: 1rem !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .faq-category-pills {
    gap: 10px;
  }
  
  .faq-pill {
    padding: 12px 22px;
    font-size: 14px;
  }
  
  .faq-category-header {
    padding: 22px 28px;
    margin-bottom: 30px;
  }
  
  .faq-category-header h3 {
    font-size: 22px;
    gap: 12px;
  }
  
  .faq-category-header h3 i {
    font-size: 26px;
  }
  
  .accordion-button {
    padding: 20px 25px;
    font-size: 16px;
  }
  
  /* FAQ number removed */
  
  .accordion-button .title {
    font-size: 15px;
  }
  
  .faq-cta-box {
    padding: 50px 30px;
  }
  
  .faq-cta-box h3 {
    font-size: 28px;
  }
  
  /* Stack columns on tablet */
  .faq-page-area .row.g-4 > .col-lg-6 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .faq-category-pills {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .faq-pill {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  .faq-category-header {
    padding: 18px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
  }
  
  .faq-category-header h3 {
    font-size: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .faq-category-header h3 i {
    font-size: 22px;
  }
  
  .accordion-button {
    padding: 18px 15px;
    gap: 12px;
    font-size: 15px;
  }
  
  /* FAQ number removed */
  
  .accordion-button .title {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .accordion-button .icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  
  .accordion-button .icon i {
    font-size: 14px;
  }
  
  .accordion-body {
    padding: 18px 15px;
    font-size: 14px;
    line-height: 1.7;
  }
  
  .accordion-body ul,
  .accordion-body ol {
    padding-left: 20px;
  }
  
  .accordion-body ul li,
  .accordion-body ol li {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .accordion-item.mb-3 {
    margin-bottom: 0.75rem !important;
  }
  
  .faq-category-section {
    margin-bottom: 40px;
  }
  
  .accordion {
    margin-bottom: 0;
  }
  
  .faq-cta-box {
    padding: 40px 20px;
  }
  
  .faq-cta-icon {
    width: 80px;
    height: 80px;
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .faq-cta-box h3 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .faq-cta-box p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .faq-cta-buttons {
    flex-direction: column;
  }
}

/* Paketler Sayfa İyileştirmeleri */
.packages-page-wrapper {
  background: #ffffff;
  min-height: 100vh;
  margin-top: 0;
  padding-top: 20px;
}

/* Asslideupcta animasyonlarını tamamen kaldır */
.packages-page-wrapper .asslideupcta {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.packages-page-wrapper .col-xl-3 {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

.packages-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Pricing Toggle Styles */
.pricing-toggle-wrapper {
  margin: 30px 0 40px 0;
  text-align: center;
}

.pricing-toggle {
  display: inline-flex;
  background: #f8f9fa;
  border-radius: 50px;
  padding: 6px;
  border: 2px solid #e9ecef;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-toggle input[type="radio"] {
  display: none;
}

.pricing-toggle label {
  padding: 15px 30px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #6c757d;
  transition: all 0.3s ease;
  font-family: var(--urbanist);
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

.pricing-toggle input[type="radio"]:checked + label {
  background: linear-gradient(135deg, #5b00aa, #8a2be2);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(92, 0, 169, 0.4);
  transform: translateY(-2px);
}

.discount-info {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.discount-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.discount-text {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--urbanist);
}

/* Price Container Styles */
.price-container {
  text-align: center;
  margin: 8px 0 10px 0;
}

.price-amount {
  font-size: 32px;
  font-weight: 900;
  color: #5b00aa;
  line-height: 1;
  font-family: var(--urbanist);
  letter-spacing: -1px;
  display: inline-block;
}

.price-period {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-left: 5px;
  font-family: var(--urbanist);
}

.chy-price-card-1-area {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}


.chy-price-card-1-area .container {
  position: relative;
  z-index: 1;
}

.chy-price-card-1-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 15px 12px 15px;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 30px;
  min-height: 320px;
  width: 100%;
  justify-content: space-between;
}

.chy-price-card-1-item:hover {
  transform: none;
  box-shadow: none !important;
  border-color: #5b00aa;
}

.chy-price-card-1-item.active {
  background: #ffffff;
  border-color: #5b00aa;
  box-shadow: none !important;
  position: relative;
  border-width: 2px;
}

.chy-price-card-1-item.active:hover {
  transform: none;
  box-shadow: none !important;
}

.package-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 8px;
  background: linear-gradient(135deg, #5b00aa, #8a2be2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  box-shadow: none !important;
}

.chy-price-card-1-item.active .package-icon {
  background: linear-gradient(135deg, #5b00aa, #8a2be2);
  box-shadow: none !important;
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 15;
  font-family: var(--urbanist);
  letter-spacing: 0.8px;
  box-shadow: none !important;
  border: 2px solid #ffffff;
  white-space: nowrap;
}

.chy-price-card-1-item .title {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 6px;
  text-align: center;
  font-family: var(--urbanist);
  letter-spacing: -0.5px;
}

.chy-price-card-1-item.active .title {
  color: #1a1a1a;
}

.package-description {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 400;
  font-family: var(--urbanist);
}

.chy-price-card-1-item.active .package-description {
  color: #666;
}



.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  flex-grow: 1;
  text-align: left;
}

.package-features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2px 0;
  font-size: 13px;
  color: #444;
  transition: all 0.2s ease;
  font-weight: 500;
  font-family: var(--urbanist);
}

.chy-price-card-1-item.active .package-features li {
  color: #444;
}

.package-features li i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 6px;
  color: #ffffff;
  flex-shrink: 0;
  background: #4caf50;
}

.chy-price-card-1-item.active .package-features li i {
  background: #5b00aa;
  color: #ffffff;
}

.chy-price-card-1-item .pc1-btn {
  background: #ffffff;
  color: #5b00aa;
  border: 1px solid #5b00aa;
  border-radius: 5px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: 0 0 4px 0;
  transition: all 0.3s ease;
  font-family: var(--urbanist);
  text-transform: capitalize;
  width: 100%;
}

.chy-price-card-1-item .pc1-btn:hover {
  background: #5b00aa;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 0, 169, 0.3);
}

.chy-price-card-1-item.active .pc1-btn {
  background: #5b00aa;
  color: #ffffff;
  border-color: #5b00aa;
}

.chy-price-card-1-item.active .pc1-btn:hover {
  background: #4a0088;
  border-color: #4a0088;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92, 0, 169, 0.4);
}

.chy-price-card-1-item .date {
  font-size: 10px;
  color: #888;
  text-align: center;
  margin: 0;
  font-weight: 500;
  font-family: var(--urbanist);
  line-height: 1.2;
}

/* Package Buttons Container */
.package-buttons {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.package-buttons .pc1-btn {
  margin: 0;
  padding: 8px 12px;
  font-size: 11px;
  text-align: center;
  font-weight: 700;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.package-buttons .primary-btn {
  flex: 2;
  background: linear-gradient(135deg, #5b00aa, #8a2be2);
  color: #ffffff;
  border: 2px solid #5b00aa;
  box-shadow: 0 3px 10px rgba(92, 0, 169, 0.3);
}

.package-buttons .primary-btn:hover {
  background: linear-gradient(135deg, #4a0088, #7b1fa2);
  color: #ffffff;
  border-color: #4a0088;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(92, 0, 169, 0.4);
}

.package-buttons .secondary-btn {
  flex: 1;
  background: #ffffff;
  color: #5b00aa;
  border: 1px solid #e0e0e0;
}

.package-buttons .secondary-btn:hover {
  background: #f8f9fa;
  color: #5b00aa;
  border-color: #5b00aa;
  transform: translateY(-1px);
}

.chy-price-card-1-item.active .date {
  color: #888;
  font-weight: 500;
}

.chy-price-card-1-item-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  width: 100%;
}

.chy-price-card-1-item-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0;
  font-size: 15px;
  color: #333;
  transition: all 0.2s ease;
  font-weight: 500;
  font-family: var(--urbanist);
}

.chy-price-card-1-item.active .chy-price-card-1-item-list li {
  color: #1a1a1a;
}

.chy-price-card-1-item-list li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 10px;
  color: #ffffff;
  flex-shrink: 0;
  background: #4caf50;
}

.chy-price-card-1-item.active .chy-price-card-1-item-list li i {
  background: #5b00aa;
  color: #ffffff;
}

.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5b00aa;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(92, 0, 169, 0.3);
  z-index: 10;
  font-family: var(--urbanist);
  letter-spacing: 0.8px;
}


.section-title-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrap .chy-subtitle-1 {
  color: #5b00aa;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2.5px;
  margin-bottom: 15px;
  font-family: var(--urbanist);
  text-transform: uppercase;
}

.section-title-wrap .chy-title-1 {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: var(--urbanist);
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title-wrap .chy-title-1 {
    font-size: 32px;
  }
  
  .package-badge {
    top: -10px;
    padding: 6px 16px;
    font-size: 11px;
  }
  
  .chy-price-card-1-item {
    padding: 20px 15px;
    min-height: 380px;
  }
  
  .package-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  
  .chy-price-card-1-item .price {
    font-size: 36px;
  }
  
  .chy-price-card-1-item .title {
    font-size: 18px;
  }
  
  .chy-price-card-1-item .pc1-btn {
    font-size: 13px;
    padding: 10px 25px;
  }
  
  .package-features li {
    font-size: 13px;
    padding: 6px 0;
  }
}

@media (max-width: 576px) {
  .chy-price-card-1-item {
    padding: 18px 12px;
    min-height: 360px;
  }
  
  .package-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .chy-price-card-1-item .price {
    font-size: 32px;
  }
  
  .chy-price-card-1-item .price span {
    font-size: 16px;
  }
  
  .package-features li {
    font-size: 12px;
    padding: 5px 0;
  }
  
  .package-features li i {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }
}

.chy-video-1-area .content-wrap .title {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 30px rgba(232, 220, 255, 0.5);
  color: #ffffff !important;
}

.chy-cta-1-wrap {
  box-shadow: 0 15px 50px rgba(92, 0, 169, 0.2);
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(92, 0, 169, 0.1);
  transition: all 0.3s ease;
  border: 2px solid rgba(92, 0, 169, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(92, 0, 169, 0.2);
  border-color: var(--chy-pr-1);
}

.feature-comparison {
  background: white;
  border-radius: 15px;
  padding: 0;
  margin-top: 50px;
  box-shadow: 0 10px 30px rgba(92, 0, 169, 0.12);
  border: 2px solid var(--chy-pr-1);
  overflow: hidden;
}

.feature-comparison > h3 {
  padding: 30px 40px 0 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
  background: var(--chy-gd-1);
  color: white;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  font-weight: 800;
  text-align: center;
  align-items: center;
}

.comparison-header > div:first-child {
  text-align: left;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(92, 0, 169, 0.15);
  align-items: center;
  transition: all 0.3s ease;
}

.comparison-row:last-child {
  border-bottom: none;
  padding-bottom: 30px;
}

.comparison-row:hover {
  background: rgba(92, 0, 169, 0.05);
}

.comparison-feature {
  font-weight: 600;
  color: #0d161a;
}

.comparison-value {
  text-align: center;
  font-weight: 700;
  color: var(--chy-pr-1);
}

.check-icon {
  color: var(--chy-pr-3);
  font-size: 24px;
}

.cross-icon {
  color: #5b00aa;
  font-size: 20px;
  opacity: 0.4;
}

.chy-team-slider-1-item {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(248, 244, 255, 0.5) 0%, rgba(232, 220, 255, 0.3) 100%);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(92, 0, 169, 0.1);
}

.chy-team-slider-1-item:hover {
  box-shadow: 0 10px 30px rgba(92, 0, 169, 0.15);
  border-color: var(--chy-pr-1);
  background: linear-gradient(135deg, rgba(248, 244, 255, 0.8) 0%, rgba(232, 220, 255, 0.5) 100%);
}

.chy-team-slider-1-item .content-wrap {
  border-left: 4px solid var(--chy-pr-1);
  padding-left: 30px;
}

.chy-team-slider-1-area {
  background: linear-gradient(135deg, rgba(248, 244, 255, 0.3) 0%, rgba(232, 220, 255, 0.2) 100%);
}

.chy-client-1-area {
  background: linear-gradient(135deg, rgba(248, 244, 255, 0.5) 0%, rgba(232, 220, 255, 0.3) 100%);
}

.section-title-wrap .chy-subtitle-1 {
  background: var(--chy-gd-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

@media (max-width: 991px) {
  .feature-comparison {
    overflow-x: auto;
    padding: 30px 20px;
  }
  
  .comparison-header,
  .comparison-row {
    min-width: 600px;
  }
}
    gap: 12px;
  }
  
  .faq-cta-buttons .chy-pr-btn-1 {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
  
  /* Better spacing on mobile */
  .section-title-wrap {
    margin-bottom: 40px;
  }
  
  .section-title-wrap h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  .section-title-wrap p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Stack columns properly */
  .faq-page-area .row.g-4 {
    gap: 0 !important;
  }
  
  .faq-page-area .row.g-4 > .col-lg-6 {
    margin-bottom: 20px;
  }
  
  .faq-page-area .row.g-4 > .col-lg-6:last-child {
    margin-bottom: 0;
  }
}

/* Animation for category filtering */
.faq-category-section {
  animation: fadeInUp 0.6s ease;
}

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

/* Schema.org SEO enhancement */
.faq-page-area {
  position: relative;
  overflow: hidden;
}

/* Paketler mobil görünüm - Yan yana 2 paket ve merkezli içerik */
@media (max-width: 767px) {
  .packages-page-wrapper {
    margin-top: 0;
    padding-top: 10px;
  }
  
  /* Mobil ekran için logo boyutunu büyüt ve efektler ekle */
  .chy-logo img {
    max-height: 50px !important;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 35px rgba(255, 255, 255, 0.7));
    animation: logoGlow 1.5s ease-in-out infinite alternate;
  }
  
  @keyframes logoGlow {
    0% {
      filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 35px rgba(255, 255, 255, 0.7));
      transform: scale(1);
    }
    100% {
      filter: drop-shadow(0 0 25px rgba(255, 255, 255, 1)) drop-shadow(0 0 40px rgba(255, 255, 255, 1)) drop-shadow(0 0 55px rgba(255, 255, 255, 0.9));
      transform: scale(1.08);
    }
  }
  
  .chy-price-card-1-area {
    padding: 40px 0 !important;
  }
  
  .chy-price-card-1-hight {
    margin: 0 -8px !important;
  }
  
  .chy-price-card-1-item {
    text-align: center;
    padding: 15px 10px 12px 10px !important;
    margin-bottom: 20px !important;
    height: auto !important;
    min-height: 320px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  
  /* Paket ikonları */
  .chy-price-card-1-item .package-icon {
    margin: 0 auto 8px auto !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
  }
  
  .chy-price-card-1-item .package-icon i {
    font-size: 18px !important;
  }
  
  /* Başlık */
  .chy-price-card-1-item .title {
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    color: #1a1a1a !important;
  }
  
  /* Fiyat */
  .chy-price-card-1-item .price-container {
    margin-bottom: 12px !important;
  }
  
  .chy-price-card-1-item .price-amount {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #5b00aa !important;
  }
  
  .chy-price-card-1-item .price-period {
    font-size: 12px !important;
    color: #666 !important;
  }
  
  /* Özellik listesi */
  .chy-price-card-1-item .package-features {
    text-align: left;
    list-style: none;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    flex-grow: 1;
  }
  
  .chy-price-card-1-item .package-features li {
    justify-content: flex-start;
    font-size: 11px !important;
    margin-bottom: 4px !important;
    color: #444 !important;
    display: flex !important;
    align-items: center !important;
  }
  
  .chy-price-card-1-item .package-features li i {
    width: 14px !important;
    height: 14px !important;
    margin-right: 6px !important;
    font-size: 8px !important;
    flex-shrink: 0 !important;
  }
  
  .chy-price-card-1-item .package-features li:last-child {
    margin-bottom: 0 !important;
  }
  
  .chy-price-card-1-item .package-features li.hidden-feature {
    display: none !important;
  }
  
  .chy-price-card-1-item .package-features li.hidden-feature.show {
    display: flex !important;
  }
  
  /* Tüm Özellikler linki */
  .features-toggle-link {
    display: block;
    text-align: center;
    color: #5b00aa;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    margin: 4px 0 8px 0 !important;
    padding: 0 !important;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  
  .features-toggle-link:hover {
    color: #4a0088;
    text-decoration: underline;
  }
  
  .features-toggle-link i {
    margin-left: 3px;
    font-size: 8px;
  }
  
  /* Butonlar */
  .chy-price-card-1-item .package-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    width: 100%;
  }
  
  .chy-price-card-1-item .pc1-btn {
    text-align: center;
    font-size: 10px !important;
    padding: 6px 12px !important;
    width: 90% !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    min-height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .chy-price-card-1-item .pc1-btn.primary-btn {
    background: #5b00aa !important;
    color: #fff !important;
    border: 1px solid #5b00aa !important;
  }
  
  .chy-price-card-1-item .pc1-btn.secondary-btn {
    background: transparent !important;
    color: #5b00aa !important;
    border: 1px solid #5b00aa !important;
  }
  
  /* Alt bilgi */
  .chy-price-card-1-item .date {
    font-size: 8px !important;
    color: #888 !important;
    text-align: center !important;
    margin-top: 6px !important;
    line-height: 1.2 !important;
  }
  
  /* Mobil ekranda animasyonları kaldır - zaten yukarıda tanımlandı */
}

/* ========================================
   FOOTER MOBILE OPTIMIZATION - Enhanced
   ======================================== */

/* Tablet Görünüm (768px - 991px) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chy-footer-1-area {
    padding-top: 60px;
  }
  
  .footer-stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .stat-item {
    padding: 25px 20px;
  }
  
  .stat-number {
    font-size: 28px !important;
  }
  
  .stat-label {
    font-size: 13px !important;
  }
  
  .chy-footer-1-meddle {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    padding: 50px 0 60px;
  }
  
  .footer-logo-widget {
    grid-column: 1 / -1;
  }
  
  .footer-logo-section {
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .chy-footer-1-bottom {
    flex-direction: column;
    padding: 30px 0;
    gap: 20px;
  }
  
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    width: 100%;
    text-align: center !important;
  }
  
  .chy-footer-1-social-link {
    justify-content: center;
  }
  
  .footer-links {
    justify-content: center !important;
  }
}

/* Mobil Görünüm (576px - 767px) */
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .chy-footer-1-area {
    padding-top: 50px;
  }
  
  .footer-stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .stat-item {
    padding: 20px 15px;
    gap: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  
  .stat-icon i {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 24px !important;
  }
  
  .stat-label {
    font-size: 12px !important;
  }
  
  .chy-footer-1-meddle {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 0 50px;
  }
  
  .footer-logo-widget {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    max-width: 180px;
  }
  
  .footer-features-grid-all {
    max-width: 100%;
  }
  
  .chy-footer-1-widget-title {
    font-size: 15px;
    margin-bottom: 12px;
    justify-content: flex-start;
    padding: 8px 0;
    text-align: left;
  }
  
  .chy-footer-1-menu {
    text-align: left;
  }
  
  .chy-footer-1-menu li {
    margin-bottom: 6px !important;
  }
  
  .chy-footer-1-menu li a {
    justify-content: flex-start;
    font-size: 13px;
    padding: 4px 0;
  }
  
  .footer-app-buttons {
    gap: 12px;
  }
  
  .app-button {
    justify-content: flex-start;
  }
  
  .chy-footer-1-bottom {
    flex-direction: column;
    padding: 25px 0;
    gap: 20px;
    text-align: center;
  }
  
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    width: 100%;
    text-align: center !important;
    margin-bottom: 0;
  }
  
  .chy-footer-1-social-link {
    justify-content: center;
  }
  
  .chy-footer-1-social-link li a {
    width: 44px;
    height: 44px;
  }
  
  .footer-links {
    justify-content: center !important;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-links .link-separator {
    display: none;
  }
  
  .footer-links a {
    font-size: 12px;
  }
  
  .copyright-link {
    font-size: 13px !important;
  }
  
  .copyright-link .brand-name {
    font-size: 14px !important;
  }
}

/* Küçük Mobil Görünüm (max-width: 575px) */
@media (max-width: 575px) {
  .chy-footer-1-area {
    padding-top: 40px;
  }
  
  .footer-stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 35px;
  }
  
  .stat-item {
    padding: 15px 12px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
  }
  
  .stat-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto;
  }
  
  .stat-icon i {
    font-size: 16px;
  }
  
  .stat-content {
    flex: 1;
  }
  
  .stat-number {
    font-size: 18px !important;
    margin-bottom: 4px;
  }
  
  .stat-label {
    font-size: 10px !important;
  }
  
  .chy-footer-1-meddle {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 35px 0 40px;
  }
  
  .footer-logo-widget {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .footer-logo img {
    max-width: 160px;
    height: auto;
  }
  
  .footer-features-grid-all {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 15px;
    max-width: 100%;
  }
  
  .feature-box {
    padding: 8px 6px;
    height: auto;
    min-height: 70px;
  }
  
  .feature-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  
  .feature-icon i {
    font-size: 12px;
  }
  
  .feature-content h5 {
    font-size: 10px !important;
    margin-bottom: 1px;
  }
  
  .feature-content p {
    font-size: 8px !important;
  }
  
  .chy-footer-1-widget {
    width: 100%;
  }
  
  .chy-footer-1-widget-title {
    font-size: 16px;
    margin-bottom: 18px;
    justify-content: flex-start;
    padding-bottom: 12px;
    text-align: left;
  }
  
  .chy-footer-1-widget-title i {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .chy-footer-1-widget-title::after {
    left: 0;
    transform: none;
    width: 50px;
  }
  
  .chy-footer-1-widget-title:hover::after {
    width: 70px;
  }
  
  .chy-footer-1-menu {
    text-align: left;
  }
  
  .chy-footer-1-menu li {
    margin-bottom: 10px !important;
  }
  
  .chy-footer-1-menu li a {
    justify-content: flex-start;
    font-size: 13px;
    padding: 5px 0;
  }
  
  .chy-footer-1-menu li a i {
    font-size: 11px;
  }
  
  .footer-app-buttons {
    gap: 10px;
    max-width: 100%;
  }
  
  .app-button {
    justify-content: flex-start;
    padding: 12px 15px;
  }
  
  .app-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  .app-icon i {
    font-size: 16px;
  }
  
  .app-text {
    text-align: left;
  }
  
  .app-label {
    font-size: 9px;
  }
  
  .app-name {
    font-size: 12px;
  }
  
  .chy-footer-1-bottom {
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    text-align: center;
    margin-top: 10px;
  }
  
  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    width: 100%;
    text-align: center !important;
    margin-bottom: 0;
  }
  
  .chy-footer-1-social-link {
    justify-content: center;
    gap: 8px;
  }
  
  .chy-footer-1-social-link li a {
    width: 42px;
    height: 42px;
  }
  
  .chy-footer-1-social-link li a i {
    font-size: 16px;
  }
  
  .footer-links {
    justify-content: center !important;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  
  .footer-links .link-separator {
    display: none;
  }
  
  .footer-links a {
    font-size: 11px;
    display: block;
    padding: 3px 0;
  }
  
  .copyright-link {
    font-size: 12px !important;
    line-height: 1.6;
  }
  
  .copyright-link .brand-name {
    font-size: 13px !important;
    display: block;
    margin: 3px 0;
  }
  
  .copyright-link .separator {
    display: block;
    margin: 3px 0;
    visibility: hidden;
  }
  
  .copyright-link .rights {
    display: block;
  }
}

/* Touch cihazlar için minimum tıklama alanı */
@media (hover: none) and (pointer: coarse) {
  .chy-footer-1-menu li a,
  .footer-links a,
  .app-button,
  .chy-footer-1-social-link li a {
    min-height: 25px;
    display: flex;
    align-items: center;
  }
}

/* Tüm mobil ekranlarda footer bottom alanını gizle */
@media (max-width: 767px) {
  .chy-footer-1-bottom {
    display: none !important;
  }
}

/* Ekstra Küçük Ekranlar (max-width: 375px) */
@media (max-width: 375px) {
  .chy-footer-1-area {
    padding-top: 30px;
  }
  
  .footer-stats-section {
    gap: 10px;
    margin-bottom: 30px;
  }
  
  .stat-item {
    padding: 15px 12px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
  }
  
  .stat-icon i {
    font-size: 18px;
  }
  
  .stat-number {
    font-size: 20px !important;
  }
  
  .stat-label {
    font-size: 10px !important;
  }
  
  .chy-footer-1-meddle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 30px 10px 20px;
  }
  
  .footer-logo-widget {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .footer-logo img {
    max-width: 140px;
  }
  
  .feature-box {
    padding: 6px 4px;
    min-height: 65px;
  }
  
  .feature-icon {
    width: 22px;
    height: 22px;
  }
  
  .feature-icon i {
    font-size: 10px;
  }
  
  .feature-content h5 {
    font-size: 9px !important;
  }
  
  .feature-content p {
    font-size: 7px !important;
  }
  
  .chy-footer-1-widget {
    width: 100%;
  }
  
  .chy-footer-1-widget-title {
    font-size: 13px;
    margin-bottom: 8px;
    justify-content: flex-start;
    padding: 4px 0;
  }
  
  .chy-footer-1-widget-title i {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
  
  .chy-footer-1-widget-title::after {
    left: 0;
    transform: none;
    width: 30px;
  }
  
  .chy-footer-1-widget-title:hover::after {
    width: 45px;
  }
  
  .chy-footer-1-menu {
    text-align: left;
  }
  
  .chy-footer-1-menu li {
    margin-bottom: 3px !important;
  }
  
  .chy-footer-1-menu li a {
    justify-content: flex-start;
    font-size: 11px;
    padding: 1px 0;
  }
  
  .footer-app-buttons {
    gap: 6px;
    margin-top: 10px;
  }
  
  .app-button {
    justify-content: flex-start;
    padding: 6px 8px;
  }
  
  .app-icon {
    width: 22px;
    height: 22px;
    margin-right: 6px;
  }
  
  .app-icon i {
    font-size: 10px;
  }
  
  .app-label {
    font-size: 7px;
  }
  
  .app-name {
    font-size: 9px;
  }
  
  /* Mobilde footer bottom alanını tamamen kaldır */
  .chy-footer-1-bottom {
    display: none !important;
  }
}


/* Mobil Bottom Navigation için Footer Padding */
@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }
  
  .mobile-bottom-nav {
    display: flex !important;
  }
  
  .scroll-top.has-home-1 {
    bottom: 85px !important;
    right: 15px !important;
  }
  
  /* Mobil uygulama alanını tam genişlik yap */
  .footer-1-widget:last-child {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
}

/* Landscape Mobil Oryantasyon */
@media (max-width: 767px) and (orientation: landscape) {
  .footer-stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item {
    flex-direction: row;
    text-align: left;
  }
  
  .footer-features-grid-all {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .chy-footer-1-menu li a,
  .footer-links a,
  .app-button,
  .chy-footer-1-social-link li a {
    min-height: 25px;
    display: flex;
    align-items: center;
  }
  
  .chy-footer-1-menu li a:hover {
    padding-left: 0;
  }
  
  .chy-footer-1-social-link li a:hover {
    transform: none;
  }
}

/* Modern News Grid Layout */
.modern-news-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  position: relative;
  padding: 20px 0;
}

/* Featured Article Section */
.featured-article-section {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out;
}

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

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

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

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

/* Featured Article */
.featured-article {
  display: flex;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(92, 0, 169, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--urbanist);
  box-shadow: 0 8px 32px rgba(92, 0, 169, 0.12);
}

.featured-article:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(92, 0, 169, 0.12);
  border-color: rgba(92, 0, 169, 0.2);
}

.featured-image {
  flex: 0 0 50%;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-article:hover .featured-image img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-article:hover .featured-overlay {
  opacity: 1;
}

.featured-badge {
  background: var(--chy-gd-1);
  color: var(--white-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--urbanist);
}

.featured-contact {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 8px;
}

.featured-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.article-date,
.article-category {
  font-size: 14px;
  color: #888;
  font-family: var(--urbanist);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-date i,
.article-category i {
  color: var(--chy-pr-1);
}

.article-category {
  color: var(--chy-pr-1);
  font-weight: 600;
}

.article-title {
  margin-bottom: 0;
  margin-top: 0;
}

.article-title a {
  color: var(--chy-h1-color);
  text-decoration: none;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
  font-family: var(--urbanist);
  display: block;
  margin-bottom: 12px;
}

.article-title a:hover {
  color: var(--chy-pr-1);
}

.article-excerpt {
  color: var(--chy-p1-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
  font-family: var(--urbanist);
  opacity: 0.9;
}

.read-more-link {
  color: var(--chy-pr-1);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  align-self: flex-start;
  font-family: var(--urbanist);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.read-more-link i {
  transition: transform 0.3s ease;
}

.read-more-link:hover {
  color: var(--chy-pr-1);
  transform: translateX(5px);
}

.read-more-link:hover i {
  transform: translateX(3px);
}

.hashtag {
  color: var(--chy-pr-1);
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
  padding: 4px 8px;
  background: rgba(92, 0, 169, 0.1);
  border-radius: 12px;
}


/* News Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 35px;
  margin-top: 50px;
  padding: 30px 0;
  align-items: start;
}

/* Default grid item span */
.news-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
}

/* Large cards - span 8 columns */
.news-card.large-card {
  grid-column: span 8;
}

/* Medium cards - span 6 columns */
.news-card.medium-card {
  grid-column: span 6;
}

/* Small cards - span 4 columns (default) */
.news-card.small-card {
  grid-column: span 4;
}

/* Full width cards - span 12 columns */
.news-card.full-card {
  grid-column: span 12;
}

.news-card.full-card .card-image {
  height: 350px;
}

.news-card.full-card .card-body {
  padding: 40px;
}

.news-card.full-card .card-title a {
  font-size: 28px;
  line-height: 1.3;
}

.news-card.full-card .card-text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 90%;
}

.news-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(92, 0, 169, 0.1);
  font-family: var(--urbanist);
  box-shadow: 0 8px 32px rgba(92, 0, 169, 0.06);
  position: relative;
  backdrop-filter: blur(10px);
  height: 100%;
}

.news-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(92, 0, 169, 0.15);
  border-color: rgba(92, 0, 169, 0.2);
}

/* Card Headers */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px 0;
}

.announcement-icon,
.warning-icon,
.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.announcement-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: var(--white-color);
}

.warning-icon {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  color: var(--white-color);
}

.info-icon {
  background: var(--chy-gd-1);
  color: var(--white-color);
}

.announcement-badge {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--urbanist);
}

/* Card Body */
.card-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  justify-content: space-between;
}

.card-title {
  margin-bottom: 0;
  margin-top: 0;
}

.card-title,
.card-title a {
  color: var(--chy-h1-color);
  text-decoration: none;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.4;
  transition: all 0.3s ease;
  font-family: var(--urbanist);
  display: block;
  position: relative;
  margin-bottom: 8px;
}

.card-title a:hover {
  color: var(--chy-pr-1);
}

.card-text {
  color: var(--chy-p1-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  margin-top: 0;
  flex: 1;
  font-weight: 400;
  font-family: var(--urbanist);
  opacity: 0.9;
}

/* Card Images */
.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .card-image img {
  transform: scale(1.06);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(92, 0, 169, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .image-overlay {
  opacity: 1;
  background: rgba(92, 0, 169, 0.85);
}

.overlay-btn {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--white-color);
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--urbanist);
  background: transparent;
}

.overlay-btn:hover {
  background: var(--white-color);
  color: var(--chy-pr-1);
  transform: scale(1.05);
}

/* Video Card Styles */
.video-card {
  overflow: hidden;
  padding: 0 !important;
}

.video-card .card-body {
  display: none;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}

.video-card-title {
  padding: 25px;
  background: #ffffff;
}

.video-card-title h3 {
  color: var(--chy-h1-color);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  font-family: var(--urbanist);
  line-height: 1.5;
}


.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-card:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.play-button-large {
  width: 80px;
  height: 80px;
  background: var(--chy-gd-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(92, 0, 169, 0.3);
}

.play-button-large i {
  color: var(--white-color);
  font-size: 32px;
  margin-left: 4px;
}

.video-card:hover .play-button-large {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(92, 0, 169, 0.5);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  animation: zoomIn 0.3s ease;
}

.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.video-modal-close:hover {
  color: var(--chy-pr-1);
  transform: rotate(90deg);
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Card Footer */
.card-footer {
  margin-top: auto;
}

.hashtag {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  font-family: var(--urbanist);
}

/* Special Card Types */
.announcement-card {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: #ff6b35;
}

.announcement-card .card-title,
.announcement-card .card-text {
  color: var(--white-color);
}

.warning-card {
  background: linear-gradient(135deg, #ff4757, #ff3838);
  border-color: #ff4757;
}

.warning-card .card-title,
.warning-card .card-text {
  color: var(--white-color);
}

.info-card {
  background: var(--chy-gd-1);
  border-color: var(--chy-pr-1);
}

.info-card .card-title,
.info-card .card-text {
  color: var(--white-color);
}

/* Article Stats */
.article-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--chy-p1-color);
  font-family: var(--urbanist);
}

.article-stats span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-stats i {
  color: var(--chy-pr-1);
}

/* Urgency Badge */
.urgency-badge {
  background: #ff4444;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 10px;
}

/* Reading Time */
.reading-time {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--urbanist);
}

.reading-time i {
  margin-right: 5px;
}

/* Social Share */
.social-share {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-share a {
  color: var(--chy-p1-color);
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-share a:hover {
  color: var(--chy-pr-1);
}

/* Recent Posts Section */
.recent-posts-section {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  border: 1px solid rgba(92, 0, 169, 0.1);
  font-family: var(--urbanist);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.recent-post-item {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.recent-post-item:hover {
  background: rgba(92, 0, 169, 0.05);
  transform: translateX(5px);
}

.recent-post-item .post-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.recent-post-item:hover .post-image {
  transform: scale(1.05);
}

.recent-post-item .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-item .post-content {
  flex: 1;
}

.recent-post-item .post-title a {
  color: var(--chy-h1-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.3s ease;
  font-family: var(--urbanist);
}

.recent-post-item .post-title a:hover {
  color: var(--chy-pr-1);
}

.recent-post-item .post-date {
  color: #888;
  font-size: 14px;
  margin-top: 5px;
  font-family: var(--urbanist);
}

/* Card Title and Text Hover Effects */
.card-title a,
.article-title a {
  position: relative;
  display: inline-block;
}

.card-title a::after,
.article-title a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--chy-pr-1);
  transition: width 0.3s ease;
}

.news-card:hover .card-title a::after,
.featured-article:hover .article-title a::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .news-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .news-card {
    grid-column: span 3;
  }
  
  .news-card.large-card {
    grid-column: span 6;
  }
  
  .news-card.medium-card {
    grid-column: span 3;
  }
  
  .news-card.small-card {
    grid-column: span 2;
  }
}

@media (max-width: 1200px) {
  .featured-article {
    flex-direction: column;
  }
  
  .featured-image {
    flex: none;
    height: 300px;
  }
  
  .featured-content {
    padding: 30px;
  }
  
  .news-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
  }
  
  .news-card {
    grid-column: span 3;
  }
  
  .news-card.large-card {
    grid-column: span 6;
  }
  
  .news-card.medium-card {
    grid-column: span 3;
  }
  
  .news-card.small-card {
    grid-column: span 3;
  }
  
  .news-card.full-card {
    grid-column: span 6;
  }
}

@media (max-width: 768px) {
  .modern-news-grid {
    gap: 30px;
  }
  
  .featured-article {
    border-radius: 15px;
  }
  
  .featured-image {
    height: 250px;
  }
  
  .featured-content {
    padding: 25px;
  }
  
  .article-title a {
    font-size: 20px;
  }
  
  .article-excerpt {
    font-size: 14px;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .news-card,
  .news-card.large-card,
  .news-card.medium-card,
  .news-card.small-card,
  .news-card.full-card {
    grid-column: span 1;
    border-radius: 12px;
  }
  
  .card-body {
    padding: 20px;
  }
  
  .card-image {
    height: 160px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
  }
  
  .play-button i {
    font-size: 16px;
  }
  
  .recent-posts-section {
    padding: 30px 20px;
  }
  
  .recent-post-item {
    flex-direction: column;
    text-align: center;
  }
  
  .recent-post-item .post-image {
    width: 100%;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .modern-news-grid {
    gap: 25px;
  }
  
  .featured-article {
    border-radius: 16px;
    margin-bottom: 30px;
  }
  
  .featured-image {
    height: 220px;
  }
  
  .featured-content {
    padding: 25px;
  }
  
  .article-title a {
    font-size: 22px;
    line-height: 1.3;
  }
  
  .article-excerpt {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .card-body {
    padding: 24px;
    gap: 16px;
  }
  
  .card-image {
    height: 180px;
  }
  
  .card-title a {
    font-size: 19px;
    line-height: 1.3;
  }
  
  .card-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .featured-content {
    padding: 20px;
  }
  
  .article-title a {
    font-size: 18px;
  }
  
  .article-excerpt {
    font-size: 13px;
  }
  
  .card-body {
    padding: 15px;
  }
  
  .card-image {
    height: 140px;
  }
  
  .announcement-icon,
  .warning-icon,
  .info-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .play-button {
    width: 45px;
    height: 45px;
  }
  
  .play-button i {
    font-size: 14px;
  }
  
  .video-label {
    font-size: 10px;
  }
  
  .video-brand {
    font-size: 12px;
  }
}

/*# sourceMappingURL=main.css.map */