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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
            line-height: 1.6;
            color: #1e293b;
            overflow-x: hidden;
        }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
        }
		 a:where(:not(.wp-element-button)) {
                color: var(#fff);
                text-decoration: none;
            }
        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, #fff 0%, #5b21b6 70%, #7c3aed 100%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0,0,0,0.15);
            backdrop-filter: blur(10px);
        }

        header nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .logo-container {
            position: relative;
            width: 60px;
            height: 60px;
        }

        .logo-triangle {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-symbol {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -40%);
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
            letter-spacing: 0.5px;
			color: #fff;
        }

        .logo-text .tagline {
            font-size: 0.85rem;
            opacity: 0.9;
            font-weight: 400;
            color: #fca5a5;
            letter-spacing: 0.3px;
        }
 
 
 /* ==== new LOGO STYLING ==== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px; /* space between logo and text/nav */
}

.logo img.custom-logo {
  max-height: 70px;   /* control logo height */
  width: auto;        /* maintain aspect ratio */
  height: auto;
  display: block;
}

/* Fallback text logo (if no image uploaded) */
.logo h1 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.logo .tagline {
  font-size: 0.9rem;
  color: #666;
  margin-left: 5px;
}

/* Keep header nav aligned */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .logo img.custom-logo {
    max-height: 50px; /* smaller logo on mobile */
  }
}




        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #dc2626, #ef4444);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 80%;
        }

        .nav-links a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-2px);
        }

        .cta-button {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            padding: 0.8rem 1.8rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220,38,38,0.4);
        }

        /* Hamburger button */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 50%, #7c3aed 100%);
    padding: 1.5rem 2rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cta-button {
    display: none; /* optional: hide CTA on small screens */
  }
}


        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 30%, #7c3aed 70%, #8b5cf6 100%);
            color: white;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(239, 68, 68, 0.15) 0%, transparent 50%);
            animation: gradientFloat 15s ease-in-out infinite;
        }

        @keyframes gradientFloat {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero h2 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            animation: slideInUp 1s ease-out;
            background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
			line-height: 85px;
        }

        .hero .subtitle {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            animation: slideInUp 1s ease-out 0.2s both;
            color: #fca5a5;
            font-weight: 600;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.85;
            animation: slideInUp 1s ease-out 0.4s both;
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 3rem;
        }

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

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 1rem 2.5rem;
            border: 2px solid white;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

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

        .btn-secondary:hover {
            background: white;
            color: #4c1d95;
            transform: translateY(-3px);
        }

        /* Student Lifecycle Section */
        .student-lifecycle {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

        .section-title h2 {
            font-size: 3rem;
            color: #1e293b;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-title .highlight {
            color: #dc2626;
        }

        .section-title p {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .lifecycle-diagram {
            position: relative;
            margin: 4rem 0;
            padding: 3rem;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .lifecycle-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .lifecycle-stage {
            flex: 1;
            min-width: 200px;
            text-align: center;
            position: relative;
            padding: 2rem 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }

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

        .stage-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 1rem;
            color: white;
            font-weight: bold;
        }

        .lifecycle-stage:nth-child(1) .stage-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .lifecycle-stage:nth-child(2) .stage-icon { background: linear-gradient(135deg, #10b981, #059669); }
        .lifecycle-stage:nth-child(3) .stage-icon { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .lifecycle-stage:nth-child(4) .stage-icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .lifecycle-stage:nth-child(5) .stage-icon { background: linear-gradient(135deg, #ef4444, #dc2626); }

        .lifecycle-stage h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #1e293b;
            font-weight: 600;
        }

        .lifecycle-stage p {
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.4;
        }

        .arrow {
            font-size: 2rem;
            color: #dc2626;
            opacity: 0.6;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .service-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #dc2626, #ef4444);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1e293b;
            font-weight: 600;
        }

        .service-card p {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
			font-size: 0.9rem;
        }

        .service-features {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-features li {
            color: #64748b;
            margin-bottom: 0.7rem;
            padding-left: 1.5rem;
            position: relative;
            font-weight: 500;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #dc2626;
            font-weight: bold;
            font-size: 1.1rem;
        }



        /* Expertise Section */
        .expertise {
            padding: 100px 0;
            background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
            color: white;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .expertise-card {
            background: rgba(255,255,255,0.1);
            padding: 2.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .expertise-card:hover {
            background: rgba(255,255,255,0.15);
            transform: translateY(-5px);
        }

        .expertise-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #fca5a5;
        }

        .expertise-card p {
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Team Section */
        .team {
            padding: 100px 0;
            background: white;
        }

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

        .team-card {
            background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            text-align: center;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: bold;
            color: white;
        }

        .team-card:nth-child(1) .team-avatar { background: linear-gradient(135deg, #3b82f6, #2563eb); }
        .team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, #10b981, #059669); }
        .team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .team-card:nth-child(5) .team-avatar { background: linear-gradient(135deg, #ef4444, #dc2626); }
        .team-card:nth-child(6) .team-avatar { background: linear-gradient(135deg, #06b6d4, #0891b2); }

        .team-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        .team-role {
            color: #dc2626;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .team-card p {
            color: #64748b;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 50%, #7c3aed 100%);
            color: white;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.8rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .contact-info p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-form {
            background: rgba(255,255,255,0.1);
            padding: 3rem;
            border-radius: 20px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: 600;
            font-size: 1rem;
			color: #fff;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 10px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #dc2626;
            background: rgba(255,255,255,0.15);
			background: #7A42D6;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.7);
        }

        .form-submit input[type="submit"],
.wpcf7-submit {
            width: 100%;
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit input[type="submit"]:hover,
.wpcf7-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(220,38,38,0.4);
        }

        /* Footer */
        footer {
            background: #4c1d95;
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
			list-style: none;
			padding: 0;              /* remove default padding */
            margin: 0;               /* reset margin */
        }
        .footer-links li {
            list-style: none;        /* just in case */
        }
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #fca5a5;
        }
        /* Copyright */
         .footer-copy {
         font-size: 0.9rem;
         opacity: 0.85;
}

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero h2 {
                font-size: 2.8rem;
            }

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

            .contact-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .services-grid,
            .team-grid,
            .expertise-grid {
                grid-template-columns: 1fr;
            }

            .lifecycle-flow {
                flex-direction: column;
            }

            .arrow {
                transform: rotate(90deg);
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loading animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

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