/* Global Styles */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* match your navbar height */
}

section {
  scroll-margin-top: 80px; /* ensures section headings are visible */
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f6f8;
  color: #212121;
}
.gradient-heading {
  background: linear-gradient(90deg, #6a11cb, #2575fc); /* purple → blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: bold;
  text-align: center;
}

.section-subtitle {
  color: #555; /* keep subtitle normal */
  font-size: 1.1rem;
}

/* Custom Gradient Navbar */
.custom-navbar {
  background: linear-gradient(90deg, #1a1a1a, #2e2e2e);
  padding: 12px 20px;
  animation: slideDown 0.6s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.custom-navbar .navbar-brand {
  color: #fff !important;
  font-size: 1.2rem;
}

.custom-navbar .nav-link {
  color: #fff !important;
  margin: 0 8px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #005A9C !important;
}

/* Mobile styles */
.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .custom-navbar .nav-link {
    margin: 10px 0;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(196, 213, 231, 0.7), rgba(107, 139, 175, 0.7)),
    url("https://images.unsplash.com/photo-1522071820081-009f0129c71c") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  animation: fadeIn 1.2s ease-in;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: slideUp 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeIn 1.5s ease forwards;
}

.hero button {
  background: #F9A825;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  color: #212121;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s;
}

.hero button:hover {
  transform: scale(1.05);
  background: #ffb300;
}

/* Sections */
.section {
  padding: 80px 20px;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

/* Footer */
.footer {
  background: #1565C0;
  color: #fff;
  padding: 30px;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
  .feature-card {
    background: #fff; /* default */
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
  }

  .feature-card:hover {
    background: linear-gradient(135deg, #1565C0, #1E88E5) !important;
    color: #fff !important;
    transform: translateY(-6px);
  }

  .feature-card:hover h5,
  .feature-card:hover p {
    color: #fff !important;
  }

  /* ✅ Keep icon images normal, no changes */
  .feature-card:hover img {
    filter: none !important;
  }/* About Section Styling */
.about-section {
  background: #f8f9fa; /* light gray background */
}

.about-img {
  max-width: 90%;
  border-radius: 12px;
}



.highlight {
  color: #1565c0;
  font-weight: 600;
}

.about-section .lead {
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-section ul li {
  font-size: 1rem;
}

/* Primary Button */
.about-section .btn-primary {
  background: linear-gradient(90deg, #1565c0, #1e88e5);
  border: none;
  border-radius: 6px;
  transition: 0.3s ease;
}

.about-section .btn-primary:hover {
  background: linear-gradient(90deg, #1e88e5, #1565c0);
  transform: translateY(-2px);
}

/* Outline Button */
.about-section .btn-outline-primary {
  border: 2px solid #1565c0;
  color: #1565c0;
  border-radius: 6px;
  transition: 0.3s ease;
}

.about-section .btn-outline-primary:hover {
  background: #1565c0;
  color: #fff;
  transform: translateY(-2px);
}

/* Smooth scrolling for all anchor links */
html {
  scroll-behavior: smooth;
}


/* Feature Box Styling */
.feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.12);
}

/* Icons */
.feature-box .icon {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 15px;
  transition: color 0.3s ease-in-out;
}

.feature-box:hover .icon {
  color: #6a11cb;
}

/* Headings */
.feature-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: #555;
}
/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}
.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: #555;
}
.testimonial-author {
  margin-top: 15px;
  font-weight: bold;
  color: #1565C0;
}

/* Client Logo Slider */
.client-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}
.client-slider .logos {
  display: inline-block;
  animation: scroll 25s linear infinite;
}
.client-slider img {
  margin: 0 30px;
  height: 120px;
 
  transition: filter 0.3s ease;
}


@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* Pricing Section */
.pricing-card {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  position: relative;
  background: #fff;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-card {
  background: linear-gradient(135deg, #f3f9ff, #ffffff);
}

.pricing-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing-card ul {
  padding: 0;
  font-size: 0.9rem;
}

.pricing-card ul li {
  margin: 8px 0;
  color: #333;
}

.pricing-card button {
  border-radius: 8px;
  font-weight: 600;
  padding: 10px;
}
.faq-section .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  background-color: #fff;
  color: #0d6efd;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background-color: #0d6efd;
  color: #fff;
  box-shadow: none;
}

.faq-section .accordion-button:hover {
  background-color: #e9f2ff;
  color: #0d6efd;
}

.faq-section .accordion-body {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  background: #f9f9f9;
  border-radius: 0 0 6px 6px;
}
.gradient-heading {
  background: linear-gradient(90deg, #1565C0, #1E88E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1565C0, #1E88E5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

.card form input,
.card form textarea {
  border-radius: 12px;
}
.card form button {
  border-radius: 12px;
  font-weight: 600;
}
@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  15%, 55% { opacity: 0.3; }
}

.feature-box {
  animation: blink 2s infinite;
}
