/*
Theme Name: Crete - Personal Portfolio HTML Template
Author: Mate_Themes
Author URI: https://themeforest.net/user/mate_themes/
Tags: portfolio, agency, personal, blog, html5 template, portfolio template
Description: Crete - Personal Portfolio HTML5 Template.
Version: 1.1.0
*/

/* ===================================
   Font Imports
   =================================== */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Saira:wght@500&display=swap");

/* ===================================
   CSS Variables
   =================================== */
:root {
  --primary-color: #0056b3;
  --primary-dark: #004494;
  --primary-darker: #003d82;
  --accent-color: #ff6b35;
  --accent-hover: #e55a2b;
  --dark-bg: #1a1a1a;
  --dark-bg-light: #2d2d2d;
  --text-dark: #333;
  --text-gray: #666;
  --text-light: #aaa;
  --border-color: #e0e0e0;
  --white: #fff;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 20px rgba(0, 86, 179, 0.4);
}

/* ===================================
   Base Reset
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'IBM Plex Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--text-dark);
  line-height: 1.6;
}

body.loaded {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ===================================
   Top Info Bar
   =================================== */
.top-bar {
  background: var(--dark-bg);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar a {
  color: var(--white);
  transition: color 0.3s;
}

.top-bar a:hover {
  color: var(--accent-color);
}

.top-bar i {
  color: var(--accent-color);
  margin-right: 5px;
}

/* ===================================
   Main Header
   =================================== */
.main-header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.logo img {
  max-width: 180px;
  max-height: 60px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn-join {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-join:hover {
  background: var(--primary-color);
  color: var(--white);
}

.phone-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.phone-link:hover {
  color: var(--primary-darker);
}

.btn-quote {
  background: var(--accent-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-quote:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

/* ===================================
   Navigation
   =================================== */
.main-nav {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
  width: 100%;
}

.nav-link {
  color: var(--white) !important;
  padding: 15px 20px !important;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    height: 80px;
    background: linear-gradient(
        135deg,
        rgb(100, 176, 227) 50%,
        rgb(254, 110, 57) 50%

    );
    z-index: 999;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

/* ===================================
   Dropdown Menu
   =================================== */
.nav-item {
  position: relative;
}

.dropdown-menu {
background: linear-gradient(
        135deg,
        rgb(100, 176, 227) 50%,
        rgb(254, 110, 57) 50%
    );
  border: none;
  min-width: 280px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: var(--shadow-md);
}



.nav-item:hover > .dropdown-menu {
  display: block;
  animation: fadeIn 0.3s;
}

.dropdown-item {
  color: var(--white);
  padding: 12px 20px;
  transition: var(--transition);
  position: relative;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding-left: 25px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  left: 100%;
  top: 0;
  margin-left: 0;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   Hero Slider
   =================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

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

.hero-slider .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        135deg,
        rgba(0, 86, 179, 0.1),
        rgba(0, 68, 148, 0.1)
    );

    z-index: 1;
}


.hero-slider .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  width: 90%;
  z-index: 2;
}

.hero-slider .content h1 {
  font-size: 52px;
  font-weight: 800;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
}

.hero-slider .content p {
  font-size: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  width: 30px;
  border-radius: 6px;
  background: var(--white);
}

/* ===================================
   Product Details Section
   =================================== */
.productdetails-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  padding: 0;
}

.productdetails-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  border-bottom: 1px solid var(--border-color);
}

/* Image Gallery */
.productdetails-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.productdetails-main-image-container {
  width: 100%;
  height: 400px;
  background: #f9f9f9;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.productdetails-slider-track {
  display: flex;
  transition: transform 0.4s ease;
  width: 100%;
  height: 100%;
}

.productdetails-slide-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productdetails-slide-item img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.productdetails-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productdetails-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.7);
}

.productdetails-slider-arrow.productdetails-prev {
  left: 10px;
}

.productdetails-slider-arrow.productdetails-next {
  right: 10px;
}

.productdetails-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.productdetails-thumbnail {
  width: 100%;
  height: 80px;
  border: 2px solid var(--border-color);
  cursor: pointer;
  overflow: hidden;
  background: #f9f9f9;
  transition: border-color 0.3s;
}

.productdetails-thumbnail:hover {
  border-color: var(--text-gray);
}

.productdetails-thumbnail.productdetails-active {
  border-color: var(--text-dark);
}

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

/* Product Info */
.productdetails-info {
  padding-top: 20px;
}

.productdetails-brand-logo {
  width: 50px;
  height: 50px;
  background: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

.productdetails-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--text-dark);
}

.productdetails-meta {
  margin-bottom: 20px;
}

.productdetails-meta-item {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.productdetails-meta-label {
  font-weight: 600;
  min-width: 150px;
  color: var(--text-gray);
}

.productdetails-meta-value {
  color: var(--text-dark);
}

.productdetails-category {
  font-size: 14px;
  margin-bottom: 15px;
}

.productdetails-category strong {
  font-weight: 600;
}

.productdetails-description {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  padding: 15px;
  background: #f9f9f9;
  border-left: 3px solid var(--text-dark);
  margin-bottom: 20px;
}

/* Tabs */
.productdetails-tabs {
  border-bottom: 2px solid var(--border-color);
  padding: 0 40px;
}

.productdetails-tab-button {
  background: none;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.productdetails-tab-button:hover {
  color: var(--text-dark);
}

.productdetails-tab-button.productdetails-active {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Description Section */
.productdetails-description-section {
  padding: 40px;
}

.productdetails-section-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.productdetails-description-content {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.productdetails-description-content ul {
  padding-left: 0;
}

.productdetails-description-content li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.productdetails-description-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
  color: var(--text-dark);
}

.productdetails-description-content ul ul {
  margin-left: 20px;
  margin-top: 10px;
}

.productdetails-footer-note {
  background: #f0f0f0;
  padding: 15px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--text-gray);
}

/* Related Products */
.productdetails-related-products {
  padding: 40px;
  background: #f9f9f9;
  border-top: 1px solid var(--border-color);
}

.productdetails-related-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.productdetails-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.productdetails-product-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.productdetails-product-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.productdetails-product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.productdetails-product-card h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal */
.productdetails-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.productdetails-modal-content {
  position: relative;
  margin: auto;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productdetails-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.productdetails-close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.productdetails-close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===================================
   Footer
   =================================== */
.main-footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-light) 100%);
  color: var(--text-light);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.footer-text {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-text i {
  color: var(--accent-color);
  margin-right: 10px;
  width: 20px;
}

.footer-text strong {
  color: #ddd;
}

.footer-heading {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}

.footer-links {
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-light);
  display: inline-block;
  position: relative;
  padding-left: 15px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  opacity: 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
  font-size: 16px;
}

.social-icon:hover {
  background: var(--accent-color);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-news {
  padding: 0;
  margin: 0;
}

.footer-news li {
  margin-bottom: 15px;
}

.footer-news a {
  color: var(--text-light);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-news a i {
  color: var(--accent-color);
  transition: transform 0.3s;
}

.footer-news a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-news a:hover i {
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 50px;
  padding: 25px 0;
  color: var(--text-gray);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

.footer-bottom-link {
  color: var(--text-light);
  transition: color 0.3s;
  font-size: 14px;
}

.footer-bottom-link:hover {
  color: var(--accent-color);
}

.separator {
  margin: 0 10px;
  color: var(--text-gray);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (max-width: 1024px) {
  .productdetails-top {
    grid-template-columns: 1fr;
  }

  .productdetails-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slider {
    height: 500px;
  }

  .hero-slider .content h1 {
    font-size: 42px;
  }

  .hero-slider .content p {
    font-size: 20px;
  }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */
@media (max-width: 768px) {
  /* Top Bar */
  .top-bar {
    font-size: 11px;
    padding: 6px 0;
  }

  .top-bar .col-md-6 {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .top-bar .text-end {
    text-align: left !important;
  }

  .top-bar a {
    display: block;
    margin-bottom: 3px;
  }

  /* Header */
  .main-header {
    padding: 10px 0;
  }

  .logo {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
  }

  .logo img {
    max-width: 140px;
    max-height: 45px;
  }

  .header-actions {
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .btn-join,
  .phone-link,
  .btn-quote {
    font-size: 12px;
    padding: 6px 12px;
    flex: 1;
    text-align: center;
  }

  .phone-link i {
    display: none;
  }

  /* Navigation */
  .navbar-toggler {
    background: var(--white);
    border: 2px solid var(--white);
  }

  .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
  }

  .navbar-collapse {
    background: var(--primary-color);
    margin-top: 10px;
    border-radius: 5px;
    padding: 10px 0;
  }

  .nav-link {
    padding: 10px 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    margin-left: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin-top: 5px;
  }

  .dropdown-submenu > .dropdown-menu {
    position: static !important;
    margin-left: 25px;
    background: rgba(0, 0, 0, 0.3);
  }

  .nav-item:hover > .dropdown-menu {
    display: none;
  }

  .nav-item.show > .dropdown-menu {
    display: block !important;
  }

  .dropdown-item {
    padding: 8px 15px;
    font-size: 14px;
  }

  .dropdown-item:hover {
    padding-left: 20px;
  }

  /* Hero Slider */
  .hero-slider {
    height: 400px;
  }

  .hero-slider .content h1 {
    font-size: 32px;
  }

  .hero-slider .content p {
    font-size: 16px;
  }

  /* Product Details */
  .productdetails-top,
  .productdetails-description-section,
  .productdetails-related-products {
    padding: 20px;
  }

  .productdetails-tabs {
    padding: 0 20px;
  }

  .productdetails-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }

  .productdetails-products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .productdetails-main-image-container {
    height: 300px;
  }

  /* Footer */
  .main-footer {
    padding: 40px 0 0;
    margin-top: 50px;
  }

  .footer-logo {
    font-size: 24px;
    text-align: center;
  }

  .footer-heading {
    font-size: 16px;
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-text {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a::before {
    display: none;
  }

  .social-links {
    justify-content: center;
  }

  .footer-news {
    text-align: center;
  }

  .footer-bottom {
    text-align: center !important;
  }

  .footer-bottom .col-md-6 {
    text-align: center !important;
  }

  .separator {
    display: block;
    margin: 10px 0;
    opacity: 0;
  }
}

    /* Scroll to Top Button */
     .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        border-color: #ff6b35;
    }

    .image-container:hover .product-image {
        transform: scale(1.1);
    }

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

    .product-card {
        animation: fadeInUp 0.6s ease-out;
    }

    .product-card:nth-child(1) { animation-delay: 0.1s; }
    .product-card:nth-child(2) { animation-delay: 0.2s; }
    .product-card:nth-child(3) { animation-delay: 0.3s; }
    .product-card:nth-child(4) { animation-delay: 0.4s; }
    .product-card:nth-child(5) { animation-delay: 0.5s; }
    .product-card:nth-child(6) { animation-delay: 0.6s; }

    .hvac-passion-section {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 27, 62, 0.92) 0%, rgba(27, 38, 73, 0.88) 50%, rgba(42, 52, 84, 0.85) 100%);
    z-index: 1;
}

.hvac-passion-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    max-width: 900px;
}

.main-title {
    margin: 0 0 30px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.highlight-text {
    color: #FF5722;
    display: block;
}

.description-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 40px 0;
    font-weight: 300;
    max-width: 850px;
}

.cta-button {
    display: inline-block;
    background-color: #FF5722;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid #FF5722;
}

.cta-button:hover {
    background-color: transparent;
    color: #FF5722;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hvac-passion-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .description-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 26px;
    }

    .description-text {
        font-size: 13px;
    }
}
.stats-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.95), rgba(0, 61, 130, 0.95));
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 400;
    max-width: 100%;
}

.stats-cta-button {
    background: #E63946;
    color: #ffffff;
    padding: 16px 45px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.stats-cta-button:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: #ff6b35;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-section {
        padding: 30px 0;
    }

    .stats-description {
        font-size: 15px;
        margin-bottom: 20px;
        text-align: center;
    }

    .col-md-3 {
        text-align: center !important;
    }

    .stats-cta-button {
        padding: 14px 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .stats-description {
        font-size: 14px;
    }

    .stats-cta-button {
        padding: 12px 30px;
        font-size: 13px;
    }
}
.contactpages-input,
.contactpages-textarea {
    width: 100%;
    padding: 15px 20px;

    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;  /* Changed to white background */
}



.contactpages-input:focus,
.contactpages-textarea:focus {
    outline: none;
      /* Blue border on focus */
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.1);
}

    .contactpages-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .contactpages-main-section {
        background: var(--white);
        border-radius: 20px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 40px;
    }

    .contactpages-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        min-height: 500px;
    }

    /* Left Side - Illustration */
    .contactpages-illustration {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        padding: 60px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .contactpages-illustration::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: contactpages-pulse 15s ease-in-out infinite;
    }

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

    .contactpages-image-wrapper {
        position: relative;
        z-index: 1;
        max-width: 400px;
        width: 100%;
    }

    .contactpages-image-wrapper img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
        animation: contactpages-float 6s ease-in-out infinite;
    }

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

    /* Right Side - Form */
    .contactpages-form-section {
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contactpages-form-title {
        font-size: 32px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .contactpages-form-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 2px;
    }

    .contactpages-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contactpages-form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .contactpages-form-group {
        position: relative;
    }

    .contactpages-input,
    .contactpages-textarea {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid rebeccapurple;
        border-radius: 10px;
        font-size: 15px;
        font-family: 'Poppins', sans-serif;
        transition: all 0.3s ease;
        background: var(--bg-light);
    }

    .contactpages-input:focus,
    .contactpages-textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        background: var(--white);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .contactpages-input::placeholder,
    .contactpages-textarea::placeholder {
        color: #a0aec0;
    }

    .contactpages-textarea {
        resize: vertical;
        min-height: 120px;
        max-height: 200px;
    }

    .contactpages-input.is-invalid {
        border-color: var(--error-color);
    }

    .contactpages-error {
        color: var(--error-color);
        font-size: 13px;
        margin-top: 5px;
    }

    .contactpages-alert {
        padding: 15px 20px;
        border-radius: 10px;
        margin-bottom: 20px;
        font-size: 15px;
    }

    .contactpages-alert-success {
        background: var(--success-bg);
        color: var(--success-text);
        border: 1px solid #c3e6cb;
    }

    .contactpages-alert-error {
        background: var(--error-bg);
        color: var(--error-text);
        border: 1px solid #f5c6cb;
    }

    .contactpages-submit-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        border: none;
        padding: 16px 40px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        align-self: flex-start;
    }

    .contactpages-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .contactpages-submit-btn:active {
        transform: translateY(0);
    }

    .contactpages-submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    /* Contact Info Cards */
    .contactpages-info-section {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .contactpages-info-card {
        background: var(--white);
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .contactpages-info-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .contactpages-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .contactpages-info-card:hover::before {
        transform: scaleX(1);
    }

    .contactpages-icon-wrapper {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .contactpages-icon-wrapper img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .contactpages-info-title {
        font-size: 22px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .contactpages-info-text {
        font-size: 15px;
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 8px;
    }

    /* Google Map Section */
    .contactpages-map-section {
        display: none;
    }

    .contactpages-map-container {
        position: relative;
        width: 100%;
        height: 450px;
        overflow: hidden;
    }

    .contactpages-map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(0);
        transition: filter 0.3s ease;
    }

    .contactpages-map-container:hover iframe {
        filter: grayscale(0) brightness(1.05);
    }

    /* Full Width Google Map Section */
    .contactpages-map-section-fullwidth {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-bottom: 0;
    }

    .contactpages-map-container-fullwidth {
        position: relative;
        width: 100%;
        height: 500px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .contactpages-map-container-fullwidth iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
    }

    /* Responsive Design */
    @media (max-width: 968px) {
        .contactpages-grid {
            grid-template-columns: 1fr;
        }

        .contactpages-illustration {
            padding: 40px 30px;
            min-height: 300px;
        }

        .contactpages-info-section {
            grid-template-columns: 1fr;
        }

        .contactpages-map-container {
            height: 350px;
        }

        .contactpages-map-container-fullwidth {
            height: 400px;
        }
    }

    @media (max-width: 640px) {
        .contactpages-form-section {
            padding: 40px 30px;
        }

        .contactpages-form-row {
            grid-template-columns: 1fr;
        }

        .contactpages-form-title {
            font-size: 26px;
        }

        .contactpages-map-container {
            height: 300px;
        }

        .contactpages-map-container-fullwidth {
            height: 350px;
        }
    }





    /* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */



/* Breadcrumb */
/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */

/* Base Styles */


/* Breadcrumb */
.breadcrumb-section {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #e74c3c;
}

.breadcrumb-item.active {
    color: #333;
}

/* Blog Detail Container */
.blog-detail-container {
    padding: 40px 0;
}

/* Blog Detail Card */
.blog-detail-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.blog-detail-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-detail-card:hover .blog-detail-image img {
    transform: scale(1.05);
}

/* Blog Detail Content */
.blog-detail-content {
    padding: 40px;
}

.blog-detail-category {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.blog-detail-category:hover {
    background: #c0392b;
}

.blog-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.blog-detail-meta span {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: #e74c3c;
}

/* Blog Detail Body */
.blog-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body h1,
.blog-detail-body h2,
.blog-detail-body h3,
.blog-detail-body h4,
.blog-detail-body h5,
.blog-detail-body h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #222;
    font-weight: 700;
}

.blog-detail-body h2 {
    font-size: 28px;
}

.blog-detail-body h3 {
    font-size: 24px;
}

.blog-detail-body h4 {
    font-size: 20px;
}

.blog-detail-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-detail-body ul,
.blog-detail-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-body li {
    margin-bottom: 10px;
}

.blog-detail-body blockquote {
    border-left: 4px solid #e74c3c;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #666;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.blog-detail-body code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    color: #e74c3c;
}

.blog-detail-body pre {
    background: #282c34;
    color: #abb2bf;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-detail-body pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.blog-detail-body a {
    color: #e74c3c;
    text-decoration: underline;
    transition: color 0.3s;
}

.blog-detail-body a:hover {
    color: #c0392b;
}

/* Share Section */
.share-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.facebook:hover {
    background: #2d4373;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0c85d0;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #005885;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.whatsapp:hover {
    background: #1da851;
}

/* Post Navigation */
.post-navigation {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.post-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.post-nav-link {
    text-decoration: none;
    color: #333;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s;
    display: block;
}

.post-nav-link:hover {
    border-color: #e74c3c;
    background: #fff5f5;
    transform: translateX(5px);
}

.post-nav-link:first-child:hover {
    transform: translateX(-5px);
}

.post-nav-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    font-weight: 600;
}

.post-nav-title {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    display: block;
}

/* Sidebar */
.sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

/* Category List in Sidebar */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    padding-left: 10px;
    background-color: #f9f9f9;
}

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.category-item a:hover {
    color: #e74c3c;
}

.category-count {
    background: #f0f0f0;
    color: #666;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s;
}

.category-item:hover .category-count {
    background: #e74c3c;
    color: white;
}

/* Recent Posts in Sidebar */
.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.recent-post-item:hover .recent-post-image img {
    transform: scale(1.1);
}

.recent-post-content h6 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-content a:hover {
    color: #e74c3c;
}

.recent-post-date {
    font-size: 11px;
    color: #999;
}

.recent-post-date i {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-content {
        padding: 30px;
    }

    .blog-detail-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .blog-detail-title {
        font-size: 24px;
    }

    .blog-detail-content {
        padding: 25px;
    }

    .blog-detail-image {
        height: 300px;
    }

    .post-nav-links {
        grid-template-columns: 1fr;
    }

    .blog-detail-body {
        font-size: 15px;
    }

    .share-buttons {
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .blog-detail-title {
        font-size: 20px;
    }

    .blog-detail-content {
        padding: 20px;
    }

    .blog-detail-image {
        height: 250px;
    }

    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .share-btn {
        font-size: 13px;
        padding: 8px 15px;
    }

    .post-navigation {
        padding: 20px;
    }

    .sidebar {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .share-section,
    .post-navigation,
    .sidebar {
        display: none;
    }

    .blog-detail-card {
        box-shadow: none;
    }
}
/* ============================================
   BLOG POST PAGE STYLES
   ============================================ */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item a:hover {
    color: #e74c3c;
}

.breadcrumb-item.active {
    color: #333;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 50px 0 30px;
    background-color: #fff;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.page-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #e74c3c, #c0392b);
    margin: 20px auto 0;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #e74c3c;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #999;
    margin-bottom: 15px;
}

.blog-meta i {
    color: #e74c3c;
}

.read-more {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.read-more:hover {
    color: #c0392b;
    gap: 8px;
}

.read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s;
}

.read-more:hover i {
    margin-left: 10px;
}

/* Sidebar */
.sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

/* Search Box */
.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #e74c3c;
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #e74c3c;
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.search-box button:hover {
    background: #c0392b;
}

/* Category Dropdown */
.category-dropdown {
    position: relative;
}

.category-dropdown-btn {
    width: 100%;
    padding: 12px 15px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.category-dropdown-btn:hover {
    background: #fff;
    border-color: #e74c3c;
}

.category-dropdown-btn .selected-category {
    flex-grow: 1;
    text-align: left;
}

.category-dropdown-btn .dropdown-icon {
    transition: transform 0.3s;
    color: #e74c3c;
}

.category-dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

.category-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-dropdown-menu.show {
    max-height: 400px;
    opacity: 1;
    overflow-y: auto;
}

.category-dropdown-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.category-dropdown-item:last-child {
    border-bottom: none;
}

.category-dropdown-item:hover {
    background-color: #f9f9f9;
}

.category-dropdown-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.category-dropdown-item a:hover {
    color: #e74c3c;
}

.category-count {
    background: #f0f0f0;
    color: #666;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.category-dropdown-item.active {
    background: #fff5f5;
}

.category-dropdown-item.active a {
    color: #e74c3c;
    font-weight: 600;
}

.category-dropdown-item.active .category-count {
    background: #e74c3c;
    color: white;
}

/* Recent Posts */
.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item:hover {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.recent-post-image {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.recent-post-content h6 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-content a:hover {
    color: #e74c3c;
}

.recent-post-date {
    font-size: 11px;
    color: #999;
}

.recent-post-date i {
    color: #e74c3c;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    display: flex;
    gap: 5px;
}

.pagination .page-link {
    padding: 10px 15px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination .page-link:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.pagination .page-item.active .page-link {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 8px;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #666;
    font-size: 20px;
    margin-bottom: 10px;
}

.no-results p {
    color: #999;
    font-size: 14px;
}

/* Custom Scrollbar for Dropdown */
.category-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.category-dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.category-dropdown-menu::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 10px;
}

.category-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 32px;
    }

    .blog-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .blog-title {
        font-size: 18px;
    }

    .blog-image {
        height: 200px;
    }

    .sidebar {
        margin-top: 30px;
    }

    .category-dropdown-menu.show {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 24px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .sidebar {
        padding: 20px;
    }
}
/* Active Filters Styling */
.active-filters {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.filter-badge {
    display: inline-block;
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
    color: #333;
    border: 1px solid #ddd;
}

.filter-badge i {
    color: #e74c3c;
    margin-right: 5px;
}

.btn-clear-filters {
    background: #e74c3c;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    background: #c0392b;
    color: #fff;
    transform: translateY(-2px);
}

.results-info {
    font-size: 14px;
}

.results-info i {
    color: #e74c3c;
}

/* No Results Styling */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.no-results i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.no-results p {
    color: #666;
    font-size: 16px;
}
 .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Breadcrumb */
    .breadcrumb {
        background: white;
        padding: 15px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .breadcrumb-content {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }

    .breadcrumb a {
        color: #333;
        text-decoration: none;
    }

    .breadcrumb a:hover {
        color: #007bff;
    }

    /* Main Layout */
    .main-wrapper {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .content-area {
        background: white;
        padding: 30px;
    }

    /* Intro Text */
    .intro-text {
        font-size: 14px;
        color: #666;
        margin-bottom: 30px;
        line-height: 1.8;
    }

    /* Section Header */
    .section-header {
        background: #e8e8e8;
        padding: 15px 20px;
        margin-bottom: 30px;
        text-align: center;
    }

    .section-header h2 {
        font-size: 22px;
        font-weight: 600;
        color: #333;
    }

    /* Video Grid */
    .video-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .video-item {
        background: white;
        transition: transform 0.3s ease;
    }

    .video-item:hover {
        transform: translateY(-5px);
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        background: #000;
        margin-bottom: 15px;
        border-radius: 5px;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .video-info h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #333;
    }

    .video-info p {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
    }

    /* No Videos Message */
    .no-videos {
        text-align: center;
        padding: 60px 20px;
        background: #f9f9f9;
        border-radius: 5px;
    }

    .no-videos i {
        font-size: 48px;
        color: #ddd;
        margin-bottom: 20px;
    }

    .no-videos h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 10px;
    }

    .no-videos p {
        font-size: 16px;
        color: #666;
    }

    /* Sidebar */
    .sidebar {
        background: white;
    }

    .sidebar-section {
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
    }

    .sidebar-section:last-child {
        border-bottom: none;
    }

    /* Search Box */
    .search-box {
        display: flex;
        margin-bottom: 10px;
    }

    .search-box input {
        flex: 1;
        padding: 10px;
        border: 1px solid #ddd;
        font-size: 14px;
    }

    .search-box button {
        padding: 10px 15px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        border-left: none;
        cursor: pointer;
    }

    .search-box button:hover {
        background: #e0e0e0;
    }

    /* Sidebar Titles */
    .sidebar-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }

    /* Product Categories */
    .category-select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        font-size: 14px;
        color: #999;
        background: white;
        cursor: pointer;
    }

    /* News Items */
    .news-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        transition: transform 0.3s ease;
    }

    .news-item:hover {
        transform: translateX(5px);
    }

    .news-item:last-child {
        margin-bottom: 0;
    }

    .news-image {
        width: 80px;
        height: 60px;
        flex-shrink: 0;
        overflow: hidden;
        border-radius: 3px;
    }

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

    .news-content h4 {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 5px;
        color: #333;
        line-height: 1.4;
        text-transform: uppercase;
    }

    .news-content a {
        text-decoration: none;
        color: #333;
    }

    .news-content a:hover {
        color: #007bff;
    }

    /* Responsive */
    @media (max-width: 968px) {
        .main-wrapper {
            grid-template-columns: 1fr;
        }

        .video-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Our Team Member css*/
    .teammemberapro {
    background: #f8f8f8;
    padding: 80px 20px;
    overflow: hidden;
}

.teammemberapro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.teammemberapro__header {
    margin-bottom: 60px;
}

.teammemberapro__badge {
    display: inline-block;
    color: #e63946;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.teammemberapro__badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: #e63946;
}

.teammemberapro__title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: 1px;
}

.teammemberapro__slider {
    position: relative;
    margin-bottom: 40px;
}

.teammemberapro__track-container {
    overflow: hidden;
    margin: 0 60px;
}

.teammemberapro__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.teammemberapro__card {
    flex: 0 0 calc(25% - 22.5px);
    max-width: calc(25% - 22.5px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.teammemberapro__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.teammemberapro__image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.teammemberapro__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.teammemberapro__card:hover .teammemberapro__image {
    transform: scale(1.08);
}

.teammemberapro__content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.teammemberapro__name {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.teammemberapro__role {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.teammemberapro__bio {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    flex: 1;
}

.teammemberapro__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: #1a1a1a;
}

.teammemberapro__nav:hover {
    background: #e63946;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.teammemberapro__nav--prev {
    left: 0;
}

.teammemberapro__nav--next {
    right: 0;
}

.teammemberapro__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.teammemberapro__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.teammemberapro__dot--active {
    background: #e63946;
    border-color: #e63946;
    width: 32px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.teammemberapro__dot--active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: rgba(255, 255, 255, 0.3);
    animation: dotProgress 3s linear;
}

@keyframes dotProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.teammemberapro__dot:hover {
    border-color: #e63946;
}

.teammemberapro__bottom {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.teammemberapro__tagline {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
}

.teammemberapro__description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 30px 0;
}

.teammemberapro__cta {
    display: inline-block;
    background: #e63946;
    color: white;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.teammemberapro__cta:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .teammemberapro__card {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .teammemberapro__container {
        padding: 0 15px;
    }

    .teammemberapro__card {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .teammemberapro__track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .teammemberapro {
        padding: 60px 15px;
    }

    .teammemberapro__title {
        font-size: 28px;
    }

    .teammemberapro__track-container {
        margin: 0 50px;
    }

    .teammemberapro__card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .teammemberapro__track {
        gap: 15px;
    }

    .teammemberapro__nav {
        width: 45px;
        height: 45px;
    }

    .teammemberapro__nav--prev {
        left: 5px;
    }

    .teammemberapro__nav--next {
        right: 5px;
    }

    .teammemberapro__tagline {
        font-size: 20px;
    }

    .teammemberapro__description {
        font-size: 15px;
    }

    .teammemberapro__image-wrapper {
        height: 350px;
    }

    .teammemberapro__content {
        padding: 25px;
    }

    .teammemberapro__name {
        font-size: 20px;
    }

    .teammemberapro__bio {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .teammemberapro {
        padding: 50px 10px;
    }

    .teammemberapro__container {
        padding: 0 10px;
    }

    .teammemberapro__header {
        margin-bottom: 40px;
    }

    .teammemberapro__title {
        font-size: 22px;
    }

    .teammemberapro__badge {
        font-size: 12px;
    }

    .teammemberapro__track-container {
        margin: 0 45px;
    }

    .teammemberapro__nav {
        width: 38px;
        height: 38px;
    }

    .teammemberapro__nav svg {
        width: 18px;
        height: 18px;
    }

    .teammemberapro__tagline {
        font-size: 18px;
        line-height: 1.4;
    }

    .teammemberapro__description {
        font-size: 14px;
        line-height: 1.7;
    }

    .teammemberapro__cta {
        padding: 14px 32px;
        font-size: 13px;
    }

    .teammemberapro__image-wrapper {
        height: 280px;
    }

    .teammemberapro__content {
        padding: 20px;
    }

    .teammemberapro__name {
        font-size: 18px;
    }

    .teammemberapro__role {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .teammemberapro__bio {
        font-size: 13px;
        line-height: 1.65;
    }

    .teammemberapro__dots {
        gap: 10px;
        margin-bottom: 40px;
    }

    .teammemberapro__dot {
        width: 10px;
        height: 10px;
    }

    .teammemberapro__dot--active {
        width: 28px;
    }

    .teammemberapro__bottom {
        padding: 0 10px;
    }
}

@media (max-width: 400px) {
    .teammemberapro__title {
        font-size: 20px;
    }

    .teammemberapro__tagline {
        font-size: 16px;
    }

    .teammemberapro__image-wrapper {
        height: 250px;
    }

    .teammemberapro__content {
        padding: 18px;
    }

    .teammemberapro__name {
        font-size: 17px;
    }

    .teammemberapro__bio {
        font-size: 12px;
    }
}
/* End Team Member end*/
/*Start Partner photo*/
.ourpartnerphoto {
    background: transparent;
    padding: 80px 0;
    overflow: hidden;
}

.ourpartnerphoto__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.ourpartnerphoto__header {
    margin-bottom: 50px;
    text-align: center;
}

.ourpartnerphoto__title {
    font-size: 32px;
    font-weight: 600;
    color: #888;
    margin: 0 0 15px 0;
}

.ourpartnerphoto__divider {
    width: 60px;
    height: 3px;
    background: #ff6b35;
    margin: 0 auto;
}

.ourpartnerphoto__wrapper {
    position: relative;
    padding: 0 70px;
}

.ourpartnerphoto__track-container {
    overflow: hidden;
    width: 100%;
}

.ourpartnerphoto__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 25px;
}

.ourpartnerphoto__item {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: 200px;
}

.ourpartnerphoto__box {
    background: transparent;
    padding: 40px;
    border-radius: 10px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
}




.ourpartnerphoto__box:hover .ourpartnerphoto__image {
    filter: grayscale(0%);
    opacity: 1;
}

.ourpartnerphoto__placeholder {
    color: #999;
    font-size: 14px;
    text-align: center;
}

.ourpartnerphoto__empty {
    width: 100%;
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

.ourpartnerphoto__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 2px solid #e0e0e0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: #666;
}



.ourpartnerphoto__nav--prev {
    left: 0;
}

.ourpartnerphoto__nav--next {
    right: 0;
}

.ourpartnerphoto__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.ourpartnerphoto__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.ourpartnerphoto__dot--active {
    background: #ff6b35;
    border-color: #ff6b35;
    width: 30px;
    border-radius: 5px;
}

.ourpartnerphoto__dot:hover {
    border-color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .ourpartnerphoto__container {
        padding: 0 40px;
    }

    .ourpartnerphoto__item {
        flex: 0 0 calc(25% - 19px);
        max-width: calc(25% - 19px);
    }
}

@media (max-width: 992px) {
    .ourpartnerphoto__container {
        padding: 0 30px;
    }

    .ourpartnerphoto__wrapper {
        padding: 0 60px;
    }

    .ourpartnerphoto__item {
        flex: 0 0 calc(33.333% - 17px);
        max-width: calc(33.333% - 17px);
    }

    .ourpartnerphoto__track {
        gap: 20px;
    }

    .ourpartnerphoto__box {
        height: 180px;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .ourpartnerphoto {
        padding: 60px 0;
    }

    .ourpartnerphoto__container {
        padding: 0 20px;
    }

    .ourpartnerphoto__title {
        font-size: 26px;
    }

    .ourpartnerphoto__item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .ourpartnerphoto__track {
        gap: 15px;
    }

    .ourpartnerphoto__nav {
        width: 40px;
        height: 40px;
    }

    .ourpartnerphoto__box {
        height: 170px;
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .ourpartnerphoto {
        padding: 50px 0;
    }

    .ourpartnerphoto__container {
        padding: 0 15px;
    }

    .ourpartnerphoto__wrapper {
        padding: 0 50px;
    }

    .ourpartnerphoto__title {
        font-size: 22px;
    }

    .ourpartnerphoto__item {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ourpartnerphoto__nav {
        width: 38px;
        height: 38px;
    }

    .ourpartnerphoto__nav svg {
        width: 16px;
        height: 16px;
    }

    .ourpartnerphoto__box {
        height: 160px;
        padding: 30px;
    }
}
/*end partner photo*/
