:root {
  --clr-primary: #00f6ff;
  --clr-accent: #ff416c;
  --clr-bg: #0a0d1c;
  --clr-glass: rgba(10, 13, 28, 0.6);
  --clr-text-light: #d8f3ff;
  --clr-text-muted: #9bdfff;

  --shadow-glow: 0 0 10px rgba(0, 246, 255, 0.4);
  --blur-glass: blur(18px);
  --transition-fast: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body, html {
  height: 100%;
  background: var(--clr-bg) url('your-hero-bg.png') no-repeat center/cover fixed;
  color: var(--clr-text-light);
}

/* ===================== NAVBAR ===================== */
header {
  background: var(--clr-glass);
  backdrop-filter: var(--blur-glass);
  box-shadow: var(--shadow-glow);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 48px;
  transition: var(--transition-fast);
}
.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--clr-text-light);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: var(--transition-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--clr-accent);
}

/* Cart Icon */
.cart-icon {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-icon i {
  font-size: 1.4rem;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--clr-accent);
  color: white;
  padding: 3px 6px;
  font-size: 0.7rem;
  border-radius: 50%;
  font-weight: 700;
}

/* Mobile Nav */
.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--clr-primary);
  cursor: pointer;
}

/* ===================== HERO SECTION ===================== */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.9));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  margin: 1rem 0 2rem;
  animation: floatUpDown 3s ease-in-out infinite;
}

.button-container {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.9rem 2rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--clr-primary);
}

.btn-secondary {
  background: var(--clr-primary);
  color: #fff;
}
.btn-secondary:hover {
  background: var(--clr-accent);
}

/* ===================== ANIMATIONS ===================== */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    background: var(--clr-glass);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }

  .button-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
}

    
    /* === Why Choose Us (Modern Glassy Style) === */
.why-choose-section {
  padding: 6rem 1.5rem 4rem;
  background: radial-gradient(circle at top left, #ffffff, #f3f7fa);
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #222;
  position: relative;
  font-weight: 700;
}

.section-title::before {
  content: '';
  width: 80px;
  height: 4px;
  background: #ff7f50;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
}

/* Grid Layout */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Glassy Benefit Card */
.benefit-card {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Circle */
.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #ff7f50, #f89b29);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #f89b29, #ff7f50);
}

/* Text */
.benefit-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.benefit-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* CTA Banner */
.why-choose-cta-container {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #006a5f, #00a98f);
  color: white;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 106, 95, 0.2);
}

.why-choose-cta-container p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.why-choose-cta-btn {
  display: inline-block;
  background: white;
  color: #006a5f;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.why-choose-cta-btn:hover {
  background: #f3f3f3;
  color: #004d44;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .why-choose-cta-container {
    padding: 2rem 1rem;
  }

  .why-choose-cta-container p {
    font-size: 1.1rem;
  }

  .why-choose-cta-btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
  }
}

    
    /* Services Section */
    #Service {
    padding: 4rem 1rem 0;
    max-width: 1400px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
    }
    
    .Service-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    }
    
    .filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(0, 106, 95, 0.05);
    border-radius: 8px;
    }
    
    .filter,
    .sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    }
    
    .filter label,
    .sort label {
    font-weight: 600;
    color: var(--text-dark);
    }
    
    .filter select,
    .sort select {
    padding: 0.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .filter select:focus,
    .sort select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(0, 106, 95, 0.2);
    }
    
    .Service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 0;
    }
    
    .Service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    padding: 0.6rem;
    }
    
    .Service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    
    .Service-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    }
    
    /* Default image height for larger screens */
    .Service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    }
    
    .Service-card:hover img {
    transform: scale(1.05);
    }
    
    .Service-info {
    padding: 0.4rem;
    width: 100%;
    }
    
    .Service-info h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    }
    
    .Service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    }
    
    .Service-price {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    }
    
    /* Customization Cards */
    .Service-card[data-category="customization"] {
    padding: 0.4rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    }
    
    .Service-card[data-category="customization"] .btn-secondary {
    width: 100%;
    padding: 0.5rem;
    font-size: 0.95rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
    }
    
    .Service-card[data-category="customization"] .btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
    .Service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .Service-card {
        padding: 0.5rem;
    }
    
    .product-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .Service-info h3 {
        font-size: 1rem;
    }
    
    .Service-description {
        font-size: 0.8rem;
    }
    
    .Service-price {
        font-size: 0.9rem;
    }
    
    /* Customization Cards for Tablets */
    .Service-card[data-category="customization"] {
        padding: 0.6rem;
    }
    
    .Service-card[data-category="customization"] .btn-secondary {
        font-size: 0.9rem;
        padding: 0.4rem;
    }
    
    .filter-sort-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .filter label,
    .sort label {
        font-size: 0.9rem;
    }
    
    .filter select,
    .sort select {
        padding: 0.4rem;
        font-size: 0.9rem;
    }
    }
    
    @media (max-width: 480px) {
    .Service-grid {
        gap: 0.4rem;
    }
    
    .Service-card {
        padding: 0.4rem;
    }
    
    .Service-badge {
        padding: 0.2rem 0.5rem;
        font-size: 0.6rem;
    }
    
    .Service-info h3 {
        font-size: 0.9rem;
    }
    
    .Service-description {
        font-size: 0.75rem;
    }
    
    .Service-price {
        font-size: 0.8rem;
    }
    
    /* Customization Cards for Mobile */
    .Service-card[data-category="customization"] {
        padding: 0.5rem;
    }
    
    .Service-card[data-category="customization"] .btn-secondary {
        font-size: 0.85rem;
        padding: 0.3rem;
    }
    }
    
    /* Testimonials Section */
    #testimonials {
    padding: 4rem 1rem;
    background: linear-gradient(rgba(0, 106, 95, 0.05), rgba(0, 106, 95, 0.05));
    overflow: hidden;
    position: relative;
    }
    
    .testimonials-carousel {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    overflow-x: hidden;
    padding: 2rem 0;
    scroll-behavior: smooth;
    position: relative;
    }
    
    /* Hide scrollbar for Chrome/Safari */
    .testimonials-carousel::-webkit-scrollbar {
    display: none;
    }
    
    .testimonial-card {
    flex: 0 0 calc(25% - 1.5rem);
    padding: 2rem;
    background: white;
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    scroll-snap-align: start;
    position: relative;
    }
    
    .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    
    .testimonial-card::before {
    content: "“";
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: var(--primary-color);
    opacity: 0.2;
    }
    
    .testimonial-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    }
    
    .testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    }
    
    .testimonial-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    }
    
    /* Navigation Buttons */
    .slider-prev,
    .slider-next {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
    position: absolute;
    top: calc(50% + 50px);
    transform: translateY(-50%);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    }
    
    .slider-prev:hover,
    .slider-next:hover {
    background: white;
    }
    
    .slider-prev {
    left: calc((100vw - 1400px) / 2 - 60px);
    }
    
    .slider-next {
    right: calc((100vw - 1400px) / 2 - 60px);
    }
    
    /* Highlighted Testimonial Card */
    .testimonial-card-highlight {
    border-left: 4px solid #ffc107;
    background: rgba(255, 193, 7, 0.05);
    }
    
    .testimonial-card-highlight::before {
    color: #ffc107;
    opacity: 0.3;
    }
    
    .testimonial-card-highlight p {
    font-weight: 600;
    }
    
    .testimonial-card-highlight h4 {
    color: #ffc107;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1.5rem);
    }
    
    .slider-prev {
        left: 20px;
    }
    
    .slider-next {
        right: 20px;
    }
    }
    
    @media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1.5rem);
        padding: 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -8px;
        left: 8px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
    
    .testimonial-card h4 {
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 10px;
    }
    
    .slider-next {
        right: 10px;
    }
    }
    
    @media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 100%;
        padding: 1rem;
    }
    
    .testimonial-card::before {
        font-size: 2.5rem;
        top: -6px;
        left: 6px;
    }
    
    .testimonial-card p {
        font-size: 0.85rem;
    }
    
    .testimonial-card h4 {
        font-size: 0.9rem;
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    }
    
    /* Contact Us Section */
#contact {
    padding: 4rem 1rem;
    max-width: 100vw;
    background: transparent;
    background-image: linear-gradient(rgba(0, 106, 95, 0.05), rgba(0, 106, 95, 0.05)), url('./img/hero4.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    background: none;
    padding: 0;
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 0;
    box-shadow: none;
  }
  
  .contact-content {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(4px);
  }
  
  #contact .section-title {
    font-size: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
  }
  
  #contact .contact-description {
    font-size: 1rem;
    color: #eee;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  #contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  
  #contact .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  #contact input,
  #contact textarea {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: none;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    padding: 0.75rem;
    font-size: 1rem;
  }
  
  #contact input::placeholder,
  #contact textarea::placeholder {
    color: #ccc;
    font-size: 0.9rem;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: none;
    border-color: #00bfa5;
    box-shadow: 0 0 8px rgba(0, 191, 165, 0.2);
  }
  
  #contact .contact-form button[type="submit"] {
    background: #b3001b;
    border-radius: 0;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease, transform 0.2s ease;
  }
  
  #contact .contact-form button[type="submit"]:hover {
    background: #8c0015;
    transform: translateY(-2px);
  }
  
  #contact .contact-form button[type="submit"]:active {
    transform: translateY(1px);
  }
  
  .success-message {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    text-align: center;
  }
  
  #contact .contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  
  #contact .info-card {
    background: rgba(0, 106, 95, 0.05);
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  #contact .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #contact .info-card i {
    font-size: 1.75rem;
    color: #00bfa5;
    margin-bottom: 0.75rem;
  }
  
  #contact .info-card h3 {
    font-size: 1.25rem;
    color: #00bfa5;
    margin-bottom: 0.5rem;
  }
  
  #contact .info-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    #contact .contact-container {
      flex-direction: column;
      gap: 2rem;
      padding: 1.5rem;
    }
  
    #contact .contact-info {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    #contact .contact-info {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    #contact .contact-container {
      padding: 1rem;
    }
  
    #contact .section-title {
      font-size: 1.6rem;
    }
  
    #contact input,
    #contact textarea {
      padding: 0.65rem;
      font-size: 0.85rem;
    }
  
    #contact .contact-form button[type="submit"] {
      padding: 0.65rem;
      font-size: 0.9rem;
    }
  
    #contact .info-card {
      padding: 1rem;
    }
  
    #contact .info-card i {
      font-size: 1.25rem;
    }
  
    #contact .info-card h3 {
      font-size: 1rem;
    }
  
    #contact .info-card p {
      font-size: 0.8rem;
    }
  }
  
    
    /* Footer Section */
    footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 1rem;
    }
    
    .footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    }
    
    .footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
    }
    
    .footer-section p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    }
    
    .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
    }
    
    .footer-section a:hover {
    color: white;
    }
    
    .footer-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .footer-map:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    
    footer .social-links {
    display: flex;
    flex-direction: column;
    }
    
    footer .social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.4rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    }
    
    footer .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    }
    
    /* Copyright Section */
    .copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    }
    
    /* Designer Credit */
    .designer-credit {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;
    }
    
    .designer-credit::after {
    content: "Visit Jerry's Portfolio";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    }
    
    .designer-credit:hover::after {
    opacity: 1;
    }
    
    .designer-credit i {
    color: #ff4d4d;
    margin: 0 0.25rem;
    animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
    0% {
        transform: scale(1);
    }
    
    50% {
        transform: scale(1.1);
    }
    
    100% {
        transform: scale(1);
    }
    }
    
    .designer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    }
    
    .designer-credit a:hover {
    color: white;
    text-decoration: underline;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
    
    /* 1024px and Below */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-map {
        height: 180px;
    }
    
    footer .social-links a {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    }
    
    @media (max-width: 768px) {
    
    /* Tablet Layout */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.8rem;
    }
    
    .footer-map {
        height: 150px;
    }
    
    footer .social-links a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    }
    
    @media (max-width: 480px) {
    
    /* Mobile Layout */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.75rem;
    }
    
    .footer-map {
        height: 120px;
    }
    
    footer .social-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .copyright,
    .designer-credit {
        font-size: 0.8rem;
    }
    }
    
    /* Floating WhatsApp Button */
    .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    text-decoration: none;
    z-index: 1000;
    }
    
    .whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    }
    
    /* Scroll to Top Button */
    .scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    z-index: 1000;
    }
    
    .scroll-top-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    }
    
    .scroll-top-btn i {
    font-size: 24px;
    }
    
    /* Show the scroll-to-top button when the user scrolls down */
    .scroll-top-btn.visible {
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-top-btn {
        width: 50px;
        height: 50px;
        bottom: 75px;
        right: 15px;
    }
    
    .scroll-top-btn i {
        font-size: 20px;
    }
    }
    
    @media (max-width: 480px) {
    .whatsapp-float {
        width: 40px;
        height: 40px;
        font-size: 24px;
        bottom: 10px;
        right: 10px;
    }
    
    .scroll-top-btn {
        width: 40px;
        height: 40px;
        bottom: 60px;
        right: 10px;
    }
    
    .scroll-top-btn i {
        font-size: 18px;
    }
    }
    
    /* Animations */
    @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }
    
    /* Loading Spinner */
    .loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    display: none;
    }
    
    .spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
    to {
        transform: rotate(360deg);
    }
    }
    
    /* Cart Modal */
    .cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    display: none;
    }
    
    .cart-modal .cart-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    
    .cart-modal .cart-modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 2rem;
    }
    
    .cart-modal #cartItems {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    }
    
    .cart-modal .cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    }
    
    .cart-modal .cart-item:last-child {
    border-bottom: none;
    }
    
    .cart-modal .cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    }
    
    .cart-modal #checkoutButton,
    .cart-modal #closeCartModal {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
    }
    
    .cart-modal #checkoutButton {
    background: var(--primary-color);
    color: white;
    }
    
    .cart-modal #checkoutButton:hover {
    background: var(--secondary-color);
    }
    
    .cart-modal #closeCartModal {
    background: #e2e8f0;
    color: var(--text-dark);
    }
    
    .cart-modal #closeCartModal:hover {
    background: #cbd5e0;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
    .cart-modal .cart-modal-content {
        padding: 1.5rem;
    }
    
    .cart-modal .cart-modal-content h2 {
        font-size: 1.75rem;
    }
    
    .cart-modal #checkoutButton,
    .cart-modal #closeCartModal {
        font-size: 0.9rem;
        padding: 0.6rem;
    }
    
    .cart-modal .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    }
    
    @media (max-width: 480px) {
    .cart-modal .cart-modal-content {
        padding: 1rem;
    }
    
    .cart-modal .cart-modal-content h2 {
        font-size: 1.5rem;
    }
    
    .cart-modal #checkoutButton,
    .cart-modal #closeCartModal {
        font-size: 0.85rem;
        padding: 0.5rem;
    }
    }
    
    /* Checkout Form */
    .checkout-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    display: none;
    }
    
    .checkout-form .checkout-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    }
    
    .checkout-form h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
    font-size: 2rem;
    }
    
    .checkout-form .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    }
    
    .checkout-form .close-button:hover {
    color: var(--primary-color);
    }
    
    /* Scoped Form Group Styles */
    .checkout-form .form-group {
    margin-bottom: 1.5rem;
    }
    
    .checkout-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    }
    
    .checkout-form .form-group input,
    .checkout-form .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    }
    
    .checkout-form .form-group input:focus,
    .checkout-form .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    }
    
    .checkout-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
    }
    
    .checkout-form button[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
    transition: background 0.3s ease;
    }
    
    .checkout-form button[type="submit"]:hover {
    background: var(--secondary-color);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
    .checkout-form .checkout-content {
        padding: 1.5rem;
    }
    
    .checkout-form h2 {
        font-size: 1.75rem;
        /* Smaller for tablets */
    }
    
    .checkout-form .form-group label,
    .checkout-form .form-group input,
    .checkout-form .form-group textarea,
    .checkout-form button[type="submit"] {
        font-size: 0.9rem;
        /* Smaller for tablets */
    }
    
    .checkout-form .form-group input,
    .checkout-form .form-group textarea {
        padding: 0.6rem;
    }
    
    .checkout-form button[type="submit"] {
        padding: 0.6rem;
    }
    }
    
    @media (max-width: 480px) {
    .checkout-form .checkout-content {
        padding: 1rem;
    }
    
    .checkout-form h2 {
        font-size: 1.5rem;
    }
    
    .checkout-form .form-group label,
    .checkout-form .form-group input,
    .checkout-form .form-group textarea,
    .checkout-form button[type="submit"] {
        font-size: 0.85rem;
    }
    
    .checkout-form .form-group input,
    .checkout-form .form-group textarea {
        padding: 0.5rem;
    }
    
    .checkout-form button[type="submit"] {
        padding: 0.5rem;
    }
    }
    
    /* Cookie Consent */
    .cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1003;
    display: none;
    }
    
    .cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
    text-align: center;
    }
    
    .cookie-consent a {
    color: var(--secondary-color);
    text-decoration: none;
    }
    
    .cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    }
    
    .cookie-consent button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    flex: 1 1 auto;
    max-width: 120px;
    }
    
    .cookie-consent button:hover {
    background: var(--accent-color);
    }
    
    #rejectCookies {
    background: #ff4d4d;
    }
    
    #rejectCookies:hover {
    background: #cc0000;
    }
    
    /* Cookie Modal */
    .cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1004;
    display: none;
    }
    
    .cookie-modal-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    color: var(--text-dark);
    margin: 1rem;
    }
    
    .cookie-modal h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    }
    
    .cookie-modal label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    }
    
    .cookie-modal input[type="checkbox"] {
    margin-right: 0.5rem;
    }
    
    .cookie-description {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-left: 1.5rem;
    }
    
    .modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    }
    
    .modal-buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1 1 auto;
    max-width: 120px;
    }
    
    #savePreferences {
    background: var(--primary-color);
    color: white;
    }
    
    #savePreferences:hover {
    background: var(--secondary-color);
    }
    
    #closeModal {
    background: #e2e8f0;
    color: var(--text-dark);
    }
    
    #closeModal:hover {
    background: #cbd5e0;
    }
    
    /* Revoke Consent Link */
    .revoke-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    }
    
    #revokeConsentLink {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    }
    
    #revokeConsentLink:hover {
    text-decoration: underline;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
    .cookie-consent {
        padding: 0.75rem;
    }
    
    .cookie-consent p {
        font-size: 0.85rem;
    }
    
    .cookie-consent button {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .cookie-modal-content {
        padding: 1rem;
    }
    
    .cookie-modal h2 {
        font-size: 1.25rem;
    }
    
    .cookie-description {
        font-size: 0.8rem;
    }
    
    .revoke-consent {
        bottom: 10px;
        left: 10px;
    }
    
    #revokeConsentLink {
        font-size: 0.8rem;
    }
    }
    
    @media (max-width: 480px) {
    .cookie-consent {
        gap: 0.75rem;
    }
    
    .cookie-consent p {
        font-size: 0.8rem;
    }
    
    .cookie-consent button {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .cookie-modal-content {
        padding: 0.75rem;
    }
    
    .cookie-modal h2 {
        font-size: 1.1rem;
    }
    
    .cookie-description {
        font-size: 0.75rem;
    }
    
    .revoke-consent {
        bottom: 5px;
        left: 5px;
    }
    
    #revokeConsentLink {
        font-size: 0.75rem;
        /* Even smaller font size for very small screens */
    }
    }
    
    /* Poppins font
    * {
    font-family: 'Poppins', sans-serif;
    }*/
    
    h1,
    h2,
    h3 {
    font-weight: 700;
    }
    
    p {
    font-weight: 400;
    }
    
    button {
    font-weight: 600;
    }
    
    .cart-icon {
    font-weight: 500;
    }
    
    /* About Us Section */
    #about-us {
    padding: 4rem 1rem;
    background: #f9f9f9;
    }
    
    .about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    }
    
    /* Hero Section with Image */
    .about-hero {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    }
    
    .about-hero-text {
    flex: 1;
    }
    
    .about-hero-image {
    flex: 1;
    text-align: center;
    height: 45vw;
    }
    
    .about-hero-image img {
    max-width: 100%;
    height: 80%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Section Layout */
    .about-section {
    margin-bottom: 2rem;
    }
    
    /* Typography */
    .about-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    }
    
    .about-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    }
    
    .about-subtitle-small {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    }
    
    .about-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    }
    
    .about-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    }
    
    .about-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    }
    
    .about-list li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
    #about-us {
        padding: 2rem 1rem;
    }
    
    .about-hero {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-hero-image img {
        height: auto;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .about-subtitle-small {
        font-size: 1.3rem;
    }
    
    .about-description,
    .about-list li {
        font-size: 0.9rem;
    }
    }
    
    @media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-subtitle-small {
        font-size: 1.1rem;
    }
    
    .about-description,
    .about-list li {
        font-size: 0.85rem;
    }
    
    .about-hero-image img {
        width: 100%;
    }
    }
    
    /* Return Policy Section */
    #return-policy {
    padding: 4rem 1rem 2rem;
    background: #f9f9f9;
    }
    
    .return-policy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    }
    
    .return-policy-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
    }
    
    .return-policy-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    }
    
    .return-policy-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    }
    
    .return-policy-description a {
    color: var(--primary-color);
    text-decoration: underline;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
    #return-policy {
        padding: 2rem 1rem;
    }
    
    .return-policy-title {
        font-size: 2rem;
    }
    
    .return-policy-subtitle {
        font-size: 1.3rem;
    }
    
    .return-policy-description {
        font-size: 0.9rem;
    }
    }
    
    @media (max-width: 480px) {
    #return-policy {
        padding: 1.5rem 1rem;
    }
    
    .return-policy-title {
        font-size: 1.8rem;
    }
    
    .return-policy-subtitle {
        font-size: 1.1rem;
    }
    
    .return-policy-description {
        font-size: 0.85rem;
    }
    }
    
    /* Custom Page Section */
    #custom-page {
    padding: 4rem 1rem;
    background: #f9f9f9;
    }
    
    .custom-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    }
    
    /* Hero Section */
    .custom-page-hero {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    }
    
    .custom-page-hero-text {
    flex: 1;
    }
    
    .custom-page-hero-image {
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    }
    
    .custom-page-hero-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Typography */
    .custom-page-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    }
    
    .custom-page-tagline {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    }
    
    .custom-page-subtitle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    }
    
    .custom-page-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    }
    
    .custom-page-list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    }
    
    .custom-page-list li {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    }
    
    /* Gallery Section */
    .custom-page-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    }
    
    .gallery-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    
    .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .gallery-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    }
    
    /* CTA Button */
    .custom-page-cta-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .custom-page-cta-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
    #custom-page {
        padding: 2rem 1rem;
    }
    
    .custom-page-hero {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .custom-page-hero-image img {
        height: auto;
    }
    
    .custom-page-title {
        font-size: 2rem;
    }
    
    .custom-page-subtitle {
        font-size: 1.3rem;
    }
    
    .custom-page-description,
    .custom-page-list li {
        font-size: 0.9rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    }
    
    @media (max-width: 480px) {
    #custom-page {
        padding: 1.5rem 1rem;
    }
    
    .custom-page-title {
        font-size: 1.8rem;
    }
    
    .custom-page-subtitle {
        font-size: 1.1rem;
    }
    
    .custom-page-description,
    .custom-page-list li {
        font-size: 0.85rem;
    }
    
    .custom-page-hero-image img {
        width: 100%;
    }
    
    .gallery-item img {
        height: 150px;
    }
    }
    
    /* Login & Sign-up Styling */
    .auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    /* adjust depending on your header/footer */
    padding: 2rem;
    }
    
    .auth-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    }
    
    .auth-form h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
    }
    
    .auth-form input {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: var(--transition);
    }
    
    .auth-form input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 106, 95, 0.1);
    }
    
    .auth-form button {
    padding: 0.75rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    }
    
    .auth-form button:hover {
    background-color: var(--accent-color);
    }
    
    .auth-form p {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-dark);
    }
    
    .auth-form a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    }
    
    .auth-form a:hover {
    color: var(--accent-color);
    }
    
    /* Blog Page */
    .blog-page {
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    }
    
    .blog-header {
    text-align: center;
    margin-bottom: 3rem;
    }
    
    .blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    }
    
    .blog-posts {
    display: grid;
    gap: 2rem;
    }
    
    .blog-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
    }
    
    .blog-card:hover {
    transform: translateY(-4px);
    }
    
    .blog-card img {
    width: 100%;
    height: auto;
    display: block;
    }
    
    .card-content {
    padding: 1.5rem;
    }
    
    .card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    }
    
    .card-content p {
    font-size: 1rem;
    color: #555;
    }
    
    .read-more-btn {
    margin-top: 1rem;
    background-color: #ff7f50;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    }
    
    .read-more-btn:hover {
    background-color: #ff5722;
    }
    
    .extra-content {
    margin-top: 1rem;
    color: #444;
    font-size: 0.95rem;
    }
    
    .hidden {
    display: none;
    }
    .nav-links {
        display: flex;
        gap: 1rem;
      }
      
      @media (max-width: 768px) {
        .nav-links {
          display: none;
          flex-direction: column;
        }
      
        .nav-links.active {
          display: flex;
        }
      
        .menu-icon {
          display: block;
          cursor: pointer;
        }
      }
      