/*===========================
    MODERN HEADER DESIGN
    Custom modern header with mobile responsiveness
===========================*/

:root {
  --bs-gutter-x: 1rem;
  --primary-color: #d1a23e;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --theme-color: #d1a23e;
}

/*===========================
    MARKETS WE SERVE STYLES
===========================*/

.markets-intro {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.category-icon img {
  width: 100%;
  height: 60px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: none;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--theme-color), #e6b800);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 0;
}

.section-header {
  position: relative;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.plastics-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.fibers-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 100%);
}

.market-category {
  background: white;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.market-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.category-header {
  text-align: center;
  padding: 30px 15px;
  background: linear-gradient(135deg, var(--theme-color) 0%, #b8941a 100%);
  border-radius: 12px;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.category-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.category-header:hover::before {
  right: -30%;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.market-item {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.market-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(209, 162, 62, 0.1), transparent);
  transition: left 0.5s ease;
}

.market-item:hover::before {
  left: 100%;
}

.market-item:hover {
  border-color: var(--theme-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(209, 162, 62, 0.15);
}

.market-item span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-color);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.yarn-list {
  padding: 10px 0;
}

.yarn-item {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  border-radius: 25px;
  padding: 12px 20px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.yarn-item::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;
}

.yarn-item:hover::before {
  left: 100%;
}

.yarn-item:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.yarn-badge {
  background: rgba(255, 255, 255, 0.3);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.yarn-item span:not(.yarn-badge) {
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .category-header {
    margin-bottom: 30px;
    height: auto;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .category-title {
    font-size: 1.1rem;
  }

  .market-category {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .category-icon img {
    width: 48px;
    height: 48px;
  }

  .market-item {
    padding: 15px 10px;
  }

  .market-item span {
    font-size: 0.85rem;
  }

  .yarn-item {
    padding: 10px 15px;
  }

  .yarn-item span:not(.yarn-badge) {
    font-size: 0.8rem;
  }
}

/* Animation for page load */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.market-category {
  animation: fadeInUp 0.6s ease forwards;
}

.market-category:nth-child(even) {
  animation-delay: 0.1s;
}

.market-category:nth-child(odd) {
  animation-delay: 0.2s;
}
/* Main Navigation - Unified Header */
.main-navigation {
  background: linear-gradient(135deg, #0a0c07 0%, #404040 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 15px 0;
}

.main-navigation.scrolled {
  background: linear-gradient(135deg, #0a0c07 0%, #404040 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  padding: 10px 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-img {
  height: 120px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-slogan {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.logo:hover .logo-img {
  transform: scale(1.05);
}

.logo:hover .logo-slogan {
  color: #d1a23e;
}

/* Desktop Menu */
.desktop-menu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #d1a23e, #b8941a);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d1a23e;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.show .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 15px 0;
  min-width: 220px;
  margin-top: 0;
}

.dropdown-item {
  padding: 12px 20px;
  color: #0a0c07;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: rgba(209, 162, 62, 0.1);
  color: #d1a23e;
  border-left-color: #d1a23e;
  padding-left: 25px;
}

/* Bootstrap dropdown hover functionality */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown:hover .dropdown-toggle,
.dropdown.show .dropdown-toggle {
  color: #d1a23e;
}

/* Navigation Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #d1a23e 0%, #b8941a 100%);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(209, 162, 62, 0.3);
  transition: all 0.3s ease;
}

.header-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(209, 162, 62, 0.4);
}
.header-contact:hover a {
  color: #fff;
}

.contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.contact-content {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.contact-number {
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  line-height: 1.2;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  background: transparent;
  border: none;
  padding: 8px;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle:hover .toggle-line {
  background: #d1a23e;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #0a0c07;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #0a0c07;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Mobile Responsive Styles - Consolidated */
@media (max-width: 768px) {
  /* Top Bar Mobile */
  .topbar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .topbar-right {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
  }

  /* Main Nav Mobile */
  .nav-wrapper {
    padding: 10px 0;
  }

  .logo-img {
    height: 90px;
  }

  .logo-slogan {
    font-size: 14px;
    display: none; /* Mobilde slogan'ı gizle */
  }

  /* WhatsApp Mobile */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  /* Contact Page Mobile */
  .custom-contact-page-area {
    padding: 80px 0;
  }

  .contact-form-section {
    padding: 30px;
  }

  .map-header {
    padding: 25px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .form-header h3 {
    font-size: 2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .card-content {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .interactive-contact-card {
    height: 200px;
    margin-bottom: 20px;
  }

  /* Sticky Contact Mobile */
  .sticky-contact-btn {
    padding: 15px 10px;
    min-height: 120px;
    gap: 10px;
  }

  .sticky-contact-btn .contact-icon img {
    width: 20px;
    height: 20px;
  }

  .sticky-contact-btn .contact-label {
    font-size: 10px;
  }

  .sticky-contact-btn .contact-number {
    font-size: 12px;
  }
}

/* Additional Mobile & Tablet Responsive Styles */
@media (max-width: 1024px) {
  .logo-slogan {
    font-size: 14px;
  }

  .nav-list {
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .logo-slogan {
    display: none; /* Küçük tabletlerde slogan'ı gizle */
  }
}

@media (max-width: 480px) {
  .header-topbar {
    padding: 5px 0;
    font-size: 12px;
  }

  .nav-wrapper {
    padding: 8px 0;
  }

  .whatsapp-btn {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  /* Additional Contact Page Styles */
  .hero-title {
    font-size: 1.8rem;
  }

  .contact-form-section {
    padding: 20px;
  }

  .map-header {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Menu Styles */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: linear-gradient(135deg, #0a0c07 0%, #404040 100%);
  z-index: 9999;
  transition: all 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
  height: 100px;
}

.mobile-close {
  background: transparent;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-menu-content {
  padding: 20px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.mobile-nav-item {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  color: #e2e8f0;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background: rgba(209, 162, 62, 0.2);
  color: #d1a23e;
  transform: translateX(5px);
}

.mobile-nav-link i {
  font-size: 18px;
  width: 20px;
  text-align: center;
}

/* Mobile Dropdown Styles */
.mobile-nav-item.dropdown {
  position: relative;
}

.mobile-nav-item .dropdown-toggle {
  position: relative;
}

.mobile-arrow {
  margin-left: auto;
  font-size: 14px !important;
  transition: transform 0.3s ease;
}

.mobile-nav-item.dropdown.show .mobile-arrow {
  transform: rotate(180deg);
}

.mobile-nav-item .mobile-dropdown-menu {
  position: static !important;
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px;
  margin-top: 10px;
  padding: 10px 0;
}

.mobile-dropdown-link {
  color: #e2e8f0 !important;
  font-size: 14px;
  font-weight: 400;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-dropdown-link:hover {
  background: rgba(209, 162, 62, 0.2) !important;
  color: #d1a23e !important;
  border-left-color: #d1a23e;
  padding-left: 25px;
}

.mobile-contact-info {
  margin-bottom: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  color: #e2e8f0;
}

.mobile-contact-item i {
  font-size: 16px;
  color: #d1a23e;
  width: 20px;
  text-align: center;
}

.mobile-contact-content {
  display: flex;
  flex-direction: column;
}

.mobile-contact-label {
  font-size: 12px;
  color: #a0aec0;
  margin-bottom: 2px;
}

.mobile-contact-value {
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-contact-value:hover {
  color: #d1a23e;
}

.mobile-social {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social h4 {
  color: #e2e8f0;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.mobile-social-links {
  display: flex;
  gap: 12px;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: #d1a23e;
  color: white;
  transform: translateY(-2px);
}

/*===========================
    CUSTOM ABOUT AREA DESIGN
    Modern and isolated design for custom-about-area
===========================*/

.custom-about-area {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.custom-about-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.custom-about-area .container {
  position: relative;
  z-index: 2;
}

.custom-about-area .row {
  align-items: center;
  min-height: 500px;
}

/* Image Container Redesign */
.custom-about-area .infetech-about-thumb {
  position: relative;
  padding: 20px;
}

.custom-about-area .infetech-about-thumb > img:first-child {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.custom-about-area .infetech-about-thumb > img:first-child:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.custom-about-area .infetech-about-thumb .thumb {
  position: absolute;
  top: 50px;
  right: -30px;
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  border: 5px solid #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 3;
}

.custom-about-area .infetech-about-thumb .thumb:hover {
  transform: scale(1.05);
}

/* About Box as Image - Different position from thumb */
.custom-about-area .infetech-about-thumb .about-box {
  position: absolute;
  bottom: 30px;
  left: -20px;
  width: 150px;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  border: 4px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 4;
}

.custom-about-area .infetech-about-thumb .about-box:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* Content Area Redesign */
.custom-about-area .infetech-about-content {
  padding-left: 40px;
  padding-right: 20px;
}

.custom-about-area .infetech-about-content > span {
  display: inline-block;
  font-size: 14px;
  color: #d1a23e;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: rgba(209, 162, 62, 0.1);
  border-radius: 25px;
  position: relative;
}

.custom-about-area .infetech-about-content > span::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #d1a23e;
  border-radius: 2px;
}

.custom-about-area .infetech-about-content .title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 25px;
  position: relative;
}

.custom-about-area .infetech-about-content .title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d1a23e 0%, #f4d03f 100%);
  border-radius: 2px;
}

.custom-about-area .infetech-about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  font-weight: 500;
  margin-bottom: 20px;
  text-align: justify;
}

.custom-about-area .infetech-about-content p:last-of-type {
  margin-bottom: 0;
}

/* Floating Elements */
.custom-about-area::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #d1a23e20 0%, #f4d03f20 100%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 1199px) {
  .custom-about-area .infetech-about-content {
    padding-left: 20px;
  }

  .custom-about-area .infetech-about-thumb .thumb {
    right: -20px;
    width: 180px;
    height: 220px;
  }

  .custom-about-area .infetech-about-thumb .about-box {
    width: 130px;
    height: 160px;
    left: -15px;
  }
}

@media (max-width: 991px) {
  .custom-about-area {
    padding: 60px 0;
  }

  .custom-about-area .infetech-about-content {
    padding-left: 0;
    padding-right: 0;
    margin-top: 40px;
  }

  .custom-about-area .infetech-about-content .title {
    font-size: 36px;
  }

  .custom-about-area .infetech-about-thumb .thumb {
    /* position: static; */
    margin-top: 20px;
    /* width: 100%; */
    height: 200px;
    /* right: auto; */
  }

  .custom-about-area .infetech-about-thumb .about-box {
    /* position: static; */
    margin-top: 20px;
    /* width: 100%; */
    height: 180px;
    /* left: auto; */
  }
}

@media (max-width: 767px) {
  .custom-about-area {
    padding: 50px 0;
  }

  .custom-about-area .infetech-about-content .title {
    font-size: 28px;
  }

  .custom-about-area .infetech-about-content p {
    font-size: 16px;
  }

  .custom-about-area .infetech-about-thumb > img:first-child {
    height: 300px;
  }

  .custom-about-area .infetech-about-thumb .thumb {
    height: 180px;
  }

  .custom-about-area .infetech-about-thumb .about-box {
    height: 160px;
  }
}

/* Animation for scroll */
.custom-about-area.animated .infetech-about-thumb > img:first-child {
  animation: slideInLeft 1s ease-out;
}

.custom-about-area.animated .infetech-about-content {
  animation: slideInRight 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.infetech-project-swiper {
  padding-top: 1rem;
}

/*===========================
    ENHANCED PRELOADER STYLES
    Beautiful logo-centered loader with effects
===========================*/

/* Prevent scrolling when preloader is active */
body.preloader-active {
  overflow: hidden;
  height: 100vh;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0c07 0%, #1a1d15 50%, #2a2d20 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease;
  opacity: 1;
  visibility: visible;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.preloader-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(209, 162, 62, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(209, 162, 62, 0.05) 0%, transparent 50%);
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.logo-container {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}

.preloader-logo {
  width: 120px;
  height: auto;
  filter: brightness(1.2) contrast(1.1);
  animation: logoFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(209, 162, 62, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: logoGlow 2s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes logoGlow {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.loading-animation {
  margin-bottom: 20px;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.loading-dots span {
  width: 12px;
  height: 12px;
  background: #d1a23e;
  border-radius: 50%;
  display: block;
  animation: dotPulse 1.4s ease-in-out infinite both;
  box-shadow: 0 0 20px rgba(209, 162, 62, 0.5);
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0s;
}
.loading-dots span:nth-child(4) {
  animation-delay: 0.16s;
}

@keyframes dotPulse {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.loading-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: textFade 2s ease-in-out infinite alternate;
}

@keyframes textFade {
  0% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.loading-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #d1a23e 0%, #f4d03f 50%, #d1a23e 100%);
  border-radius: 2px;
  animation: progressLoad 3s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(209, 162, 62, 0.8);
  transition: width 0.3s ease;
}

@keyframes progressLoad {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}

/* Responsive Design - Consolidated */
@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

@media (max-width: 991px) {
  .desktop-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width: 768px) {
  .preloader-logo {
    width: 100px;
  }

  .logo-glow {
    width: 120px;
    height: 120px;
  }

  .loading-text {
    font-size: 14px;
  }

  .loading-progress {
    width: 150px;
  }

  .header-topbar {
    display: none;
  }

  .mobile-menu {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .preloader-logo {
    width: 80px;
  }

  .logo-glow {
    width: 100px;
    height: 100px;
  }

  .loading-text {
    font-size: 12px;
  }

  .loading-progress {
    width: 120px;
  }
}

/*===========================
    BANNER SECTION (Single Slide)
===========================*/

/*===========================
    CUSTOM HERO SLIDER
    Modern hero slider without infetech classes
===========================*/
.custom-hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-subtitle {
  color: #d1a23e;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: white;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.2s;
}
.swiper-button-lock {
  display: none !important;
}
.hero-title span {
  color: #d1a23e;
  background: linear-gradient(45deg, #d1a23e, #e8b84d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  font-weight: 300;
  color: #e9ecef;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.4s;
}

.hero-swiper .main-btn {
  /* display: inline-block; */
  /* padding: 15px 35px; */
  /* background: linear-gradient(45deg, #d1a23e, #e8b84d); */
  /* color: white; */
  /* text-decoration: none; */
  /* border-radius: 50px; */
  /* font-weight: 600; */
  /* text-transform: uppercase; */
  /* letter-spacing: 1px; */
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease 0.6s, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(209, 162, 62, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(209, 162, 62, 0.4);
  color: white;
  text-decoration: none;
}

/* Animated state classes */
.hero-content.animated .hero-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.animated .hero-title {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.animated .hero-description {
  opacity: 1;
  transform: translateY(0);
}

.hero-content.animated .main-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Navigation */
.hero-swiper-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(10px);
}

.hero-prev::after,
.hero-next::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: white;
  font-size: 16px;
}

.hero-prev::after {
  content: "\f053";
}

.hero-next::after {
  content: "\f054";
}

.hero-prev {
  left: 30px;
}

.hero-next {
  right: 30px;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(209, 162, 62, 0.8);
  border-color: #d1a23e;
  transform: translateY(-50%) scale(1.1);
}

/* Custom Pagination */
.hero-pagination {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  z-index: 10;
}

.hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: #d1a23e;
  border-color: #d1a23e;
  /* transform: scale(1.2); */
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .custom-hero-slider {
    height: 80vh;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
  }

  .hero-prev {
    left: 20px;
  }

  .hero-next {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .custom-hero-slider {
    height: 70vh;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-btn {
    padding: 12px 25px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .custom-hero-slider {
    height: 60vh;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-prev,
  .hero-next {
    display: none;
  }
}

/*===========================
    VIDEO BACKGROUND SUPPORT FOR HERO SLIDER
===========================*/
.slide-video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.slide-video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Image Background Support */
.slide-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-image-background .desktop-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.slide-image-background .mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  display: none;
}

/* Mobile responsive for images */
@media (max-width: 768px) {
  .slide-image-background .desktop-bg {
    display: none;
  }

  .slide-image-background .mobile-bg {
    display: block;
  }

  /* Fallback to desktop image if mobile doesn't exist */
  .slide-image-background:not(:has(.mobile-bg)) .desktop-bg {
    display: block;
  }
}

/* Fallback for when video doesn't load */
.slide-video-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hide video on mobile for better performance */
@media (max-width: 768px) {
  .slide-video-background video {
    /* display: none; */
  }

  .slide-video-background {
    /* background-image: url("assets/images/content/slide-1.jpg"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Video loading states */
.slide-video-background video {
  /* opacity: 0; */
  transition: opacity 0.5s ease;
}

.slide-video-background video.loaded {
  opacity: 1;
}

/* Specific styling for video slides */
.swiper-slide[data-bg-type="video"] .slide-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.swiper-slide[data-bg-type="image"] .slide-overlay {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/*===========================
    END VIDEO BACKGROUND SUPPORT
===========================*/

/*===========================
    END CUSTOM HERO SLIDER
===========================*/

/* Contact Page Responsive - Consolidated */
@media (max-width: 1200px) {
  .contact-form-section,
  .map-header {
    padding: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .contact-main-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-form-section::before {
    display: none;
  }

  .map-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 30px;
  }

  .interactive-map {
    min-height: 400px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .interactive-contact-card {
    height: 240px;
  }

  /* Products Section */
  .products-content .title {
    font-size: 28px;
  }

  .products-logo-section,
  .products-content {
    /* padding: 30px 20px; */
    /* text-align: center; */
  }

  .products-logo {
    max-width: 200px;
  }
}
.blog-card-image a {
  width: 100%;
  height: 100%;
}
@media (max-width: 576px) {
  .products-content .title {
    font-size: 24px;
  }

  .products-content p {
    font-size: 14px;
  }
}

/*===========================
    STICKY CONTACT BUTTON (Header Style)
===========================*/
.sticky-call-contact {
  position: fixed;
  top: 50%;
  right: 00px;
  transform: translateY(-50%);
  z-index: 999;
  /* writing-mode: vertical-rl; */
  text-orientation: mixed;
}

.sticky-contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 15px;
  background: linear-gradient(135deg, #d1a23e 0%, #b8941a 100%);
  border-radius: 15px 0 0 15px;
  box-shadow: 0 4px 15px rgba(209, 162, 62, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 150px;
  justify-content: center;
}

.sticky-contact-btn:hover {
  /* transform: translateX(-5px) translateY(-2px); */
  box-shadow: 0 6px 20px rgba(209, 162, 62, 0.4);
  text-decoration: none;
}

.sticky-contact-btn .contact-icon {
  writing-mode: initial;
  text-orientation: initial;
}

.sticky-contact-btn .contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.sticky-contact-btn .contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sticky-contact-btn .contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 5px;
}

.sticky-contact-btn .contact-number {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.sticky-contact-btn:hover .contact-label,
.sticky-contact-btn:hover .contact-number {
  color: #fff;
}

/*===========================
    PRODUCTS SECTION
===========================*/
.infetech-products-area {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.infetech-products-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGNpcmNsZSBjeD0iMjAiIGN5PSIyMCIgcj0iMSIgZmlsbD0icmdiYSg2NCwgNjQsIDY0LCAwLjA1KSIvPgo8L3N2Zz4K")
    repeat;
  opacity: 0.3;
  z-index: 1;
}

.products-logo-section {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

.products-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.products-logo:hover {
  transform: scale(1.05);
}

.products-content {
  position: relative;
  z-index: 2;
  /* padding: 40px; */
}

.products-content span {
  color: #d1a23e;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.products-content .title {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.products-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.sticky-image {
  position: sticky;
  top: 10px;
  align-self: flex-start;
}
@media (max-width: 576px) {
  .infetech-banner-area {
    background-attachment: scroll;
    min-height: 80vh;
  }

  .infetech-banner-content .title {
    font-size: 14px;
  }

  .infetech-banner-content h1 {
    font-size: 28px;
  }

  .infetech-banner-content p {
    font-size: 16px;
  }

  .products-content .title {
    font-size: 24px;
  }

  .products-content p {
    font-size: 14px;
  }

  /* Contact Page */
  .hero-title {
    font-size: 1.8rem;
  }

  .contact-form-section {
    padding: 20px;
  }

  .map-header {
    padding: 20px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/*===========================
    REVOLUTIONARY CONTACT PAGE DESIGN
    Ultra-modern, interactive contact experience
===========================*/

/* Main Contact Page Area */
.custom-contact-page-area {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.custom-contact-page-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212, 162, 62, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 162, 62, 0.03) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(212, 162, 62, 0.01) 50%, transparent 51%);
  animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(-20px) translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateX(20px) translateY(10px) rotate(-1deg);
  }
  75% {
    transform: translateX(-10px) translateY(20px) rotate(0.5deg);
  }
}

/* Interactive Contact Cards */
.interactive-contact-card {
  position: relative;
  height: 300px;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.interactive-contact-card:hover {
  transform: translateY(-15px) rotateX(5deg);
}
.interactive-contact-card:hover .contact-link {
  color: #fff;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 12, 7, 0.9) 0%, rgba(26, 29, 21, 0.85) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 162, 62, 0.2);
  transition: all 0.4s ease;
}

.interactive-contact-card:hover .card-background {
  background: linear-gradient(135deg, rgba(212, 162, 62, 0.9) 0%, rgba(248, 206, 87, 0.8) 100%);
  border-color: rgba(212, 162, 62, 0.5);
}

.card-icon {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4a23e 0%, #f8ce57 100%);
  border-radius: 20px;
  font-size: 32px;
  color: #000;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(212, 162, 62, 0.3);
}

.interactive-contact-card:hover .card-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 15px 40px rgba(212, 162, 62, 0.5);
}

.card-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 3;
}

.card-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  line-height: 1.4;
}

.contact-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #d4a23e;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.contact-link:hover {
  color: #f8ce57;
  text-shadow: 0 0 10px rgba(212, 162, 62, 0.5);
}

.card-hover-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(212, 162, 62, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.interactive-contact-card:hover .card-hover-effect {
  opacity: 1;
}

/* Main Contact Container - Split Design */
.contact-main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(212, 162, 62, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  min-height: 700px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px;
  background: #ffffff;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(212, 162, 62, 0.3) 50%, transparent 100%);
}

.form-header {
  margin-bottom: 40px;
}

.form-header h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  line-height: 1.2;
}

.form-header p {
  font-size: 1.1rem;
  color: #6c6a72;
  line-height: 1.5;
  margin: 0;
}

/* Modern Contact Form */
.modern-contact-form {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #d4a23e;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  color: #1a202c;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6c6a72;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4a23e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 162, 62, 0.2);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #d4a23e 0%, #f8ce57 100%);
  color: #000;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f8ce57 0%, #d4a23e 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 162, 62, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Contact Map Section */
.contact-map-section {
  position: relative;
  background: linear-gradient(135deg, rgba(212, 162, 62, 0.05) 0%, rgba(248, 206, 87, 0.03) 100%);
}

.map-header {
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(212, 162, 62, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.map-header p {
  font-size: 1rem;
  color: #6c6a72;
  margin: 0;
}

/* Interactive Map */
.interactive-map {
  position: relative;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.interactive-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1) brightness(0.95);
  transition: filter 0.4s ease;
}

.interactive-map:hover iframe {
  filter: grayscale(0%) contrast(1.05) brightness(1);
}

/* Contact Page Responsive Design */
@media (max-width: 1200px) {
  .contact-form-section,
  .map-header {
    padding: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .contact-main-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-form-section::before {
    display: none;
  }

  .map-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 30px;
  }

  .interactive-map {
    min-height: 400px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .interactive-contact-card {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .custom-contact-page-area {
    padding: 80px 0;
  }

  .contact-form-section {
    padding: 30px;
  }

  .map-header {
    padding: 25px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.1rem;
  }

  .form-header h3 {
    font-size: 2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .card-content {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }

  .interactive-contact-card {
    height: 270px;
    margin-bottom: 20px;
  }
}

/*===========================
    CUSTOM BLOG SLIDER
    Modern blog grid slider with cards
===========================*/
.custom-blog-section {
  padding: 80px 0 120px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.custom-blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/dot-bg.png") repeat;
  opacity: 0.1;
  z-index: -1;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.blog-section-title {
  max-width: 600px;
  margin: 0 auto;
}

.blog-subtitle {
  display: inline-block;
  color: #d1a23e;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
}

.blog-subtitle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #d1a23e;
}

.blog-main-title {
  font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.2;
}

.blog-slider-container {
  position: relative;
  z-index: 2;
}

.custom-blog-swiper {
  padding: 0 20px 80px;
}

.custom-blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.custom-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.custom-blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #d1a23e;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  z-index: 3;
}

.blog-date span:first-child {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.blog-date span:last-child {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
}

.blog-card-content {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 250px);
  min-height: 180px;
}

.blog-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 20px;
  line-height: 1.4;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: #d1a23e;
}

.blog-card-footer {
  margin-top: auto;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1a23e;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.blog-read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: #b8921a;
}

.blog-read-more:hover::after {
  transform: translateX(5px);
}

/* Navigation styles */
.custom-blog-nav {
  position: relative;
}

.blog-prev,
.blog-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #d1a23e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.blog-prev {
  left: -25px;
}

.blog-next {
  right: -25px;
}

.blog-prev:hover,
.blog-next:hover {
  background: #b8921a;
  transform: translateY(-50%) scale(1.1);
}

.blog-prev::after {
  content: "‹";
}

.blog-next::after {
  content: "›";
}

/* Pagination */
.blog-pagination {
  text-align: center;
  margin-top: 40px;
}

.blog-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #dee2e6;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.blog-pagination .swiper-pagination-bullet-active {
  background: #d1a23e;
  /* transform: scale(1.2); */
}
.bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.text-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-clamp-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-clamp-5 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .blog-prev {
    left: -15px;
  }

  .blog-next {
    right: -15px;
  }
}

@media (max-width: 768px) {
  .custom-blog-section {
    padding: 60px 0 80px;
  }

  .blog-main-title {
    font-size: 32px;
  }

  .custom-blog-swiper {
    padding: 0 10px 60px;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card-content {
    padding: 20px;
    height: calc(100% - 200px);
    min-height: 150px;
  }

  .blog-card-title {
    font-size: 18px;
  }

  .blog-prev,
  .blog-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .blog-prev {
    left: 5px;
  }

  .blog-next {
    right: 5px;
  }
}

@media (max-width: 576px) {
  .blog-main-title {
    font-size: 28px;
  }

  .blog-card-content {
    padding: 15px;
  }

  .blog-card-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .blog-date {
    padding: 8px 12px;
    top: 15px;
    right: 15px;
  }

  .blog-date span:first-child {
    font-size: 16px;
  }
}

/*===========================
    BLOG DETAIL PAGE STYLES
===========================*/

.blog-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--secondary-color);
  font-size: 14px;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content {
  line-height: 1.8;
  font-size: 16px;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.blog-content p {
  margin-bottom: 20px;
}

.blog-content blockquote {
  border-left: 4px solid var(--theme-color);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 5px;
}

.blog-social-box {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.blog-social-details ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.blog-social-details ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--theme-color);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-social-details ul li a:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}

.blog-sidebar .blog-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}

.blog-sidebar .blog-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.blog-sidebar .blog-item .thumb {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-sidebar .blog-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-sidebar .blog-item .content h5 {
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.blog-sidebar .blog-item .content h5 a {
  color: var(--dark-color);
  text-decoration: none;
}

.blog-sidebar .blog-item .content h5 a:hover {
  color: var(--theme-color);
}

.blog-sidebar .blog-item .content span {
  font-size: 12px;
  color: var(--secondary-color);
  margin-bottom: 5px;
  display: block;
}

@media (max-width: 768px) {
  .blog-image {
    height: 250px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 10px;
  }

  .blog-content {
    font-size: 15px;
  }

  .blog-social-details ul {
    justify-content: center;
  }
}
