:root {
            --primary-orange: #1C4297;
            --secondary-cream: #f0f3fb;
            --dark-text: #2c3e50;
            --light-text: #6c757d;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--dark-text);
            background: linear-gradient(135deg, var(--secondary-cream) 0%, #ffffff 100%);
        }

             .text-orange{
            color: #1C4297;
        }
        .bg-orange{
            background-color: #1C4297 !important;

        }
        .bgorange{
            background-color: #f0f3fb !important;
        }
        
        .hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f0f3fb 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1C4297;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2d3748 0%, #1C4297 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bg-orange {
  background: #1C4297;
}

.text-white {
  color: white;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-visual {
  animation: fadeInRight 0.8s ease-out;
}



.visual-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  transform: rotate(5deg);
  transition: transform 0.3s ease;
  max-width: 480px; /* a bit wider */
  margin: 0 auto;
}

.visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.hero-image {
  width: 100%;
  height: 355px; /* slightly taller */
  object-fit: contain;
   display: block;
}

@media (max-width: 768px) {
  .hero-image {
    height: auto;
    max-height: 320px; /* a bit taller on mobile */
    object-fit: contain;
  }

  .visual-card {
    max-width: 380px; /* increase on mobile */
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
}

/* .visual-card {
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transform: rotate(5deg);
  transition: transform 0.3s ease;
} */

.visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}

/* .hero-image {
  width: 100%;
  height: 400px;
  object-fit: fill;
} */



.visual-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1C4297;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .visual-overlay {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

        .section-title {
            color: var(--primary-orange);
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--primary-orange);
            border-radius: 2px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(28, 66, 151, 0.1);
            transition: all 0.3s ease;
            border: 1px solid var(--secondary-cream);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(28, 66, 151, 0.15);
        }
        
        .app-showcase {
            padding: 80px 0;
            background: var(--secondary-cream);
        }
        
     .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
     }

.app-image {
    width: 100%; /* Force full width in grid */
    height: 250px; /* Fixed height for uniform look */
    object-fit: fill; /* Crops overflow to fit dimensions */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

        
        .app-image:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .cta-section {
            background: var(--dark-text);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .btn-primary-custom {
            background: var(--primary-orange);
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background: #f0f3fb;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(28, 66, 151, 0.3);
        }
        
        .stats-counter {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            margin: 1rem 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .stats-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-orange);
            display: block;
        }
        
        .highlight-text {
            background: linear-gradient(45deg, var(--primary-orange), #1C4297);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 0;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .app-showcase {
                padding: 50px 0;
            }
        }