/* Reset some common browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

.mt-10 {
  margin-top: 10px;
}
.text-danger{
    color:red;
    font-size:14px;
}
a {
    text-decoration: none;
    color: inherit;
}
.gt_selector {
    background-color: black;
    color: white;
    margin-left:20px;
}
:root {
  --skyblue: #00a3e8;
  --white: #ffffff;
  --black: #000000;
}

.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 50px 10px;
}

/* Main Page */
.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.home {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Centered Text */
.centered-text {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  color: white;
  font-size: 0.6rem;
  font-weight: bold;
  z-index: 2;
  text-align: center;
}

.centered-text h1 {
  color: #fff;
  font-size: 8em;
  position: absolute;
  transform: translate(-50%, -50%);
}

.centered-text h1:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}

.centered-text h1:nth-child(2) {
  color: #fdfdfd;
  animation: animate 4s ease-in-out infinite;
}

@keyframes animate {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      16% 44%,
      33% 50%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }

  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}

/* Home Automation Page */
/* Original desktop nav */
nav {
  max-width: 1250px;
  padding: 20px 10px;
  height: 150px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.logo {
  height: 70%;
  width: auto;
}

.logo img {
  height: 100%;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--white);
  height: 30%;
  width: auto;
}

/* Hamburger (hidden by default) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 20px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--white);
  margin: 4px 0;
}

/* Side navigation drawer */
.side-nav {
  height: 100%;
  width: 250px;
  background-color: #111;
  position: fixed;
  top: 0;
  left: -250px;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 9;
}

.side-nav a {
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  display: block;
  transition: 0.3s;
}

.side-nav a:hover {
  background-color: #333;
}

.side-nav.open {
  left: 0;
}

/* Close button inside side-nav */
.side-nav .closebtn {
  font-size: 30px;
  margin-left: 20px;
  margin-bottom: 20px;
  display: block;
}

/* Style for the image container */
.owl-carousel .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container {
  width: 100%;
  height: 105vh;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-content{
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: auto;
  width: 50%;
}
.slider-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--white);
}
.slider-content p{
  font-weight: 200;
  color: var(--white);
  margin-top: 10px;
}
.owl-carousel .owl-nav {
  display: none;
}

.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 50px;
  color: white;
  text-align: left;
}

.text-overlay h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.text-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.text-overlay p {
  font-size: 16px;
  margin-bottom: 15px;
}

.badge {
  display: inline-block;
  background-color: var(--skyblue);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.feature {
  background-color: rgba(255,255,255,0.2);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
}

/* Smart home widget styles */
.widget-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.widget {
  background-color: rgba(255,255,255,0.15);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 12px;
  width: calc(50% - 5px);
  display: flex;
  align-items: center;
  color: white;
}

.widget-icon {
  margin-right: 10px;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.widget-info {
  flex: 1;
}

.widget-title {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 2px;
}

.widget-value {
  font-size: 16px;
  font-weight: bold;
}
.audio-network{
  padding: 10px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
  height: 80vh;
}
.audio, .network{
  position: relative;
  height: 100%;
  width: 50%;
  img{
    height: 100%;
    width: 100%;
  }
}
.audio-network-title{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px 20px;
  border-radius: 50px;
}
.light{
  position: relative;
  padding: 10px 0;
  height: 80vh;
  width: 100%;
  img{
    height: 100%;
    width: 100%;
  }
}

/* Footer Section */
.footer {
    display: grid;
    grid-template-columns: 0.6fr 0.9fr 0.9fr 1.4fr 0.8fr; /* 1st small, 4th big */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 10px 0px 10px;
    color: var(--white);
}

.footer-column {
    min-width: 150px; /* adjust if needed */
}


.footer-column h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.footer-column a:hover {
  opacity: 1;
}

.admin-login {
  padding: 5px 15px;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 5px;
  margin-top:5px;
}

.support-info {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
}

.support-info i {
  margin-right: 10px;
}

.download-buttons img {
  width: 150px;
  margin-top: 10px;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  color: var(--white);
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  padding: 10px;
}

.footer-bottom a img {
  height: 50px;
}
.breadcrumb-bg {
    position: relative;
    background-image: url(../images/light3.jpg);
    background-size: cover;
    background-position: center;
}
    /* Breadcrumb */
    .breadcrumb {
    position: relative;
    padding: 10px 50px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    color: var(--white);
    height: 250px;
    z-index: 1;
    width: 1200px;
    margin:0 auto;
}
.breadcrumb-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 0;
  border-radius: inherit;
}
.b-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  color: var(--white);
}
.breadcrumb * {
  position: relative;
  z-index: 1;
  color: white;
}
.breadcrumb h1{
  font-size: 3rem;
  font-weight: 600;
/*  margin-bottom: 10px;*/
}

.contact-header {
  margin-bottom: 20px;
  color:var(--black);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  color: var(--black);
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background-color: #111;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

.heading {
  margin-bottom: 30px;
}

.heading h1 {
  color: var(--black);
  font-size: 36px;
  margin-bottom: 10px;
}

.heading h1 span {
  color: var(--skyblue);
}

.heading p {
  color: black;
  margin-bottom: 20px;
}

.contact-details {
  margin-bottom: 30px;
}

.detail {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.icon {
  width: 40px;
  height: 40px;
  background-color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--skyblue);
}

.info h3 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 5px;
}

.info p, .info a {
  color: black;
  text-decoration: none;
}

.info a:hover {
  color: var(--skyblue);
}

.social-media {
  margin-top: 40px;
}

.social-media h3 {
  margin-bottom: 20px;
  color: var(--black);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #111;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: var(--skyblue);
}

.form-title {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 24px;
}

.form-description {
  color: #b0b0b0;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: #2d2d2d;
  border: none;
  border-radius: 5px;
  color: #e0e0e0;
  font-size: 16px;
}

.form-control::placeholder {
  color: #888888;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn {
  background-color: var(--skyblue);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--skyblue);
}

.map-container {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
  filter: grayscale(30%) invert(92%) hue-rotate(180deg);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

hr {
  border: none;
  border-top: 1px solid #727171;
  margin: 30px 0;
}

/* About Page  */
.sub-title {
  text-transform: uppercase;
  width: fit-content;
  font-size: 18px;
  position: relative;
  padding-left: 60px;
}

.sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: var(--skyblue);
  transform: translateY(-50%);
}
.sub-title-center {
  text-transform: uppercase;
  margin: 0 auto;
  width: fit-content;
  font-size: 18px;
  position: relative;
  padding-left: 60px;
}

.sub-title-center::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: var(--skyblue);
  transform: translateY(-50%);
}

.about {
  gap: 20px;
  padding: 40px 0;
  height: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.abt-img,
.abt-content {
  justify-content: center;
  gap: 10px;
  display: flex;
  flex-direction: column;
  width: 50%;
  height: 100%;
}
.abt-img img {
  border-radius: 10px;
  height: 50%;
  width: 100%;
  object-fit: cover;
}
.stats-container {
  display: flex;
  gap: 40px;
  text-align: center;
}
.stat-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.stat-box:hover {
  transform: scale(1.05);
}
.number {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}
.label {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
  margin-top: 5px;
}
.abt-btn {
  border-radius: 5px;
  margin-top: 10px;
  display: flex !important;
  align-items: center;
  gap: 5px;
  background-color: var(--skyblue);
  padding: 15px 30px;
  width: fit-content;
  color: var(--white);
}
.abt-content h1{
  font-size: 32px;
}

/* Why Choose Us Section */
.left {
  flex: 1 1 50%;
  min-width: 300px;
}

.left h5 {
  color: #ccc;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 14px;
}

.left h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.left p {
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ccc;
}

.skill {
  margin-bottom: 20px;
}

.skill .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-weight: 600;
}

.bar {
  background-color: #eee;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
}

.bar .fill {
  background-color: var(--skyblue);
  height: 100%;
  width: 0;
  transition: width 0.5s ease-in-out;
}

.right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex: 1 1 40%;
  gap: 30px;
  min-width: 250px;
}

.stat {
  text-align: center;
  border: 1px solid #333;
  padding: 20px;
}

.stat i {
  font-size: 30px;
  color:var(--white);
  margin-bottom: 10px;
}

.stat h3 {
  font-size: 28px;
  color:var(--skyblue);
  margin: 0;
}

.stat p {
  color: #ccc;
  margin-top: 5px;
}
.why-choose{
  color: var(--white);
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Testimonial Section  */
.testimonial-wrapper {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.testimonial-left img {
  width: 100%;
  border-radius: 12px;
  max-width: 600px;
}

.testimonial-right {
  flex: 1;
  min-width: 300px;
}

.sub-heading {
  color: var(--skyblue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 10px 0;
}

.description {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

.owl-carousel .testimonial-card {
  border: 1px solid var(--skyblue);
  background: #f8f8f8;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin: 5px;
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .user h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card .user span {
  font-size: 14px;
  color: var(--skyblue);
}
/* Industrial Page  */
.product-container{
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 20px;
 flex-wrap:wrap;
} 
.card {
    cursor:pointer;
  --card-bg: #ffffff;
  --card-accent: #00a3e8;
  --card-text: #1e293b;
  --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);

  width: 285px;
  height: 350px;
  background: var(--card-bg);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

.card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card__glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(75, 177, 245, 0.3)0%,
    rgba(124, 58, 237, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card__content {
  padding: 1em;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--card-accent);
  color: white;
  padding: 0.25em 0.5em;
  border-radius: 999px;
  font-size: 0.7em;
  font-weight: 600;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}

.card__image {
  width: 100%;
  height: 300px;
  background: linear-gradient(45deg, #8bb7fa, #5cd2f6);
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card__image img{
  height: 100%;
  width: 100%;
  object-fit:cover;
}

.card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 30%
    ),
    repeating-linear-gradient(
      45deg,
      rgba(139, 92, 246, 0.1) 0px,
      rgba(139, 92, 246, 0.1) 2px,
      transparent 2px,
      transparent 4px
    );
  opacity: 0.5;
}

.card__text {
  display: flex;
}

.card__title {
    text-align:center;
    width:100%;
  color: var(--card-text);
  font-size: 1.1em;
  margin: 0;
  font-weight: 700;
  transition: all 0.3s ease;
}

.card__description {
  color: var(--card-text);
  font-size: 0.75em;
  margin: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card__price {
  color: var(--white);
  padding: 5px 15px;
  border-radius: 50px;
  width: 100%;
  background-color: var(--skyblue);
  font-weight: 600;
  font-size: 1em;
  text-align:center;
  transition: all 0.3s ease;
  margin-top:5px;
}

.card__button {
  width: 35px;
  height: 35px;
  background: var(--card-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(0.9);
}

/* Hover Effects */


.card:hover .card__badge {
  transform: scale(1);
  opacity: 1;
  z-index: 1;
}

.card:hover .card__title {
  color: var(--card-accent);
}

.card:hover .card__description {
  opacity: 1;
}

.card:hover .card__price {
  color: var(--white);
}

.card:hover .card__button {
  transform: scale(1);
  box-shadow: 0 0 0 4px rgba(58, 142, 237, 0.2);
}

.card:hover .card__button svg {
  animation: pulse 1.5s infinite;
}

/* Active State */
.card:active {
  transform: translateY(-5px) scale(0.98);
}

/* Animations */
@keyframes shine {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.product-details{
/*  flex-direction: column;*/
  display: flex;
  justify-content: center;
  align-items: center;
/*  flex-wrap:wrap;*/
  gap: 20px;
  padding: 40px 0;
}
.product-info {
  width: 100%;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-info h2 {
  text-align: start;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

    table th,
    table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
        white-space: normal; /* allow text to wrap */
        word-break: break-word; /* break long words if needed */
    }


table th {
  background-color: #f4f4f4;
  color: #333;
}

table tr:nth-child(even) {
  background-color: #f9f9f9;
}

table tr:hover {
  background-color: #f1f1f1;
}
/* Custom Slider Styles */
.custom-slider {
  height: 450px;
  position: relative;
  width: 100%;
  margin: 0 auto; 
  overflow: hidden;
  border-radius: 10px;
}

/* Wrapper for the slides */
.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 450px; /* or any specific height like 500px */
}

.slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    height: 100%; /* Important */
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* or 'contain' depending on desired effect */
    }


/* Navigation buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(11, 143, 252, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  z-index: 1;
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 137, 216, 0.8);
}
.info-title{
  display: flex;
  justify-content: space-between;
}
.quote-btn{
  background-color: var(--skyblue);
  width: fit-content;
  padding: 0 20px;
  height:40px   ;
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
}
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
/* Modal container */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Modal content */
.modal-content {
    background-color: #fff;
    margin: 100px auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

    .modal-content h2 {
        margin-bottom: 10px;
    }

/* Close button */
.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

    .close-btn:hover,
    .close-btn:focus {
        color: var(--skyblue);
        text-decoration: none;
        cursor: pointer;
    }

/* Form styling */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

form button {
    background-color: var(--skyblue);
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

    form button:hover {
        background-color: var(--skyblue);
    }

/* Flex row for inputs */
.input-row {
    display: flex;
    gap: 10px;
}

.input-half {
    flex: 1;
}
