  /* ======================================================================================= */
        /*contact Banner Section */
/* Main Banner Styles */
.contactus-banner-section {
  background: url('https://static.vecteezy.com/system/resources/thumbnails/067/533/567/small_2x/golden-trophy-on-black-backgrounds-photo.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}
.contactus-title,
.contactus-subtitle,
.contactus-description {
  text-shadow:
    2px 2px 0 #000,
    4px 4px 6px rgba(0, 0, 0, 0.5);
}



.contactus-banner-overlay {
  
  padding: 60px 20px;
  width: 100%;
  height: 50vh;
  text-align: center;
}

.contactus-banner-content {
  max-width: 800px;
  margin: auto;
}



.contactus-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffd700;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.contactus-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  color: #eee;
}

.contactus-button {
  background-color: #ffd700;
  color: #222;
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.contactus-button:hover {
  background-color: #473391;
  color: #fff;
}

/* Responsive for Tablets */
@media (max-width: 991px) {
  .contactus-title {
    font-size: 2.5rem;
  }

  .contactus-subtitle {
    font-size: 1.3rem;
  }

  .contactus-description {
    font-size: 1rem;
    padding: 0 15px;
  }

  .contactus-button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Responsive for Mobile Phones */
@media (max-width: 576px) {
  .contactus-banner-section {
    height: auto;
    /* padding: 40px 0; */
  }

  .contactus-title {
    font-size: 2rem;
  }

  .contactus-subtitle {
    font-size: 1.1rem;
  }

  .contactus-description {
    font-size: 0.95rem;
  }

  .contactus-button {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* ================================================================================= */
.contact-section {
  background-color: #ffffff;
  /* padding: 60px 20px; */
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.contact-left {
  flex: 1;
  text-align: center;
}

.contact-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.contact-right {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    margin: 20px;
    border: 0.5px solid rgb(204, 198, 198);
    max-width: 500px;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1rem;
  margin-bottom: 25px;
  color: #555;
}

/* .contact-form .form-group {
  /* margin-bottom: 20px; */
/* } */ */

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
}

.submit-btn {
  background-color: #222;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #444;
}

@media (max-width: 768px) {
  /* .contact-container {
    flex-direction: column;
    text-align: center;
  } */
  .contact-right {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  /* Make the contact section more mobile-friendly for 480px devices */
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
    max-width: 100%;
    margin-bottom: 20px; /* Adding some space between sections */
  }

  .contact-title {
    font-size: 1.5rem; /* Adjust title size for smaller screens */
  }

  .contact-subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  /* Adjust form input and textarea padding for 480px view */
  .contact-form input,
  .contact-form textarea {
    padding: 8px;
    font-size: 0.85rem; /* Slightly smaller font for input fields */
  }

  /* Make submit button full width and slightly smaller padding */
  .submit-btn {
    width: 80%;
    padding: 10px;
    font-size: 0.9rem;
  }

  /* Make contact image fit nicely on smaller screens */
  .contact-img {
    max-width: 70%; /* Make the image smaller for very small screens */
    margin: 0 auto;
  }
}

/* ================================================================================ */
  /* Contact Details Section */
      /* Premium Contact Details */
.premium-contact-wrapper {
  background: #fdfdfd;
  padding: 60px 20px;
}

.premium-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.premium-contact-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.premium-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.premium-contact-icon {
  font-size: 2.8em;
  color: #473391;
  margin-bottom: 15px;
}

.premium-contact-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
}

.premium-contact-text {
  font-size: 1.05em;
  color: #555;
  line-height: 1.6;
}

/* Social Icons */
.premium-contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.premium-social-icon {
  background: #473391;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  font-size: 1.2em;
  text-decoration: none;
}

.premium-social-icon:hover {
  background: #000;
  transform: scale(1.1);
}

/* Media Queries for Enhanced Responsiveness */
@media (max-width: 768px) {
  .premium-contact-wrapper {
    padding:15px;
  }

  .premium-contact-title {
    font-size: 1.25em;
  }

  .premium-contact-text {
    font-size: 1em;
  }

  .premium-social-icon {
    width: 40px;
    height: 40px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .premium-contact-grid {
    gap: 30px;
  }

  .premium-contact-card {
    padding: 25px 18px;
  }

  .premium-contact-icon {
    font-size: 2.2em;
  }
}
/* ======================================================================= */
/* trophy studio  */

.studio-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .main-content-area {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .studio-title {
            color: #8B4513;
            font-size: 3rem;
            margin-bottom: 25px;
            text-align: center;
            border-bottom: 4px solid #DAA520;
            padding-bottom: 15px;
            font-weight: bold;
        }

        .section-heading {
            color: #8B4513;
            font-size: 2rem;
            margin: 30px 0 20px 0;
            border-left: 5px solid #DAA520;
            padding-left: 20px;
        }

        .hero-description {
            font-size: 1.2rem;
            text-align: center;
            color: #666;
            margin-bottom: 35px;
            font-style: italic;
            line-height: 1.8;
        }

        .featured-banner {
            background: linear-gradient(45deg, #DAA520, #FFD700);
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            text-align: center;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .products-showcase {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .product-item {
            background: #f9f9f9;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 25px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            border-color: #DAA520;
        }

        .product-title {
            color: #8B4513;
            margin-bottom: 15px;
            font-size: 1.4rem;
            font-weight: bold;
        }

        .benefits-listing {
            list-style: none;
            padding: 0;
        }

        .benefits-listing li {
            padding: 10px 0;
            padding-left: 25px;
            position: relative;
            font-size: 1rem;
        }

        .benefits-listing li:before {
            content: "✓";
            color: #DAA520;
            font-weight: bold;
            font-size: 1.2rem;
            position: absolute;
            left: 0;
        }

        .contact-banner {
            background: linear-gradient(135deg, #8B4513, #DAA520);
            color: white;
            padding: 35px;
            border-radius: 12px;
            text-align: center;
            margin: 35px 0;
        }

        .contact-banner .section-heading {
            color: white;
            border: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .action-button {
            background: white;
            color: #8B4513;
            padding: 15px 35px;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin: 12px;
        }

        .action-button:hover {
            background: #f0f0f0;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        .testimonial-block {
            background: #f8f8f8;
            border-left: 6px solid #DAA520;
            padding: 25px;
            margin: 30px 0;
            font-style: italic;
            border-radius: 0 8px 8px 0;
        }

        /* Mobile Responsive - 320px to 768px */
        @media (max-width: 768px) {
            .studio-wrapper {
                padding: 15px;
            }
            
            .main-content-area {
                padding: 25px;
            }
            
            .studio-title {
                font-size: 2.2rem;
            }
            
            .section-heading {
                font-size: 1.6rem;
            }
            
            .products-showcase {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .product-item {
                padding: 20px;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .action-button {
                padding: 12px 25px;
                font-size: 1rem;
                margin: 8px;
            }
            
            .contact-banner {
                padding: 25px;
            }
        }

        /* Tablet Responsive - 769px to 1024px */
        @media (min-width: 769px) and (max-width: 1024px) {
            .studio-wrapper {
                padding: 20px;
            }
            
            .main-content-area {
                padding: 35px;
            }
            
            .studio-title {
                font-size: 2.6rem;
            }
            
            .section-heading {
                font-size: 1.8rem;
            }
            
            .products-showcase {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .hero-description {
                font-size: 1.15rem;
            }
        }

        /* Desktop Responsive - 1025px and above */
        @media (min-width: 1025px) {
            .studio-wrapper {
                padding: 25px;
            }
            
            .main-content-area {
                padding: 45px;
            }
            
            .products-showcase {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Large Desktop - 1440px and above */
        @media (min-width: 1440px) {
            .studio-wrapper {
                padding: 30px;
            }
            
            .main-content-area {
                padding: 50px;
            }
            
            .studio-title {
                font-size: 3.2rem;
            }
            
            .section-heading {
                font-size: 2.1rem;
            }
        }
/* ========================================================== */
/* map section  */
/* Google Map Section */
.map-section-wrapper {
    /* padding: 80px 0; */
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-section-container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    text-align: center;
}

.map-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.map-section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
}

.address-info {
    padding: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    /* text-align: left; */
}

.address-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.address-details {
    font-size: 1rem;
    line-height: 1.6;
    /* opacity: 0.9; */
}

.contact-info {
    margin-top: 20px;
    /* display: flex; */
    flex-wrap: wrap;
}

.contact-item {
    /* display: flex; */
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-section-title {
        font-size: 2rem;
    }

    .map-section-subtitle {
        font-size: 1rem;
    }

    .google-map {
        height: 300px;
    }

    .address-info {
        padding: 20px;
    }

    .contact-info {
        flex-direction: column;
    }

    .map-placeholder {
        height: 300px;
    }

    .map-section-wrapper {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .map-section-title {
        font-size: 2em;
    }

    .map-placeholder {
        height: 250px;
    }
}
