 
   body {
    font-size: 14px;
    line-height: 1.6;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    background: #f8fafc;
    color: #111827;
}

.header, 
.navbar {
    background: white !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(135deg, #f1f6ff, #ccdcf1);
}

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

/* ========================================
   SECTION TITLE/SUBTITLE
   ======================================== */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #374151;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero.section {
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-text {
    flex: 1 1 400px;
    min-width: 320px;
    margin-right: 40px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #2563eb 60%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.7;
    font-weight: 400;
}

.hero-image {
    flex: 1 1 360px;
    min-width: 300px;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(37,99,235,0.10);
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s cubic-bezier(.4,2,.3,1);
}

.hero-image img:hover {
    transform: scale(1.045) translateY(-6px) rotate(-1deg);
}

/* ========================================
   WHAT MAKES OUR PLATFORM STAND OUT
   ======================================== */
.standout-platform .section-subtitle {
    max-width: 900px;
    margin-bottom: 60px;
    font-size: 1rem;
}

.standout-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.standout-card {
    background: white;
    border-radius: 20px;
    padding: 50px 30px 40px 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
    min-width: 280px;
    max-width: 320px;
    flex: 1 1 300px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.standout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #1D4ED8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.standout-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(37,99,235,0.15);
}

.standout-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    transition: all 0.3s ease;
}

.standout-icon .iconify {
    color: white;
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.standout-card:hover .standout-icon {
    transform: scale(1.1) rotate(5deg);
}

.standout-card:hover .standout-icon .iconify {
    transform: scale(1.1);
}

.standout-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.standout-card p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   MODERN DIGITAL LEARNING PLATFORM
   ======================================== */
.platform-features-section {
    background: white;
    padding: 60px 0;
}

.platform-features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-feature-card {
    background: #F8FAFC;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.11);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3B82F6 0%, #1D4ED8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.platform-feature-card:hover {
    box-shadow: 0 20px 60px rgba(37,99,235,0.18);
    transform: translateY(-6px);
}

.platform-feature-card .platform-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    border-radius: 16px;
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-feature-card:hover .platform-feature-icon {
    transform: scale(1.1) rotate(3deg);
}

.platform-feature-card .platform-feature-icon .iconify {
    color: #fff;
    font-size: 2.2rem;
    transition: transform 0.3s ease;
}

.platform-feature-card:hover .platform-feature-icon .iconify {
    transform: scale(1.1);
}

.platform-feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
  
    line-height: 1.3;
}

.platform-feature-card p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ========================================
   PLATFORM SHOWCASE SECTION
   ======================================== */
.platform-showcase-section {
    
    padding: 60px 0;
}

.platform-special-row {
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-special-image {
    flex: 1 1 350px;
    min-width: 260px;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-special-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 16px 60px rgba(37,99,235,0.10);
    transition: transform 0.3s;
    display: block;
}

.platform-special-info {
    flex: 2 1 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.platform-special-info .platform-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 18px;
    line-height: 1.2;
}

.platform-special-info .platform-description {
    font-size: 1.08rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ========================================
   ADAPTED TO YOUR GOALS AND INDUSTRY
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: white;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -12px rgba(37,99,235,0.13);
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: #3B82F6;
    color: white;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-card p {
  color: #6B7280;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.superapp-bottom.section {
    text-align: center;
    background: linear-gradient(135deg, #2563eb 60%, #60a5fa 100%);
    padding: 10px 12px;
    width: 100%;
}

.superapp-cta {
    border-radius: 24px;
    max-width: 1200px;
    margin: 80px auto 60px auto;
    padding: 10px 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
}

.superapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.4), transparent);
}

.superapp-cta h2 {
    font-size: 2.375rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.5px;
}

.superapp-cta__button {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(37,99,235,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.superapp-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 ease;
}

.superapp-cta__button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37,99,235,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    background: #1a355b;
}

.superapp-cta__button:hover::before {
    left: 100%;
}

.superapp-cta__contact {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

/* Mobile Styles (up to 768px) */
@media (max-width: 768px) {
  /* Global mobile padding */
  .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  /* Hero Section Mobile */
  .hero.section {
    padding: 40px 0;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }
  
  .hero-text {
    margin-right: 0;
    min-width: 0;
    text-align: left;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    text-align: left;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    text-align: left;
  }
  
  .hero-image {
    text-align: center;
    min-width: 0;
  }
  
  /* Section Mobile */
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 28px;
    text-align: left;
  }
  
  .section-subtitle {
    font-size: 1rem;
    text-align: left;
    margin-bottom: 40px;
  }
  
  /* Standout Platform Mobile */
  .standout-platform .section-subtitle {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .standout-features {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  
  .standout-card {
    padding: 32px 24px;
    min-width: 0;
    max-width: none;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .standout-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  
  /* Make icon + h3 on one row, paragraph below */
  .standout-card-header {
    flex-wrap: wrap;
  }
  .standout-card-header p {
    flex-basis: 100%;
    margin-top: 8px;
  }
  
  .standout-icon {
    width: 64px;
    height: 64px;
    margin: 0;
    flex-shrink: 0;
  }
  
  .standout-icon .iconify {
    font-size: 2rem;
  }
  
  .standout-card h3 {
    font-size: 1.3rem;
    text-align: left;
    margin: 0;
    flex: 1;
  }
  
  .standout-card p {
    font-size: 0.95rem;
    text-align: left;
    margin: 0;
  }
  
  /* Platform Features Section Mobile */
  .platform-features-section {
    padding: 40px 0;
  }
  
  .platform-features-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .platform-feature-card {
    padding: 28px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .platform-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  
  .platform-feature-card .platform-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0;
    flex-shrink: 0;
  }
  
  .platform-feature-card .platform-feature-icon .iconify {
    font-size: 1.8rem;
  }
  
  .platform-feature-card h4 {
    font-size: 1.2rem;
    text-align: left;
    margin: 0;
    flex: 1;
  }
  
  .platform-feature-card p {
    font-size: 0.95rem;
    text-align: left;
    margin: 0;
  }
  
  /* Platform Showcase Section Mobile */
  .platform-showcase-section {
    padding: 40px 0;
  }
  
  .platform-special-row {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }
  
  .platform-special-image {
    flex: none;
    min-width: 0;
    max-width: none;
    width: 100%;
  }
  
  .platform-special-info {
    flex: none;
  }
  
  .platform-special-info .platform-title {
    font-size: 1.8rem;
    text-align: left;
  }
  
  .platform-special-info .platform-description {
    font-size: 1rem;
    text-align: left;
  }
  
  /* Features Grid Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .feature-card {
    padding: 28px 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .feature-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  
  .feature-icon-circle {
    width: 48px;
    height: 48px;
    margin: 0;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .feature-card h3 {
    font-size: 1rem;
    text-align: left;
    margin: 0;
    flex: 1;
  }
  
  .feature-card p {
    font-size: 0.9rem;
    text-align: left;
    margin: 0;
  }
  
  /* CTA Section Mobile */
  .superapp-bottom.section {
    padding: 40px 0;
  }
  
  .superapp-cta {
    margin: 40px auto 40px auto;
    padding: 40px 24px;
  }
  
  .superapp-cta h2 {
    font-size: 28px;
    
  }
  
  .superapp-cta__button {
    width: 100%;
    display: block;
    box-sizing: border-box;
    font-size: 1.1rem;
    padding: 16px 32px;
  }
}

/* Tablet Styles (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .section-inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .standout-features {
    gap: 40px;
  }
  
  .standout-card {
    min-width: 250px;
    max-width: 300px;
  }
  
  .platform-features-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Large Desktop Styles (1025px and above) */
@media (min-width: 1025px) {
  .section-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Extra Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .hero-text{
    flex: initial;
  }

  .hero-image {
    flex: initial;
  }
  
  .standout-card {
    flex: initial;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .standout-card {
    padding: 24px 20px;
  }
  
  .standout-icon {
    width: 48px;
    height: 48px;
  }
  
  .standout-icon .iconify {
    font-size: 1.8rem;
  }
  
  .standout-card h3 {
    font-size: 1.1rem;
  }
  
  .standout-card p {
    font-size: 0.9rem;
  }
  
  .platform-feature-card {
    padding: 24px 20px;
  }
  
  .platform-feature-card .platform-feature-icon {
    width: 48px;
    height: 48px;
  }
  
  .platform-feature-card .platform-feature-icon .iconify {
    font-size: 1.6rem;
  }
  
  .platform-feature-card h4 {
    font-size: 1.1rem;
  }
  
  .platform-feature-card p {
    font-size: 0.9rem;
  }
  
  .platform-special-info .platform-title {
    font-size: 1.6rem;
  }
  
  .platform-special-info .platform-description {
    font-size: 0.95rem;
  }
  
  .feature-card {
    padding: 24px 20px;
  }
  
  .feature-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  
  .feature-card h3 {
    font-size: 1.1rem;
  }
  
  .feature-card p {
    font-size: 0.9rem;
  }
  
  .superapp-cta h2 {
    font-size: 24px;
  }
  
  .superapp-cta__button {
    font-size: 1rem;
    padding: 14px 28px;
  }
} 