@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --red: #f36c1e;
  --gold: #425262;
  --light-red: #425262;
  --white: #ffffff;
  --navy-blue: #2c3e50;
  --navy-gradient: linear-gradient(135deg, var(--navy-blue) 0%, #06254b 100%);
  --light-yellow: #fff7e6;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

body {
  background-color: var(--gray-100);
  color: var(--white);
  font-family: "Roboto Condensed", sans-serif;
}

body::-webkit-scrollbar {
  display: none;
}

.container-fluid {
  background-color: transparent;
  padding: 2rem 2rem 0rem 2rem;
  max-width: 1500px !important;
}

.fcs-bold-text-white {
  color: var(--light-red);
  text-align: center;
}

.ohasa-head {
  color: var(--white);
  text-align: center;
}

.fcs-bold-text-white {
  font-size: 2rem;
  font-weight: bold;
}

.ohasa-head {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

form {
  background-color: var(--white);
  padding: 0px !important;
  border-radius: 10px;
}

.form-group label {
  color: var(--navy-blue);
  font-weight: bold;
}

.form-control {
  border-radius: 5px;
  border: 1px solid var(--navy-blue);
  padding: 10px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 5px var(--gold);
}

.btn {
  background-color: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: var(--navy-blue);
  color: var(--white);
}

img {
  border-radius: 10px;
  margin-bottom: 20px;
  width: auto;
  max-width: 100%;
}

#productPrice {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 1px;
}

.required {
  color: #f10000;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .fcs-bold-text-white {
    font-size: 1.3rem;
  }

  .ohasa-head {
    font-size: 1rem;
  }

  .form-container {
    order: 1;
  }

  .image-container {
    order: 2;
  }

  .container-fluid {
    background-color: transparent;
    padding: 20px;
  }

  form {
    background-color: var(--white);
    padding: 13px;
    border-radius: 10px;
    margin-bottom: 14px;
  }
}

/* navbar start */

.header {
  background-color: var(--white);
  color: var(--white);
}

.top-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 0;
  background-color: var(--red);
  flex-wrap: wrap;
}

.top-bar span {
  font-size: 14px;
  margin: 2px 5px;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
  flex-wrap: wrap;
  background: var(--navy-blue);
}

.logo img {
  height: 63px;
  background-color: var(--white);
  padding: 5px;
  border-radius: 5px;
  margin-bottom: 0px;
}

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

.company-name h1 {
  margin: 0;
  font-size: 24px;
  color: var(--white);
}

.company-name p {
  margin: 5px 0 0;
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 2px;
}

nav {
  background-color: var(--gold);
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover {
  background-color: var(--red) !important;
  color: var(--white);
  text-decoration: none !important;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--light-red);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: var(--white);
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: var(--gold);
  color: var(--red);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.mobile-menu-btn {
  display: none;
  margin-top: 20px;
  color: var(--white);
  background: var(--red);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    border-bottom: 4px solid var(--gold);
  }

  .container-fluid {
    padding: 20px !important;
  }

  .container {
    padding: 20px !important;
  }

  .container1 {
    padding: 20px !important;
  }

  .container2 {
    padding: 20px !important;
  }

  .container3 {
    padding: 20px !important;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  nav ul {
    display: none;
    flex-direction: column;
  }

  nav ul.show {
    display: flex;
  }

  .dropdown-content {
    position: static;
    background-color: var(--light-red);
  }

  .dropdown-content a {
    color: var(--white);
  }

  .top-bar span:nth-child(1) {
    display: none;
  }

  .company-name p {
    font-weight: bold;
    letter-spacing: 1px;
  }

  .logo img {
    height: 52px;
  }
}


.container {
  max-width: 1200px !important;
  padding: 2rem 2rem 0rem 2rem;
  margin: 0 auto;
}

.page-title {
  color: var(--red);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Accordion Styles */

 /* Modern Header Styles */
 .header3 {
  background: linear-gradient(135deg, var(--navy-blue) 0%, #0a3d7c 100%);
  color: var(--white);
  padding: 1.5rem 0;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
}

.header-icon {
  font-size: 2rem;
  margin-right: 1rem;
  color: var(--red);
}

.header-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.page-title {
  font-size: 2.2rem;
  color: var(--navy-blue);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--light-red) 100%);
  border-radius: 2px;
}

.accordion {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 3rem;
}

.accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  width: 100%;
  padding: 1.5rem;
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: var(--navy-blue);
  font-weight: 600;
  transition: var(--transition);
}

.accordion-button:hover {
  background-color: rgba(7, 37, 71, 0.02);
}

.accordion-button i {
  margin-right: 15px;
  color: var(--red);
  font-size: 1.3rem;
  transition: var(--transition);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--gray-100);
}

.accordion-content.active {
  max-height: 500px;
}

.download-title {
  font-size: 1.1rem;
  color: var(--navy-blue);
  margin: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.download-title i {
  color: var(--red);
  font-size: 1rem;
}

.download-list {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
}

.download-item {
  margin: 0.8rem 0;
  background: var(--white);
  border-radius: 8px;
  transition: var(--transition);
}

.download-item:hover {
  transform: translateX(5px);
}

.download-link {
  color: var(--navy-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  font-weight: 500;
  transition: var(--transition);
  gap: 0.8rem;
}

.download-link i {
  color: var(--red);
  font-size: 1.1rem;
}

.download-link:hover {
  color: var(--red);
}

.accordion-button[aria-expanded="true"] {
  background-color: var(--navy-blue);
  color: var(--white);
}

.accordion-button[aria-expanded="true"] i {
  color: var(--red);
  transform: rotate(180deg);
}

.container6 {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.header4 {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 2px 4px var(--shadow);
}

.table-container {
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

th {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  border: 1px solid var(--gray-200);
}

td {
  padding: 1rem;
  border: 1px solid var(--gray-200);
  text-align: left;
  color: var(--navy-blue);
}

tr:nth-child(even) {
  background-color: var(--light-yellow);
}

tr:hover {
  background-color: var(--gray-100);
  transition: var(--transition);
}

.check-mark {
  text-align: center;
  color: var(--navy-blue);
  font-weight: bold;
}

@media (max-width: 768px) {
  .table-container {
    overflow-x: auto;
  }

  h2 {
    font-size: 1.5rem !important;
  }
  
  th, td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}

.container7 {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.intro-section {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px var(--shadow);
}

.requirement-section {
  background-color: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px var(--shadow);
}

.requirement-section:hover {
  transform: translateY(-2px);
  transition: var(--transition);
}

h1 {
  color: var(--red);
  font-size: 2rem;
}

.h2-title {
  color: var(--navy-blue);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--red);
}

.p-heading {
  color: var(--navy-blue) !important;
}

.section-description {
  color: var(--gray-100);
  margin-bottom: 1rem;
}

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

.ul-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--navy-blue);
}

.ul-list li::before {
  content: "•";
  color: var(--red);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.ul-list li:hover {
  background-color: var(--light-yellow);
  border-radius: 4px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .container {
    margin: 1rem auto;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  .h2-title {
    font-size: 1.25rem;
  }
  
  .intro-section, .requirement-section {
    padding: 1.5rem;
  }
}

h2.iso-state-head,
h2.iso-state-text {
  font-weight: 700;
  color: var(--gold);
  text-align: left !important;
  /* Gold color for headings */
}

p.iso-description {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--white);
  /* White text for description */
}

.iso-points {
  margin-top: 20px;
}

.iso-point {
  display: flex;
  align-items: flex-start;
}

.iso-point::before {
  content: "➤ ";
}

.iso-point i {
  margin-right: 15px;
  font-size: 18px;
  color: var(--gold);
  /* Gold color for check icons */
}

.iso-point p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  /* White text for key points */
}

.container1 {
  max-width: 1500px !important;
  padding: 2rem 2rem 0rem 2rem;
  margin: 0 auto;
}

.header1 {
  background-color: var(--white);
  color: var(--navy-blue);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header1 h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--red);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.header1 h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid var(--red);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.header1 p {
  font-size: 1.1rem;
}

.section1 {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section1 h2 {
  color: var(--red);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: var(--light-yellow);
  color: var(--navy-blue);
  border-radius: 8px;
  position: relative;
  padding-left: 2.5rem;
}

.feature-list li::before {
  content: "•";
  color: var(--red);
  font-size: 1.5rem;
  position: absolute;
  left: 1rem;
}

.laws-list {
  list-style: none;
}

.laws-list li {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border-bottom: 1px solid var(--light-red);
  color: var(--navy-blue);
}

.question-section {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.question-section h2 {
  color: var(--red);
  border-left-color: var(--white);
}

@media (max-width: 768px) {
  .container1 {
      padding: 1rem;
  }

  .header1 h1 {
      font-size: 2rem;
  }

  .section1 {
      padding: 1.5rem;
  }
}

.container2 {
  max-width: 1500px !important;
  padding: 0rem 2rem 0rem 2rem;
  margin: 0 auto;
}

.use-cases-header {
  background: linear-gradient(135deg, var(--navy-blue), var(--red));
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.use-case-card {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--gold);
  transition: transform 0.2s ease;
}

.use-case-card:hover {
  transform: translateX(10px);
}

.use-case-title {
  color: var(--red);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.use-case-title::before {
  content: "→";
  color: var(--gold);
  margin-right: 0.5rem;
  font-weight: bold;
}

.use-case-content {
  color: var(--navy-blue);
  line-height: 1.6;
}

.intro-text {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.highlight {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .container2 {
      padding: 1rem;
  }

  .use-case-card {
      padding: 1rem;
  }

  .use-case-title {
      font-size: 1.1rem;
  }
}

.container3 {
  max-width: 1500px !important;
  padding: 2rem;
  margin: 0 auto;
}

.process-section {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.process-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 3px solid var(--red);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.process-steps {
  list-style: none;
}

.process-step {
  margin-bottom: 1rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.2s ease;
}

.process-step:hover {
  transform: translateX(10px);
  background-color: rgba(255, 255, 255, 0.1);
}

.step-number {
  background-color: var(--red);
  color: var(--navy-blue);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.faq-section {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-title {
  color: var(--red);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
}

.faq-question {
  color: var(--navy-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
  padding: 1rem;
  background-color: var(--light-yellow);
  border-radius: 8px;
}

.faq-answer {
  color: var(--navy-blue);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  padding: 0 1rem;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background-color: var(--navy-blue);
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background-color: var(--gold);
}

.stat-card:hover {
  transform: translateY(-5px);
  background-color: var(--light-red);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .container3 {
      padding: 1rem;
  }

  .stats-section {
      grid-template-columns: 1fr;
  }

  .process-title, .faq-title {
      font-size: 1.5rem;
  }

  .stat-number {
      font-size: 2rem;
  }
}

/* footer start */

.footer-container {
  background: var(--navy-gradient);
  color: var(--white);
  padding: 20px 0px 0px 0px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
  border-top: 5px solid var(--gold);
}

.footer-top .row {
  margin-left: 0;
}

.footer-top h5 {
  color: var(--red) !important;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

.footer-top ul li {
  margin-bottom: 10px;
}

.footer-top ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-top ul li a:hover {
  color: var(--red);
  /* Change color on hover */
}

.footer-top .small {
  font-size: 13px;
  text-align: justify;
}

.footer-bottom {
  background-color: var(--white);
  padding: 10px 0;
  text-align: center;
  color: var(--white);
  font-size: 14px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.15);
  /* Add subtle shadow */
}

.footer-bottom .company-info {
  margin: 0;
  font-weight: bold;
  color: var(--red);
  /* Gold text for company info */
}

@media (max-width: 767px) {
  .footer-top h5 {
    margin-top: 10px;
  }
}

.footer-social {
  text-align: center;
  margin: 20px 0;
}

.footer-social h5 {
  font-size: 18px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons .social-icon {
  text-decoration: none;
  color: var(--white);
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons .social-icon:hover {
  color: var(--red);
  transform: scale(1.2);
}
/* footer end */

/* sitepmap */
.sitemap-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 6px var(--shadow);
  border-radius: 8px;
}

.sitemap-container h1 {
  font-size: 24px;
  color: var(--red);
  text-align: center;
  margin-bottom: 20px;
}

.sitemap-container ul {
  list-style-type: none;
  padding: 0;
}

.sitemap-container ul li {
  margin: 10px 0;
}

.sitemap-container ul li a {
  text-decoration: none;
  color: var(--navy-blue);
  font-weight: bold;
  transition: var(--transition);
}

.sitemap-container ul li a:hover {
  color: var(--red);
}

/* sitemap end */

.form-header {
    background-color: var(--navy-blue);
    padding: 10px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.form-header h1 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--white) !important;
}

.form-header p {
    font-size: 14px;
    color: var(--white) !important;
    margin-bottom: 0rem !important;
}

/* Radio sections grid */
.radio-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  background-color: #fff;
}

.radio-section {
  background-color: var(--light-yellow);
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.8);
}

.radio-section h3 {
  color: var(--navy-blue);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.radio-group {
  display: flex;
  gap: 20px;
}

.radio-item {
  display: flex;
  /* align-items: center; */
  gap: 6px;
}

.radio-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--navy-blue);
  border-radius: 50% !important;
  outline: none;
  cursor: pointer;
  position: relative;
}

.radio-item input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--navy-blue);
  border-radius: 50%;
}

.radio-item label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

/* Existing styles continue */
.content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .content {
        grid-template-columns: 1fr;
    }
    .radio-group {
        flex-direction: column;
        gap: 10px;
    }
}

/* Rest of the previous styles... */
.class-card {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 24px;
    border-radius: 8px;
}

.class-card h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.price {
    color: var(--light-red);
    font-size: 20px;
    font-weight: bold;
    margin: 16px 0;
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.features-list li::before {
    content: "✓";
    color: var(--light-yellow);
    margin-right: 8px;
}

.form-container {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.8);
}

/* Previous form styles remain the same... */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.required::after {
    color: var(--red);
    margin-left: 4px;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 2px rgba(7, 37, 71, 0.1);
}

.submit-btn {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #051c35;
}

.coupon-code {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}

.coupon-code span {
    font-weight: bold;
}

.header5 {
  background: var(--navy-blue);
  padding: 20px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 2px 10px var(--shadow);
}

.header5 h1 {
  color: var(--white);
  font-size: 24px;
  margin: 0;
}

.header5 .min-order {
  color: var(--gold);
  font-size: 18px;
  margin-top: 8px;
  font-weight: 500;
}

.main-content1 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.container8 {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow);
  width: 100%;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.form-title {
  color: var(--navy-blue);
  font-size: 24px;
  margin-bottom: 24px;
  font-weight: 700;
}

.subtitle {
  color: #666;
  font-size: 14px;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

label {
  display: block;
  color: var(--navy-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.required {
  color: var(--red);
  margin-left: 4px;
}

input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  outline: none;
  background: var(--white);
}

input:focus {
  border-color: var(--navy-blue);
  box-shadow: 0 0 0 4px rgba(7, 37, 71, 0.1);
}

.submitBtn {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.submitBtn:hover {
  background: var(--light-red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(204, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .container8 {
      padding: 24px;
  }

  .form-title {
      font-size: 20px;
  }

  input {
      padding: 10px 14px;
  }

  .header5 h1 {
      font-size: 20px;
  }
}

/* blog css */

.container9 {
  max-width: 1440px !important;
  padding: 2rem;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Responsive grid adjustments */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px var(--shadow);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--navy-gradient);
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
}

.blog-content {
  padding: 24px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-blue);
  margin: 0 0 12px 0;
}

.blog-description {
  font-size: 15px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.read-more {
  display: inline-block;
  background: var(--navy-gradient);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.read-more:hover {
  background: var(--navy-blue);
  transform: translateY(-2px);
}

/* blog details */

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.blog-header {
  background: var(--navy-blue);
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.category {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category:hover {
  transform: translateY(-2px);
  background: #ffe44d;
}

.blog-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--white);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--gold);
  font-size: 0.95rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-image-container {
  max-width: 1000px;
  margin: -4rem auto 2rem;
  position: relative;
  padding: 0 2rem;
}

.blog-image {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  /* height: 90vh; */
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-image:hover img {
  transform: scale(1.02);
}

.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  color: var(--navy-blue) !important;
}

.blog-description {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy-blue);
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50px;
  transition: var(--transition);
  margin-top: 1rem;
}

.read-more:hover {
  background: var(--gold);
  gap: 1rem;
}

@media (max-width: 768px) {
  .blog-header {
      padding: 2rem 1rem;
  }

  .blog-image-container {
      padding: 0 1rem;
      margin-top: -2rem;
  }

  .blog-meta {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
  }

  .blog-content {
      padding: 1.5rem;
  }
}

#content-body {
  background: var(--gray-100);
  color: var(--navy-blue);
  border-top: 4px solid var(--red);
  border-radius: 3px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
}

#content-body1 {
  background: var(--gray-100);
  color: var(--navy-blue);
  border-top: 4px solid var(--red);
  border-radius: 3px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.75);
  max-width: 1136px !important;
}

strong {
  color: var(--light-red);
}

#main-form {
  background-color: var(--white);
    padding: 20px !important;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}