/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
  font-size: clamp(16px, 2.8vw, 18px); 
}

/* Top Bar */
.top-bar {
  background-color: rgb(21, 68, 199);
  color: white;
  padding: 10px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(14px, 2.8vw, 16px);
  flex-wrap: wrap;
}

.top-left i,
.top-left span {
  margin-right: 8px;
}

.top-left a,
.top-right a {
  color: white;
  margin-left: 10px;
  text-decoration: none;
  font-size: clamp(14px, 2.8vw, 16px); 
}

.top-left a:hover,
.top-right a:hover {
  text-decoration: underline;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Header */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 15px 5%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: clamp(50px, 10vw, 70px);
  width: auto;
}

.nav-menu {
  flex: 1;
  margin-left: 20px;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(5px, 1vw, 10px);
  padding: 0;
  margin: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 10px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  font-size: clamp(16px, 2.8vw, 18px); 
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff5e3a;
}

.paynow a {
  display: inline-block;
  padding: clamp(8px, 1.5vw, 12px) clamp(15px, 2vw, 25px);
  background-color: #ff5e3a;
  color: white;
  border-radius: 20px;
  font-weight: 500;
  font-size: clamp(14px, 2.2vw, 18px); 
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
  white-space: nowrap;
}

.paynow a:hover {
  background-color: #e04e2a;
  color: white;
  transform: scale(1.05);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-content a {
  padding: 4px 12px;
  color: #333;
  white-space: nowrap;
  display: block;
  font-size: clamp(18px, 2.8vw, 20px);
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
  color: #ff5e3a;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(to bottom, #6b48ff, #4b2dc1);
  color: white;
  list-style: none;
  margin: 0;
}

.breadcrumbs li {
  margin-right: 10px;
}

.breadcrumbs li a {
  color: white;
  text-decoration: none;
  font-size: clamp(1.3rem, 2.8vw, 1.5rem); 
  transition: text-decoration 0.3s;
}

.breadcrumbs li a:hover {
  text-decoration: underline;
}

.breadcrumbs li::after {
  content: "•";
  margin-left: 10px;
  color: #ff6347;
}

.breadcrumbs li:last-child::after {
  content: "";
}

/* Partnership Form Section */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 5%;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.container h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  color: #333;
  text-align: center;
  margin: 2rem 0 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

.container h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  border-radius: 3px;
}

.description {
  text-align: center;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

#partnerForm {
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 10px;
}

#partnerForm h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #333;
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff5e3a;
  box-shadow: 0 0 8px rgba(255, 94, 58, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.radios,
.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radios label,
.checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: #333;
  cursor: pointer;
}

.radios input,
.checkboxes input {
  accent-color: #ff5e3a;
}

.submit-btn {
  display: block;
  margin: 2rem auto 0;
  padding: clamp(10px, 1.5vw, 12px) clamp(20px, 2.5vw, 30px);
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  color: white;
  border: none;
  border-radius: 25px;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background: linear-gradient(to right, #e04e2a, #ff7b50);
  transform: scale(1.05);
}

.benefits {
  padding: 2rem;
  background: rgba(255, 94, 58, 0.05);
  border-radius: 10px;
  margin-top: 2rem;
}

.benefits h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: #333;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.benefits ul {
  list-style: none;
  padding: 0;
}

.benefits ul li {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: #333;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits ul li::before {
  content: '✔';
  color: #ff5e3a;
  font-weight: bold;
}

/* Footer Section */
footer {
  background: linear-gradient(135deg, #0d6efd 0%, #003087 100%);
  color: #fff;
  padding: 3rem 1.2rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  opacity: 0.15;
  z-index: 1;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-content .locations {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.footer-content .locations p:first-child {
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  margin-bottom: 0.8rem;
  color: #fff;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.footer-content .locations p:last-child {
  color: #e0e7ff;
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 2;
}

.footer-section {
  margin-bottom: 1.5rem;
}

h4 {
  font-size: clamp(1.5rem, 3.2vw, 1.7rem);
  margin-bottom: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.8rem;
}

h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  border-radius: 3px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer ul li a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  transition: color 0.3s, transform 0.3s;
  font-weight: 400;
  display: inline-block;
  position: relative;
}

footer ul li a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  transition: width 0.3s ease;
}

footer ul li a:hover::before {
  width: 100%;
}

footer ul li a:hover {
  color: #ff5e3a;
  transform: translateX(8px);
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #e0e7ff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 400;
  transition: color 0.3s;
}

.contact-info p:hover {
  color: #ff5e3a;
}

.contact-info p i {
  color: #ff5e3a;
  font-size: clamp(1.6rem, 3.8vw, 2rem);
  transition: transform 0.3s;
}

.contact-info p:hover i {
  transform: scale(1.2);
}

.social-container {
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  text-align: center;
  margin-top: 1.5rem;
  transition: background 0.3s;
}

.social-title {
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3.2vw, 1.7rem);
  color: #fff;
  letter-spacing: 1.2px;
}

.Social-icons {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.8rem;
  justify-content: center;
}

.Social-icons a {
  color: #e0e7ff;
  font-size: clamp(1.8rem, 3.8vw, 2rem);
  transition: color 0.3s, transform 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.Social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
  background: #ff5e3a;
}

.footer-bottom {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 1600px;
  text-align: center;
  padding: 1.5rem 0.75rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: #e0e7ff;
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 400;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  position: relative;
}

.footer-bottom p {
  margin: 0;
  letter-spacing: 0.6px; 
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(to right, #ff5e3a, #ff8c68);
  border-radius: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: clamp(13px, 2.5vw, 15px);
  }

  .top-left,
  .top-right {
    justify-content: center;
    width: 100%;
  }

  .top-left a,
  .top-right a {
    font-size: clamp(13px, 2.5vw, 15px); 
  }

  .main-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
  }

  .nav-menu {
    display: none;
    width: 100%;
    margin-left: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    padding: 10px 15px;
    width: 100%;
    font-size: clamp(15px, 2.5vw, 17px); 
  }

  .paynow a {
    width: calc(100% - 30px);
    margin: 10px 15px;
    text-align: center;
    padding: clamp(8px, 1.5vw, 10px) clamp(15px, 2vw, 20px);
    font-size: clamp(13px, 2.2vw, 16px); 
  }

  .hamburger {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    padding-left: 20px;
    min-width: 100%;
  }

  .dropdown-content a {
    padding: 4px 12px;
    font-size: clamp(17px, 2.5vw, 19px); 
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .container {
    margin: 1.5rem 3%;
    padding: 0 3%;
  }

  .container h1 {
    font-size: clamp(1.6rem, 3.2vw, 2rem);
    margin: 1.5rem 0 0.8rem;
  }

  .description {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    margin-bottom: 1.5rem;
  }

  #partnerForm {
    padding: 1.5rem;
  }

  #partnerForm h2 {
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    margin-bottom: 1.2rem;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .form-group label {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }

  .form-group input,
  .form-group textarea {
    font-size: clamp(0.85rem, 2vw, 1rem);
    padding: 0.6rem;
  }

  .radios,
  .checkboxes {
    gap: 0.8rem;
  }

  .radios label,
  .checkboxes label {
    font-size: clamp(0.85rem, 2vw, 1rem);
  }

  .submit-btn {
    padding: clamp(8px, 1.2vw, 10px) clamp(15px, 2vw, 20px);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }

  .benefits {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .benefits h2 {
    font-size: clamp(1.3rem, 2.8vw, 1.6rem);
    margin-bottom: 1.2rem;
  }

  .benefits ul li {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    padding: 0 1.2rem;
  }

  .footer-content .locations {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .footer-content .locations p:first-child {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    margin-bottom: 0.6rem;
  }

  .footer-content .locations p:last-child {
    font-size: clamp(1rem, 2.8vw, 1.2rem);
  }

  h4 {
    font-size: clamp(1.3rem, 3.2vw, 1.5rem);
    margin-bottom: 1rem;
  }

  footer ul li {
    margin-bottom: 0.5rem;
  }

  footer ul li a,
  .contact-info p {
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  }

  .contact-info p {
    margin-bottom: 0.5rem;
  }

  .contact-info p i {
    font-size: clamp(1.6rem, 3.5vw, 1.8rem);
  }

  .social-container {
    padding: 1.5rem 0.8rem;
    margin-top: 1.5rem;
  }

  .social-title {
    font-size: clamp(1.3rem, 3.2vw, 1.5rem);
    margin-bottom: 0.5rem;
  }

  .Social-icons {
    gap: 0.9rem;
    margin-top: 0.5rem;
  }

  .Social-icons a {
    font-size: clamp(1.6rem, 3.5vw, 1.8rem);
    width: 40px;
    height: 40px;
  }

  .footer-bottom {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: 1rem 0.5rem;
    margin-top: 1.2rem;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }

  .top-bar {
    font-size: clamp(13px, 2.2vw, 14px); 
    padding: 8px 3%;
  }

  .top-left i,
  .top-left span,
  .top-right a {
    margin-right: 5px;
    margin-left: 5px;
    font-size: clamp(13px, 2.2vw, 14px); 
  }

  .paynow a {
    width: calc(100% - 20px);
    margin: 8px 10px;
    padding: clamp(6px, 1.2vw, 8px) clamp(12px, 1.8vw, 15px);
    font-size: clamp(12px, 2.2vw, 14px);
  }

  .container {
    margin: 1rem 2%;
    padding: 0 2%;
  }

  .container h1 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    margin: 1rem 0 0.6rem;
  }

  .description {
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-bottom: 1rem;
  }

  #partnerForm {
    padding: 1rem;
  }

  #partnerForm h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 1rem;
  }

  .row {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  }

  .form-group input,
  .form-group textarea {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    padding: 0.5rem;
  }

  .radios,
  .checkboxes {
    gap: 0.6rem;
  }

  .radios label,
  .checkboxes label {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  }

  .submit-btn {
    padding: clamp(6px, 1vw, 8px) clamp(12px, 1.8vw, 15px);
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }

  .benefits {
    padding: 1rem;
    margin-top: 1rem;
  }

  .benefits h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    margin-bottom: 1rem;
  }

  .benefits ul li {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 0 0.8rem;
  }

  .footer-content .locations {
    padding: 0.8rem;
    margin-bottom: 1rem;
  }

  .footer-content .locations p:first-child {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    margin-bottom: 0.4rem;
  }

  .footer-content .locations p:last-child {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  }

  h4 {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    margin-bottom: 0.8rem;
  }

  footer ul li {
    margin-bottom: 0.4rem;
  }

  footer ul li a,
  .contact-info p {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  }

  .contact-info p {
    margin-bottom: 0.4rem;
  }

  .contact-info p i {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
  }

  .social-container {
    padding: 0.8rem 0.4rem;
    margin-top: 0.8rem;
  }

  .social-title {
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
    margin-bottom: 0.4rem;
  }

  .Social-icons {
    gap: 0.6rem;
    margin-top: 0.4rem;
  }

  .Social-icons a {
    font-size: clamp(1.4rem, 3.2vw, 1.6rem);
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    padding: 0.6rem 0.3rem;
    margin-top: 0.8rem;
  }
}