
	.error
	{
	color: #f44336;
	}
		
		.iti {
      width: 100%;
    }

    .iti__selected-flag {
      padding-left: 10px !important;
      border-right: 1px solid #ddd;
    }

    .error-msg {
      color: red;
      font-size: 13px;
      margin-top: 4px;
     
    }

    .valid-msg {
      color: green;
      font-size: 13px;
      margin-top: 4px;
      display: none;
    }

    *{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif}
    body{line-height:1.6;color:#333;background:#fff}
    a{text-decoration:none;color:inherit}
    header{background:#4a148c;color:#fff;}
    .topbar{display:flex;justify-content:space-between;align-items:center;padding:8px 5%;font-size:14px;border-bottom:1px solid rgba(255,255,255,0.2)}
    /*.navbar{display:flex;justify-content:space-between;align-items:center;padding:15px 5%}*/

/* TOPBAR */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 5%;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  background: linear-gradient(90deg, #4a148c, #5a23a3);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.topbar div {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* NAVBAR */


nav a {
  /*margin: 0 15px;*/
  color: #fff;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: #4a148c; /* gold underline on hover */
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
  border-radius: 2px;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #ffd700; /* hover color */
}
    nav a{color:#fff;font-weight:500}
    .hero1{background:url('./assets/img/contact-us-uk-ltd.png') center/cover no-repeat;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff; height: fit-content;}
    .hero1 h1{font-size:32px;font-weight:700}
    .section{padding:70px 5%}
    .services,.team{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px;margin-top:40px}
    .card{padding:25px;background:#f9f9f9;border:1px solid #ddd;border-radius:10px;text-align:center}
    .about{display:flex;flex-wrap:wrap;align-items:center;gap:40px}
    .about img{flex:1;min-width:280px;border-radius:10px}
    .about div{flex:1}
    .stats{display:flex;justify-content:space-around;flex-wrap:wrap;margin-top:40px;text-align:center}
    .stats div{flex:1;min-width:150px}
  .consultation{display:flex;flex-wrap:wrap;align-items:center;gap:40px} form{flex:1;gap:15px} 
    .consultation h2{text-align:center;align:center; font-size:22px; font-weight:700; color:#4a148c;} 
	 .consultation h2,button{text-align:center;align:center;} 
	.consultation {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
}




    .counter{font-size:32px;font-weight:700;color:#0c1b36}
	.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 25px;
  margin-top: 40px;
}

.hero1 {
  position: relative;
	
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero1::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55);
}
.hero1 > div {
  position: relative;
  z-index: 1;
}
.hero1 h1 {
  font-size: 50px;
  margin-bottom: 15px;
}
.hero1 p {

	
  margin-bottom: 25px;
	text-align:center;
	color:#fff;
}
.hero1 a.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #4a148c;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}
.hero1 a.btn:hover { background:#e68900; }

.card {
  padding: 25px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.consultation form {
	height:fit-content;
  background: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
form input:focus, form textarea:focus {
  border-color: #0c1b36;
  outline: none;
  box-shadow: 0 0 0 2px rgba(12,27,54,0.15);
}

.stats div {
  background: #f4f6fb;
  margin: 10px;
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s;
}
.stats div:hover { transform: translateY(-5px); }


.consultation {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
}

.consult-info {
	height:fit-content;
	width:635px;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
              url('../../assets/img/consul3.avif')
              no-repeat center/cover;
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.consult-info h2,
.consult-info p,
.consult-info .highlights h3,
.consult-info .highlights p {
  color: #fff;
}
	 

.consult-info h2
	  { color:#fff; font-size:16px;}

.consult-info .subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
  color:#fff;
  font-weight:700;
margin-top:15px;
}


.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
padding:7px;
}

.highlights div {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.highlights div:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.highlights h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.highlights p {
  font-size: 15px;
  line-height: 1.4;
  color:#fff;
  font-weight:700;
}



.service-portfolio {
  padding: 20px 20px;
  background: #f9fafc;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #222;
}

.services-grid1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 per row */
  gap: 25px;
  max-width: 1300px;
  margin: auto;
}

.service-card1 {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.service-card1 .icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.service-card1 h3 {
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #833BDF;
	font-weight:700;
}

.service-card1 p {
  font-size: 16px;
  line-height: 1.6;
  text-align:justify-content;
  color: #444;
}

.service-card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: #fff;
}

.service-card1:hover h3,
.service-card1:hover p {
  color: #fff;
}

.service-card1:hover .icon {
  transform: scale(1.2);
}

/* Responsive breakpoints */
@media (max-width: 992px) {
  .services-grid1 {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .services-grid1 {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}


.service-card1 {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center; /* center all content */
  overflow: hidden;
}

.service-card1 .service-img {
  display: block;
  margin: 0 auto 15px auto; /* center image */
  max-width: 370px;
	height:300px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card1 h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #4a148c;
	font-weight:700;
}

.service-card1:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #4a148c, #00b4d8);
  color: #fff;
}

.service-card1:hover h3,
.service-card1:hover p {
  color: #fff;
}

.service-card1:hover .service-img {
  transform: scale(1.1);
}



.error-msg {
  color: red;
  font-size: 13px;
  margin-top: 4px;
 
	
}

input.error, select.error, textarea.error {
  border-color: red !important;
}


/* Style for input, select, textarea */
form input, 
form select, 
form textarea {
  width: 100%;
  padding: 5px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #fff;
  appearance: none; /* remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Focus effect */
form input:focus, 
form select:focus, 
form textarea:focus {
  border-color: #007BFF;
}

/* Custom select wrapper */
.form-group {
	margin-top:-7px;
  position: relative;
}

/* Custom arrow for select */
.form-group select {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M1%200l4%204%204-4%201%201-5%205-5-5z%22%20fill%3D%22%23666%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 30px; /* make space for arrow */
  cursor: pointer;
}
/* Flex row for paired fields */

	  

/* Ensure inputs and selects inside row flex evenly */
.form-row > * {
  flex: 1;
}




/* Stylish Section Title */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 50px;
  position: relative;
  color: #222;
  font-family: 'Poppins', sans-serif;
}

.section-title span {
	font-size:32px;
  color: #007bff; /* blue highlight for first word */
}

.section-title .highlight {
    /*background: linear-gradient(90deg, #ff512f, #dd2476);*/
	background:linear-gradient(90deg, #7546de, #1d0b4c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  /*background: linear-gradient(90deg, #007bff, #ff512f);*/
  background:linear-gradient(90deg, #007bff, #0c0a12);
  margin: 15px auto 0;
  border-radius: 2px;
}




/* Service Card Image Full Width */
.service-card1 .service-img {
  width: 100%;
  height: 200px;         /* fixed height for uniform look */
  object-fit: cover;     /* crop & fit nicely */
  border-radius: 10px;   /* rounded corners for style */
  margin-bottom: 15px;
  display: block;
background-size: cover;
	
}


.service-card1 {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card1:hover {
  transform: translateY(-8px);
}



.hero1 {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../../assets/img/quote/Banner-4.webp') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero1-content {
	    margin-top: -75px;
  max-width: 1300px;
 
  animation: fadeInUp 1.2s ease;
}

.hero1 h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hero1 h1 span {
  color: #4a148c;
}

.hero1 h2 {
  font-size: 25px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #f5f5f5;
}
	  .hero1 h3 {
  font-size: 23px;
  margin-bottom: 15px;
  font-weight: 700;
  color:#dbbea5;
}

.hero1 .tagline {
	text-align:center;
	margin:0px 50px;
  font-size: 24px;
  font-weight: 700;
  color: #ed830;
  margin-bottom: 20px;
}

.hero1 .description {
	text-align:center;
	margin:0px 50px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
text-align:justify;
  color: #ddd;
}

.cta-btn {
  display: inline-block;
  padding: 14px 35px;
  font-size: 18px;
  font-weight: bold;
  background: #4a148c;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-btn:hover {
  background: #833b9;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


.cta-section {
  background: linear-gradient(135deg, #1e1e2f, #2c3e50);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  width: 100%;
}

.cta-container-full {
  width: 100%;
  padding: 0 50px; /* adjust left-right padding */
  box-sizing: border-box;
}

.cta-container-full p{
	text-align:center;
}
.cta-subtext {
  font-size: 20px;
  color: #4a148c;
  margin-bottom: 15px;
  font-weight: 500;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.cta-section h2 span {
  color: #4a148c;
}

.cta-highlight {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #f5f5f5;
}

.cta-btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: bold;
  background: #4a148c;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cta-btn:hover {
  background: #fff;
  color:#4a148c;
  transform: translateY(-3px);
}



/* hero1-style CTA Section with new background */
.hero1-style-cta {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1508830524289-0adcbe822b40?auto=format&fit=crop&w=1950&q=80') no-repeat center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  width: 100%;
}

.hero1-style-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.hero1-style-cta .hero1-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
  animation: fadeInUp 1s ease;
}

.hero1-style-cta h2 {
  font-size: 29px;
  font-weight: 700;
  margin: 20px 0;
}

.hero1-style-cta h2 span {
  color: #4a148c;
}

.hero1-style-cta .cta-subtext {
  font-size: 20px;
  color: #f5f5f5;
  margin-bottom: 15px;
}

.hero1-style-cta .cta-highlight {
  font-size: 18px;
  font-weight: 600;
  color: #ddd;
  margin-bottom: 30px;
}

.hero1-style-cta .cta-btn {
  display: inline-block;
  padding: 14px 15px;
  font-size: 18px;
  font-weight: bold;
  background: #4a148c;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.hero1-style-cta .cta-btn:hover {
  background: #fff;
  color: #4a148c;
  transform: scale(1.05);
}




// Counter animation

document.addEventListener("DOMContentLoaded", () => {
  document.querySelectorAll(".highlights h3[data-target]").forEach(animateCounter);
});

.consult-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.consult-keywords span {
  background: #f0f3ff; 
  color: #4a148c;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.consult-keywords span:hover {
  background: #4a148c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.consult-list {
  list-style: none;
  margin: 25px 0 0;
  padding: 0;
}

.consult-list li {
	margin-top:16px;
  position: relative;
  background: #4a148c;   /* Purple background */
  color: #fff;           /* White text */
  font-weight: 600;
  padding: 14px 20px 14px 50px; /* left padding for tick */
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;   /* spacing between items */
  transition: all 0.3s ease;
}

.consult-list li::before {
  content: "✔";              /* Tick mark */
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: #c2c8c3;       /* Green circle */
  color: #fff;               /* White tick */
  font-size: 12px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consult-list li:hover {
  background: #6a1b9a;
  transform: translateX(5px); /* slight slide effect */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.form-row {
    display: flex
;
    /* gap: 15px; */
    /* margin-bottom: 15px; */
}

.section h2 {
    /* text-align: center; */
	margin-top:-8px;
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: #
		;
}
	  .section1 h2 {
    /* text-align: center; */
    font-size: 1.4rem;
    margin-bottom: 3px;
    font-weight: 700;
    color: #fff;
}
	  
	  
.section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #833B95;
  margin: 10px auto;
}
	  
	   .error {
      color: red;
      font-style: italic;
  }
	   input.invalid {
      border-color: red;
  }
	  

	  
.read-more {
  display: inline-block;
  padding: 10px 10px;
  background: linear-gradient(135deg, #6a11cb, #833B95); /* Gradient */
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 16px;     /* Rounded pill shape */
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Soft shadow */
}

.read-more:hover {
  background: linear-gradient(135deg, #2575fc, #833b95); /* Reverse gradient */
  transform: translateY(-2px); /* Lift on hover */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
	color:#fff;
}
	  
#charCount {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: #666;
}
	  
	  
	  
	  .hero1-content p{
		  width:900px;font-size:18px;text-align:justify;
	  }
	  
	  
	  

	  
.hero1 {
  width: 100%;
  background: url('../../assets/img/quote/Banner-4.webp') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
  padding: 80px 20px; /* spacing for desktop */
  box-sizing: border-box;
}

.hero1-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading styles */
.hero1 h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero1 h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero1 p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero1 {
    padding: 60px 15px;
  }
  .hero1 h2 {
    font-size: 32px;
  }
  .hero1 h3 {
    font-size: 20px;
  }
  .hero1 p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero1 {
    padding: 50px 15px;
  }
  .hero1 h2 {
    font-size: 26px;
  }
  .hero1 h3 {
    font-size: 18px;
  }
  .hero1 p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero1 {
    padding: 40px 10px;
  }
  .hero1 h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .hero1 h3 {
    font-size: 16px;
    line-height: 1.4;
  }
  .hero1 p {
    font-size: 14px;
    line-height: 1.6;
  }
}
.hero1-overlay {
  background: rgba(0, 0, 0, 0.5); /* dark overlay for text readability */
  padding: 40px;
  border-radius: 8px;
} 

	  
	  
.hero1 {
  width: 100%;
 
  background: url('../../assets/img/quote/Banner-4.webp') no-repeat center center / cover;
  background-position: center;
    height:300px;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover
}

/* Tablet view */
@media (max-width: 1024px) {
  .hero1 {
    min-height: 50vh;
    background-position: center top; /* show top area */
    padding: 60px 15px;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  .hero1 {
    min-height: 40vh;
    background-position: top center; /* keeps important part visible */
    padding: 50px 15px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero1 {
    min-height: 35vh;
    padding: 40px 10px;
  }
}
	  
	  
	  
.hero1-content {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.hero1 h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem); /* Responsive font size */
  line-height: 1.3;
  margin-bottom: 15px;
  word-wrap: break-word;
}

.hero1 h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  margin-bottom: 20px;
  line-height: 1.4;
  word-wrap: break-word;
}

.hero1 p {
  font-size: clamp(1rem, 2.5vw, 1.7rem);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 70%;   /* Prevent overflow */
  word-wrap: break-word;
}
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #007bff; /* Blue tick */
}
	input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
  accent-color: #833B95; /* Purple tick */
}  
	
	  
	  /* Hide on mobile */
@media (max-width: 768px) {
  .consult-list {
    display: none;
  }
}

/* Show on desktop */
@media (min-width: 769px) {
  .consult-list {
    display: block;
  }
} 
.preloader { display:none;
	  }

	
/* Mobile nav */
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 70px;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(33, 37, 41, 0.95);
  transition: all 0.3s;
  z-index: 999;
}
.navbar-mobile ul {
  display: block;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: #fff;
}
.navbar-mobile .dropdown ul {
  display: none;
}
.navbar-mobile .dropdown-active {
  display: block !important;
}
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  #navbar ul {
    display: none;
  }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  div[style*="margin-bottom:10px;"][style*="padding:20px;"] {
    margin-top: 30px !important;
  }
  div[style*="margin-bottom:10px;"][style*="padding:20px;"] h4 {
    font-size: 32px !important;
  }
  div[style*="margin-bottom:10px;"][style*="padding:20px;"] p {
    font-size: 18px !important;
  }
}
    body { font-family: Arial, sans-serif; background: #f9f9f9; }
    .form-container { max-width: 800px; margin: 30px auto; padding: 20px; background: #fff; border: 1px solid #ddd; border-radius: 8px; }
    .form-container h2 { margin-bottom: 20px; }
    .form-row { display: flex; gap: 20px; margin-bottom: 15px; }
    .form-group { flex: 1; display: flex; flex-direction: column; }
    label { font-size: 14px; margin-bottom: 5px; }
    input, select, textarea { padding: 10px; font-size: 14px; border: 1px solid #ccc; border-radius: 5px; }
    textarea { resize: vertical; min-height: 20px; }
    .form-footer { margin-top: 15px; }
    .checkbox-group { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; opacity: 0.5; pointer-events: none; }
    .checkbox-group.enabled { opacity: 1; pointer-events: auto; }
    #captchaWrapper { opacity: 0.5; pointer-events: none; margin-bottom: 15px; }
    #captchaWrapper.enabled { opacity: 1; pointer-events: auto; }
    button { padding: 12px 20px; background: #0073e6; color: #fff; border: none; border-radius: 5px; cursor: pointer; }
    button:disabled { background: #ccc; cursor: not-allowed; }

 