:root {
    --primary-color: #0CACB4;
    --primary-dark: #09888E;
    --primary-light: #a6d6d8;
    --accent-color: #FF6B35;
    --text-dark: #2D3748;
    --text-light: #718096;
    --bg-white: #ffffff;
    --bg-light: #F7FAFC;
    --border-color: #E2E8F0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: var(--bg-light);
}
a {
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  background-color: #A6A6A6;
  width: 0%;
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
  animation: heartbeat116 1.5s ease-in-out 0.3s infinite;
}

@keyframes heartbeat116 {
  0%, 100% {
    width: 100%;
  }
  50% {
    width: 60%;
  }
}



/* =========================
    Header and deader modal Styles Start
    ========================= */
.header-top {
  
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.header-top p {
    margin: 0;
    display: flex;
    align-items: center;
}

.header-top .stats-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.header-top .stats-item i {
    font-size: 11px;
    opacity: 0.9;
}

.header-top select {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 11px;
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
    height: 26px;
    color: white;
    backdrop-filter: blur(10px);
}

.header-top select:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
}

.header-top select option {
    background: white;
    color: var(--text-dark);
}

/* Social Icons - Premium */
.social-icons {
    display: flex;
    gap: 6px;
    margin-left: 12px;
}

.social-icons a {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
    transition: var(--transition);
    text-decoration: none;
    font-size: 11px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-icons a.facebook:hover { background: #1877F2; border-color: #1877F2; }
.social-icons a.twitter:hover { background: #1DA1F2; border-color: #1DA1F2; }
.social-icons a.linkedin:hover { background: #0077B5; border-color: #0077B5; }
.social-icons a.youtube:hover { background: #FF0000; border-color: #FF0000; }

/* =========================
    Main Header Section - Premium
    ========================= */
.main-header {
    background: var(--bg-white);
    padding: 12px 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 42px;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.logo-subtext {
    font-size: 10px;
    color: var(--text-light);
    font-weight: 500;
}

/* Search Form - Right Side Desktop */
.search-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-form {
    width: 320px;
    position: relative;
}

.search-form .input-group {
    display: flex;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-form .input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(12, 172, 180, 0.15);
    transform: translateY(-1px);
}

.search-form select {
    border: none;
    padding: 10px 12px;
    font-size: 12px;
    background: var(--primary-color);
    color: white;
    cursor: pointer;
    min-width: 120px;
    font-weight: 500;
    transition: var(--transition);
}

.search-form select:hover {
    background: var(--primary-dark);
}

.search-form input {
    border: none;
    flex: 1;
    padding: 10px 15px;
    font-size: 13px;
    background: var(--bg-white);
    color: var(--text-dark);
}

.search-form input::placeholder {
    color: var(--text-light);
}

.search-form input:focus {
    outline: none;
    background: var(--bg-white);
}

.header-search-button {
    background: var(--primary-dark) !important;
    border: none;
    color: white;
    padding: 0 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.header-search-button:hover {
    background: var(--primary-color) !important;
    transform: scale(1.05);
}

/* Action Buttons - Premium */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-btn {
    background: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    position: relative;
    font-size: 12px;
    font-weight: 500;
}

.action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(12, 172, 180, 0.1);
}

.action-btn .badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid white;
}

.action-btn i {
    font-size: 14px;
}

/* Login Container - Premium */
.login-container {
    position: relative;
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 8px;
    color: white;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(12, 172, 180, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 172, 180, 0.4);
}

.login-btn .user-avatar {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.login-container:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Login Modal - Premium */
.login-modal {
    position: absolute;
    top: 100%;
    right: 0;
    width: 340px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    margin-top: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.login-container:hover .login-modal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.modal-content {
    padding: 0;
}

.benefits-section {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-light), white);
}

.benefits-section h6 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    transition: var(--transition);
    background: white;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    background: var(--bg-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.feature-content h6 {
    margin: 0 0 4px 0;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
}

.feature-content p {
    margin: 0;
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

.quick-login {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.quick-login:last-child {
    border-bottom: none;
}

.quick-login p {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 13px;
    text-align: center;
}

.social-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.social-buttons .btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    border: 1px solid  var(--primary-color);
    background-color: white;
  padding: 12px;
}


.btn-google {
    color: var(--primary-color);
}

.btn-google:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-facebook {
    background: var(--primary-color);
    color: var(--primary-color);
}

.btn-facebook:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* =========================
    Main Navigation - Premium
    ========================= */
.main-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-nav .container-fluid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
}

.nav-btn {
    color: white;
    text-decoration: none;
    padding: 14px 18px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: start;
    align-items: center;
    gap: 6px;
    position: relative;
    white-space: nowrap;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: white;
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0;
}

.nav-btn:hover::after {
    width: 80%;
}

.nav-btn i {
    font-size: 13px;
}

/* Dropdown Menu - Premium */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    overflow: hidden;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #007bff;
    padding-left: 20px;
}

.dropdown-menu a i {
    font-size: 12px;
    width: 18px;
    color: #007bff;
}


/* =========================
    Mobile Responsive Styles
    ========================= */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    background: var(--bg-light);
    transform: scale(1.05);
}

.mobile-actions {
    display: none;
    align-items: center;
    gap: 8px;
}

/* Mobile Search in Menu */
.mobile-search-container {
    display: none;
    padding: 20px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

/* Desktop Layout */
@media (min-width: 992px) {
    .search-container {
        margin-left: auto;
    }
    
    .main-header .container-fluid {
        justify-content: space-between;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .header-top .d-none-mobile {
        display: none !important;
    }
    
    .search-form {
        width: 280px;
    }
    
    .main-nav .container-fluid {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 15px;
    }
    
    .nav-btn {
        padding: 12px 15px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .action-btn span, .login-btn span:not(.login-text) {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-top {
        padding: 6px 0;
        font-size: 11px;
    }
    
    .header-top select {
        min-width: 85px;
        padding: 4px 8px;
        height: 24px;
        font-size: 10px;
    }
    
    .social-icons {
        margin-left: 8px;
    }
    
    .social-icons a {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .logo img {
        max-height: 36px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .search-container {
        display: none; /* Hide desktop search */
    }
    
    .mobile-search-container {
        display: block; /* Show mobile search */
    }
    
    .action-buttons {
        margin-left: auto;
    }
    
    .action-btn, .login-btn {
        padding: 7px 10px;
    }
    
    .action-btn .badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
    
    .mobile-toggle {
        display: flex;
        margin-right: 8px;
    }
    
    .mobile-actions {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        transition: var(--transition);
        z-index: 1100;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav .container-fluid {
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        overflow-x: visible;
        flex: 1;
    }
    
    .nav-btn {
        color: var(--text-dark);
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        justify-content: space-between;
        font-size: 14px;
        background: white;
    }
    
    .nav-btn:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }
    
    .nav-btn::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        border-radius: 0;
        display: none;
        min-width: 100%;
        border: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 45px;
        border-bottom: 1px solid var(--border-color);
        font-size: 13px;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1099;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .login-modal {
        width: 300px;
        right: -30px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .header-top .container-fluid > .row {
        justify-content: center;
        text-align: center;
    }
    
    .header-top .col-auto {
        margin-bottom: 4px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    .soso-login{
        
        margin-top: 20px;
    }
    .soso-login{
        
        color: white;
    }
    
    .main-header .container-fluid {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
    }
    
    .mobile-actions {
        order: 2;
        margin-left: auto;
    }
    
    .action-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    
    .login-modal {
        width: 280px;
        right: -15px;
    }
    
    .main-nav {
        width: 280px;
    }
}

/* Ultra Small Mobile */
@media (max-width: 360px) {
    .main-nav {
        width: 260px;
    }
    
    .login-modal {
        width: 260px;
        right: 0;
    }
    
    .header-top .social-icons {
        display: none;
    }
}

/* =========================
    Header and deader modal Styles end
    ========================= */



/* =========================
Slider section start
========================= */

.slider {
  position: relative;
  width: 100%;
  height: 70vh;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 0 80px;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0,0,0,0.7) 0%, 
    rgba(0,0,0,0.4) 50%, 
    rgba(0,0,0,0.3) 100%);
  z-index: 0;
  transition: all 0.88s ease;
}

.slide > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.88s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.slide.active > * {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .slider-title {
  transition-delay: 0.3s;
}

.slide.active .slider-subtitle {
  transition-delay: 0.5s;
}

.slide.active .extra-buttons {
  transition-delay: 0.7s;
}

.slider-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
  
  max-width: 700px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slider-subtitle {
  font-size: 1.4rem;
  margin: 0 0 40px;
  max-width: 600px;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 1px 2px 8px rgba(0,0,0,0.8);
  opacity: 0.9;
}

.extra-buttons {
  display: flex;
  gap: 20px;
}

.btn {
  background: linear-gradient(135deg, #0CACB4 0%, #098A90 100%);
  color: white;
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(12, 172, 180, 0.4);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.2), 
    transparent);
  transition: left 0.6s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #098A90 0%, #08777c 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(12, 172, 180, 0.6);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(-1px);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.slider-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.slider-dot.active {
  background: #0CACB4;
  border-color: white;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(12, 172, 180, 0.6);
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .slider {
    height: 60vh;
  }
  
  .slide {
    padding: 0 60px;
  }
  
  .slider-title {
    font-size: 3rem;
  }
  
  .slider-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .slider {
    height: 50vh;
    border-radius: 12px;
  }
  
  .slide {
    padding: 0 40px;
    text-align: center;
    align-items: center;
    background-attachment: scroll;
  }
  
  .slider-title {
    font-size: 2.2rem;
    max-width: 100%;
    text-align: center;
  }
  
  .slider-subtitle {
    font-size: 1.1rem;
    max-width: 100%;
    text-align: center;
  }
  
  .extra-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 280px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .slider-arrow.prev {
    left: 15px;
  }
  
  .slider-arrow.next {
    right: 15px;
  }
}

@media (max-width: 576px) {
  .slider {
    height: 45vh;
  }
  
  .slide {
    padding: 0 25px;
  }
  
  .slider-title {
    font-size: 1.8rem;
  }
  
  .slider-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .slider-nav {
    bottom: 20px;
  }
}

/* Auto-slide animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide.active {
  animation: slideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* =========================
    Slider section End
    ========================= */

/* =========================
    Inventory section start
    ========================= */

.button-container {
  margin: 25px auto;
  border-radius: 8px;
  background-color: #0CACB4;
  padding: 20px;
  display: flex;
  gap: 15px; /* space between buttons */
}

.custom-btn {
  background-color: #0A9198;
  color: white;
  border: 1px solid white;
  border-radius: 6px; /* round-md */
  padding: 8px 30px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background-color: white;
  color: black;
  border-color: #0A9198;
}
/* =========================
    Inventory section End
    ========================= */



.search-section {
    background: white;
    border-radius: 6px;
    padding: 1rem;
}

.select-row {
    padding: 0.25rem 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

.form-select {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    height: 32px;
    min-width: 0;
    font-weight: 500;
    color: #374151;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.form-select:hover {
    border-color: #0CACB4;
}

.form-select:focus {
    outline: none;
    border-color: #0CACB4;
    box-shadow: 0 0 0 2px rgba(12, 172, 180, 0.1);
}

/* Custom dropdown arrow */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 1.75rem;
}

.form-input {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    height: 32px;
    min-width: 0;
    font-weight: 500;
    color: #374151;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    flex: 1;
}

.form-input:focus {
    outline: none;
    border-color: #0CACB4;
    box-shadow: 0 0 0 2px rgba(12, 172, 180, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

/* Button Styles */
.select-row button.form-select {
    background: #0CACB4;
    border: 1px solid #0CACB4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.select-row button.form-select:hover {
    background: #098A90;
    border-color: #098A90;
}

/* White button variant */
.select-row button.form-select.white {
    background: white;
    color: #0CACB4;
    border: 1px solid #0CACB4;
}

.select-row button.form-select.white:hover {
    background: #0CACB4;
    color: white;
}

/* Search icon button */
.select-row button.form-select[type="button"]:first-child {
    background: #374151;
    border-color: #374151;
    flex: 0 0 auto;
    width: 32px;
    padding: 0;
}

.select-row button.form-select[type="button"]:first-child:hover {
    background: #4b5563;
    border-color: #4b5563;
}

/* OR text styling */
.or {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0 0.25rem;
    flex-shrink: 0;
}

/* Reset button */
.select-row button.form-select[type="reset"] {
    background: #6b7280;
    border-color: #6b7280;
}

.select-row button.form-select[type="reset"]:hover {
    background: #4b5563;
    border-color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .select-row {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .form-select,
    .form-input,
    .select-row button {
        flex: 1 1 calc(33.333% - 4px);
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .search-section {
        padding: 0.75rem;
    }
    
    .select-row {
        gap: 3px;
    }
    
    .form-select,
    .form-input,
    .select-row button {
        flex: 1 1 calc(50% - 3px);
        height: 30px;
        font-size: 0.75rem;
    }
    
    .or {
        flex-basis: 100%;
        text-align: center;
        padding: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .form-select,
    .form-input,
    .select-row button {
        flex: 1 1 100%;
    }
    
    .select-row {
        gap: 4px;
    }
}

/* Compact form elements */
.form-select,
.form-input,
.select-row button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Focus states for accessibility */
.form-select:focus-visible,
.form-input:focus-visible,
button:focus-visible {
    outline: 1px solid #0CACB4;
    outline-offset: 1px;
}

/* Make the search button compact */
.select-row:last-child .form-select {
    flex: 0 1 auto;
    min-width: 60px;
}

/* Ensure proper text alignment */
.form-select option {
    font-size: 0.8rem;
    padding: 2px;
}
/* =========================
    Left sidebar Start
    ========================= */



/* =========================
    Main search Start
    ========================= */
.search-section {
    background: white;
    padding: 0px 15px;
   
}

.select-row {
    padding: 0.25rem 0;
    display: flex;
    gap: 6px;
    align-items: center;
}

.form-select {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    height: 32px;
    min-width: 0;
    font-weight: 500;
    color: #374151;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.form-select:hover {
    border-color: #0CACB4;
}

.form-select:focus {
    outline: none;
    border-color: #0CACB4;
    box-shadow: 0 0 0 2px rgba(12, 172, 180, 0.1);
}

/* Custom dropdown arrow */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 1.75rem;
}

.form-input {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    height: 32px;
    min-width: 0;
    font-weight: 500;
    color: #374151;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    flex: 1;
}

.form-input:focus {
    outline: none;
    border-color: #0CACB4;
    box-shadow: 0 0 0 2px rgba(12, 172, 180, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

/* Button Styles */
.select-row button.form-select {
    background: #0CACB4;
    border: 1px solid #0CACB4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.select-row button.form-select:hover {
    background: #098A90;
    border-color: #098A90;
}

/* White button variant */
.select-row button.form-select.white {
    background: white;
    color: #0CACB4;
    border: 1px solid #0CACB4;
}

.select-row button.form-select.white:hover {
    background: #0CACB4;
    color: white;
}

/* Search icon button */
.select-row button.form-select[type="button"]:first-child {
    background: #374151;
    border-color: #374151;
    flex: 0 0 auto;
    width: 32px;
    padding: 0;
}

.select-row button.form-select[type="button"]:first-child:hover {
    background: #4b5563;
    border-color: #4b5563;
}

/* OR text styling */
.or {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0 0.25rem;
    flex-shrink: 0;
}

/* Reset button */
.select-row button.form-select[type="reset"] {
    background: #6b7280;
    border-color: #6b7280;
}

.select-row button.form-select[type="reset"]:hover {
    background: #4b5563;
    border-color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .select-row {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .form-select,
    .form-input,
    .select-row button {
        flex: 1 1 calc(33.333% - 4px);
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .search-section {
        padding: 0.75rem;
    }
    
    .select-row {
        gap: 3px;
    }
    
    .form-select,
    .form-input,
    .select-row button {
        flex: 1 1 calc(50% - 3px);
        height: 30px;
        font-size: 0.75rem;
    }
    
    .or {
        flex-basis: 100%;
        text-align: center;
        padding: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .form-select,
    .form-input,
    .select-row button {
        flex: 1 1 100%;
    }
    
    .select-row {
        gap: 4px;
    }
}

/* Compact form elements */
.form-select,
.form-input,
.select-row button {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Focus states for accessibility */
.form-select:focus-visible,
.form-input:focus-visible,
button:focus-visible {
    outline: 1px solid #0CACB4;
    outline-offset: 1px;
}

/* Make the search button compact */
.select-row:last-child .form-select {
    flex: 0 1 auto;
    min-width: 60px;
}

/* Ensure proper text alignment */
.form-select option {
    font-size: 0.8rem;
    padding: 2px;
}


/* =========================
    Main search End
    ========================= */


/* =========================
    Left sidebar Start
    ========================= */
  .type-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

.type-item {
  border: 1px solid #0CACB4;
  padding: 15px;
}
/* Compact Professional Brand Grid Styles */
.mini-grid { 
    border-left: 1.5px solid #dee2e6; 
    border-top: 1.5px solid #dee2e6; 
    border-right: 1.5px solid #dee2e6; 
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mini-grid .cell { 
    border-right: 1.5px solid #dee2e6; 
    border-bottom: 1.5px solid #dee2e6; 
    padding: 1.0rem 0.8rem; /* Reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: white;
    position: relative;
    overflow: hidden;
    min-height: 70px; /* Added minimum height for consistency */
}

.mini-grid .cell:nth-child(3n) { 
    border-right: none; 
}

.mini-grid .cell:nth-last-child(-n + 3) { 
    border-bottom: none; 
}

/* Hover effects for the cell */
.mini-grid .cell:hover {
    transform: translateY(-3px); /* Reduced lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* Background overlay on hover */
.mini-grid .cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.03), rgba(46, 204, 113, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.mini-grid .cell:hover::before {
    opacity: 1;
}

/* Brand image styling with hover zoom effect */
.mini-grid .cell .brand-image {
    max-width: 100%;
    max-height: 50px; /* Reduced image height */
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.mini-grid .cell:hover .brand-image {
    transform: scale(1.5);
    filter: grayscale(0%);
}

/* Title styling with hover effect */
.mini-grid .cell .title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.9rem; /* Slightly smaller font */
    margin-top: 0.6rem; /* Reduced margin */
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.mini-grid .cell:hover .title {
    color: #3498db;
    transform: translateY(1px); /* Reduced movement */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mini-grid .cell {
        padding: 1rem 0.5rem; /* Further reduced padding for mobile */
        min-height: 100px;
    }
    
    .mini-grid .cell .brand-image {
        max-height: 40px; /* Smaller images on mobile */
    }
    
    .mini-grid .cell .title {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .mini-grid .cell:nth-child(2n) {
        border-right: none;
    }
    
    .mini-grid .cell:nth-last-child(-n + 2) {
        border-bottom: none;
    }
    
    .mini-grid .cell {
        min-height: 90px;
        padding: 0.8rem 0.4rem;
    }
}


/* Small icon-like images */
.cell { padding: .5rem; text-align: center; }
.cell img {  object-fit: cover; }
.title { font-size: .8rem; margin-top: .25rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }


/* Fit for sidebar narrow width */
.sidebar-widget { max-width: 220px; }



/* =========================
    Left sidebar End
    ========================= */


/* =========================
    All Sidebar title start
    ========================= */
.sidebar-setion{
    margin-top: 30px;
}
.section-title {
  
  display: inline-block;      
  padding: 6px 12px;         
  background-color: #0CACB4;  
  font-weight: bold;          
  text-align: center;          
  color: white;
  width: 100%;                
}
.ads-img img{
    
    border-radius: 12px;
}
/* =========================
    All Sidebar title end
    ========================= */



.single-title{
    text-align: start;
    padding-bottom: 10px;
    padding-top: 10px;
  
    text-transform: uppercase;
    font-weight: 700;

}

.car-listing-container {
    padding: 0 7px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.car-card {
    text-align: start;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    position: relative;
    margin-bottom: 20px;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.car-img-container {
    position: relative;
    overflow: hidden;
    
}

.car-img {
    transition: all 0.3s ease;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.car-card:hover .car-img {
    transform: scale(1.05);
}

.car-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 2;
}

.discount-badge {
    background: #0A9198;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: white;
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #e53e3e;
}

.car-content {
    padding-left: 10px;
    padding-right: 10px;
}

.car-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2d3748;
    line-height: 1.4;
}

.car-details {
    color: #718096;
    font-size: 14px;
    margin-bottom: 12px;
}

.car-details div {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.car-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.feature-badge {
    background: #e9ecef;
    color: #4a5568;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.car-price-container {
    display: inline-flex;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.price-label {
    font-size: 13px;
    color: black;
    margin-bottom: 4px;
}

.price-value {
    font-weight: 700;
    font-size: 18px;
    color: #297275;
    margin-bottom: 6px;
}

.original-price {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 14px;
    margin-left: 8px;
}

.inquire-text {
    display: inline-block;
    color: #0A9198;
    font-size: 14px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.inquire-btn {
    display: block;
    width: calc(100% - 24px);
    background: #0A9198;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: start;
    text-decoration: none;
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    opacity: 0;
    transform: translateY(10px);
}

.car-price-container:hover {
    padding-bottom: 50px;
}

.car-price-container:hover .inquire-text {
    opacity: 0;
}

.car-price-container:hover .inquire-btn {
    opacity: 1;
    transform: translateY(0);
}

.car-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.car-col {
    margin-top: 10px;
    padding: 3px;
    flex: 0 0 25%;
    max-width: 25%;
}

@media (max-width: 992px) {
    .car-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .car-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

#shop-by-Price {
    list-style: none;
    margin: 0;
    
   
}

#shop-by-Price li + li {
    margin-top: 6px;
}

#shop-by-Price a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    text-decoration: none;
    color: #4b5b6b;
    font-size: 16px;
    font-weight: 700;
    background: #ffffff;
    transition: all 0.2s ease;
}

#shop-by-Price a:hover {
    background: #eef6ff;
    color: #3498db;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

#shop-by-Price i {
    margin-right: 10px;
    color: #0CACB4;
    font-size: 15px;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

#shop-by-Price a:hover i {
    color: #1e73be;
}

#shop-by-Price span {
    font-weight: 500;
}

#follow_us .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    gap: 8px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#follow_us .social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}

/* individual colors */
#follow_us .fb  { background:#3b5998; }
#follow_us .tw  { background:#1da1f2; }
#follow_us .ig  { background:#e4405f; }
#follow_us .yt  { background:#ff0000; }


 .best-seller-by-type {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(12, 172, 180, 0.1);
    margin-top: 30px;
}

.middle-section-title {
    font-size: 24px;
    text-align: start;
    font-weight: 700;
    color: #0CACB4;
    margin-bottom: 10px;
    margin-top: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0CACB4;
    position: relative;
}

.middle-section-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: #FF6B6B;
}

.type-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.type-item {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(12, 172, 180, 0.15);
}

.type-headline-wrap {
    padding: 5px 5px;
    background: linear-gradient(135deg, #0CACB4 0%, #0A8D94 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.type-item-headline {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: white;
}

.type-headline-wrap a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.car-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

.rank-items-wrap {
    padding: 10px 20px;
}

.rank-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rank-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #edf2f7;
}

.rank-item:last-child {
    border-bottom: none;
}

.rankno {
    width: 28px;
    height: 28px;
    background: #0CACB4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.rank-item:nth-child(1) .rankno {
    background: linear-gradient(135deg, #FFC107, #FF9800);
}

.rank-item:nth-child(2) .rankno {
    background: linear-gradient(135deg, #9E9E9E, #757575);
}

.rank-item:nth-child(3) .rankno {
    background: linear-gradient(135deg, #8D6E63, #6D4C41);
}

.rank-item a {
    color: #2d3748;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
    flex: 1;
}

.rank-item a:hover {
    color: #0CACB4;
}

.stock-count {
    background: #E8F4F5;
    color: #0CACB4;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

@media (max-width: 992px) {
    .type-items {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .type-items {
        grid-template-columns: 1fr;
    }
    
    .best-seller-by-type {
        padding: 20px;
    }
    
    .middle-section-title {
        font-size: 22px;
    }
}

  #top-jp-usedcar-expr {
    background: linear-gradient(to bottom, #ffffff, #f8fdff);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(12, 172, 180, 0.1);
    margin-top: 30px;
    border: 1px solid #e0f7fa;
}

.middle-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0CACB4;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #0CACB4;
    position: relative;
}

.middle-section-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #FF6B6B;
}

.text-muted {
    font-size: 16px;
    margin-bottom: 25px;
    color: #5a6b7c !important;
    line-height: 1.6;
}

.dot-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 8px;
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.dot-link:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #0CACB4;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.dot-link:hover {
    background: #e8f4f5;
    color: #0CACB4;
    transform: translateX(5px);
    border-color: #0CACB4;
    box-shadow: 0 5px 15px rgba(12, 172, 180, 0.15);
    text-decoration: none;
}

.car-brand-badge {
    display: inline-block;
    background: #0CACB4;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.stats-highlight {
    background: #e8f4f5;
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    border-left: 4px solid #0CACB4;
}

.stat-number {
    font-size: 20px;
    font-weight: 500;
    color: #0CACB4;
}

.stat-label {
    font-size: 14px;
    color: #5a6b7c;
}

@media (max-width: 768px) {
    .middle-section-title {
        font-size: 24px;
    }
    
    #top-jp-usedcar-expr {
        padding: 20px;
    }
}


 .how-it-works-section {
    margin-top: 20px;
    background: linear-gradient(to bottom, #ffffff, #f8fdff);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(12, 172, 180, 0.15);
    
    position: relative;
    overflow: hidden;
}


.video-button-container {
    text-align: center;
    margin-bottom: 40px;
}

.video-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0CACB4, #0A8D94);
    color: white;
    border: none;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(12, 172, 180, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-button:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #0CACB4, #0A8D94);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(12, 172, 180, 0.6);
}

.video-button-text {
    display: block;
    margin-top: 15px;
    color: #5a6b7c;
    font-weight: 600;
    font-size: 16px;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.steps li {
    background: white;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-top: 5px solid #0CACB4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(12, 172, 180, 0.2);
}

.steps li span {
    width: 40px;
    height: 40px;
    background: #0CACB4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.steps li:nth-child(1) {
    border-top-color: #0CACB4;
}

.steps li:nth-child(2) {
    border-top-color: #36B3BA;
}

.steps li:nth-child(3) {
    border-top-color: #60BAC0;
}

.steps li:nth-child(4) {
    border-top-color: #8AC2C6;
}

.step-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0CACB4;
}

.step-content {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.5;
}

.step-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    color: #0CACB4;
    font-size: 24px;
    z-index: 1;
}

@media (max-width: 992px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .step-divider {
        display: none;
    }
}

@media (max-width: 576px) {
    .steps {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-section {
        padding: 30px 20px;
    }
    
    .middle-section-title {
        font-size: 28px;
    }
}



    .testimonial-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            margin-top: 30px;
            border-top: 4px solid #0CACB4;
        }
        
        .satisfaction-meter {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .meter-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-right: 20px;
            color: #0CACB4;
            min-width: 150px;
        }
        
        .meter-bar {
            flex-grow: 1;
            height: 30px;
            background: #e2e8f0;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }
        
        .meter-fill {
            height: 100%;
            background: linear-gradient(90deg, #0CACB4, #0a9da5);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .reasons-chart {
            display: flex;
            align-items: center;
        }
        
        .chart-container {
            flex: 1;
            position: relative;
            height: 250px;
        }
        
        .chart-legend {
            flex: 1;
            padding-left: 30px;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 0.95rem;
        }
        
        .legend-color {
            width: 18px;
            height: 18px;
            border-radius: 4px;
            margin-right: 12px;
        }




  #top-customer-reviews-and-ratings {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(12, 172, 180, 0.1);
    margin: 40px 0;
}


.top-score-reviews {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px !important;
}

.score {
    display: flex;
    gap: 3px;
}

.score-star {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat center center;
}

.score-star.full {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat center center;
}

.score-star.half {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cdefs%3E%3ClinearGradient id='half' x1='0%' y1='0%' x2='100%' y2='0%'%3E%3Cstop offset='50%' stop-color='%23FFD700'/%3E%3Cstop offset='50%' stop-color='%23e0e0e0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23half)' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat center center;
}

.all-reviews {
    background: #0CACB4;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.all-reviews:hover {
    background: #0A8D94;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(12, 172, 180, 0.3);
    color: white;
}

.yotpo-logo-title {
    font-size: 14px;
    color: #5a6b7c;
}

.yotpo-logo-title a {
    color: #0CACB4;
    text-decoration: none;
    font-weight: 600;
}

hr {
    border-top: 2px solid #e9ecef;
    opacity: 1;
    margin: 30px 0;
}

.review-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #0CACB4;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(12, 172, 180, 0.15);
}

.review-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-images .img-thumbnail {
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-images .img-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.review-comment-cell {
    position: relative;
}

.national-flags {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    vertical-align: middle;
    margin-right: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.flag-bd {
    background: url('https://flagcdn.com/w40/bd.png') no-repeat center center;
    background-size: cover;
}

.flag-tz {
    background: url('https://flagcdn.com/w40/tz.png') no-repeat center center;
    background-size: cover;
}

.flag-zw {
    background: url('https://flagcdn.com/w40/zw.png') no-repeat center center;
    background-size: cover;
}

.review-comment-cell h5 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
    display: inline-block;
}

.reviewer {
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 14px;
    color: #5a6b7c;
}

.badge.bg-success {
    background: #0CACB4 !important;
    font-size: 12px;
    padding: 5px 10px;
}

.review-content {
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 15px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-content:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: #0CACB4;
    font-family: Arial, sans-serif;
    opacity: 0.3;
}

.review-model {
    font-size: 14px;
    color: #5a6b7c;
    margin-bottom: 20px;
}

.review-model a {
    color: #0CACB4;
    text-decoration: none;
    font-weight: 600;
}

.review-model a:hover {
    text-decoration: underline;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.review-share-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.review-share-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-share-links a:hover {
    background: #0CACB4;
    transform: translateY(-3px);
}

.review-share-links img {
    width: 18px;
    height: 18px;
}

.review-helpful ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.vote-up {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #5a6b7c;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-up:hover {
    color: #0CACB4;
}

.vote-up i {
    color: #0CACB4;
}

.count {
    font-weight: 600;
    color: #0CACB4;
}

.top-seemore {
    margin-top: 30px;
}

.top-seemore .btn {
    background: #0CACB4;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.top-seemore .btn:hover {
    background: #0A8D94;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(12, 172, 180, 0.3);
}

@media (max-width: 768px) {
    #top-customer-reviews-and-ratings {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .review-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-images {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .review-images .img-thumbnail {
        min-width: 80px;
        height: 80px;
        object-fit: cover;
    }
}


 .columns-container {
        
        flex-wrap: wrap;
        padding: 20px;
        max-width: 1400px;
        margin: 20px auto;
        gap: 10px;
    }

    .col-3 {
        flex: 1;
        min-width: 300px;
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .col-6 {
        flex: 2;
        min-width: 300px;
        background: white;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

  

    p {
        margin-bottom: 1rem;
        font-size: 1rem;
        color: #444;
        line-height: 1.6;
    }

    /* Why Choose Us Circle */
    .circle-container {
        position: relative;
        width: 280px;
        height: 280px;
        margin: 0 auto 30px;
    }

    .center-circle {
        width: 100px;
        height: 100px;
        background: linear-gradient(145deg, #1a2a6c, #2c3e99);
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        font-weight: bold;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        z-index: 10;
        text-align: center;
        padding: 15px;
        transition: all 0.4s ease;
    }

    .outer-circle {
        width: 80px;
        height: 80px;
        background: linear-gradient(145deg, #fdbb2d, #b21f1f);
        color: #fff;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        font-size: 10px;
        position: absolute;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
        transition: all 0.3s ease;
        padding: 8px;
        text-align: center;
        cursor: pointer;
        z-index: 5;
        line-height: 1.2;
    }

    .outer-circle:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        z-index: 15;
    }

    .circle1 { top: 10%; left: 10%; background: linear-gradient(145deg, #3498db, #1a5276); }
    .circle2 { top: 10%; right: 10%; background: linear-gradient(145deg, #2ecc71, #186a3b); }
    .circle3 { bottom: 10%; right: 10%; background: linear-gradient(145deg, #9b59b6, #6c3483); }
    .circle4 { bottom: 10%; left: 10%; background: linear-gradient(145deg, #e74c3c, #922b21); }
    .circle5 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg) translateY(-90px) rotate(0deg); background: linear-gradient(145deg, #f39c12, #9c640c); }

    .circle-icon {
        font-size: 14px;
        margin-bottom: 5px;
    }

    /* Gallery Styles */
    .gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .gallery-item {
        height: 100px;
        background: #f8f9fa;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        transition: transform 0.3s;
    }

    .gallery-item:hover {
        transform: scale(1.03);
    }

    .gallery-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        font-size: 0.9rem;
    }

    .payment-gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .payment-item {
        height: 60px;
        background: white;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #eaeaea;
        padding: 5px;
        font-weight: bold;
        color: #1a3a5f;
    }

    /* Team Styles */
    .team {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }

    .team-member {
        display: flex;
        background: #f8f9fa;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s;
    }

    .team-member:hover {
        transform: translateY(-5px);
    }

    .member-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
    }

    .member-placeholder {
        width: 100px;
        height: 100px;
        background: #3498db;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
    }

    .member-details {
        padding: 15px;
        flex: 1;
    }

    .member-details h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: #1a3a5f;
    }

    .member-details p {
        font-size: 0.9rem;
        margin-bottom: 3px;
        color: #555;
    }

    /* Slogan */
    .slogan {
        text-align: center;
        font-style: italic;
        font-size: 1.3rem;
        color: #1a3a5f;
        margin: 25px 0;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 4px solid #e63946;
    }

    /* Ad Container */
    .ad-container {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 20px;
        margin: 25px 0;
        text-align: center;
    }

    .ad-title {
        font-size: 1.4rem;
        color: #1a3a5f;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .ad-content {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .ad-button {
        display: inline-block;
        background: #0CACB4;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
    }

    .ad-button:hover {
        background: #c1121f;
    }

    /* Divider */
    .divider {
        height: 1px;
        background: #ddd;
        margin: 1.5rem 0;
    }

    /* Promo Banner */
    .promo-banner {
        text-align: center;
        margin: 20px 0;
    }

    .promo-placeholder {
        background: linear-gradient(135deg, #3498db, #2c3e50);
        color: white;
        padding: 20px;
        border-radius: 8px;
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .promo-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .columns-container {
            flex-direction: column;
        }
        
        .col-3, .col-6 {
            flex: 1;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .columns-container {
            padding: 10px;
        }
        
        .col-3, .col-6 {
            padding: 15px;
        }
        
        .team {
            grid-template-columns: 1fr;
        }
        
        .gallery {
            grid-template-columns: 1fr;
        }
        
        .payment-gallery {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .circle-container {
            width: 180px;
            height: 180px;
        }
        
        .center-circle {
            width: 80px;
            height: 80px;
            font-size: 12px;
        }
        
        .outer-circle {
            width: 60px;
            height: 60px;
            font-size: 8px;
        }
        
        .circle5 {
            transform: translate(-50%, -50%) rotate(0deg) translateY(-70px) rotate(0deg);
        }
    }

    @media (max-width: 480px) {
        .team-member {
            flex-direction: column;
        }
        
        .member-placeholder, .member-img {
            width: 100%;
            height: 150px;
        }
        
        .payment-gallery {
            grid-template-columns: 1fr;
        }
    }





    .page-title {
        color: #2c3e50;
        margin-bottom: 25px;
        font-size: 28px;
        font-weight: 700;
        padding-bottom: 10px;
        border-bottom: 2px solid #0CACB4;
        display: inline-block;
    }

    .car-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        margin-bottom: 30px;
    }

    .car-table th {
        background: #0CACB4;
        color: white;
        padding: 15px 12px;
        text-align: left;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .car-table tr {
        border-bottom: 1px solid #f0f2f5;
        transition: all 0.3s ease;
    }

    .car-table tr:hover {
        background: #f8fafc;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .car-table td {
        padding: 15px 12px;
        vertical-align: top;
    }

    /* Photo Column */
    .photo-col {
        width: 180px;
        position: relative;
    }

    .photo-col img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .car-table tr:hover .photo-col img {
        transform: scale(1.03);
    }

    .favorite-button {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(255, 255, 255, 0.9);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ddd;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        border: none;
        text-decoration: none;
    }

    .favorite-button:hover, .favorite-button.active {
        color: #ff6b6b;
        background: white;
        transform: scale(1.1);
    }

    .veh-stock-no {
        margin-top: 8px;
        font-size: 0.8rem;
        color: #0CACB4;
        font-weight: 600;
    }

    /* Description Column */
    .description-col {
        width: auto;
    }

    .make-model {
        font-size: 1.1rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 8px;
    }

    .make-model a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
    }

    .make-model a:hover {
        color: #0CACB4;
    }

    .status-badge {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 600;
        margin-left: 10px;
    }

    .status-available {
        background: #e8f7f8;
        color: #0CACB4;
        border: 1px solid #0CACB4;
    }

    .status-reserved {
        background: #fff3cd;
        color: #856404;
        border: 1px solid #ffc107;
    }

    .basic-spec-row {
        width: 100%;
        margin: 10px 0;
        border-collapse: collapse;
    }

    .basic-spec-col {
        padding: 6px 8px;
        border: 1px solid #f0f2f5;
        text-align: center;
    }

    .basic-spec-col .title {
        font-size: 0.75rem;
        color: #6c757d;
        margin-bottom: 3px;
    }

    .basic-spec-col .val {
        font-weight: 600;
        font-size: 0.85rem;
        color: #2c3e50;
    }

    .location {
        display: flex;
        align-items: center;
        color: #6c757d;
        font-size: 0.8rem;
        margin-top: 5px;
    }

    .location i {
        margin-right: 5px;
        color: #0CACB4;
    }

    .table-detailed-spec {
        width: 100%;
        margin: 10px 0;
        border-collapse: collapse;
        font-size: 0.8rem;
    }

    .table-detailed-spec td {
        padding: 4px 6px;
        border: none;
    }

    .table-detailed-spec .th {
        background: #f8f9fa;
        font-weight: 500;
        width: 15%;
        color: #6c757d;
    }

    .accessories ul {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        list-style: none;
        margin: 8px 0;
        padding: 0;
    }

    .accessories li {
        background: #f1f3f5;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 0.75rem;
        color: #495057;
    }

    .and-more {
        font-size: 0.8rem;
        color: #0CACB4;
        text-decoration: none;
        font-weight: 500;
    }

    .and-more:hover {
        text-decoration: underline;
    }

    /* Price Column */
    .price-col {
        width: 200px;
        text-align: center;
    }

    .price-col-total-price {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
    }

    .label-price, .label-total-price {
        font-size: 0.8rem;
        color: #6c757d;
        margin-bottom: 3px;
    }

    .vehicle-price {
        font-size: 1.2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 5px 0;
    }

    .total-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: #0CACB4;
        margin: 5px 0;
    }

    .price-col hr {
        margin: 8px 0;
        border: none;
        border-top: 1px dashed #dee2e6;
    }

    .destination-wrap {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #eaeaea;
        font-size: 0.75rem;
        color: #6c757d;
    }

    .price-condition {
        font-weight: 500;
    }

    .destination-port {
        font-weight: 600;
        color: #2c3e50;
        margin: 3px 0;
    }

    .inquiry-button-area {
        margin-top: 12px;
    }

    .inquiry-button {
        display: inline-block;
        background: #0CACB4;
        color: white;
        padding: 8px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        font-size: 0.85rem;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
        border: none;
        cursor: pointer;
    }

    .inquiry-button:hover {
        background: #0a9ea5;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(12, 172, 180, 0.3);
    }

    /* Table Header Sorting */
    .table-header-cell {
        cursor: pointer;
        transition: background 0.2s;
        user-select: none;
        position: relative;
        padding-right: 20px;
    }

    .table-header-cell:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .table-header-cell i {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        opacity: 0.7;
    }

    /* Pagination */
    .pagination {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        gap: 8px;
    }

    .pagination button {
        padding: 8px 15px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s;
        font-weight: 500;
    }

    .pagination button.active {
        background: #0CACB4;
        color: white;
        border-color: #0CACB4;
    }

    .pagination button:hover:not(.active) {
        background: #f8f9fa;
        border-color: #0CACB4;
    }

    /* Responsive Design - Mobile View */
    @media (max-width: 1024px) {
        .car-table {
            font-size: 0.9rem;
        }
        
        .photo-col {
            width: 160px;
        }
        
        .photo-col img {
            height: 100px;
        }
        
        .price-col {
            width: 180px;
        }
    }

    @media (max-width: 768px) {
        .car-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        
        .car-table tr {
            display: inline-block;
            width: 100%;
            border-bottom: 1px solid #eaeaea;
            margin-bottom: 0;
        }
        
        .car-table td, .car-table th {
            display: block;
            width: 100% !important;
            text-align: left;
            padding: 12px 15px;
        }
        
        .car-table th {
            display: none;
        }
        
        .photo-col {
            text-align: center;
            border-bottom: 1px solid #f0f2f5;
            padding-bottom: 15px;
        }
        
        .photo-col img {
            max-width: 250px;
            height: 150px;
        }
        
        .price-col {
            border-top: 1px solid #f0f2f5;
            padding-top: 15px;
        }
        
        .price-col-total-price {
            max-width: 300px;
            margin: 0 auto;
        }
        
        .basic-spec-row, .table-detailed-spec {
            display: block;
            width: 100%;
        }
        
        .basic-spec-row tr {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: space-between;
        }
        
        .basic-spec-col {
            flex: 1;
            min-width: 100px;
        }
        
        .table-detailed-spec tr {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        
        /* Add labels for mobile view */
        .car-table td::before {
            content: attr(data-label);
            font-weight: 600;
            color: #0CACB4;
            display: block;
            margin-bottom: 5px;
            font-size: 0.85rem;
        }
        
        .description-col::before {
            content: "Vehicle Details";
        }
        
        .price-col::before {
            content: "Pricing Information";
        }
    }

    @media (max-width: 576px) {
        body {
            padding: 10px;
        }
        
        .car-table td {
            padding: 10px;
        }
        
        .photo-col img {
            height: 120px;
        }
        
        .make-model {
            font-size: 1rem;
        }
        
        .vehicle-price {
            font-size: 1.1rem;
        }
        
        .total-price {
            font-size: 1.2rem;
        }
        
        .basic-spec-col {
            min-width: 80px;
        }
        
        .table-detailed-spec tr {
            grid-template-columns: 1fr;
        }
        
        .pagination {
            flex-wrap: wrap;
        }
    }

    /* Empty state */
    .empty-state {
        text-align: center;
        padding: 40px;
        color: #6c757d;
    }

    .empty-state i {
        font-size: 3rem;
        margin-bottom: 15px;
        color: #dee2e6;
    }


    /* =========================
           Trade-In Specific Styles
           ========================= */
    .trade-hero {
        background: linear-gradient(135deg, #1a3a4a 0%, #2d5c73 100%);
        color: white;
        padding: 100px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .trade-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
        opacity: 0.1;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        position: relative;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        position: relative;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 3rem;
        margin-top: 3rem;
        position: relative;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: white;
        display: block;
    }

    .stat-label {
        font-size: 1rem;
        opacity: 0.8;
    }

    /* Benefits Section */
    .benefits-section {
        @extend .bg-white;
    }

    .benefit-card {
        background: white;
        border-radius: 15px;
        padding: 2.5rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #E2E8F0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #a6d6d8, #0CACB4);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: white;
        font-size: 2rem;
    }

    .benefit-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #09888E;
        margin-bottom: 1rem;
    }

    .benefit-description {
        color: #718096;
        line-height: 1.6;
    }

    /* Process Section */
    .process-section {
        @extend .bg-light;
        position: relative;
    }

    .process-timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 3px;
        background: #0CACB4;
        transform: translateX(-50%);
    }

    .process-step {
        display: flex;
        align-items: center;
        margin-bottom: 3rem;
        position: relative;
    }

    .process-step:nth-child(odd) {
        flex-direction: row;
    }

    .process-step:nth-child(even) {
        flex-direction: row-reverse;
    }

    .step-content {
        flex: 1;
        padding: 2rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #E2E8F0;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: #0CACB4;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 700;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .step-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #09888E;
        margin-bottom: 1rem;
    }

    .step-description {
        color: #718096;
        line-height: 1.6;
    }

    /* Valuation Form */
    .valuation-section {
        @extend .bg-white;
    }

    .valuation-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #E2E8F0;
        overflow: hidden;
    }

    .valuation-header {
        background: linear-gradient(135deg, #0CACB4, #09888E);
        color: white;
        padding: 2rem;
        text-align: center;
    }

    .valuation-title {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .valuation-subtitle {
        opacity: 0.9;
    }

    .valuation-body {
        padding: 2.5rem;
    }

    .trade-form-group {
        margin-bottom: 1.5rem;
    }

    .trade-form-label {
        font-weight: 600;
        color: #2D3748;
        margin-bottom: 0.5rem;
    }

    .trade-form-control {
        border: 2px solid #E2E8F0;
        border-radius: 10px;
        padding: 12px 15px;
        font-size: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .trade-form-control:focus {
        border-color: #0CACB4;
        box-shadow: 0 0 0 3px rgba(12, 172, 180, 0.1);
    }

    .trade-btn-primary {
        background: linear-gradient(135deg, #0CACB4, #09888E);
        border: none;
        border-radius: 10px;
        padding: 15px 30px;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        color: white;
    }

    .trade-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(12, 172, 180, 0.3);
    }

    /* Why Choose Us */
    .why-choose-section {
        @extend .bg-light;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #E2E8F0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: #a6d6d8;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0CACB4;
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .feature-content h4 {
        font-size: 1.2rem;
        font-weight: 600;
        color: #09888E;
        margin-bottom: 0.5rem;
    }

    .feature-content p {
        color: #718096;
        margin: 0;
    }

    /* Testimonials */
    .testimonials-section {
        @extend .bg-white;
    }

    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #E2E8F0;
        margin: 1rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
    }

    .testimonial-content {
        font-style: italic;
        color: #718096;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #a6d6d8;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0CACB4;
        font-weight: 600;
    }

    .author-info h5 {
        font-weight: 600;
        color: #2D3748;
        margin: 0;
    }

    .author-info p {
        color: #718096;
        margin: 0;
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-section {
        @extend .bg-light;
    }

    .faq-item {
        background: white;
        border-radius: 15px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #E2E8F0;
        overflow: hidden;
    }

    .faq-question {
        padding: 1.5rem;
        font-weight: 600;
        color: #2D3748;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq-question:hover {
        background: #F7FAFC;
    }

    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        color: #718096;
        line-height: 1.6;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .section-padding {
            padding: 60px 0;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 1.5rem;
        }

        .process-timeline::before {
            left: 30px;
        }

        .process-step {
            flex-direction: row !important;
        }

        .step-content {
            margin-left: 80px;
        }

        .step-number {
            left: 30px;
        }

        .valuation-body {
            padding: 1.5rem;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }

        .benefit-card,
        .feature-item,
        .testimonial-card {
            padding: 1.5rem;
        }
    }      







    /* =========================
          Service page tyles start
           ========================= */


            /* Hero Section */
    .services-hero {
        background: linear-gradient(135deg, rgba(9, 138, 144, 0.9) 0%, rgba(26, 58, 74, 0.9) 100%), 
                    url('https://images.unsplash.com/photo-1494976388531-d1058494cdd8?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: white;
        padding: 180px 0 120px;
        position: relative;
        overflow: hidden;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        opacity: 0.95;
        line-height: 1.6;
        font-weight: 300;
    }

    .btn-hero {
        background: rgba(255,255,255,0.15);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255,255,255,0.3);
        color: white;
        border-radius: 50px;
        padding: 12px 35px;
        font-weight: 600;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .btn-hero::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;
    }

    .btn-hero:hover {
        background: rgba(255,255,255,0.25);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        color: white;
    }

    .btn-hero:hover::before {
        left: 100%;
    }

    /* Stats Section */
    .stats-section {
        padding: 80px 0;
        background: white;
        position: relative;
    }

    .stat-card {
        text-align: center;
        padding: 2rem 1rem;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(9, 138, 144, 0.15);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--primary);
        display: block;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
        color: var(--dark-gray);
        font-weight: 500;
    }

    /* Services Section */
    .services-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

   

    .section-subtitle {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 4rem;
        color: var(--gray);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .service-card {
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: none;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        z-index: 2;
    }

    .service-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        opacity: 0;
        transition: all 0.4s ease;
        z-index: -1;
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(9, 138, 144, 0.2);
        color: white;
    }

    .service-card:hover::after {
        opacity: 1;
    }

    .service-card:hover .service-icon,
    .service-card:hover .service-title,
    .service-card:hover .service-description,
    .service-card:hover .service-features li,
    .service-card:hover .service-link {
        color: white;
    }

    .service-card:hover .service-features li::before {
        color: white;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        color: white;
        font-size: 2rem;
        transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
        background: rgba(255,255,255,0.2);
        transform: scale(1.1) rotate(5deg);
    }

    .service-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
        transition: all 0.3s ease;
    }

    .service-description {
        color: var(--gray);
        margin-bottom: 1.5rem;
        line-height: 1.6;
        transition: all 0.3s ease;
    }

    .service-features {
        list-style: none;
        padding: 0;
        margin-bottom: 2rem;
    }

    .service-features li {
        padding: 0.5rem 0;
        color: var(--gray);
        position: relative;
        padding-left: 1.8rem;
        transition: all 0.3s ease;
    }

    .service-features li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
        transition: all 0.3s ease;
    }

    .service-link {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .service-link i {
        margin-left: 0.5rem;
        transition: transform 0.3s ease;
    }

    .service-link:hover i {
        transform: translateX(5px);
    }

    /* Process Section */
    .process-section {
        padding: 100px 0;
        background: white;
    }

    .process-step {
        display: flex;
        align-items: center;
        margin-bottom: 4rem;
        position: relative;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .step-number {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 700;
        margin-right: 2rem;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        box-shadow: 0 10px 25px rgba(9, 138, 144, 0.3);
        transition: all 0.3s ease;
    }

    .process-step:hover .step-number {
        transform: scale(1.1);
    }

    .step-content {
        background: var(--light);
        border-radius: 15px;
        padding: 2rem;
        flex: 1;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .process-step:hover .step-content {
        transform: translateX(10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .step-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
    }

    .step-description {
        color: var(--gray);
        margin-bottom: 0;
        line-height: 1.6;
    }

    /* CTA Section */
    .cta-section {
        padding: 100px 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::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: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    .cta-title {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .cta-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        position: relative;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-cta {
        background: white;
        color: var(--primary);
        border: none;
        border-radius: 50px;
        padding: 12px 35px;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        z-index: 2;
    }

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
        color: var(--primary);
    }

    /* Animation Classes */
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }

    .fade-in-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .services-hero {
            padding: 150px 0 80px;
            background-attachment: scroll;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
        
        .process-step {
            flex-direction: column;
            text-align: center;
        }
        
        .step-number {
            margin-right: 0;
            margin-bottom: 1.5rem;
        }
        
        .step-content {
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .service-card {
            padding: 2rem;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }
    }

    /* =========================
           Service page tyles end
           ========================= */


.brand-image{
    width: 30px;
    height: 30px;
    border-radius: 50%;
}