* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  background-image: url(../images2/blacklines.png);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* ==========================
   Logo Section
========================== */
.logo1 {
  text-align: center;
  padding: 20px;
  
}

.logo1 h3{
  font-weight: bold;
  text-align: center;
  color: #f4b545;
  font-family: sans-serif;
  padding: 8px;
}

.logo1 p{
  font-weight: 400;
  text-align: center;
  font-family: sans-serif;
  color: white;
  padding: 6px;
}

.sub-p{
  font-size: 6px;
  font-weight: 100;
  text-align: center;
  font-family: sans-serif;
  color: white;
  padding: 3px;
}
/* ==========================
   Icon Grid
========================== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 5px;
  text-align: center;
}

.icon-grid a {
  text-decoration: none;
  color: white;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease;
}

.popup-form-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.icon-grid a:hover {
  transform: scale(1.0);
}

.icon-grid img {
  height: 50px;
  margin-bottom: 10px;
}

/* ==========================
   Know More Button
========================== */
.btn1know {
  background: none;
  border: none;

  text-align: center;
  margin-bottom: 10px;
}

.btn1know a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f4b545;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn1know a:hover {
  background: transparent;
  color: #f4b545;
  border: 2px solid #f4b545;
}

/* ==========================
   Main Form Styling
========================== */
.container {
  max-width: 500px;
  margin: auto;
  background-image: url(../images2/Pattern1.png);
  background-size: cover;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #fff3;
  box-shadow: 0 0 10px #0006;
  margin-bottom: 50px;
}

.container h1 {
  color: white;
  font-size: clamp(20px, 5vw, 28px);
  margin-bottom: 20px;
  text-align: center;
}

label {
  color: white;
  margin: 10px 0 5px;
  display: block;
  font-weight: 600;
}

input, select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.phone-wrapper {
  display: flex;
  gap: 10px;
}

.phone-wrapper select {
  flex: 0 0 35%;
}

.phone-wrapper input {
  flex: 1;
}

#submit {
  background-color: #ffcc00;
  color: black;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

#submit:hover {
  background-color: #e2c966;
}

.form-left {
  display: flex;
  flex-direction: column;
  align-items: center;   
  justify-content: center; 
  text-align: center;
  position: relative;
  padding: 20px;
}

.form-left p {
  font-size: clamp(18px, 5vw, 26px);
  font-family: 'Georgia', serif;
  font-style: italic;
  letter-spacing: 1px;
  line-height: 1;
  color: #f8f8f8; 
  margin: 5px 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}


.form-left p strong{
  font-weight: bold;
  font-family: italic;
}
.form-left p {
  /* (same as above) */
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 1s ease-out forwards;
}

footer{
  text-align: center;
  color: white;
}
.footer-container {
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  text-decoration: underline;
  color: #ffcc00;
  gap: 2px;
  margin-bottom: 10px;
}

.footer-container a{
  color: #ffcc00;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  color: white;
  cursor: pointer;
  z-index: 100;
}

.close-btn:hover {
  color: #ffcc00;
}

/* contact card css */
#contactcard {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-image: url(../images2/blured_form_image.webp);
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 0; 
}

.contact_card {
  position: relative;
  padding: 20px;
  width: 350px;
  height: 200px;
  box-sizing: border-box;
}

.contact_card a {
  color: #fff;
  text-decoration: none;
}

.contact_card a:hover {
  text-decoration: underline;
}
.content_inputs p{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: sans-serif;
  font-weight: bold;
  font-size: 30px;
  padding: 10px;
  text-align: center;
  margin: 10px 0;
}
.content_inputs img {
  vertical-align: middle;
}

.content_inputs a {
  color: #fff; 
  text-decoration: none;
  font-size: 16px;
}

.content_inputs a:hover {
  text-decoration: underline;
}

.close-btn1 {
 position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}

.strong1{
  font-family: sans-serif;
  font-weight: bold;
  color: #f4b545;
}



/* ==========================
   Toast & Loader
========================== */


#formLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #f4b545;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================
   Media Queries
========================== */
@media (min-width: 768px) {
  .icon-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {


  .icon-grid a {
    padding: 10px;
  }

  .icon-grid img {
    height: 40px;
  }
}

