/* Best Buy-inspired Color Scheme */

:root {
    
    --border-radius: 0.5rem;
}


/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #fff;
}
.logo a{
  text-decoration: none !important;
}

/* Header Styles */
.header-main {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header {
    background-color: #014098 !important;
    color: #fff !important;
    /* border-bottom: 1px solid var(--gray-200); */
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
  color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    color: #fff !important;
    font-weight: 700;
    font-size: 1.25rem;
}

.desktop-nav {
    display: none;
    margin-left: 2.5rem;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--seagate-blue);
}

.nav-link.active {
    color: var(--seagate-blue);
    font-weight: 600;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.desktop-search {
    display: none;
}

@media (min-width: 768px) {
    .desktop-search {
        display: block;
    }
}

.search-box {
    position: relative;
}

.search-input {
    width: 16rem;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--seagate-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    color: var(--gray-400);
}

.cart-btn, .mobile-menu-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    color: var(--gray-600);
    transition: background-color 0.2s;
}

.cart-btn:hover, .mobile-menu-btn:hover {
    background-color: var(--gray-100);
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    border-top: 1px solid var(--gray-200);
    padding: 1rem 0;
    gap: 1rem;
    flex-direction: column;
}

.mobile-menu.active {
    display: flex;
}

.mobile-search .search-input {
    width: 100%;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--gray-500);
}

.breadcrumb-item.active {
    color: var(--gray-900);
    font-weight: 500;
}

.breadcrumb-separator {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--gray-400);
}
.body-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div{
  font-size: 45px;
  font-weight: 600;
}
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--gray-100) 100%);
    /* padding: rem 0; */
    min-height: 500px;
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 2.5rem !important;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 70, 190, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 70, 190, 0.4);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

.hero-image {
    text-align: center;
    font-size: 15rem;
    color: var(--primary-blue);
    /* opacity: 0.3; */
}
.hero-image img{
    height: 500px;
    object-fit: contain;

}

/* Loading Spinner */
.loading-spinner {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background-color: #fff;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-filter {
    background-color: var(--gray-200);
    border: none;
    color: var(--gray-800);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-filter.active {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 70, 190, 0.3);
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background-color: var(--gray-100);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 250px);
}

.product-category {
    color: var(--gray-600);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view {
    background-color: var(--gray-200);
    border: none;
    color: var(--gray-800);
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 500;
    flex: 1;
    transition: all 0.3s ease;
}

.btn-view:hover {
    background-color: var(--primary-blue);
    color: white;
}

.btn-add-cart {
    background-color: var(--primary-blue);
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 500;
    flex: 2;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.product-details {
    padding: 1rem 0;
}

.quantity-selector .input-group .btn {
    border-color: var(--gray-300);
}

.quantity-selector .form-control {
    border-color: var(--gray-300);
}

/* Cart Items */
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    gap: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    background-color: var(--gray-100);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary-blue);
    font-weight: 700;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.cart-item-quantity .btn {
    width: 30px;
    height: 30px;
    padding: 0;
    border-radius: 50%;
    font-size: 0.8rem;
}

.cart-item-quantity input {
    width: 60px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-radius: 5px;
    padding: 0.25rem;
}

.cart-item-remove {
    background-color: var(--danger-red);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background-color: #c82333;
}

/* Footer */
.footer {
    background-color: #014199 !important;
    color: white;
    padding: 3rem 0 2rem 0;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-image {
        font-size: 8rem;
        margin-top: 2rem;
    }
    
    .search-container {
        min-width: auto;
        width: 100%;
        margin: 1rem 0;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .btn-filter {
        white-space: nowrap;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-details {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .products-section {
        padding: 2rem 0;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bounce-in {
    animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Error States */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #f5c6cb;
    margin: 1rem 0;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
    margin: 1rem 0;
}
.promo-banner-section {
    background-color: #ffffff;
}

.promo-card {
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.promo-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.promo-title {
    font-size: 1.7rem;
    line-height: 1.3;
}

.promo-img {
    border-radius: 8px;
    max-width: 160px;
    max-height: 120px;
    object-fit: contain;
}
.brand-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.brand-logos .top-row {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin-bottom: 30px;
}

.brand-logos .top-row img,
.brand-logos .bottom-row img {
  max-height: 80px;
  object-fit: contain;
}

.brand-logos .bottom-row {
  display: flex;
  justify-content: center;
  width: 100%;
}
.custom-footer {
  background: #014199;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #333;
}

.top-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.top-footer .social,
.top-footer .app-download,
.top-footer .newsletter {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  color: #fff;
}

.top-footer .icons i {
  font-size: 20px;
  margin-right: 10px;
}

.top-footer .app-download img {
  height: 40px;
  margin-right: 10px;
}

.middle-footer {
    color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
  cursor: pointer;
}

.bottom-footer {
    color: #fff;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  text-align: center;
  font-size: 12px;
}
.about-section {
  background-color: #f9f9f9;
}

.about-section h2 {
  color: #1a1a1a;
}

.about-section p {
  font-size: 16px;
  line-height: 1.6;
}

.image-marquee-section {
  overflow: hidden;
  padding: 20px 0;
  background: #f9f9f9;
}

.image-track {
  display: flex;
  gap: 30px;
  animation: scrollLeft 25s linear infinite;
  align-items: center;
}

.image-item img {
  height: 60px; /* 👈 Balanced size */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.image-item img:hover {
  transform: scale(1.05);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.special-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px;
  background-color: #f8f8f8;
}

.feature-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.rating {
  color: #f7b500;
  font-size: 18px;
  margin-bottom: 8px;
}

.price {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-cart,
.btn-checkout {
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-cart {
  background-color: #007bff;
  color: white;
}

.btn-cart:hover {
  background-color: #0056b3;
}

.btn-checkout {
  background-color: #28a745;
  color: white;
}

.btn-checkout:hover {
  background-color: #1e7e34;
}
.special-feature-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.section-title {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
  text-align: center;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.feature-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-card img {
  width: 180px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.rating {
  font-size: 16px;
  color: #f4b400;
  margin-bottom: 5px;
}

.rating span {
  color: #555;
  margin-left: 5px;
}

.bought-info {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.price {
  font-size: 16px;
  margin-bottom: 5px;
}

.current-price {
  font-weight: bold;
  color: #B12704;
  margin-right: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #555;
}

.buying-options {
  font-size: 14px;
  color: #007185;
  margin-bottom: 15px;
}

button {
  background-color: #FFA41C;
  color: #111;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.2s;
}

button:hover {
  background-color: #FF8F00;
}
.image-marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #f9f9f9;
  padding: 20px 0;
}

.image-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}

.image-track img {
  height: 60px;
  margin: 0 30px;
  object-fit: contain;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.why-choose-us {
  background: #eaf6ff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.why-choose-us .container {
  display: flex;
  max-width: 1100px;
  margin: auto;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.why-choose-us .left {
  flex: 1;
  min-width: 300px;
}

.why-choose-us .left h2 {
  font-size: 28px;
  color: #0a2b56;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
}

.why-choose-us .left h2 span {
  display: block;
  width: 50px;
  height: 4px;
  background: #ff6c00;
  margin-top: 8px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-3px);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon img {
  width: 28px;
  height: 28px;
}

.text h4 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #0a2b56;
}

.text p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.right img {
  max-width: 100%;
  border-radius: 80px 0px 80px 0px;
  border: 4px solid #cce7ff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.best-selling-products {
  width: 100%;
  padding: 60px 40px;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #1a1a1a;
}

.product-card {
  display: flex;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  align-items: flex-start;
}

.product-card img {
  width: 220px;
  height: auto;
  border-radius: 8px;
  margin-right: 30px;
  object-fit: contain;
}

.product-info {
  flex: 1;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.product-info h3 {
  font-size: 20px;
  margin: 0 0 10px;
  color: #222;
  flex: 1;
}

.quick-view {
  background: none;
  color: #0071e3;
  border: none;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
}

.lowest-price {
  color: #008000;
  font-size: 14px;
  margin-bottom: 10px;
}

.brand-rating {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.brand-rating .brand {
  font-weight: 600;
}

.model {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 15px;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
}

.new-price {
  color: #e53935;
  font-weight: bold;
}

.save {
  color: #ff9800;
  font-weight: 500;
}

.timer {
  color: #0071e3;
}

.shipping, .free-ship {
  font-size: 13px;
  color: #444;
  margin-bottom: 5px;
}

.free-ship {
  font-weight: 600;
  color: green;
}

.btn {
  padding: 10px 18px;
  background: #ff7d00;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e06500;
}
.you-might-also-like {
  padding: 40px 20px;
  background-color: #f7f7f7;
}

.section-title {
  font-size: 24px;
  margin-bottom: 20px;
}

.like-products-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.like-product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  flex: 0 0 auto;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  text-align: center;
}

.like-product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.like-product-title {
  font-size: 16px;
  margin-bottom: 8px;
}

.like-product-price {
  font-weight: bold;
  color: #e60023;
  margin-bottom: 10px;
}

.btn {
  background-color: #0071e3;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn:hover {
  background-color: #005bb5;
}
.contact-us-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.contact-form button {
  background-color: #0071e3;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #005bb5;
}

.contact-info {
  flex: 1 1 400px;
}

.contact-info img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.faq-section {
  padding: 60px 20px;
  background-color: #f1f1f1;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}

.faq-question:hover {
  background-color: #f7f7f7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  background-color: #fafafa;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  font-size: 16px;
  color: #444;
}
.testimonials-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-bottom: 40px;
}

.testimonials-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 30px;
  border-radius: 12px;
  max-width: 700px;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-name {
  font-weight: 600;
  color: #0073e6;
}

.swiper {
  padding-bottom: 40px;
}

/* Responsive layout */
@media(min-width: 768px) {
  .testimonials-slider .swiper-slide {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .testimonial-img {
    margin-right: 30px;
    margin-bottom: 0;
  }

  .testimonial-content {
    text-align: left;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-swiper .swiper-slide {
  padding: 80px 0;
}
.hero-title {
  font-size: 48px;
  font-weight: bold;
}
.hero-subtitle {
  font-size: 24px;
  margin-bottom: 10px;
}
.hero-description {
  font-size: 16px;
  margin-bottom: 20px;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}