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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

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

h1, h2, h3 {
    font-weight: 600;
    color: #1a1a1a;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: #555555;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1.1rem;
    color: #444444;
    margin-bottom: 15px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ffffff, #f5f5fa);
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 60px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.cta-button {
    background: linear-gradient(135deg, #fd0230, #f71d45);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(90, 63, 232, 0.3);
}

/* Hero Section */
.hero {
    padding: 20px 0;
    background: #ffffff;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 2;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
}

.shadow-gradient {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.05));
}

/* Video Section */
.video-section {
    padding: 40px 0;
    background: #f9f9fc;
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: 30px auto;
}

.video-wrapper iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* SPARK Framework */
.spark-framework {
    padding: 40px 0;
    background: #ffffff;
    text-align: center;
}

.spark-grid {
    margin-top: 30px;
}

.spark-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin-top: 25px;
}

.spark-row:first-child .spark-card {
    flex: 1;
    min-width: 250px;
    max-width: 360px;
}

.spark-row:last-child .spark-card {
    flex: 1;
    min-width: 250px;
    max-width: 560px;
}

.spark-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.spark-card:hover {
    transform: translateY(-5px);
}

.spark-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fd0230, #f71d45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #ffffff;
    font-size: 1.5rem;
}

.spark-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.spark-card p {
    font-size: 1rem;
    color: #555555;
}

/* Achieve, Who For, Roadmap, Why Me, Consulting Sections */
.achieve, .who-for, .roadmap, .why-me, .consulting {
    padding: 20px 0;
    background: #ffffff;
}

.achieve-grid, .who-for-grid, .roadmap-grid, .why-me-grid, .consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.achieve-item, .who-for-item, .roadmap-item, .why-me-item, .consulting-item {
    background: #f9f9fc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.achieve-item:hover, .who-for-item:hover, .roadmap-item:hover, .why-me-item:hover, .consulting-item:hover {
    transform: translateY(-3px);
}

.achieve-item i, .who-for-item i, .roadmap-item i, .consulting-item i {
    color: #fd0230;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.why-me-item i {
    color: #e63946; /* Red color for cross icons */
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.achieve-item p, .who-for-item p, .roadmap-item p, .why-me-item p, .consulting-item p {
    font-size: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 40px 0;
    background: #f9f9fc;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-style: italic;
    color: #555555;
}

.testimonial .author {
    font-weight: 600;
    color: #fd0230;
    margin-top: 15px;
}

/* Growth Partner */
.growth-partner {
    padding: 40px 0;
    background: #ffffff;
}

.partner-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.partner-image {
    max-width: 150px;
    border-radius: 50%;
}

.partner-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.partner-text .subtitle{
	text-align:left;
}

/* Featured In */
.featured-in {
    padding: 40px 0;
    background: #f9f9fc;
    text-align: center;
}

.featured-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.featured-grid img {
    max-width: 150px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.featured-grid img:hover {
    transform: scale(1.05);
}

/* Final CTA */
.final-cta {
    padding: 40px 0;
    background: linear-gradient(135deg, #fd0230, #f71d45);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    color: #ffffff;
}

.final-cta p {
    color: #f0f0f5;
}

.final-cta .cta-button {
    background: #ffffff;
    color: #fd0230;
}

.final-cta .cta-button:hover {
    background: #f0f0f5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.final-cta .note {
    font-size: 0.9rem;
    margin-top: 15px;
    color: #f0f0f5;
}

/* Contact Form */
.contact-form {
    padding: 40px 0;
    background: #f9f9fc;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 30px auto;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #fd0230;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #fd0230;
    outline: none;
}

.form-message {
    color: #e63946;
    font-size: 1rem;
    margin-bottom: 20px;
}

.form-message.error {
    color: #e63946;
}

.form-message.success {
    color: #2ecc71;
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th, .admin-table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
    font-size: 1rem;
}

.admin-table th {
    background: #fd0230;
    color: #ffffff;
    font-weight: 600;
}

.admin-table tr:nth-child(even) {
    background: #f9f9fc;
}

/* Footer */
footer {
    background: #2a2a2a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 0.9rem;
    color: #cccccc;
}

.highlight-heading {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 1px;
  color: #1f2937;
}

.highlight-heading::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #fd0230, #f71d45);
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.highlight-heading-top{
  display: inline-block;
  position: relative;
  padding-bottom: 1px;
  color: #1f2937;
}

.highlight-heading-top::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #fd0230, #f71d45);
  left: 0;
  bottom: 0;
  border-radius: 2px;
}

.submit-frm .cta-button {
    background-color: red;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 34px;
    margin-right: 96px;
}

.heading-wrapper {
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-image {
        margin-top: 30px;
    }

    .partner-content {
        flex-direction: column;
        text-align: center;
    }

    .video-wrapper iframe {
        height: 300px;
    }

    h1 {
        font-size: 25px;
    }

    h2 {
        font-size: 1.8rem;
    }

    .spark-row {
        flex-direction: column;
        align-items: center;
    }

    .spark-row .spark-card {
        max-width: 100%;
    }
	
	.hero {
     padding: 20px 0;
    }
	
	.cta-button.header-btn {
      display: none !important;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .video-wrapper iframe {
        height: 200px;
    }

    .spark-card {
        padding: 15px;
    }

    .spark-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .form-group input {
        padding: 10px;
    }
}