body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
header {
  background-color:white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Navbar container */
.navbar-container {
	width: 100%;
	max-width: 95%;
	margin: 0 ;
	display: flex;
	align-items: center;      
	justify-content: space-between;
	padding: 8px 0px;
	box-sizing: border-box;
}

/* Logo + company name in same row */
.logo {
  display: flex;
  align-items: center;      
  gap: 10px;                
}

.logo img {
  height: 60px;
  margin-left:0;
  margin-bottom:10px;
}

.logo h1 {
  font-size: 28px;
  margin: 0;
  color: #075480;
  font-weight: 700;
  white-space: nowrap;      
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* Default link state */

nav ul li a {
  text-decoration: none;
  color: #075480;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a{
  display:block;
  padding:10px 16px;
  transition:all 0.3s ease;
  border-radius: 8px;
}

nav ul li a:hover{
  background:#f5f5f5;
  color:#00bfff;
  transform:translateX(6px);
}
/* Visited / focus / active click */

/* Hover */
nav ul li a:hover {
  color: #4b0082;
  text-decoration: none;
}
/* Active page */
nav ul li a.active,
.nav-item.active > a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 600;
}


/* Dropdown Menu Container */
.dropdown-menu {
    display: none;
    position: absolute;   
    top: 100%;            
    left: 0;              
    background-color: grey;
    min-width: 200px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

/* Parent menu item */
.nav-item {
    position: relative;   
}

/* Show menu on hover */
.nav-item:hover .dropdown-menu {
    display: block;
}

/* Dropdown links */
.dropdown-menu a {
    display: block;
    color: white;
    padding: 10px;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #00bfff;
}

/* Prevent overflow: move to left if at edge */
.nav-links li.dropdown:hover .dropdown-menu {
    right: 0;   
    left: auto; 
}



/* Hamburger Menu */

.menu-toggle{
  display:none;
  cursor:pointer;
  padding:10px;
}

.menu-toggle .bar{
  display:block;
  width:28px;
  height:3px;
  margin:5px auto;
  background:#075480;
  transition:all 0.4s ease;
  border-radius:5px;
}

/* Hover effect */

.menu-toggle:hover .bar{
  background:#00bfff;
  transform:scale(1.1);
}

/* Animation to X */

.menu-toggle.active .bar:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active .bar:nth-child(2){
  opacity:0;
}

.menu-toggle.active .bar:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}


body {
      background: #f2f2f2;
    }

/* Full-screen image section */
.image-content {
  width: 100%;
  height: 80vh;
  background: url("../images/Partner/partners.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* Dark overlay for readability */
.image-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Text content inside image */
.text-box {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.text-box h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.text-box p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* "Get in Touch" button styling */
.btn {
  display: inline-block;
  background: #00bfff;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn:hover {
  background: transparent;
  border: 2px solid #00bfff;
  color: #00bfff;
}
/* Responsive design */
@media (max-width: 768px) {
  .text-box h1 {
    font-size: 2rem;
  }
  .text-box p {
    font-size: 1rem;
  }
  .btn {
    font-size: 1rem;
    padding: 10px 25px;
  }
}

/* About Section */
.about-partnership {
  text-align: center;
  padding: 60px 20px;
  background: #f7f9fc;
}

.about-partnership h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.reasons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.reason-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  width: 300px;
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
}

.reason-card i {
  font-size: 2.5rem;
  color: #00bfff;
  margin-bottom: 10px;
  color: #8080c0;
}

.reason-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #333;
}

.reason-card p {
    font-size: 15px;
  line-height: 1.6;
  margin: 15px 20px;
  color: #555;
  text-align:justify;
}

/* Partner Form Section */
.partner-form-section {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
}

.partner-form-section h2 {
  font-size: 2rem;
  color: #222;
}

.partner-form-section p {
  margin: 10px auto 30px;
  max-width: 600px;
  color: #555;
}

.partner-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.form-group input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 1rem;
}

textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  background: #00bfff;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #008ecf;
}

/* Footer */
.footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about, .footer-contact, .footer-social {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer h3, .footer h4 {
  color: #00bfff;
  margin-bottom: 10px;
}

.footer p, .footer a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer a:hover {
  color: #00bfff;
}

.footer-contact i {
  color: #00bfff;
  margin-right: 8px;
}

.footer-social a {
  margin-right: 10px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #00bfff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 10px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}







/* ===== Mobile Responsive ===== */
@media (max-width:768px){

/* Navbar */

.menu-toggle{
display:block;
}
nav {
  width: 100%;
}
  nav ul{
  flex-direction: column;
  position: absolute;
  top:70px;
  left:0;
  background:white;
  width:100%;
 display: none;
 gap: 0;
}

nav ul.active{
 display: flex;
}

  nav ul li {
    padding: 15px;
    text-align: center;
    border-top:1px solid #eee;
  }


/* Hero Section */
.image-content{
height:60vh;
padding:20px;
}

.text-box{
max-width:90%;
padding:10px;
}

.text-box h1{
font-size:1.8rem;
}

.text-box p{
font-size:1rem;
}

/* Reason Cards */
.reasons{
flex-direction:column;
align-items:center;
}

.reason-card{
width:90%;
}

/* Form fields */
.form-group{
flex-direction:column;
}

/* Footer */

.footer-content{
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
gap:25px;
}

.footer-about,
.footer-contact,
.footer-social{
width:100%;
max-width:420px;
text-align:center;
}

/* center address lines */
.footer-contact p{
text-align:center;
line-height:1.8;
}

/* center icons */
.footer-social{
text-align:center;
}

/* Heading spacing */
.footer-social h4{
margin-bottom:15px;
}

/* Icons container */
.footer-social a{
display:inline-block;
font-size:24px;
margin:0 12px;
}

.footer-bottom{
text-align:center;
margin-top:20px;
}

}

.image-content{
margin-top:80px;
}
/* Desktop / Laptop */
@media (min-width:769px){
  .image-content{
    margin-top:80px;
  }
}
 
/* Mobile */
@media (max-width:768px){
  .image-content{
    margin-top:0;
  }
}





