/* Base Styles */
:root {
    --primary-color: #0061c9;
    --secondary-color: #0062d1;
    --accent-color: #2e5bf0;
    --text-color: #333;
    --light-text: #fff;
    --background-color: #f9f9f9;
    --card-bg: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-image: url('/img/officai\ testl.png');
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-color);
    overflow-x: hidden;
    background-position: 0% 0%;
    animation: slideBackground 60s linear infinite;
  }
  
  @keyframes slideBackground {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
  }
  
  /* Section Header Styles */
  #about h1,
  #services h1,
  .Product h1,
  .products h1,
  .contact h2[data-aos="fade-up"] {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
  }
  
  #about h1 { color: #1D0274; }
  #services h1 { color: #ffffff; }
  .Product h1 { color: #230685; }
  .products h1 { color: var(--light-text); }
  .contact h2[data-aos="fade-up"] { color: white; }
  
  #about h1::after,
  #services h1::after,
  .Product h1::after,
  .products h1::after,
  .contact h2[data-aos="fade-up"]::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
  }
  
  /* Page Transition */
  .page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  /* Navigation */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 0 30px;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    color: var(--light-text);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  nav.scrolled {
    background: rgba(0, 0, 0, 0.9);
    height: 60px;
  }
  
  .logo img {
    width: 220px;
    height: auto;
    transition: var(--transition);
  }
  
  .menu-icon {
    display: none;
    cursor: pointer;
    z-index: 1001;
  }
  
  .menu-icon div {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 5px;
    transition: var(--transition);
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  .nav-links li a {
    color: var(--light-text);
    text-decoration: none;
    padding: 10px 20px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
  }
  
  .nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--light-text);
    transition: var(--transition);
  }
  
  .nav-links li a:hover::after {
    width: 100%;
  }
  
  .icons i {
    color: var(--light-text);
    font-size: 20px;
    transition: var(--transition);
    cursor: pointer;
  }
  
  .icons i:hover {
    color: var(--primary-color);
    transform: scale(1.2);
  }
  
  /* Home Section */
  #home {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    padding-top: 70px;
    position: relative;
  }
  
  .content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: zoomIn 1.5s ease-out forwards;
  }
  
  @keyframes zoomIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  .content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }
  
  /* Explore Deeper Button */
  .btn1 {
    width: 160px;
    height: 60px;
    background: linear-gradient(to top, #00154c, #14315e, #0056b3);
    color: #006eff;
    border-radius: 50px;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: var(--transition);
  }
  
  .btn1:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
  }
  
  .btn1 span {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  
  .btn-text-one {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--light-text);
  }
  
  .btn-text-two {
    position: absolute;
    width: 100%;
    top: 150%;
    left: 0;
    transform: translateY(-50%);
    color: var(--light-text);
  }
  
  .btn1:hover .btn-text-one {
    top: -100%;
  }
  
  .btn1:hover .btn-text-two {
    top: 50%;
  }
  
  /* Floating Images */
  .images img {
    position: absolute;
    width: 350px;
    height: auto;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  }
  
  .random-image:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 150px;
  }
  
  .random-image:nth-child(2) {
    top: 10%;
    right: 15%;
    width: 140px;
  }
  
  .random-image:nth-child(3) {
    bottom: 6.5%;
    left: 2%;
    width: 230px;
  }
  
  .random-image:nth-child(4) {
    bottom: 1%;
    right: 5%;
    width: 200px;
  }
  
  .random-image:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 10px 20px rgba(0, 123, 255, 0.5));
  }
  
  /* About Section */
  #about {
    padding: 100px 20px;
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .dia1 {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    position: relative;
  }
  
  .dia1 img:first-child {
    width: 100%;
    height: auto;
    max-width: 2000px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  }
  
  .dia1 .zoom-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: auto;
    transition: var(--transition);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  }
  
  .dia1:hover .zoom-image {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
  }
  
  .cont1 {
    flex: 1;
    min-width: 300px;
    margin: 20px;
    padding: 20px;
  }
  
  .cont1 h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .cont1 p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .input-button-container {
    display: flex;
    gap: 10px;
    max-width: 500px;
  }
  
  .email-input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  .email-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.2);
  }
  
  .subscribe-button {
    padding: 12px 25px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
  }
  
  .subscribe-button:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
  }
  
  #errorMessage {
    margin-top: 10px;
    font-size: 0.9rem;
    color: red;
    display: none;
  }
  
  .fill-form {
    display: block;
    width: 200px;
    margin: 50px auto 0;
    padding: 15px 25px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0);
    text-align: center;
  }
  
  .fill-form:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 87, 179, 0);
  }
  
  /* Products Section */
  .Product {
    background-color: #ffffffcb;
  }
  
  /* Services Section */
  #services {
    padding: 60px 20px 40px;
    background-color: #1a1a1a00;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.205);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(53, 52, 52, 0.096);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(230, 234, 255, 0.15);
    background: rgba(26, 25, 25, 0.315);
  }
  
  .service-card:hover::before {
    height: 6px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(250, 250, 250, 0.808);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--light-text);
  }
  
  .service-card p {
    color: rgba(255, 255, 255, 0.897);
    line-height: 1.5;
    font-size: 0.95rem;
  }
  
  /* Products Section */
.products {
  padding: 60px 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background: linear-gradient(135deg, #0a1a30 0%, #14315e 100%);
}

.products h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.products h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.slider-track {
  display: flex;
  gap: 25px;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  padding: 20px 0;
}

.product-card {
  background-color: #14315e;
  min-width: 280px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 86, 179, 0.9), transparent);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 50%;
}

.product-btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: 80%;
  max-width: 180px;
}

.product-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 86, 179, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
  z-index: 10;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card:hover .product-overlay {
  transform: translateY(0);
}

.product-btn:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
}

.slider-arrow:hover {
  background: var(--primary-color);
  transform: scale(1.15);
  opacity: 1;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: white;
  transform: scale(1.2);
}

.observe-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1.1rem;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.observe-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 86, 179, 0.6);
}

.observe-btn:active {
  transform: translateY(1px);
}

.observe-btn::after {
  content: '👓';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.observe-btn:hover::after {
  transform: translateY(-50%) rotate(15deg) scale(1.2);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .product-card {
      min-width: 220px;
      height: 300px;
  }
  
  .slider-container {
      padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .product-card {
      min-width: 180px;
      height: 250px;
  }
  
  .slider-container {
      padding: 0 40px;
  }
  
  .product-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .products h1 {
      font-size: 2rem;
  }
  
  .product-card {
      min-width: 160px;
      height: 220px;
  }
  
  .slider-container {
      padding: 0 30px;
  }
  
  .slider-arrow {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
  }
  
  .observe-btn {
      padding: 12px 25px;
      font-size: 1rem;
  }
}

/* Observe mode styles */
.products.observe-mode .slider-track {
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  transform: none !important;
  transition: none;
  max-height: 0;
  overflow: hidden;
  animation: dropDown 1s ease-out forwards;
}

.products.observe-mode .product-card {
  transform: translateY(-50px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: calc(var(--order) * 0.1s);
  margin: 10px;
  flex: 1 1 calc(33.333% - 40px);
  min-width: 0;
  max-width: 300px;
}

.products.observe-mode .slider-controls,
.products.observe-mode .slider-dots {
  display: none;
}

.products.observe-mode .observe-btn {
  animation: pulse 2s infinite;
}

@keyframes dropDown {
  to {
      max-height: 2000px;
  }
}

@keyframes fadeInUp {
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
      box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
  }
  50% {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(0, 86, 179, 0.6);
  }
  100% {
      transform: scale(1);
      box-shadow: 0 5px 15px rgba(0, 86, 179, 0.4);
  }
}
  
  /* Contact Section */
  .contact {
    padding: 60px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .contact .row {
    width: 100%;
    display: flex;
    justify-content: center;
    justify-content: center;
  }
  
  .contact-form {
    background-color: rgba(0, 79, 143, 0.801);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .contact-form .form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  }
  
  .contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
  }
  
  #submit-button {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
  }
  
  #submit-button:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
  }
  
  .contact-info {
    flex: 1;
    min-width: 300px;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
  }
  
  .contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .contact-info a:hover {
    color: var(--primary-color);
  }
  
  .contact-info i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Footer */
  .footer {
    background-color: #1a1a1a;
    color: var(--light-text);
    padding: 60px 20px 20px;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-logo {
    width: 180px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .company-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .slogan {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 20px;
  }
  
  .contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
  }
  
  .contact-details i {
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    background-color: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  /* Popup Form */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .overlay.active {
    display: block;
    opacity: 1;
  }
  
  .popup {
    position:fixed;
    background-color: #00000067;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .popup.active {
    opacity: 1;
    visibility: visible;
  }
  
  .form-popup {
    background-color: rgba(255, 255, 255, 0.829);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgb(0, 0, 0);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }
  
  .popup.active .form-popup {
    transform: translateY(0);
  }
  
  .close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  .close-button:hover {
    color: #ff0000;
    background-color: #f5f5f5;
  }
  
  .form-popup h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 1.8rem;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
  }
  
  select, input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
  }
  
  select:focus, input[type="text"]:focus, 
  input[type="email"]:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.2);
  }
  
  .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  
  .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
  }
  
  .submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
  }
  
  .submit-btn:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
  }
  
  /* Responsive Styles */
  @media (max-width: 1024px) {
    .content h1 {
      font-size: 4rem;
    }
    
    .content h2 {
      font-size: 1.8rem;
    }
    
    .random-image:nth-child(1) {
      width: 120px;
    }
    
    .random-image:nth-child(2) {
      width: 150px;
    }
    
    .random-image:nth-child(3) {
      width: 180px;
    }
    
    .random-image:nth-child(4) {
      width: 160px;
    }
    
    .product-card {
      min-width: 240px;
      height: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .menu-icon {
      display: flex;
      flex-direction: column;
    }
    
    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      align-items: center;
      padding: 20px 0;
      transform: translateY(-100%);
      opacity: 0;
      transition: var(--transition);
    }
    
    .nav-links.active {
      transform: translateY(0);
      opacity: 1;
    }
    
    .content h1 {
      font-size: 3rem;
    }
    
    .content h2 {
      font-size: 1.5rem;
    }
    
    .random-image:nth-child(1) {
      width: 100px;
    }
    
    .random-image:nth-child(2) {
      width: 120px;
    }
    
    .random-image:nth-child(3) {
      width: 150px;
    }
    
    .random-image:nth-child(4) {
      width: 130px;
    }
    
    .about-container {
      flex-direction: column;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 30px;
    }
    
    .social-icons {
      justify-content: center;
    }
    
    .slider-container {
      padding: 0 20px;
    }
    
    .product-card {
      min-width: 200px;
      height: 250px;
    }
    
    .slider-arrow {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
    
    #services {
      padding: 50px 20px 30px;
    }
    
    #services h1 {
      font-size: 2.2rem;
      margin-bottom: 30px;
    }
    
    .services-container {
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
    }
    
    .service-card {
      padding: 25px 20px;
    }
  }
  
  @media (max-width: 480px) {
    .content h1 {
      font-size: 2.5rem;
    }
    
    .content h2 {
      font-size: 1.2rem;
    }
    
    .btn1 {
      width: 140px;
      height: 50px;
    }
    
    .random-image:nth-child(1) {
      width: 80px;
    }
    
    .random-image:nth-child(2) {
      width: 100px;
    }
    
    .random-image:nth-child(3) {
      width: 120px;
    }
    
    .random-image:nth-child(4) {
      width: 100px;
    }
    
    .input-button-container {
      flex-direction: column;
    }
    
    .subscribe-button {
      width: 100%;
    }
    
    .form-popup {
      padding: 20px;
    }
    
    .products {
      padding: 40px 10px;
    }
    
    .products h1 {
      font-size: 2rem;
    }
    
    .product-card {
      min-width: 180px;
      height: 220px;
    }
    
    .product-overlay {
      padding: 10px;
    }
    
    .product-btn {
      padding: 8px 15px;
      font-size: 0.9rem;
    }
    
    #services {
      padding: 40px 15px 25px;
    }
    
    #services h1 {
      font-size: 2rem;
      margin-bottom: 25px;
    }
    
    .services-container {
      grid-template-columns: 1fr;
      gap: 15px;
    }
    
    .service-card {
      padding: 20px 15px;
    }
    
    .service-icon {
      width: 60px;
      height: 60px;
      font-size: 1.8rem;
    }
  }