:root {
            --primary: #4a6fa5;
            --secondary: #f9a826;
            --accent: #e74c3c;
            --light: #f8f9fa;
            --dark: #343a40;
            --paper: #fffef7;
            --success: #2ecc71;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
            --border: 1px solid rgba(0,0,0,0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            background: white;
            color: var(--dark);
            line-height: 1.6;
            background-image: linear-gradient(to bottom, #e8f0ff, #f5f7fa 400px);
            background-attachment: fixed;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(90deg, #eddd53 0%, #4b8ba5ff 80%); 
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
                       
        }
        
        .logo-icon {
            font-size: 2.2rem;
            color: var(--secondary);

        }
        .logo img{
            width:180px;
            height:50px;
        }
        
        .logo-text {
            font-family: 'Patrick Hand', cursive;
            font-size: 2rem;
            color: var(--primary);
            font-weight: bold;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: black;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding: 5px 10px;
            transition: all 0.3s ease;
        }
        
        .nav-links a:hover {
            color: white;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .btn {
            padding: 10px 25px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            padding:10px;
        }
        
        .btn-primary {
            background: #86f09f;
            color: black;
            border: none;
            box-shadow: 0 4px 5px rgb(169 249 38 / 47%);
        }
        
        .btn-primary:hover {
            background: #e6951a;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(249, 168, 38, 0.4);
        }
        
        .btn-outline {
            background: #eff086;
            color: black;
            border-radius: 10px;
            padding:5px 5px;
            box-shadow: 0 4px 5px rgba(249, 168, 38, 0.3);
        }
        
        .btn-outline:hover {
            background: #efb865ff;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            padding: 100px 0 70px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background-image: url('/images/hero.png');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
        }
         .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgb(0 0 0 / 76%) 0%, rgb(48 60 61 / 65%) 40%);
            z-index: 1;
        }
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-family: 'Patrick Hand', cursive;
            font-size: clamp(1rem, 5vw, 3.5rem);
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--secondary);
        }
        
        .hero p {
            font-size: 16px;
            color: white;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-top: 30px;
        }
        
        
       
        
        /* Description Section */
        .description {
            padding: 50px 0;
            background: linear-gradient(90deg, #eddd53 0%, #4b8ba5ff 60%);
        }
        
        .section-title {
            text-align: center;
            font-family: 'Patrick Hand', cursive;
            font-size: 2.8rem;
            color: white;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .description-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .description-text {
            padding: 20px;
            text-align:justify;
        }
        
        .description-text h3 {
            font-size: 1.8rem;
            color: white;
            margin-bottom: 20px;
        }
        
        .description-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: black;
            
        }
        
        .user-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .user-card {
            background: var(--paper);
            border-radius: 10px;
            padding: 25px;
            box-shadow: var(--shadow);
            border: var(--border);
        }
        
        .user-card h4 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .user-card ul {
            padding-left: 25px;
        }
        
        .user-card li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .user-card li::marker {
            color: var(--secondary);
            font-size: 1.2rem;
        }
        /*Feature Advantage---*/
        .container-custom {
            background: linear-gradient(90deg, #eddd53 0%, #4b8ba5ff 60%);
            overflow: hidden;
            padding: 30px;
        }
        .feature{
                padding: 50px 0;
            background: linear-gradient(90deg, #eddd53 0%, #4b8ba5ff 60%);
        }
        .feature-section-title {
            text-align: center;
            color: white;
            font-family: 'Patrick Hand', cursive;
            margin-bottom: 40px;
            font-size: 2.8rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .feature-section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        /* Tab styling */
        .nav-pills {
            margin-left:30px;
            margin-top:20px;
            gap: 20px;
        }
        
        .feature-nav-item {
            margin-bottom: 8px;
            width: 100%;
        }
        
        .feature-link {
            color: var(--dark);
            background: #f0f4f8;
            border-radius: 12px;
            padding: 16px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            min-height: 70px; /* Uniform height */
            width: 100%; /* Full width */
            white-space: normal; /* Allow text wrapping */
            text-align: left;
        }
        
        .feature-link i {
            margin-right: 12px;
            font-size: 1.2rem;
            width: 28px;
            text-align: center;
        }
        
        .feature-link:hover {
            background: #e3eaf3;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        
        .feature-link.active {
            background: var(--primary);
            color: white;
            
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
        }
        
        /* Content styling */
        .feature-content-wrapper {
            
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .feature-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 16px 16px 0 0;
            margin-bottom:25px;
           
        }
        
        .tab-content {
            padding: 30px;
        }
        
        .tab-pane h5 {
            color: var(--primary);
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .feature-benefits {
            list-style-type: none;
            padding-left: 0;
        }
        
        .feature-benefits li {
            padding: 12px 0;
            padding-left: 40px;
            position: relative;
            border-bottom: 1px solid #f0f4f8;
            font-size: 1.05rem;
        }
        
        .feature-benefits li:last-child {
            border-bottom: none;
        }
        
        .feature-benefits li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 26px;
            background: rgb(238 92 67 / 10%);
            color: #ee4343e3;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        /* Animation for tab content */
        .tab-pane {
            animation: fadeIn 0.5s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .feature-content-wrapper {
                margin-top: 20px;
            }
            
            .feature-img {
                height: 200px;
            }
            
            .tab-content {
                padding: 20px;
            }
        }
        
        .point-counter {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #cb5440;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 10px;
            font-size: 20px;
            font-weight: bold;
        }
        /* Uniform button content alignment */
        .button-content {
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .button-text {
            flex-grow: 1;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 80px 0;
            background: linear-gradient(90deg, #eddd53 0%, #4b8ba5ff 60%);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .pricing-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 5px rgb(41 44 37 / 47%);
            padding: 20px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            border: 2px solid #e0e7ff;
            text-align: center;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
        }
        
        .pricing-card.popular {
            border-color: var(--secondary);
            transform: scale(1.05);
            z-index: 2;
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .popular-tag {
            position: absolute;
            top: 25px;
            right: -30px;
            background: var(--secondary);
            color: white;
            padding: 10px 25px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.8rem;
        }
        
        .pricing-header {
            margin-bottom: 30px;
        }
        
        .pricing-header h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .price span {
            font-size: 1rem;
            color: #777;
            font-weight: normal;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
            
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: var(--success);
            margin-right: 10px;
        }

     @media (max-width: 480px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 250px;
                margin-left: auto;
                margin-right: auto;
            }   
        }
/*--- Banner Image--*/
.banner {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
  height: 500px;

}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
  display: block;
   background: white;
}

.banner-text {
  position: absolute;
  top: 20%;
  left: 40%;
  transform: translate(-100%, -0%);
  color: black;
  text-align: left;
  width: 40%;
  padding-left:30px;
  margin-left:30px;

}

.banner-text h1 {
  margin: 0;
  font-size: 3rem;
  letter-spacing: 20.5spx;
  margin-bottom:50px;
  font-family: 'Patrick Hand', cursive;
}

.banner-text p {
  margin: 10px 0 0;
  font-size: 1.2rem;
  line-height:1.8;
}

@media (max-width: 768px) {
  .banner {
    height: 200px;
  }
  .banner-text{
  padding-left:15px;
  margin-left:10px;
 }
  .banner-text h1 {
    font-size: 1rem;
    margin-bottom:20px;
  }
  .banner-text p {
    font-size: 0.6rem;
    line-height:1.2
  }
}

        /* FAQ Section */
        .faq {
            padding: 50px 0;
            background:linear-gradient(90deg, #eddd53 0%, #4b8ba5ff 60%);
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 30px 30px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 30px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            overflow: hidden;
        }
        
        .modal-header {
            background: var(--primary);
            color: white;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            font-size: 1.5rem;
        }
        
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }
        
        .toggle-form {
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            font-weight: 600;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .description-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }
            
            .nav-links {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero {
                padding: 60px 0 30px;
            }
            
            .handwriting-text {
                font-size: 1.5rem;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
        }


