/* Custom CSS for IntegrityData Landing Page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.navbar-dark {
  background: rgba(0, 0, 0, 0.9);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ff6b6b !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #709dff 0%, #4ecdc4 100%);
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.1"/><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
  opacity: 0.3;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.hero-image-container {
  position: relative;
  height: 500px;
  animation: fadeIn 1s ease-out 0.8s both;
}

.hero-main-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-woman-image {
  max-height: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.floating-icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.floating-icon:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.icon-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.icon-2 {
  top: 10%;
  right: -5%;
  animation-delay: -2s;
}

.icon-3 {
  bottom: 30%;
  left: 5%;
  animation-delay: -4s;
}

.icon-4 {
  bottom: 20%;
  right: 15%;
  animation-delay: -3s;
}

.floating-icon i {
  font-size: 1.5rem;
  color: #ff6b6b;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  opacity: 0.3;
}

.services-section .section-title {
  color: white;
}

.services-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.service-card {
  background: white;
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: none;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-card-1::before {
  background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
}
.service-card-2::before {
  background: linear-gradient(90deg, #4ecdc4, #44a08d);
}
.service-card-3::before {
  background: linear-gradient(90deg, #45b7d1, #96c93d);
}
.service-card-4::before {
  background: linear-gradient(90deg, #f093fb, #f5576c);
}
.service-card-5::before {
  background: linear-gradient(90deg, #4facfe, #00f2fe);
}
.service-card-6::before {
  background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.service-card-1:hover::before {
  height: 100%;
}
.service-card-2:hover::before {
  height: 100%;
}
.service-card-3:hover::before {
  height: 100%;
}
.service-card-4:hover::before {
  height: 100%;
}
.service-card-5:hover::before {
  height: 100%;
}
.service-card-6:hover::before {
  height: 100%;
}

.service-card-1:hover {
  color: white;
}
.service-card-2:hover {
  color: white;
}
.service-card-3:hover {
  color: white;
}
.service-card-4:hover {
  color: white;
}
.service-card-5:hover {
  color: white;
}
.service-card-6:hover {
  color: white;
}

.service-card:hover h4,
.service-card:hover p,
.service-card:hover .service-features li {
  color: white;
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-card-1 .service-icon i {
  color: #ff6b6b;
}
.service-card-2 .service-icon i {
  color: #4ecdc4;
}
.service-card-3 .service-icon i {
  color: #45b7d1;
}
.service-card-4 .service-icon i {
  color: #f093fb;
}
.service-card-5 .service-icon i {
  color: #4facfe;
}
.service-card-6 .service-icon i {
  color: #43e97b;
}

.service-card:hover .service-icon i {
  color: white;
  font-size: 2rem;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
  position: relative;
  z-index: 2;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.service-features {
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 2;
}

.service-features li {
  padding: 0.5rem 0;
  color: #666;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: #ff6b6b;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.service-card:hover .service-features li i {
  color: white;
}

/* Pricing Section */
.pricing-section {
  position: relative;
  background: linear-gradient(135deg, #709dff 0%, #4ecdc4 100%);
  color: white;
}

.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 107, 107, 0.3);
}

.network-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.network-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
}

.mtn-logo {
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

.airtel-logo {
  background: linear-gradient(135deg, #e60012 0%, #ff6b35 100%);
}

.glo-logo {
  background: linear-gradient(135deg, #00c851 0%, #00ff00 100%);
}

.nine-logo {
  background: linear-gradient(135deg, #00bfa5 0%, #1de9b6 100%);
}

.network-name {
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.pricing-table {
  margin-bottom: 2rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(102, 126, 234, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.price-row:hover {
  background: rgba(255, 107, 107, 0.1);
  transform: translateX(5px);
}

.data-size {
  font-weight: 600;
  color: #333;
  font-size: 1rem;
}

.price {
  font-weight: 700;
  color: #ff6b6b;
  font-size: 1.1rem;
}

.validity {
  font-size: 0.85rem;
  color: #666;
}

.btn-purchase {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border: none;
  border-radius: 25px;
  padding: 1rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.btn-purchase:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #4ecdc4 0%, #ff6b6b 100%);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: white;
}

.features-content {
  padding-right: 2rem;
}

.features-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid #ff6b6b;
}

.feature-item:hover {
  background: rgba(255, 107, 107, 0.05);
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-content p {
  color: #666;
  margin: 0;
}

.features-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 1.5rem;
}

.stars {
  color: #ffc107;
  margin-bottom: 1rem;
}

.stars i {
  margin-right: 0.2rem;
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-info h6 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.author-info small {
  color: #666;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

.contact-info {
  padding-right: 2rem;
}

.contact-methods {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 107, 107, 0.05);
  transform: translateX(5px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.2rem;
}

.contact-details h5 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333;
}

.contact-details p {
  color: #666;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 20px;
}

.contact-form .form-control {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
  border-color: #ff6b6b;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-widget p {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ff6b6b;
  text-decoration: none;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ff6b6b;
  color: white;
  transform: translateY(-3px);
}

.footer-widget-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b6b;
  padding-left: 5px;
}

.footer-divider {
  border-color: #333;
  margin: 2rem 0;
}

.footer-copyright,
.footer-contact {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
}

.footer-contact i {
  color: #ff6b6b;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(200%) rotate(45deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    margin-top: 8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-image {
    margin-top: 3rem;
    height: 300px;
  }

  .floating-card {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .floating-card i {
    font-size: 1.5rem;
  }

  .features-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .pricing-card {
    margin-bottom: 2rem;
  }

  .service-card {
    margin-bottom: 2rem;
  }

  .testimonial-card {
    margin-bottom: 2rem;
  }
}

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

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

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .floating-card {
    position: static;
    margin-bottom: 1rem;
    animation: none;
  }

  .hero-image {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border: none;
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, #4ecdc4 0%, #ff6b6b 100%);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: white;
  color: #ff6b6b;
  border-color: white;
  transform: translateY(-2px);
}

/* Loading States */
.btn:active {
  transform: translateY(0);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #4ecdc4 0%, #ff6b6b 100%);
}

/* Responsive Design for Hero Image */
@media (max-width: 768px) {
  .hero-image-container {
    margin-top: 3rem;
    height: 400px;
  }

  .hero-woman-image {
    max-height: 350px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
  }

  .floating-icon i {
    font-size: 1.2rem;
  }

  .icon-1 {
    left: -5%;
  }

  .icon-2 {
    right: 0%;
  }

  .icon-3 {
    left: 10%;
  }

  .icon-4 {
    right: 20%;
  }
}

@media (max-width: 576px) {
  .hero-image-container {
    height: 300px;
  }

  .hero-woman-image {
    max-height: 280px;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
  }

  .floating-icon i {
    font-size: 1rem;
  }
}
