:root {
  --primary: #810081;
  --secondary: #020181;
  --accent: #ff4500;
  --light: #ffffff;
  --dark: #000000;
  --light-purple: #f0d5f0;
  --light-blue: #d5d5f0;
  --dark-purple: #600060;
  --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-purple);
}

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

/* Header Styles */
header {
  background-color: var(--light);
  color: var(--primary);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(129, 0, 129, 0.1);
  transition: all 0.4s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo h1 {
  font-size: 1.8rem;
  margin: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--light);
}

/* Desktop Navigation */
nav {
    display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 8px 18px;
  border-radius: 30px;
  background: transparent;
}

nav a:hover,
nav a.active {
  background: var(--gradient);
  color: var(--light);
}

/* Mobile Toggle Button */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 4px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle:hover {
    color: var(--accent);
    transform: scale(1.1);
    background: rgba(129, 0, 129, 0.1);
}

.logo-image {
  height: 65px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Hero Design 1 - Split Layout */
.hero-design1 {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-design1 .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-left {
  animation: slideInLeft 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(129, 0, 129, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(129, 0, 129, 0.2);
}

.hero-design1 h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero-main {
  color: var(--dark);
  font-weight: 800;
}

.hero-design1 .moto {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.moto-part {
  color: var(--accent);
  position: relative;
}

.moto-part:nth-child(1) {
  animation: fadeInUp 1s ease 0.5s both;
}

.moto-part:nth-child(3) {
  animation: fadeInUp 1s ease 0.7s both;
}

.moto-divider {
  color: var(--primary);
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.hero-design1 p {
  font-size: 1.2rem;
  color: var(--secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(129, 0, 129, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  padding: 1rem 2rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(129, 0, 129, 0.4);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

   .btn {
            display: inline-block;
            background: var(--gradient);
            color: var(--light);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 6px 20px rgba(129, 0, 129, 0.3);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(129, 0, 129, 0.4);
        }
        
        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s ease;
            transform: translateX(-100%);
        }
        
        .btn:hover::after {
            transform: translateX(100%);
        }

.hero-stats {
  display: flex;
  gap: 2rem;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 500;
}

.hero-right {
  position: relative;
  animation: slideInRight 1s ease-out;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 100px;
  left: -20px;
  animation-delay: 1s;
}

.card-3 {
  bottom: 20px;
  right: 20px;
  animation-delay: 2s;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(129, 0, 129, 0.1),
    rgba(255, 107, 107, 0.1)
  );
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation: rotate 20s linear infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation: rotate 15s linear infinite reverse;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 80%;
  animation: rotate 25s linear infinite;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-design1 .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-design1 h1 {
    font-size: 2.5rem;
  }

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

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

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  background: var(--accent);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* About Section */
.about {
  background: linear-gradient(to bottom, var(--light), var(--light-purple));
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(129, 0, 129, 0.1);
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg);
  transition: all 0.4s ease;
}

.about-image:hover {
  transform: rotate(0) scale(1.02);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Aims Section */
.aims {
  background: linear-gradient(
    to bottom right,
    var(--light-purple),
    var(--light-blue)
  );
  position: relative;
  overflow: hidden;
}

.aims::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.05;
}

.aims::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 0.05;
}

.aims-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.aim-card {
  background-color: var(--light);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
  border-top: 5px solid var(--accent);
}

.aim-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.aim-card i {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aim-card h3 {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

/* Outcomes Section */
.outcomes {
  background: linear-gradient(to bottom, var(--light), #f8f8ff);
}

.outcomes-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.outcome-box {
  background: var(--light);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(129, 0, 129, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.outcome-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.outcome-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent);
}

.outcome-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary);
}

.outcome-box p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

/* How to Help Section */
.help {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.help::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/Picture5.png")
    no-repeat center center/cover;
  opacity: 0.08;
}

.help .section-title {
  color: var(--light);
}

.help .section-title::after {
  background: var(--accent);
}

.help-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.help-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.help-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.help-card i {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.help-card h3 {
  color: var(--light);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

/* Gallery Section */
.gallery {
  background-color: #f0f0f0;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-purple), var(--secondary));
  color: var(--light);
  padding: 4rem 0 1.5rem;
  position: relative;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h3 {
  color: var(--light);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-col p {
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light);
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  transform: translateY(-5px);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .moto {
    font-size: 2rem;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo {
        order: 1;
        flex: 0 0 auto;
    }

    .mobile-toggle {
        display: block;
        order: 3;
        margin-left: auto;
    }

    /* Compact mobile header and controls */
    header {
        padding: 0.6rem 0;
    }

    .logo-image {
        height: 44px;
    }

    .mobile-toggle {
        font-size: 1.4rem;
    }

    nav {
        order: 2;
        position: relative;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        background: var(--light);
        width: 70%;
        height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        transition: all 0.4s ease;
        box-shadow: -0.5rem 0 1.5rem rgba(0, 0, 0, 0.1);
        z-index: 1000;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    nav ul.active {
        right: 0;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 10px 16px;
        font-size: 1.05rem;
        text-align: center;
        border-radius: 10px;
        margin: 0;
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    nav a:hover,
    nav a.active {
        background: var(--gradient);
        color: var(--light);
    }

    /* Overlay for mobile menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.2rem;
  }

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

  .section-title {
    font-size: 2rem;
  }

  .logo h1 {
    font-size: 1.5rem;
  }
}

/* Ensure proper alignment on smaller screens */
@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .mobile-toggle {
        font-size: 1.6rem;
    }
}
