
/* Container */
.container1 {
  max-width: 1400px; /* FIXED: was '1400 px' */
  margin: auto;
}

/* Trial Button */

/* Popup styling */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
  position: relative; /* So the close button positions correctly */
}

.popup-content h3 {
  margin-bottom: 15px;
}

.popup-content input {
  width: 90%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.popup-content button {
  background-color: #4caf50;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #45a049;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* Overall Navbar Styling */
#header {
    background: linear-gradient(135deg, #00E6E6, #00A3A3, #008080); /* Shiny 3D Gradient */
    padding: 10px 20px; /* Reduced padding for a compact look */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
   
  margin-top: 2%;
  margin-bottom: 2%;
}

/* Flex Container */
.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo and Heading Inline */
.logo {
   display: flex;
    align-items: center;
    gap: 10px;
    margin-left: -20px; /* Moves the logo slightly to the left */
}

.logo img {
    width: 90px; /* Increase width */
    height: 60px; /* Increase height */
    object-fit: contain;
}

.logo h1 {
    font-size: 24px;
    color: #000;
    font-weight: bold;
}

.navlist ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
}

.navlist ul li {
    position: relative;
}

/* Link Base Style */
.navlist ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    padding: 8px 15px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

/* Hover Effect */
.navlist ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Darker shade on hover */
  backdrop-filter: blur(5px);
    border-radius: 12px;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
 
}

.navlist ul li a:hover::before, 
.navlist ul li a.active::before {
    transform: scale(1);
    opacity: 1;
}

.nav-links a:hover, .nav-links a.active {
            background-color:transparent;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
         
        }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navlist ul {
        flex-direction: column;
        gap: 10px;
    }
    .logo h1 {
        font-size: 18px;
    }
}


/* Toggle Switch & Login Button */
.searchdarksub {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Toggle Switch Container */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.toggle-checkbox + .toggle-label {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  position: relative;
  display: block;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  height: 100%;
}

.toggle-checkbox + .toggle-label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background-color: #d7d7d7;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.toggle-checkbox:checked + .toggle-label {
  background-color: rgba(215, 202, 202, 0.45);
}

.toggle-checkbox:checked + .toggle-label::before {
  transform: translateX(30px);
  background-color: currentColor;
}

.toggle-checkbox:focus + .toggle-label {
  outline: 2px solid #0ea5ef;
}

/* Login Button */
.login-button {
  background: linear-gradient(45deg, #0ea5ef, #0bd1d1, #0ea5ef);
  background-size: 200%;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: background-position 0.5s ease, transform 0.4s ease;
}

.login-button:hover {
  background-position: right;
}

.login-button a {
  text-decoration: none;
  color: white;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  scroll-behavior: smooth;
  transition: all 0.3s;
}


/* Banner Section */
.banner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100wh;
  height: 100wh;   /* Full viewport height */
  padding: 2rem;
  overflow: hidden;
}

/* Background Image */
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("LIVE.png") no-repeat center center / cover;
}

/* Left Content (Headline & Slideshow) */
.banner-left {
  position: relative;
  z-index: 1;
  flex: 0.6;  
  padding-right: 2rem;
  color: #fff;
  width: 70wh;
}

/* Headline */
.banner-left h1 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0.2, 0.7);
}

/* Trial Button */
.trial-button {
  background-color: #ff4500;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.trial-button:hover {
  background-color: #e03e00;
  transform: scale(1.05);
}

/* Slideshow */
.slideshow-container {
  position: relative;
  width: 400px;
  height: 400px;
  perspective: 1000px;
  margin-top: 3px;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg);
  transition: transform 0.6s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  margin-top:5%;
}

/* Show first slide initially */
.slide:first-child {
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Container for Blog, Testimonial, etc. */
.contain {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
}

.blog-post {
  border: 1px solid #ccc;
  padding: 15px;
}

.blog-post img {
  max-width: 100%;
  height: auto;
}

.see-more-btn {
  display: block;
  margin: 30px auto;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  text-align: center;
  text-decoration: none;
}

/* Testimonial Container */
.container2 {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 10px;
}

.testimonial {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.testimonial img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-right: 20px;
}

.testimonial-content {
  text-align: center;
}

/* Subscription Section */
#subscription {
  text-align: center;
  padding: 50px 0;
}

.section-container {
  max-width: 960px;
  margin: 0 auto;
}

.models {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.model {
  border: 1px solid #ccc;
  padding: 30px;
  width: 40%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.model h3 {
  margin-bottom: 20px;
}

.model ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.model li {
  text-align: left;
  padding: 5px 0;
}

.price {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 15px;
}

.subscribe-button {
  background-color: #4caf50;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.subscribe-button:hover {
  background-color: #45a049;
}

/* Image-Text Section */
.image-text .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  gap: 30px;
}

.image-text .image img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.image-text .text {
  width: 80%;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.5px;
  color: #333;
  text-align: justify;
  margin: 0 auto;
  padding: 20px;
}

.image-text .text h2 {
  font-size: 32px;
  color: #222;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.image-text .text p {
  margin-bottom: 15px;
}

/* Responsive for image-text */
@media (max-width: 768px) {
  .image-text .container {
    flex-direction: column;
  }
  .image-text .text {
    width: 100%;
  }
  .image-text .image img {
    max-width: 100%;
  }
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #00E6E6, #00A3A3, #008080); /* Shiny 3D Gradient */
  color: #333;
  padding: 40px 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.footer-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  padding: 10px 20px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00E6E6, #00A3A3, #008080); /* Shiny 3D Gradient */
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.footer-column:hover {
  transform: translateY(-5px);
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-content {
  margin-top: 10px;
}

.footer-column h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: cyan;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  color: black;
}

.footer-bottom p {
  margin: 0;
}/* Contact Wrapper */

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 900px;
  width: 100%; /* Changed from fixed 850px */
  margin: 0 auto; /* Center the wrapper */
  padding: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00E6E6, #00A3A3, #008080);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  /* Removed left: 50% */
}

/* Contact Info */
.contact-info {
  flex: 1;
  padding: 20px;
  text-align: center; /* Added center alignment */
}

/* Added center alignment for form elements */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  align-items: center; /* Center form items */
}

/* Updated form group styling */
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%; /* Full width within form */
  max-width: 400px; /* Limit form width */
}

/* Updated submit button width */
.contact-submit {
  width: auto; /* Changed from 100% */
  padding: 15px 40px; /* Added horizontal padding */
  /* ... rest of the styles remain the same ... */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    width: 95%; /* More responsive width */
  }

  .contact-info, .contact-form {
    width: 100%;
    text-align: center;
  }

  .form-group {
    max-width: none; /* Full width on mobile */
  }
}

/* Added center alignment for social links */
.contact-social {
  margin-top: 20px;
}

/* Center-align form labels */
.form-group label {
  text-align: center;
  margin-bottom: 8px;
}

/* Center the form row */
.form-row {
  display: flex;
  gap: 15px;
  width: 100%;
  justify-content: center;
}
