/* partner.css */

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Header */
.header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.navbar .nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}
.navbar .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #007BFF;
}

/* Page-specific styles */
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.page-header {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 4rem 0 2rem;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  padding: 50px 20px 30px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}
.footer h3 {
  margin-bottom: 15px;
  font-size: 18px;
}
.footer ul,
.footer .contact-info,
.footer .address-info {
  font-size: 14px;
}
.footer .social-links a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
}
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}
.footer-links a {
  color: #ccc;
  margin-left: 15px;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info1,
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-info1 h2,
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0052cc;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #0052cc;
  min-width: 30px;
  text-align: center;
  padding-top: 5px;
}

.contact-item p {
  margin: 0;
  line-height: 1.4;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fdfdfd;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

textarea {
  resize: vertical;
}

button {
  background: #0052cc;
  color: white;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background: #003d99;
}

.social-links1 {
  margin-top: 1.5rem;
}

.social-links1 a {
  margin-right: 1rem;
  font-size: 1.3rem;
  color: #0052cc;
  transition: color 0.3s ease;
}

.social-links1 a:hover {
  color: #003d99;
}

.logo-box {
  text-align: center;
  margin-top: 2rem;
}

.contact-logo {
  margin-top: 40px;
  margin-left: -40px;
  max-width: 340px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* FAQ SECTION */
.faq-section {
    margin-top: 4rem;
    padding: 3rem;
    background: #f4f8ff;
    border-radius: 12px;
}

.faq-section h2 {
    text-align: center;
    color: #003a8f;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-group {
    margin-bottom: 2rem;
}

.faq-group h3 {
    color: #0056d2;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

details {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

details[open] {
    border-color: #0056d2;
    background: #eef4ff;
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: #003a8f;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    float: right;
    font-size: 1.4rem;
    color: #0056d2;
}

details[open] summary::after {
    content: "−";
}

details p {
    margin-top: 0.8rem;
    color: #333;
    line-height: 1.6;
}

/* Buttons */
button {
    background: linear-gradient(135deg, #0056d2, #003a8f);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
}

button:hover {
    opacity: 0.9;
}

/* RESET DEFAULT DETAILS / SUMMARY STYLES */
details {
    border: none;
    background: none;
}

summary {
    list-style: none;
    cursor: pointer;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

/* FAQ STYLING */
.faq-section details {
    background: #ffffff;
    border: 1px solid #dbe7ff;
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-section details[open] {
    background: #eef4ff;
    border-color: #0056d2;
}

/* QUESTION LINE */
.faq-section summary {
    font-weight: 600;
    color: #003a8f;
    position: relative;
    padding-right: 2rem;
}

/* + ICON */
.faq-section summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.4rem;
    color: #003d99;
}

/* − ICON WHEN OPEN */
.faq-section details[open] summary::after {
    content: "−";
}

/* ANSWER */
.faq-section details p {
    margin-top: 0.8rem;
    color: #333;
    line-height: 1.6;
}




