/* Base Styles */
body {
  font-family: "Arial", sans-serif;
  color: #142c73;
  background-color: #f8f8f8;
}

/* Header Styles */
.main-header {
  border-bottom: 1px solid #eee;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}

.logo-section {
  margin-right: 40px;
}

.top-nav {
  display: flex;
  gap: 25px;
}

.top-nav a {
  color: #142c73;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0;
  line-height: 1;
}

.logo-subtitle {
  font-size: 18px;
  letter-spacing: 5px;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Search bar and shop by button container */
.search-shop-container {
  display: flex;
  gap: 15px;
  width: 100%;
  max-width: 1250px;
  margin-top: 15px;
}

/* Larger search bar */
.search-bar input {
  height: 50px;
  font-size: 16px;
  padding: 12px 50px 12px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}

.search-bar {
  position: relative;
  flex-grow: 1;
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

/* Shop by button */
.shop-by-btn {
  height: 50px;
  font-size: 16px;
  padding: 12px 25px;
  border: 1px solid #ddd;
  background: white;
  color: #142c73;
  font-weight: 600;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

/* Dropdown Menu */
.dropdown-menu {
  width: 100%;
  min-width: 100%;
  border: 1px solid #ddd;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  margin-top: 5px;
}

.dropdown-item {
  padding: 10px 15px;
  color: #142c73;
  font-size: 15px;
}

.dropdown-item:hover {
  background-color: #f5f5f5;
  color: #142c73;
}

/* Enhanced Slideshow Styles */
.slideshow {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  height: 100%;
}

/* Make slider full width */
big-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 500px;
}

.slideshow__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 2;
  text-align: center;
}

.slideshow__heading {
  color: #142c73;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.slideshow__description {
  color: #142c73;
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.slideshow__buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.slideshow__button {
  padding: 14px 35px;
  background-color: #142c73;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slideshow__button:hover {
  background-color: #0a1a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slideshow__button.secondary {
  background-color: transparent;
  color: #142c73;
  border: 2px solid #142c73;
}

.slideshow__button.secondary:hover {
  background-color: rgba(20, 44, 115, 0.1);
}

/* Big Slider Styles with fade animation */
big-slider {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

big-slider .big-slider__items {
  position: relative;
  height: 100%;
}

big-slider .big-slider__items .slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

big-slider .big-slider__items .slideshow.active {
  z-index: 2;
  opacity: 1;
}

/* Slide background images */
.slideshow:nth-child(1) {
  background-image:
    url("images/banner (2).jpg");
}

.slideshow:nth-child(2) {
  background-image: 
    url("images/banner (3).jpg");
}

.slideshow:nth-child(3) {
  background-image:
    url("images/banner (1).jpg");
}

.big-slider__dots {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 10px;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 3;
}

.big-slider__dots__item {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #142c73;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.big-slider__dots__item.active {
  opacity: 1;
}

.ctrl__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.ctrl__button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.1);
}

.ctrl__button svg {
  width: 24px;
  height: 24px;
}

.ctrl__button--left {
  left: 30px;
}

.ctrl__button--right {
  right: 30px;
}

/* Mobile styles */
@media (max-width: 992px) {
  .header-container {
    flex-direction: column;
    align-items: stretch;
  }

  .logo-nav-container {
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }

  .logo-section {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .top-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .top-nav {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background-color: white;
    align-items: center;
  }

  .mobile-menu-toggle {
    display: block;
    background-color: #142c73;
    color: white;
    text-align: center;
    padding: 12px;
    margin-top: 15px;
    width: 100%;
    border: none;
    font-size: 16px;
    border-radius: 4px;
  }

  /* .search-shop-container {
    flex-direction: ;
  } */


  

  big-slider {
    height: 400px;
    border-radius: 0;
  }

  .slideshow__heading {
    font-size: 32px;
  }

  .slideshow__description {
    font-size: 16px;
  }

  .slideshow__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 250px;
  }

  .slideshow__button {
    width: 100%;
  }

  .ctrl__button {
    width: 40px;
    height: 40px;
  }

  .ctrl__button--left {
    left: 15px;
  }

  .ctrl__button--right {
    right: 15px;
  }

  .dropdown-menu {
    width: 100%;
    position: static !important;
    transform: none !important;
  }
}


  #jewellery-engraving {
    background: 
      linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%),
      url('https://images.squarespace-cdn.com/content/v1/5214613de4b0857a56a097d2/1561829604834-FXHNXCLJQFHR9GQY287P/chicago-white-sox-stadiumview-5-layer-alt2.jpg?format=750w');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 2rem;
  }
  
  #jewellery-engraving-1{
    background: 
      linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%),
      url('https://images.squarespace-cdn.com/content/v1/5214613de4b0857a56a097d2/1674239344299-HCLVW20SO0C9Z7YWWF0W/3d+Wood+Map+LAKE+ERIE.jpeg?format=750w');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    padding: 2rem;
  }
  
  .gap{
    height: 10px;
  }

  #luxury-engraving {
    background: 
      linear-gradient(135deg, rgba(10, 9, 8, 0.85) 0%, rgba(40, 36, 33, 0.7) 100%),
      url('https://images.squarespace-cdn.com/content/v1/5214613de4b0857a56a097d2/1618333193572-2583ST94OT6J49LMYK1D/dallas-cowboys-stadiumview-end-table-alt2.jpg?format=750w');
    background-size: cover;
    background-position: 20% center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #f8f3ed;
    padding: 4rem 0;
  }

  #luxury-engraving-1  {
    background: 
      linear-gradient(135deg, rgba(10, 9, 8, 0.85) 0%, rgba(40, 36, 33, 0.7) 100%),
      url('https://images.squarespace-cdn.com/content/v1/5214613de4b0857a56a097d2/1618016042658-MV8RCP75Y7EFEPIMCKW9/Photo+Custom+Map+Vancouver+Island+and+Salish+Sea+Close+up.jpg?format=1000w');
    background-size: cover;
    background-position: 20% center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #f8f3ed;
    padding: 4rem 0;
  }
  
  .engraving-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 580px;
    font-weight: 300;
    letter-spacing: 0.3px;
  }


  .book-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
  }
  .book-button:hover {
    background-color: #0056b3;
  }
  
  .btn-cta {
    border: 2px solid #e8d7c5;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  
  .btn-cta:hover {
    background: #e8d7c5;
    color: #1a1714;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px -10px rgba(232, 215, 197, 0.3);
  }


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

header h1 {
  font-size: 2.5rem;
  color: #1a3e72;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  font-size: 1.5rem;
  color: #e63946;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #e63946;
  bottom: -5px;
  left: 0;
}

/* Card Container */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* Stadium Card Styles */
.stadium-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stadium-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stadium-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.stadium-content {
  padding: 15px;
}

.stadium-name {
  font-size: 1.3rem;
  margin: 0 0 10px 0;
  color: #1a3e72;
}

.stadium-location {
  display: flex;
  align-items: center;
  color: #6c757d;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.stadium-location svg {
  margin-right: 5px;
}

.stadium-capacity {
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 10px;
}

.stadium-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #2a9d8f;
  margin-bottom: 15px;
}

.stadium-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.book-button {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-weight: bold;
}

.book-button:hover {
  background-color: #c1121f;
}

.rating {
  display: flex;
  align-items: center;
  color: #ffc300;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .card-container {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  header h1 {
      font-size: 2rem;
  }
}


/* testmional  */   

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.testimonial-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a6bff;
}

.testimonial-header p {
    color: #666;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.testimonial-card {
    width: calc(50% - 30px);
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin: 0 15px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(74, 107, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #4a6bff;
}

.author-info h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.author-info p {
    color: #777;
    font-size: 14px;
}

.rating {
    color: #ffc107;
    margin-top: 5px;
    font-size: 14px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #4a6bff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 100%;
    }
}


/* contact us  */


        /* Custom CSS - No Bootstrap */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .form-section {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-title {
            font-size: 28px;
            margin-bottom: 25px;
            color: #2c3e50;
            position: relative;
            padding-bottom: 10px;
        }

        .form-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #3498db;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #555;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }

        .map-container {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        #map {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
        }

        .contact-info {
            margin-top: 40px;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .info-title {
            font-size: 22px;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .info-icon {
            width: 40px;
            height: 40px;
            background: #f1f9fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: #3498db;
        }

        .form-message {
            padding: 15px;
            border-radius: 6px;
            margin-top: 20px;
            text-align: center;
            display: none;
        }

        .success {
            background: #d4edda;
            color: #155724;
        }

        .error {
            background: #f8d7da;
            color: #721c24;
        }

        .field-error {
            color: #e74c3c;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }

        @media (max-width: 768px) {
            .form-section {
                flex-direction: column;
            }
            
            .contact-form, .map-container {
                width: 100%;
            }
        }


        