 body { margin:0; font-family:Arial, sans-serif; }
    header {background: #c70000;padding:15px;text-align:center;box-shadow:0 2px 5px rgba(0,0,0,0.1);}
    .hero {background: url('bg.jpg') center/cover;color:white;text-align:center;padding: 14px 20px;position:relative;}
    .form-box {background:rgba(0,0,0,0.7);padding:20px;border-radius:10px;max-width: 370px;margin:auto;}
    .form-box input,.form-box select,.form-box button {width:100%;padding:10px;margin:8px 0;border-radius:5px;border:none;}
    .form-box button{background:red;color:#fff;cursor:pointer;}
    .courses,.features,.gallery,.contact{padding:40px 20px;}
    .course-card{background:#fff; border-radius:10px; padding:20px; box-shadow:0 2px 10px rgba(0,0,0,0.1); transition:0.3s;}
    .course-card:hover{transform:translateY(-5px);}
    .features-grid{display:flex; flex-wrap:wrap; gap:20px;}
    .feature{flex:1; min-width:200px; background:#f8f8f8; padding:20px; border-radius:10px; text-align:center;}
    .stats{display:flex; justify-content:space-around; padding:40px; background:#0066cc; color:white;}
    .gallery img{width:100%; max-width:250px; border-radius:10px; cursor:pointer; transition:0.3s;}
    .gallery img:hover{transform:scale(1.05);}
    footer{background:#111; color:white; text-align:center; padding:20px;}
    /* Popup */
    .modal{display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.6); align-items:center; justify-content:center;}
    .modal-content{background:white; padding:20px; border-radius:10px; max-width:400px; width:90%;}
    .close{float:right; font-size:20px; cursor:pointer;}
    /* Floating buttons */
    .floating{position:fixed;bottom: 73px;right:20px;display:flex;flex-direction:column;gap:10px;}
    .floating a{width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-size:24px;}
    .whatsapp{background:#25D366;}
    .call{background:#007AFF;}
    @media(max-width:768px){.features-grid{flex-direction:column;}}
	
	img.responsive {
  display: block;       /* removes inline gap under image */
  width: 100%;          /* fill the width of the parent */
  height: auto;         /* keep aspect ratio */
  max-width: 100%;      /* prevents stretching beyond natural size if parent is large */
}

/* Common Form Styling */
.lead-form,
.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px; /* keep it neat */
  margin: 0 auto;
}

/* Input, Select, Button */
.lead-form input,
.lead-form select,
.lead-form button,
.popup-box input,
.popup-box select,
.popup-box button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

/* Input & Select fields */
.lead-form input,
.lead-form select,
.popup-box input,
.popup-box select {
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.popup-box input:focus,
.popup-box select:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0,123,255,0.2);
}

/* Submit Button */
.lead-form button,
.popup-box button {
  background: #e63946;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.lead-form button:hover,
.popup-box button:hover {
  background: #c92a3a;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

/* Active state */
.popup-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 90%;
  max-width: 420px;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  animation: popupScale 0.3s ease-in-out;
  position: relative;
  text-align: center;
}

/* Popup Title */
.popup-box h2 {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.popup-box form {
  display: flex;
  flex-direction: column;
  gap: 12px; /* spacing between fields */
}

.popup-box input,
.popup-box select,
.popup-box button {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box; /* ensures equal width */
}

/* Inputs & Select */
.popup-box input,
.popup-box select {
  border: 1px solid #ddd;
  outline: none;
  transition: border-color 0.3s;
}

.popup-box input:focus,
.popup-box select:focus {
  border-color: #007bff;
}

/* Button */
.popup-box button {
  background: #e63946;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.popup-box button:hover {
  background: #c92a3a;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  color: #555;
  cursor: pointer;
  transition: 0.2s;
}

.popup-close:hover {
  color: #e63946;
}

/* Animation */
@keyframes popupScale {
  0% { transform: scale(0.7); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.floating-btns {
      display: none;
    }

    /* Show only on mobile screens */
    @media (max-width: 768px) {
      .floating-btns {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        justify-content: space-around;
        padding: 10px;
        background: #fff;
        box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
        z-index: 9999;
      }
      .floating-btns a {
        flex: 1;
        margin: 0 5px;
        padding: 12px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        font-weight: bold;
      }
      .whatsapp { background: #25D366; }
      .call { background: #007bff; }
      
      .add-width-course {width: 100% !important;}
      .hero {
    background: url(bg.jpg) center / cover;
    color: white;
    text-align: center;
    padding: 14px 20px;
    position: relative;
    font-size: 11px;
}
    }
	
	/* Container */
.container {
  max-width: 1200px;  /* max width */
  margin: 0 auto;      /* center horizontally */
  padding: 20px;       /* spacing inside */
  background-color: #f8f9fa; /* light gray background */
}

/* Row */
.row {
  display: flex;        /* makes columns horizontal */
  flex-wrap: wrap;      /* wrap columns on smaller screens */
  gap: 20px;            /* space between columns */
}

.logo {width: 320px; text-align: center;}

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

.add-new-head-home {font-size: 25px;margin: 0 0 0 0;}
.add-txt-home {font-size: 15px;
    letter-spacing: 1px;
    line-height: 24px;}
	
.left-section {
  max-width: 50%;
}

.left-section h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.left-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.left-section ul {
  list-style-type: none;
}

.left-section ul li {
  font-size: 16px;
  margin-bottom: 5px;
}

.enquire-btn {
  background-color: red;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 20px;
}

.right-section {
  max-width: 40%;
  background-color: #333;
  padding: 20px;
  color: white;
  border-radius: 8px;
}

.right-section form {
  display: flex;
  flex-direction: column;
}

.right-section label {
  margin-bottom: 8px;
  font-size: 14px;
}

.right-section input, .right-section select {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.right-section button {
  background-color: red;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.right-section button:hover {
  background-color: darkred;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contact-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}

.contact-btn:hover {
  background-color: #128C7E;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .left-section, .right-section {
    max-width: 100%;
    text-align: center;
  }

  .enquire-btn {
    width: 100%;
  }

  .right-section {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .left-section h2 {
    font-size: 20px;
  }

  .left-section p {
    font-size: 14px;
  }

  .right-section form {
    margin-top: 15px;
  }

  .right-section input, .right-section select, .right-section button {
    font-size: 14px;
  }
}

.highlights-course-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.highlights, .course-details {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  width: 48%;
}

.highlights h2, .course-details h2 {
  color: #004e99;
  margin-bottom: 20px;
}

.highlights ul, .course-details ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.highlights li, .course-details li {
  font-size: 33px;
  margin-bottom: 31px;
}

.highlights img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.course-details li strong {
  color: #004e99;
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contact-btn {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  margin: 0 10px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}

.contact-btn:hover {
  background-color: #128C7E;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .highlights-course-container {
    flex-direction: column;
    align-items: center;
  }

  .highlights, .course-details {
    width: 90%;
    margin-bottom: 20px;
  }

  .highlights img {
    width: 25px;
  }
}

@media (max-width: 480px) {
  .highlights h2, .course-details h2 {
    font-size: 20px;
  }

  .highlights li, .course-details li {
    font-size: 19px;
    margin: 0 0 20px 0;
  }

  .highlights img {
    width: 70px;
  }
}

.download-btn {
  display: inline-block;
  background-color: #004e99;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.download-btn:hover {
  background-color: #003366;
}

.add-width-course { width: 32%;}

.add-course-head {font-size: 18px;
    font-weight: bold;
    margin: 0 0 -9px 0;}
    
.add-width-course img{width:100%;border-radius: 10px;margin: 0 0 13px 0;}

.add-button-bg-home {background: #c70000;
    color: #fff;
    padding: 20px 20px 20px 20px;
    border: none;
    border-radius: 20px;
    font-size: 20px;}