/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

background: linear-gradient(135deg, #000000, #434343);

/* background-color: aqua; */
  color: white;
  min-height: 100vh;
  animation: fadeInUp 0.8s ease-in-out;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Navbar */
.navbar {
    background-color: #ffffff ;







  padding: 15px 40px;
  border-bottom: 2px solid grey;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: fadeInUp 0.6s ease-in-out;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  margin-right: 12px;
}

.brand-name {
  font-size: 24px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

/* Main Container */
.container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 20px;
  gap: 60px;
  flex-wrap: nowrap;
  animation: fadeInUp 1s ease-in-out;
}

/* Form Section */
.form-section {
  width: 550px;
  max-width: 100%;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: fadeInUp 1s ease-in-out;
}

#callbackForm:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

#callbackForm {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 20px;
}

h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 600;
  text-align: center;
}

p {
  margin: 10px 0 20px;
  font-size: 20px;
  text-align: center;
}

.highlight {
  background-color: white;
  background: radial-gradient(circle, #1e90ff, #000000);

  text-align: center;
  font-weight: bold;
  padding: 12px;
  border-radius: 30px;
  margin: 20px 0;
  /* box-shadow: 0 0 15px rgba(255, 0, 0, 0.3); */
}

/* Form Inputs */
form {
  display: flex;
  flex-direction: column;
}

form input,
form select {
  padding: 12px 15px;
  margin: 8px 0;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

form input:focus,
form select:focus {
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.4);
}

/* Button */
button {
  padding: 14px;
  border: none;
  background: radial-gradient(circle, #1e90ff, #000000);

  color: white;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 12px;
  transition: 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

button:hover {
  background: black;
  color: white;
  transform: scale(1.03);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}
.callback-icon {
    position: fixed;
    bottom:20px;
    right:8px;
    background: radial-gradient(circle, #1e90ff, #000000);
    /* background: green; */

    border-radius: 50%;
    width:70px;
    height:70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 9999;
  }
  .callback-icon img {
    width: 28px;
    height: 28px;
  }
  .callback-icon:hover {
    background:grey;
    transform: scale(1.1);
  }

/* Image Section */
.image-section img {
  width: 730px;
  height: 590px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: zoomIn 1s ease-in-out;
}

.image-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 1000px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .image-section img {
    width: 90%;
    height: auto;
    margin-top: 25px;
  }
}

@media (max-width: 768px) {
  .form-section {
    width: 90%;
    padding: 20px;
  }

  h2 {
    font-size: 32px;
  }

  p {
    font-size: 16px;
  }

  form input,
  form select {
    font-size: 14px;
    padding: 10px;
  }

  button {
    padding: 12px;
    font-size: 15px;
  }

  .image-section img {
    height: auto;
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .brand-name {
    font-size: 20px;
  }

  .container {
    padding: 20px 15px;
    gap: 30px;
  }

  .highlight {
    font-size: 16px;
    padding: 10px;
  }

  .image-section img {
    width: 100%;
    max-height: 300px;
  }

  h2 {
    font-size: 26px;
  }

  p {
    font-size: 14px;
  }
}
