/**
Theme Name: Ajinkya foundation
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ajinkya-foundation
Template: astra
*/



 /* Reset & Base */
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: hsl(28, 92%, 50%);
      --primary-light: hsl(28, 92%, 60%);
      --primary-dark: hsl(28, 92%, 40%);
      --secondary: hsl(42, 95%, 55%);
      --secondary-light: hsl(42, 95%, 65%);
      --background: hsl(40, 30%, 98%);
      --foreground: hsl(28, 40%, 15%);
      --card: hsl(0, 0%, 100%);
      --muted: hsl(40, 20%, 94%);
      --muted-foreground: hsl(28, 20%, 45%);
      --accent: hsl(28, 80%, 95%);
      --border: hsl(28, 30%, 88%);
      --section-warm: hsl(40, 60%, 97%);
      --radius: 0.75rem;
      --shadow-warm: 0 10px 40px -10px hsla(28, 92%, 50%, 0.2);
      --shadow-glow: 0 0 40px hsla(42, 95%, 55%, 0.3);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'poppins', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
.n2-ss-slider .n2-ss-text p{
	font-family: 'poppins', sans-serif;
	font-size: 0.875rem;
}
h1,h2,h3,h4,h5,h6{
	    font-family: 'Oswald, sans-serif', 'Arial';

}
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

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

    ul {
      list-style: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Utility Classes */
    .gradient-primary {
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    }

    .gradient-hero {
      background: linear-gradient(180deg, hsla(28, 92%, 50%, 0.9) 0%, hsla(42, 95%, 55%, 0.85) 100%);
    }

    .text-gradient {
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-warm {
      background-color: var(--section-warm);
    }

    .section-light {
      background-color: var(--card);
    }

    .shadow-warm {
      box-shadow: var(--shadow-warm);
    }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
     
      font-weight: 600;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
      color: white;
      box-shadow: 0 4px 15px hsla(28, 92%, 50%, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px hsla(28, 92%, 50%, 0.4);
    }

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

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .btn-hero {
      background: white;
      color: var(--primary);
      font-weight: 700;
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-hero-outline {
      background: transparent;
      color: white;
      border: 2px solid white;
      padding: 1rem 2rem;
      font-size: 1rem;
    }

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

    .btn-lg {
      padding: 1rem 2rem;
      font-size: 1rem;
    }

    /* Top Bar */
    .top-bar {
      background-color: var(--primary);
      color: white;
      padding: 0.5rem 0;
      font-size: 0.875rem;
    }

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

    .top-bar-links {
      display: flex;
      gap: 1.5rem;
    }

    .top-bar-links a {
      display: flex;
      align-items: center;
      gap: 0.5rem;
     
      transition: opacity 0.3s;
    }

    .top-bar-links a:hover {
      opacity: 0.8;
    }

    .top-bar-text {
      opacity: 1;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background-color: var(--background);
      transition: all 0.3s ease;
    }

    .header.scrolled {
      background-color: rgba(255, 253, 250, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-warm);
    }

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

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .logo img {
      height: 64px;
      width: auto;
    }

    .logo-text h1 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
    }

    .logo-text p {
      font-size: 0.75rem;
      color: var(--muted-foreground);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .nav a {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--muted-foreground);
      position: relative;
      transition: color 0.3s;
    }

    .nav a:hover {
      color: var(--primary);
    }

    .nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: all 0.3s;
    }

    .nav a:hover::after {
      width: 75%;
      left: 12.5%;
    }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-menu-btn svg {
      width: 24px;
      height: 24px;
      color: var(--foreground);
    }

    .mobile-nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--background);
      border-top: 1px solid var(--border);
      padding: 1rem;
    }

    .mobile-nav.active {
      display: block;
    }

    .mobile-nav a {
      display: block;
      padding: 0.75rem 1rem;
      color: var(--foreground);
      border-radius: var(--radius);
      transition: background 0.3s;
    }

    .mobile-nav a:hover {
      background: var(--accent);
    }
.main-header-menu .menu-link, .main-header-menu>a {
    text-decoration: none;
	padding: 0 0.5rem;}

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 70vh;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
/*       background: linear-gradient(135deg, hsl(28, 92%, 50%) 0%, hsl(42, 95%, 55%) 50%, hsl(28, 80%, 45%) 100%); */
    }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
/*       background: radial-gradient(circle at 30% 70%, hsla(42, 95%, 55%, 0.3) 0%, transparent 50%),
                  radial-gradient(circle at 70% 30%, hsla(28, 92%, 60%, 0.3) 0%, transparent 50%); */
    }

    .hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      color: white;
      padding: 4rem 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(10px);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }

    .hero p {
      font-size: 1.125rem;
      max-width: 700px;
      margin: 0 auto 2rem;
      opacity: 0.95;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
      padding-top: 4rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

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

    .hero-stat-value {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 0.25rem;
			background:#000000;
    }

    .hero-stat-label {
      font-size: 0.875rem;
      opacity: 0.85;
    }

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

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .section-label {
      font-size: 0.875rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .section-title {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .section-desc {
      color: var(--muted-foreground);
      font-size: 1rem;
    }

    /* About Section */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image img {
      border-radius: 1rem;
      box-shadow: var(--shadow-warm);
    }

    .about-image-badge {
      position: absolute;
      bottom: -1rem;
      right: -1rem;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: white;
      padding: 1.5rem;
      border-radius: 1rem;
      text-align: center;
      box-shadow: var(--shadow-glow);
    }

    .about-image-badge-value {
      font-size: 2rem;
      font-weight: 800;
    }

    .about-image-badge-label {
      font-size: 0.75rem;
      opacity: 0.9;
    }

    .about-content h2 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 1rem;
    }

    .about-content > p {
      color: var(--muted-foreground);
      margin-bottom: 2rem;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .about-feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-feature-icon svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
    }

    .vision-mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .vision-mission-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.5rem;
    }

    .vision-mission-card h4 {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--foreground);
    }

    .vision-mission-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Campus Section */
    .campus-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }

    .campus-stat {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem;
      text-align: center;
      box-shadow: var(--shadow-warm);
      transition: all 0.3s;
    }

    .campus-stat:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
    }

    .campus-stat-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }

    .campus-stat-icon svg {
      width: 32px;
      height: 32px;
      color: white;
    }

    .campus-stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.25rem;
    }

    .campus-stat-label {
      color: var(--muted-foreground);
    }

    .green-campus {
      background: linear-gradient(135deg, var(--accent), var(--card));
      border: 1px solid var(--border);
      border-radius: 1.5rem;
      padding: 3rem;
    }

    .green-campus-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .green-campus-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .green-campus-header-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: hsla(28, 92%, 50%, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .green-campus-header-icon svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
    }

    .green-campus-header h3 {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .green-campus-content > p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .eco-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .eco-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .eco-feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: hsla(42, 95%, 55%, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .eco-feature-icon svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
    }

    .green-campus-visual {
      aspect-ratio: 4/3;
      border-radius: 1rem;
      background: linear-gradient(135deg, hsla(28, 92%, 50%, 0.2), hsla(42, 95%, 55%, 0.2), var(--accent));
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-warm);
    }

    .green-campus-visual svg {
      width: 96px;
      height: 96px;
      color: var(--primary);
      margin-bottom: 1rem;
      animation: float 3s ease-in-out infinite;
    }

    .green-campus-visual p:first-of-type {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .green-campus-visual p:last-of-type {
      color: var(--muted-foreground);
    }

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

    /* Education Section */
    .education-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 4rem;
    }

    .education-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .education-images-col {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .education-images-col:last-child {
      padding-top: 2rem;
    }

    .education-images img {
      border-radius: 1rem;
      box-shadow: var(--shadow-warm);
      width: 100%;
      object-fit: cover;
    }

    .education-images img:nth-child(1) {
      aspect-ratio: 4/3;
    }

    .education-images img:nth-child(2) {
      aspect-ratio: 1;
    }

    .education-images-col:last-child img {
      aspect-ratio: 3/4;
    }

    .education-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .education-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 1rem;
      transition: border-color 0.3s;
    }

    .education-feature:hover {
      border-color: var(--primary);
    }

    .education-feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .education-feature-icon svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    .education-feature span {
      font-weight: 500;
    }

    .objectives-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.5rem;
      padding: 3rem;
      box-shadow: var(--shadow-warm);
    }

    .objectives-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2rem;
    }

    .objectives-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .objective {
      text-align: center;
    }

    .objective-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }

    .objective-icon svg {
      width: 28px;
      height: 28px;
      color: var(--primary);
    }

    .objective h4 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .objective p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Therapy Section */
    .therapy-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }

    .therapy-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      overflow: hidden;
      box-shadow: var(--shadow-warm);
      transition: all 0.3s;
    }

    .therapy-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px hsla(28, 92%, 50%, 0.15);
    }

    .therapy-card-image {
      aspect-ratio: 4/3;
      overflow: hidden;
    }

    .therapy-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

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

    .therapy-card-content {
      padding: 1.5rem;
    }

    .therapy-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      transition: all 0.3s;
    }

    .therapy-card:hover .therapy-card-icon {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
    }

    .therapy-card-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
      transition: color 0.3s;
    }

    .therapy-card:hover .therapy-card-icon svg {
      color: white;
    }

    .therapy-card h3 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .therapy-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .medical-support {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 1.5rem;
      padding: 3rem;
      color: white;
    }

    .medical-support-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .medical-support h3 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .medical-support > div > p {
      opacity: 0.9;
      margin-bottom: 2rem;
    }

    .medical-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .medical-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 0.75rem;
      padding: 1rem;
    }

    .medical-feature svg {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .medical-feature span {
      font-size: 0.875rem;
    }

    .medical-support-visual {
      aspect-ratio: 4/3;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .medical-support-visual svg {
      width: 80px;
      height: 80px;
      margin-bottom: 1rem;
    }

    .medical-support-visual p:first-of-type {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .medical-support-visual p:last-of-type {
      opacity: 0.8;
    }

    /* Hostel Section */
    .hostel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .hostel-content h3 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hostel-content > p {
      color: var(--muted-foreground);
      margin-bottom: 2rem;
    }

    .hostel-features {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .hostel-feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      padding: 1rem;
      transition: all 0.3s;
    }

    .hostel-feature:hover {
      border-color: var(--primary);
      transform: translateX(4px);
    }

    .hostel-feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .hostel-feature-icon svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
    }

    .hostel-feature h4 {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .hostel-feature p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .hostel-image {
      position: relative;
    }

    .hostel-image img {
      border-radius: 1rem;
      box-shadow: var(--shadow-warm);
    }

    .hostel-image-card {
      position: absolute;
      bottom: -1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      background: var(--card);
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-warm);
    }

    .hostel-image-card-header {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }

    .hostel-image-card-header svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
    }

    .hostel-image-card-header h4 {
      font-weight: 600;
    }

    .hostel-image-card p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    /* Admissions Section */
    .admissions-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .admissions-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-warm);
    }

    .admissions-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .admissions-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .admissions-card-icon svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    .admissions-card-header h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    .eligibility-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .eligibility-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem;
      background: var(--accent);
      border-radius: 0.5rem;
    }

    .eligibility-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .process-steps {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .process-step {
      display: flex;
      gap: 1rem;
    }

    .process-step-number {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.875rem;
      flex-shrink: 0;
    }

    .process-step-content h4 {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .process-step-content p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .documents-card {
      grid-column: span 2;
      background: linear-gradient(135deg, var(--accent), var(--card));
    }

    .documents-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
    }

    .document-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
    }

    .document-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .document-item span {
      font-size: 0.875rem;
    }

    /* Support Section */
    .support-ways {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 4rem;
    }

    .support-way {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 1.5rem;
      box-shadow: var(--shadow-warm);
      transition: all 0.3s;
      cursor: pointer;
    }

    .support-way:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
    }

    .support-way-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      transition: all 0.3s;
    }

    .support-way:hover .support-way-icon {
      background: linear-gradient(135deg, var(--secondary), var(--primary));
    }

    .support-way-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
      transition: color 0.3s;
    }

    .support-way:hover .support-way-icon svg {
      color: white;
    }

    .support-way h3 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .support-way p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .support-bottom {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .volunteer-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-warm);
    }

    .volunteer-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .volunteer-card > p {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
    }

    .volunteer-roles {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }

    .volunteer-role {
      background: var(--accent);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.875rem;
    }

    .donation-cta {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 1rem;
      padding: 2rem;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .donation-cta h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .donation-cta > p {
      opacity: 0.9;
      font-size: 1.125rem;
      margin-bottom: 1.5rem;
    }

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

    .donation-buttons .btn {
      flex: 1;
    }

    /* Contact Section */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-info h3 {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .contact-info > p {
      color: var(--muted-foreground);
      margin-bottom: 1rem;
    }

    .contact-item {
      display: flex;
      gap: 1rem;
      padding: 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      transition: border-color 0.3s;
    }

    .contact-item:hover {
      border-color: var(--primary);
    }

    .contact-item-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-item-icon svg {
      width: 24px;
      height: 24px;
      color: var(--primary);
    }

    .contact-item h4 {
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .contact-item p {
      font-size: 0.875rem;
      color: var(--muted-foreground);
    }

    .contact-item a {
      color: var(--primary);
    }

    .contact-form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: var(--shadow-warm);
    }

    .contact-form-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.875rem;
      font-weight: 500;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 0.75rem 1rem;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-family: inherit;
      font-size: 0.875rem;
      background: var(--background);
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px hsla(28, 92%, 50%, 0.1);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    /* Footer */
    .footer {
      background: var(--foreground);
      color: white;
      padding: 4rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand img {
      height: 64px;
      margin-bottom: 1rem;
      filter: brightness(0) invert(1);
    }

    .footer-brand h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .footer-brand p {
      opacity: 0.7;
      margin-bottom: 1.5rem;
      font-size: 0.875rem;
    }

    .footer-social {
      display: flex;
      gap: 0.75rem;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .footer-social a:hover {
      background: var(--primary);
    }

    .footer-social svg {
      width: 20px;
      height: 20px;
    }

    .footer-column h4 {
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    .footer-column ul {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-column a {
      opacity: 0.7;
      font-size: 0.875rem;
      transition: opacity 0.3s, padding-left 0.3s;
    }

    .footer-column a:hover {
      opacity: 1;
      padding-left: 0.5rem;
    }

    .footer-newsletter h4 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .footer-newsletter > p {
      opacity: 0.7;
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .newsletter-form {
      display: flex;
      gap: 0.5rem;
    }

    .newsletter-form input {
      flex: 1;
      padding: 0.75rem 1rem;
      border: none;
      border-radius: var(--radius);
      font-size: 0.875rem;
      background: rgba(255, 255, 255, 0.1);
      color: white;
    }

    .newsletter-form input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-form button {
      padding: 0.75rem 1rem;
      border: none;
      border-radius: var(--radius);
      background: var(--primary);
      color: white;
      cursor: pointer;
      transition: background 0.3s;
    }

    .newsletter-form button:hover {
      background: var(--primary-dark);
    }

    .footer-bottom {
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.875rem;
      opacity: 0.7;
    }

    .footer-bottom-links {
      display: flex;
      gap: 2rem;
    }

    .footer-bottom-links a:hover {
      opacity: 1;
    }
 /* Residential Care Section */
    .rc-section {
      padding: 5rem 0;
    }

    .rc-intro-tagline {
      font-style: italic;
      color: var(--primary);
      font-size: 1.1rem;
      margin-top: 1rem;
      text-align: center;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .rc-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-bottom: 3rem;
    }

    .rc-block--reverse {
      direction: rtl;
    }

    .rc-block--reverse > * {
      direction: ltr;
    }

    .rc-block-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .rc-block-header h3 {
      font-size: 1.5rem;
      font-weight: 700;
    }

    .rc-block-intro {
      color: var(--muted-foreground);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .rc-icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .rc-icon-circle svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    .rc-checklist {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .rc-checklist li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 0.75rem;
      transition: all 0.3s;
      font-size: 0.95rem;
    }

    .rc-checklist li:hover {
      border-color: var(--primary);
      transform: translateX(4px);
      box-shadow: var(--shadow-warm);
    }

    .rc-checklist li::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
    }

    .rc-block-note {
      font-style: italic;
      color: var(--muted-foreground);
      font-size: 0.9rem;
      margin-top: 1rem;
      padding-left: 1.25rem;
      border-left: 3px solid var(--primary);
    }

    .rc-decorative-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1rem;
      padding: 2rem;
      box-shadow: var(--shadow-warm);
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
      text-align: center;
    }

    .rc-decorative-card .rc-icon-circle {
      width: 64px;
      height: 64px;
    }

    .rc-decorative-card .rc-icon-circle svg {
      width: 32px;
      height: 32px;
    }

    .rc-decorative-card h4 {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .rc-decorative-card p {
      color: var(--muted-foreground);
      line-height: 1.7;
    }

    /* Nutrition */
    .rc-nutrition-area {
      background: hsl(140 30% 97%);
      border-radius: 1.5rem;
      padding: 3rem 2rem;
      margin-bottom: 3rem;
    }

    .rc-nutrition-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .rc-nutrition-header h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-top: 1rem;
    }

    .rc-nutrition-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-bottom: 1.5rem;
    }

    .rc-nutrition-card {
      background: var(--card);
      border: 1px solid hsl(140 20% 88%);
      border-radius: 1rem;
      padding: 1.5rem;
    }

    .rc-nutrition-card h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .rc-nutrition-card h4 span {
      font-size: 1.25rem;
    }

    .rc-nutrition-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .rc-nutrition-card ul li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--foreground);
    }

    .rc-nutrition-card ul li::before {
      content: '✓';
      color: hsl(140 60% 40%);
      font-weight: 700;
      flex-shrink: 0;
    }

    .rc-nutrition-note {
      text-align: center;
      font-style: italic;
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    /* Well-being */
    .rc-wellbeing-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 1.5rem;
      padding: 3rem 2rem;
      margin-bottom: 3rem;
      text-align: center;
      box-shadow: var(--shadow-warm);
    }

    .rc-wellbeing-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
    }

    .rc-wellbeing-card > p {
      color: var(--muted-foreground);
      margin-bottom: 2rem;
    }

    .rc-wellbeing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 600px;
      margin: 0 auto 1.5rem;
    }

    .rc-wellbeing-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1rem;
      background: var(--accent);
      border-radius: 0.75rem;
      text-align: left;
    }

    .rc-wellbeing-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .rc-wellbeing-item span {
      font-size: 0.95rem;
    }

    .rc-wellbeing-closing {
      font-style: italic;
      color: var(--muted-foreground);
      font-size: 0.95rem;
    }

    /* Family */
    .rc-family-card {
      background: var(--card);
      border-left: 4px solid var(--primary);
      border-radius: 0 1rem 1rem 0;
      padding: 2rem;
      margin-bottom: 3rem;
      box-shadow: var(--shadow-warm);
    }

    .rc-family-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .rc-family-card p {
      color: var(--muted-foreground);
      line-height: 1.8;
    }

    /* Commitment Banner */
    .rc-commitment-banner {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      border-radius: 1.5rem;
      padding: 3rem 2rem;
      text-align: center;
    }

    .rc-commitment-banner h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .rc-commitment-banner p {
      max-width: 700px;
      margin: 0 auto 1.5rem;
      line-height: 1.8;
      opacity: 0.95;
    }

    .rc-commitment-tagline {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      opacity: 0.9;
    }
    /* Responsive */
    @media (max-width: 1024px) {
      .nav, .header-cta {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .about-grid,
      .education-grid,
      .hostel-grid,
      .contact-grid,
      .medical-support-grid,
      .green-campus-grid {
        grid-template-columns: 1fr;
      }

      .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .campus-stats {
        grid-template-columns: repeat(2, 1fr);
      }

      .objectives-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .admissions-grid {
        grid-template-columns: 1fr;
      }

      .documents-card {
        grid-column: span 1;
      }

      .documents-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .support-ways {
        grid-template-columns: repeat(2, 1fr);
      }

      .support-bottom {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .top-bar {
        display: none;
      }

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

      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .hero-stat-value {
        font-size: 1.75rem;
      }

      .about-features {
        grid-template-columns: 1fr;
      }

      .vision-mission {
        grid-template-columns: 1fr;
      }

      .campus-stats {
        grid-template-columns: 1fr;
      }

      .therapy-grid {
        grid-template-columns: 1fr;
      }

      .objectives-grid {
        grid-template-columns: 1fr;
      }

      .documents-grid {
        grid-template-columns: 1fr;
      }

      .support-ways {
        grid-template-columns: 1fr;
      }

      .medical-features {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

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

      .donation-buttons {
        flex-direction: column;
      }

      .newsletter-form {
        flex-direction: column;
      }
    }

footer section{
	padding:0px;
}