/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;700&family=Oswald:wght@400;500;700&display=swap");

/* Base Styles */
:root {
  --primary: #5a189a;
  --primary-dark: #3c096c;
  --primary-light: #9d4edd;
  --secondary: #ff5400;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #020220;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}
:root{
  --color-pri: #4D006E;
  --color-pri-light: rgba(77, 0, 110, .5);
  --text-dark: #212121;
}

body.no-scroll {
  overflow: hidden;
}

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

body {
  font-family: "Oswald", "Plus Jakarta Sans","Poppins";
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
  font-family: Plus Jakarta Sans;
}

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

ul {
  list-style: none;
}

img {
  width: 517px;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.text-center {
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-white);
  border: none;
}

/* .btn-secondary:hover {
  background-color: #e64d00; */


.btn-text {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-text:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  color: var(--text-white);
}

.btn-light {
  background-color: var(--text-white);
  color: var(--primary);
  border: none;
}

.btn-light:hover {
  background-color: var(--bg-light);
}
.icon{
border-radius: 100px;
color:var(--primary-light);
}

/* Header */
.header {
  padding: 1rem 0;
  background-color: #ffffff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-width: 150px;
}

.logo-img {
  width: 100%;
  height: auto;
}

.nav-menu ul {
  display: flex;
  gap: 40px;
}
.nav-menu li{
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}

.nav-menu a {
  
  font-weight: 500;
  transition: color 0.3s ease;
}



.auth-buttons {
  display: flex;
  gap: 1rem;
}

.btn-outline {
  width: 122;
  height: 52;
  gap: 10px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  border-width: 1px;
  border-radius: 8px;
  color: #4D006E;
  border: 1px solid #6d3e81
}

.btn-primary {
  width: 107;
  height: 52;
  gap: 10px;
  padding-top: 16px;
  padding-right: 32px;
  padding-bottom: 16px;
  padding-left: 32px;
  border-radius: 8px;
  background: #4D006E;
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  font-size: 15px;
  
  letter-spacing: 0%;color: #FFFFFF;
}
.coming-soon {
  background-color: #33B9E7;
  color: white;
  width: 154;
height: 40;
gap: 10px;
border-radius: 8px;
padding-top: 8px;
padding-right: 24px;
padding-bottom: 8px;
padding-left: 24px;

}
.mobile-auth-buttons{
  display: none;
}
/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */

/* Hero Content */
.hero {
  position: relative;
  width: 100%;
  min-height: 450px; 
  background-image: url('assets/about.jpeg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start; 
  justify-content: flex-start; 
  text-align: left;
  padding: 40px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 70px;
}

/* Dark overlay for better text visibility */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  border-radius: 16px;
}

/* Container for the text */
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 700px;  
  padding: 20px;
 
}

/* Heading styling */
.hero h1 {
  
  color: white;
  font-family: Oswald;
  font-weight: 500;
  font-size: 56px;
  line-height: 72px;
  letter-spacing: 0%;
  
}


.hero-text {
  
  width: 837px;



}

.hero h3 {
  
  color: #ffffff;
  font-family: Oswald;
font-weight: 400;
font-size: 40px;
line-height: 54px;
letter-spacing: 0%;

}


/* Mission Section */
.mission-section {
  margin-top: 20px;
  padding: 20px;
 
  border-radius: 10px;
  
}
.mission-title ,.vision-tittle{
  color: #8e44ad;
  border: 2px solid #8e44ad;
  border-radius: 20px;
  padding: 5px 15px;
  display: inline-block;
  margin-bottom: 10px;
}
.container-section{
  padding-left: 60px;
  padding-right: 60px;
  margin-top: 160px ;
  
}
.mission-section h3 {
  color: #5e2672;
  font-family: Oswald;
font-weight: 400;
font-size: 48px;
line-height: 64px;
letter-spacing: 0%;

}
.mission-section p {
  color: #666;
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.5%;
  
 
    
  
}
.mission-image {
  float: right;
  position: relative;
  top:83px;
  border-radius: 10px;

}
.mission-text {
  float: left;
  width: 55%;
  gap: 16px;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.vision-section {
    padding: 40px 20px;
}

.vision-container {
    display: flex;
    /* padding-left: 60px;
    padding-right: 100px;
    margin-top: 160px ;
    
    
    align-items: flex-start; */
    gap: 50px;
}

.vision-image-container {
    flex: 1;
    height: 100%;
  
}

.vision-image {
  width: 517px;

  
    border-radius: 10px;
    object-fit: cover;
    position: relative;
    top: 95px;
}

.vision-text-container {
    flex: 2;
    padding: 20px 0;
    width: 60%;
}

.vision-header {
    background-color: white;
    border: 1px solid #9370DB;
    color: #9370DB;
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.vision-title  {
    color: #5B2C6F;
    font-family: Oswald;
    font-weight: 400;
    font-size: 48px;
    line-height: 64px;
    letter-spacing: 0%;
    
}

.vision-paragraph {
    color: #555;
    font-family: Plus Jakarta Sans;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0.5%;
    
}

/* Footer */
/* Footer */



/* ***************** */
/* ******FORM******* */
/* ***************** */
.btn{
  padding: 0.75rem 1rem;
  border-radius: .375rem;
  display: inline-block;
  font-weight: 600;
  text-align: center;
}
.btn-pri{
  background-color: var(--color-pri);
  color: #fff;
  border: 1px solid var(--color-pri);
}


@media (max-width: 1200px) {
  .hero{
    margin-top: 0;
  }
  .container {
    max-width: 95%;
  }
  
  .hero-text h1 {
    font-size: 48px;
    line-height: 58px;
  }
  .mission-image{
    top:200px
  }
}

@media (max-width: 1320px){
  .container {
    max-width: 91%;
   
  }

  .nav-menu ul {
    gap: 16px;
  }
  .hero{
    margin-top: 0;
  }

  .hero-content {
    flex-direction: column;
    padding: 2rem;
    min-height: auto;
  }
  .container-section {
    padding: 0;
    margin-top: 100px;
  }

  .hero-image {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .feature-content {
    flex-direction: column;
    gap: 2rem;
  }

  .feature-image {
    max-width: 100%;
  }

  .feature-text {
    text-align: center;
    max-width: 100%;
  }

  .feature-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .banner h2 {
    font-size: 36px;
  }

  .mission-section {
    padding: 0px 20px;
  
  }

  .mission-text,
  .mission-image {
    float: none;
    width: 100%;
  }

  .mission-image {
    margin-top: 30px;
    order: 2; 
  }
  .mission-image{
    display: flex;
    top:0px;
  }
  .mission-text {
    order: 1; 
    margin-bottom: 20px;
   
  }

  .mission-section h3 {
    font-family: Oswald;
    font-weight: 400;
    font-size: 40px;
    line-height: 54px;
    letter-spacing: 0%;
   
    

  }

  .mission-section p {
    font-family: Plus Jakarta Sans;
font-weight: 400;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.5%;
text-align: center;

  }

  .mission-title {
    font-size: 1.1em;
    padding: 4px 12px;
  }

  .vision-header{
    font-size: 1.1em;
    padding: 4px 16px;
  }
  .vision-container {
    flex-direction: column;  
    text-align: center;
  }

  .vision-image-container {
   
    padding: 0;
    order: 2;
  }
  .vision-text-container {
    width: 100%;
    padding: 0;
    order: 1;
    text-align: center;
  }
  .vision-image {
    
   
    margin-bottom: 20px;
  }
  .mission-image img {
    margin: 0 auto;
  }

  .vision-text-container {
    padding: 0 20px;
  }


  .vision-paragraph {
    font-size: 16px;
    line-height: 26px;
  }




@media (max-width: 768px) {
  /* Header adjustments */
  .header {
    padding: 0.75rem 0;
  }
.header .logo-img{
  text-align: left;
  flex-grow: 1;
}
  .menu-toggle {
    position: absolute;
        right: 1rem; /* Adjust as needed */
        top: 50%;
        transform: translateY(-50%);
    display: flex;
    z-index: 101;
    transition: all 0.3s ease;
  }

.mobile-auth-buttons{
  display: flex;
}

  /* Transform hamburger to X when active */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Improved mobile navigation */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 20px 40px;
    transition: right 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
    display: flex;
  }

  .nav-menu ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }

  .nav-menu li {
    width: 100%;
    margin-bottom: 10px;
  }

  .nav-menu a {
    display: block;
    padding: 8px 0;
    width: 60%;
    border-bottom: 1px ;
    margin: 5px;
  }

  /* Auth buttons in mobile menu */
  

  .auth-buttons {
    display: none; 
    flex-wrap: nowrap;
    justify-content: center; 
    gap: 0.5rem; 
  }
  
  .auth-buttons .btn {
    width: auto; 
    min-width: 100px;
    text-align: center;
  }
  

  /* Add overlay when menu is open */
  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
  }

  .menu-overlay.active {
    display: block;
  }
 
    
  }
  .hero h1{
    text-align: left;
    padding: 0px 12px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .partners-logos {
    justify-content: center;
  }

  .partner-logo {
    margin: 10px;
  }

  .feature-list span {
    font-size: 16px;
    line-height: 24px;
  }
  hero-content {
    flex-direction: column;
    text-align: center; 
    padding: 2rem 1rem; 
  }

  .hero-text {
    max-width: 100%;
    padding: 1rem; 
  }

  .hero-text h1 {
    font-size: 2rem; 
   
    margin-top: 120px;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center; 
    flex-wrap: wrap;
  }

  .hero-image {
    max-width: 100%;
    height: auto; 
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%; 
    height: auto;
  }

.feature-content {
    flex-direction: column;
    text-align: center;
}

.feature-image img {
    width: 100%;
    height: auto;
}
  .banner h2 {
    font-size: 28px;
  }

  .banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .banner-btn1, .banner-btn2 {
    width: 100%;
    max-width: 300px;
  }
  .mission-section p {
    font-size: 1rem;
    text-align: left;
}


  .vision-container {
    flex-direction: column; /* 🔹 Move Image BELOW Text */
    gap: 20px;
    text-align: center;
}

.vision-image-container {
    width: 100%;
    text-align: center;
    top: 0;
}

.vision-image {
  top: 0;
    margin: 0 auto;
    order: 2;
}

.vision-text-container {
    padding: 10px;
    text-align: left;
    order: 1; 
}

.vision-title {
  
  font-family: Oswald;
  font-weight: 400;
  font-size: 40px;
  line-height: 54px;
  letter-spacing: 0%;
  
   
}

.vision-paragraph {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;

  
  
}

.vision-header{
  text-align: center;
  
}

 

.footer-contact {
    text-align: center;
}

.footer-social {
    margin-top: 10px;
}
  .footer-links ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    margin-top: 1rem;
  }
  .footer-nav {
    gap: 2rem;
    flex-wrap: wrap;
  }



  .footer-background-logo {
    opacity: 0.05;
  }
}



@media (max-width: 480px) {
  img{
    width: 350px;
height: 100%;
border-radius: 8px;

  }
  .hero {
    width: 100%;
height: 598px;
justify-content: center;
text-align: center;
margin-top: 0;

  }
  .hero-container{
    justify-content: center;
text-align: center;
width: 428px;
height: 336px;


  }
  .header-content {
    padding: 0 10px;
  }

  .logo {
    max-width: 120px;
  }

  .nav-menu {
    width: 85%;
  }

  .auth-buttons .btn {
    padding: 0.6rem 1rem;
    font-size: 14px;
  }
  .hero-text h1 {
    font-size: 28px;
   
  }
  .hero h3 {
  font-family: Plus Jakarta Sans;
font-weight: 500;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.5%;
color: #FFFFFFE5;

  }
  .container-section{
    justify-content: center;
  }
  .vision-image ,.mission-image{
    width: 350px;
border-radius: 8px;
margin: 0 auto;

  }


  .section-title ,.mission-section h3,.vision-title{
    font-size: 32px;
    line-height: 44px;
    text-align: left;
  }

  .feature-text h2 {
    font-size: 24px;
  }

  .feature-text p {
    font-size: 16px;
    
  }

  .feature-list .icon {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .feature-list span {
    font-size: 14px;
    line-height: 20px;
  }

  .banner h2 {
    font-size: 24px;
  }

  .testimonial-avatars {
    gap: 8px;
  }

  .avatar {
    width: 40px;
    height: 40px;
  }

  .quote-mark {
    font-size: 2.5rem;
  }

  .footer-links ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}

/* Fix for reverse feature sections */
.feature-content.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .feature-content.reverse {
    flex-direction: column;
  }
}
@media (max-width: 850px) {
 .hero-text{
  text-align: left;
 
 } 
 
}
@media (max-width: 340px) {
 .hero-text{
  text-align: center;
 } 
 
}