:root {
            --primary-color: #FF7F50; /* Coral - from your meta theme-color */
            --secondary-color: #4B5320; /* Army green - African earth tone */
            --accent-color: #E9C46A; /* Gold/yellow - African sun */
            --dark-color: #2d4d37;/*#264653; /* Dark teal - depth/roots */
            --light-color: #F8F9FA; /* Off-white */
            --text-dark: #212529;
            --dark-green:2D4D37;
            --text-light: #F8F9FA;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            
            /* Fonts */
            --heading-font: 'Ubuntu', sans-serif;
            --body-font: 'Poppins', sans-serif;
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--body-font);
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--light-color);
            overflow-x: hidden;
            
        }
        
        h1, h2, h3, h4 {
            font-family: var(--heading-font);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        ul {
            list-style: none;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Utility Classes */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .section {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            color: var(--dark-color);
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .text-center {
            text-align: center;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background-color: var(--dark-color);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
         width: 100vw;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding:1rem 1rem 1rem 0;
            width:100vw;
            height: 70px;
            position:fixed;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo-con {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left:0;
        }
        
        #logo2 {
            width: 70px;
            height: 70px;
            margin-left:0;
      
        }
        
        #name {
            font-family: 'karla' sns-serif;/*var(--heading-font);*/
            font-weight: 700;
            color: var(--dark-color);
            font-size: 3.0rem;
            margin:auto 0 auto
            
        }
        
        .menu-icon, .close-icon {
            cursor: pointer;
            fill: var(--dark-color);
            transition: var(--transition);
            
        }
        
        .menu-icon:hover, .close-icon:hover {
            fill: var(--primary-color);
        }
        
        .m-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 400px;
            height: 100vh;
            background-color: var(--light-color);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            z-index: 1001;
            padding: 2rem;
            overflow-y: auto;
        }
        
        .m-nav.active {
            right: 0;
        }
        
        .close-icon {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
        }
        
        .nav-list {
            margin-top: 3rem;
        }
        
        .nav-list-item {
            margin-bottom: 1.5rem;
        }
        
        .nav-list-item a {
            font-size: 1.2rem;
            color: var(--dark-color);
            font-weight: 500;
            position: relative;
            padding-bottom: 0.3rem;
        }
        
        .nav-list-item a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .nav-list-item a:hover::after {
            width: 100%;
        }
        
        #nav-space {
            height: 70px;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0.5, .6)), url('../images/art.webp') no-repeat center center/cover;
            color: var(--text-light);
            text-align: center;
            padding: 2rem;
        }
        
        .hero-section .section-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero-section .heading{
            font-size: 3rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
      
        }
        
        .hero-section .sub-heading {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        .inline-link {
            color: var(--accent-color);
            font-weight: 600;
            border-bottom: 2px solid var(--accent-color);
        }
        
        .inline-link:hover {
            color: white;
            border-bottom-color: white;
        }
        
        .screem {
            font-size: 0.8rem;
            margin-bottom: 1rem;
            opacity: 0.7;
        }
        
        /* Mission Section */
        .mission, vission{
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        .mission .heading ,.vission .heading{
            font-size: 2.5rem;
            max-width: 900px;
            margin: 0 auto 2rem;
        }
        
        .mission .btn {
            background-color: var(--light-color);
            color: var(--primary-color);
        }
        
        .mission .btn:hover {
            background-color: var(--dark-color);
            color: var(--light-color);
        }
        
        
        
        /* Features Section */
        .features-section {
            background-color: var(--light-color);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            padding: 2rem;
            text-align: center;
        }
        
        .feature:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .feature h4 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        
        .feature figure {
            margin-bottom: 1.5rem;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .feature img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .feature .sub-heding {
            color: var(--text-dark);
            opacity: 0.8;
        }
        
        
        /* vision section*/
        .vision-section{
            height:70vh;
            background: linear-gradient(rgba(1, 1, 1, .7), rgba(1, 1, 0.5, 0.4)), url('../images/happy-kids.webp') no-repeat center center/cover;
            margin-top:4rem;
            font-style:italic;
            color:#fff;
            border-radius:1rem;
            box-shadow:var(--shadow);
            padding:2rem 1rem;
            text-align:center;
         
        }
        /* Appeal Section */
        .appeal-section {
            background-color: var(--dark-color);
            color: var(--text-light);
        }
        
        .appeal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        
        .app-item {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 2rem;
            transition: var(--transition);
        }
        
        .app-item:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }
        
        .app-item h2 {
            color: var(--accent-color);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .app-item .sub-heading {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .app-item figure {
            margin-bottom: 1.5rem;
        }
        
        .app-item img {
            border-radius: 8px;
            height: auto;
            object-fit: cover;
            width: 100%;
        }
        
        .app-item figcaption {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 0.5rem;
        }
        
        
        /* blog */
  .blog-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 1rem 0;
  }
   .swiper-slide {
  text-align: center;
  padding: 20px;
  box-shadow:1px 1px 0 rgba(255,255,255,.6);
  }

.swiper-slide img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.slide-text {
  margin-top: 12px;
}

.slide-text h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.slide-text p {
  font-size: 14px;
  color: #555;
}


  

        /* Footer */
        footer {
            background-color: var(--secondary-color);
            color: var(--text-light);
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            opacity: 0.8;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-color);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            opacity: 0.7;
            font-size: 0.9rem;
        }
        
        /* Waitlist Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            max-width: 500px;
            width: 90%;
            position: relative;
            transform: translateY(20px);
            transition: var(--transition);
        }
        
        .modal-overlay.active .modal {
            transform: translateY(0);
        }
        
        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
        }
        
        .modal h3 {
            color: var(--dark-color);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark-color);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: var(--body-font);
        }
        
        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .submit-btn:hover {
            background-color: var(--dark-color);
        }
        
        .why-famigen {
  background-color: #fdfaf6;
  padding: 4rem 1rem;
}
.hid{
    display:none;
}

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

.reason-item,blog-item {
  background: white;
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-radius: 0.75rem;
}

.reason-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.75rem;
}

.reason-text {
  font-size: 1rem;
  color: #333;
}

        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }
            
           .hero-section
            .hero-section .heading {
                font-size: 2.5rem;
                height:100dvh;
            }
        }
        
        @media(min-width:768px){
            .swiper-slide img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
        }
        @media (min-width: 768px) {
            .section {
                padding: 4rem 0;
                
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-section .heading {
                font-size: 2.2rem;
            }
            
            .hero-section .sub-heading {
                font-size: 1.1rem;
            }
            
            .mission .heading {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-section .heading {
                font-size: 2rem;
            }
            
            .nav-list-item a {
                font-size: 1.1rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .appeal-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        /*obuka enswa*/
        
        
        /* survay */
        
        .block{
            display:block;
        }
        
        .padded{
            padding:1rem 1.1rem;
        }
        
        .spaced-y{
            margin:1rem 0;
        }
        
        #famigen-survey{
            background: linear-gradient(rgba(1, 1, 1, .7), rgba(1, 1, 0.5, 0.4)), url('../images/happy-kids.webp') no-repeat center center/cover;
    
        }
        
        #famigen-survey *{
            font-weight:700;
            
        }
        #famigen-survey div{
            margin:1rem 0;
        }
        
        label{
            color:white;
        }
        
         select{
            margin-top:.2rem;
            padding:0.5rem 0.7rem;
            width:100%;
            color:black;
        }
        
        .round{
            border-radius:1.0rem;
        }
        
        input[type=text], input[type=number]{
            width:100%;
            color:green important!;
        }
        
        input{
            border:0.2rem solid var(--dark-color);
        }
        
        input[type=checkbox]{
            inset:var(--dark-color);
        }
        .w-full{
            width:100%;
        }
        
        .padded-s{
            padding:0.5rem 0.8rem;
        }
        
        .hide{
            display:none;
        }
        
        .op-input{
            margin:.3rem 0;
        }
