/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

h1, h2, h3 {
    color: #6A1B1A; /* Deep Red */
}

a {
    text-decoration: none;
    color: inherit;
}




/* Navbar */
.navbar {
    background-color: #fff;
    padding: 20px 0; /* Match others with taller padding */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center; /* Centering the logo */
    align-items: center;
}

/* Logo */
.navbar .logo img {
    max-width: 220px; /* Same logo size across all */
    height: auto;
    cursor: pointer;
}




/* Fade-In Effect for Sections */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 1s forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partner Section */
.partner-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.partner-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.partner-section p {
    font-size: 1.2rem;
    color: #6a0dad; /* Deep Purple */
}

/* Opportunities Section */
.opportunities-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.opportunities-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.opportunities-section p {
    font-size: 1.2rem;
    color: #6a0dad; /* Deep Purple */
}

/* How to Partner Section */
.how-to-partner-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.how-to-partner-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.how-to-partner-section ul {
    list-style-type: none;
    padding: 0;
}

.how-to-partner-section ul li {
    font-size: 1.2rem;
    color: #6a0dad; /* Deep Purple */
    margin: 10px 0;
}

/* Call to Action Section */
.cta-section {
    background-color: #6A1B1A; /* Deep Red */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-btn {
    background-color: #fff;
    color: #6A1B1A; /* Deep Red */
    padding: 15px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

.cta-btn:hover {
    background-color: #6a0dad; /* Deep Purple */
    color: #fff;
}

/* Footer */
.footer {
    padding: 20px;
    background-color: #9370DB;
    text-align: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    color: white;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.footer-social p {
    font-size: 1rem;
    color: white;
}

/* Social Icons */
.footer-social .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    color: white;
}

/* Media Queries */
@media (max-width: 768px) {
    .cta-btn {
        width: 100%;
    }
}


/* Prevent horizontal scroll and shaking */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    touch-action: manipulation; /* Helps prevent weird touch behavior */
    overscroll-behavior-x: none; /* Prevents bounce on mobile */
    position: relative;
}












/* ==== 1) RESET & BOX‑SIZING ==== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==== 2) FLEXIBLE IMAGES & MEDIA ==== */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==== 3) LISTS, LINKS, TABLES ==== */
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}

/* ==== 4) TYPOGRAPHY & BODY ==== */
html {
  font-size: 16px;            /* base for rems */
  scroll-behavior: smooth;
  overflow-x: hidden;         /* no accidental horizontal scroll */
}
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
  background-color: #fff;
  color: #333;
}

/* ==== 5) FORM ELEMENTS ==== */
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ==== 6) CLEARFIX UTILITY ==== */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ==== 7) MOBILE‑FIRST BREAKPOINTS ==== */
@media (max-width: 1024px) {
  html { font-size: 15px; }
}
@media (max-width: 768px) {
  html { font-size: 14px; }
}
@media (max-width: 480px) {
  html { font-size: 13px; }
}




.back-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px 20px;
  background-color: #800080; /* Purple */
  color: #fff;            /* Deep Red */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  z-index: 9999;
  transition: background-color 0.3s;
}
.back-btn:hover {
  background-color: #4B004B; /* Darker purple on hover */
}