:root {
  --primary-color: #0948d0;
  --secondary-color:  #070745;
  --accent-color: #011f49ea;
  --dark-bg: #1e293b;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --border-color: #e2e8f0;
  --accent-green: #00A94C;
  --dark-green: #16a34a;
 --bg-light: #f8fafc;
 --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
 --text-dark: #1e293b;
 --text-gray: #64748b;
 --card-bg: #ffffff;
  --border-color: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem !important;
  font-weight: bold !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem !important;
  font-weight: 700;
  color: white !important;
  text-decoration: none;
}

.navbar-brand img {
  width: 200px;
  height: 40px;
}

.logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: white;
  font-weight: 600;
}

.nav-link {
  color: #070745 !important;
  font-weight: 700;
  margin: 0 0.25rem;
  padding: 0.5rem 0.4rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  white-space: nowrap; /* Prevents text wrapping */
}

.nav-item.active .nav-link {
  background: #070745;
  color: whitesmoke !important;
}

.nav-item:hover .nav-link {
  background: var(--light-bg);
  color: var(--primary-color) !important;
}

.btn-login {
  background: var(--accent-green);
  border: none;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-login:hover {
  background: var(--secondary-color);
  color: white;
  transform: translateY(-1px);
}

/* Adjustments for large screens */
@media (min-width: 1400px) {
  .nav-link {
    margin: 0 0.5rem;
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
  }
}

/* Adjustments for standard desktops */
@media (min-width: 1200px) and (max-width: 1399px) {
  .nav-link {
    margin: 0 0.3rem;
    padding: 0.5rem 0.6rem;
    font-size: 0.95rem;
  }
  .navbar-brand img {
    width: 180px;
    height: 36px;
  }
}

/* Adjustments for smaller desktops/laptops */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav {
    gap: 0;
  }
  .nav-link {
    margin: 0 0.1rem;
    padding: 0.4rem 0.5rem;
    font-size: 0.85rem;
  }
  .btn-login {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  .navbar-brand img {
    width: 160px;
    height: 32px;
  }
}

/* For very tight screens - reduce further */
@media (min-width: 992px) and (max-width: 1100px) {
  .nav-link {
    margin: 0 0.05rem;
    padding: 0.4rem 0.3rem;
    font-size: 0.8rem;
  }
  .btn-login {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  .navbar-brand img {
    width: 140px;
    height: 28px;
  }
}

/* Emergency breakpoint for very small laptop screens */
@media (min-width: 992px) and (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  .nav-link {
    margin: 0;
    padding: 0.4rem 0.25rem;
    font-size: 0.75rem;
  }
  .btn-login {
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }
  .navbar-brand img {
    width: 120px;
    height: 24px;
  }
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .navbar-toggler {
    border: none !important;
    color: var(--primary-color) !important;
  }
  .navbar-collapse {
    margin-top: 1rem;
  }
  .nav-link {
    margin: 0.25rem 0;
    padding: 0.75rem 1rem;
    white-space: normal; /* Allow wrapping on mobile */
  }
  .btn-login {
    margin-top: 1rem;
    width: 100%;
  }
}
/* Main Content */
 .main-container {
    min-height: 80vh;
    position: relative;
    /* Add background image */
    background-image: url('images/stats.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient overlay */
    background: linear-gradient(
        15deg,
        var(--accent-color),
        var(--secondary-color)
    );
    opacity: 0.8; 
    z-index: 1;
}

.main-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 2;
}

.main-content {
    position: relative;
    z-index: 3;
    padding: 23px 0;
}

.main-title {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-green), var(--primary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
     font-weight: 700;
      line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    position: relative;
}

.main-brand {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
  font-size: 1.875rem;
    color: whitesmoke;
}

.main-subtitle {
    font-size: 1.125rem;
    color: rgb(216, 216, 216);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.main-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-green);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
    position: relative;
    overflow: hidden;
}

.main-cta::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;
}

.main-cta:hover::before {
    left: 100%;
}

.main-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4);
    background: var(--dark-green);
    color: white;
}

.main-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    /* Add backdrop blur for glass effect (optional) */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(10px);
}

.main-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-green));
}

.main-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.main-form-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.main-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.main-form-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.main-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.main-input-label {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 0.875rem;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.main-input {
    width: 100%;
    padding: 10px 10px 10px 10px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.main-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--card-bg);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
}

.main-input:focus + .main-input-label,
.main-input:not(:placeholder-shown) + .main-input-label {
    top: -10px;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--accent-color);
    background: var(--card-bg);
    padding: 0 0.5rem;
}

.main-select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%231e3a8a" stroke-width="2"><path stroke-linecap="round" stroke-linejoin="round" d="M19 9l-7 7-7-7"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
}

.main-submit {
    width: 100%;
    background: var(--accent-green);
    border: none;
    padding: 1rem;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.main-submit:hover::before {
    width: 300px;
    height: 300px;
}

.main-submit:hover {
    transform: translateY(-2px);
    background: var(--dark-green);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 20px;
    }

    .main-form-container {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }

    .main-subtitle {
        max-width: 100%;
        font-size: 0.9rem;
    }

    /* Disable fixed background on mobile for better performance */
    .main-container {
        background-attachment: scroll;
    }
    .main-brand{
      font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .main-form-container {
        padding: 1.5rem 1rem;
    }

    .main-form-title {
        font-size: 1.25rem;
    }
}

/* Entrance Animation */
.main-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.main-content > *:nth-child(2) { animation-delay: 0.2s; }
.main-content > *:nth-child(3) { animation-delay: 0.4s; }

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.strategies-section {
  background: var(--card-bg);
  margin-top: 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.strategy-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.strategy-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.strategy-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.strategy-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.strategy-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.strategy-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.strategy-metrics {
  margin-bottom: 1.5rem;
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}

.metric-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.metric-value {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.risk-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.risk-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.risk-value {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.risk-value.high {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.risk-value.medium {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.risk-value.low {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.btn-strategy {
  background: #00A94C;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 500;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-strategy:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-content {
    padding: 2rem  2rem;
  }

  .main-title {
    font-size: 2rem;
  }

  .contact-card {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
  }

  .navbar-nav {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
  }
}

.about-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: url("images/bg.webp"),
    linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  background-size: contain;
  background-attachment: fixed;
  background-blend-mode: overlay;
}

.geometric-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 255, 255, 0.08) 2px,
      transparent 2px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(255, 255, 255, 0.05) 1.5px,
      transparent 1.5px
    ),
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(255, 255, 255, 0.02) 50%,
      transparent 60%
    );
  background-size: 60px 60px, 100px 100px, 80px 80px, 200px 200px;
  animation: geometricFloat 30s ease-in-out infinite;
}

@keyframes geometricFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 50%;
  animation: floatUpDown 15s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
  animation-delay: -2s;
}

.floating-shape:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 70%;
  right: 10%;
  animation-delay: -8s;
}

.floating-shape:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 15%;
  animation-delay: -5s;
}

.floating-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 40%;
  right: 20%;
  animation-delay: -10s;
  border-radius: 20px;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translateY(-30px) translateX(10px) rotate(2deg);
    opacity: 0.6;
  }
  66% {
    transform: translateY(-15px) translateX(-5px) rotate(-1deg);
    opacity: 0.4;
  }
}

.about-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
  z-index: 2;
}

.aboutpage-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  z-index: 2;
}

.about-section-header {
  text-align: center;
  margin-bottom: 30px;
}


.about-section-badge {
  display: inline-block;
  color: var(--light-bg);
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fdfdff;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-subtitle {
  font-size: 1.3rem;
  color: lightgray;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
  margin-top: 10px;
}

.about-profile-section {
  position: sticky;
  top: 100px;
}

.about-profile-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--orange));
}

.about-profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.profile-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--accent-color);
  margin: 0 auto 25px;
  display: block;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.3);
}

.profile-image:hover {
  transform: scale(1.05);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.about-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.about-title {
  color: rgb(7, 0, 57);
  font-weight: 600;
  font-size: 1.2rem;
}

.about-reg {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 25px;
  font-weight: 500;
}

.about-experience-badge {
  background: var(--accent-color);
  color: white;
  padding: 20px 30px;
  border-radius: 25px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(1, 23, 96, 0.4);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.about-experience-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
}

.about-experience-number {
  font-size: 2.8rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-experience-text {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 5px;
}

.about-content-section {
  color: var(--text-light);
}

.about-description {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: #f9f4f4;
}

.about-highlight {
  color: rgb(255, 255, 255);
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange), #ea580c);
  background-clip: text;
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin: 10px 0;
}

.about-feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 25px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-feature-card:hover::before {
  opacity: 1;
}

.about-feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgb(255, 255, 255);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.about-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.about-feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.about-feature-description {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  color: rgb(246, 246, 255);
}

.cta-button {
  background: white;
  color: #091d48;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px #091d48;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 5px rgba(0, 17, 255, 0.6);
}

/* Mobile Responsiveness - Fixed */
@media (max-width: 1024px) {
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-profile-section {
    position: static;
    display: flex;
    justify-content: center;
  }

  .about-profile-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-content-section {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-container {
    padding: 80px 15px;
  }

  .about-content-grid {
    gap: 40px;
  }

  .about-profile-card {
    padding: 30px;
    max-width: 350px;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-feature-card {
    padding: 25px;
  }

  .about-section-badge {
    font-size: 2rem;
    padding: 10px 25px;
  }

  .about-main-title {
    font-size: 1.5rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-main-title {
    font-size: 1.3rem;
  }

  .profile-image {
    width: 120px;
    height: 120px;
  }

  .about-description {
    font-size: 1.1rem;
  }

  .about-profile-card {
    padding: 25px;
    max-width: 300px;
  }

  .about-name {
    font-size: 1.5rem;
  }

  .about-title {
    font-size: 1rem;
  }

  .about-experience-number {
    font-size: 2.2rem;
  }

  .about-section-badge {
    font-size: 1.5rem;
    padding: 8px 20px;
  }
}

.services-section {
  padding: 80px 0;
  background: #ffffff;
  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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(74,137,226,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.services-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.services-badge {
  display: inline-block;
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: none;
}
@media(max-width:425px){
    .services-badge {
        font-size: 2rem;
    }
}

.services-title {
  color: rgb(57, 52, 52);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-description {
  color: #6b7280;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 400;
}

.services-grid {
  position: relative;
  z-index: 2;
}

.services-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 1px solid #e5e7eb;
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: #000; /* default text color */
}

.services-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid #051e41ea;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.services-card:hover::before {
  opacity: 1;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--card-hover-shadow);
}

.services-card * {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.services-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 24px;
}

.services-card-title {
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.services-card-description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.services-learn-more-btn {
  background: #00A94C;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.services-learn-more-btn:hover {
  color: turquoise;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(74, 137, 226, 0.4);
}

.services-learn-more-btn i {
  transition: transform 0.3s ease;
}

.services-learn-more-btn:hover i {
  transform: translateX(3px);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-title {
    font-size: 2rem;
  }

  .services-description {
    font-size: 0.8rem;
  }

  .services-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .services-card-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .services-card-title {
    font-size: 1.2rem;
  }

  .services-floating-element {
    display: none;
  }
}

@media (max-width: 576px) {
  .services-title {
    font-size: 1.8rem;
  }

  .services-card {
    padding: 25px 20px;
  }
}

.choose-section {
  position: relative;
  overflow: hidden;
}

.choose-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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
  z-index: 1;
}

.choose-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.choose-badge {
  display: inline-block;
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: none;
}

.choose-badge:hover {
  transform: translateY(-2px);
}

.choose-title {
  color: rgb(57, 52, 52);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.choose-subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.choose-grid {
  position: relative;
  z-index: 2;
}

.choose-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.choose-card:hover::before {
  transform: scaleX(1);
}

.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(54, 116, 203, 0.28);
}

.choose-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--accent-green)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform 0.3s ease;
}

.choose-card:hover .choose-icon {
  transform: scale(1.1) rotate(5deg);
}

.choose-icon i {
  font-size: 1.8rem;
  color: white;
}

.choose-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.choose-card-text {
  color: #64748b;
  line-height: 1.6;
  font-size: 1rem;
}

.choose-floating-element {
  position: absolute;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.choose-floating-element:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.choose-floating-element:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.choose-floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 15%;
  left: 8%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .choose-title {
    font-size: 2rem;
  }

  .choose-subtitle {
    font-size: 1rem;
  }

  .choose-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .choose-icon {
    width: 60px;
    height: 60px;
  }

  .choose-icon i {
    font-size: 1.5rem;
  }

  .choose-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .choose-title {
    font-size: 1.8rem;
  }

  .choose-card {
    padding: 1.5rem;
  }

  .choose-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
}

/* Animation on scroll */
.choose-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.choose-card:nth-child(1) {
  animation-delay: 0.1s;
}
.choose-card:nth-child(2) {
  animation-delay: 0.2s;
}
.choose-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Reviews Section (Updated) ===== */
.reviews-section {
  /* Background Setup */
  background: url("images/stats.jpg") center center / cover no-repeat;
  background-attachment: fixed; /* Parallax scrolling effect */

  /* Layout */
  position: relative;
  min-height: 50vh;
  padding: 4rem 2rem;
  overflow: hidden;
  isolation: isolate; /* Contains background */

  /* Linear Gradient Overlay */
  box-shadow: inset 0 0 0 1000px transparent;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    var(--accent-color),
    var(--secondary-color)
  );
  opacity: 0.9;
  z-index: 1;
}

/* ===== Content Container ===== */
.review-container {
  position: relative;
  z-index: 2; /* Above overlay */
  padding: 4rem 0;
}

/* ===== Reviews Grid ===== */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: center;
}

/* ===== Review Items ===== */
.review-item {
  text-align: center;
  position: relative;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.review-item:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.review-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.review-item:hover::before {
  width: 80px;
  background: rgba(255, 255, 255, 0.8);
}

/* ===== Review Icon ===== */
.review-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.review-item:hover .review-icon::before {
  left: 100%;
}

.review-icon i {
  font-size: 2rem;
  color: whitesmoke;
  z-index: 1;
}

/* ===== Review Numbers ===== */
.review-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.review-number .counter {
  display: inline-block;
}

/* ===== Review Labels ===== */
.review-label {
  font-size: 1.1rem;
  color: rgb(182, 180, 180);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ===== Floating Elements ===== */
.review-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-shape:nth-child(2) {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-shape:nth-child(3) {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 5%;
  animation-delay: 4s;
}

.floating-shape:nth-child(4) {
  width: 30px;
  height: 30px;
  top: 10%;
  right: 5%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.7;
  }
}

/* ===== Counter Animation ===== */
.review-number.counting {
  animation: countUp 0.1s ease-in-out;
}

@keyframes countUp {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== Initial Animation ===== */
.review-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.review-item:nth-child(1) {
  animation-delay: 0.1s;
}
.review-item:nth-child(2) {
  animation-delay: 0.2s;
}
.review-item:nth-child(3) {
  animation-delay: 0.3s;
}
.review-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .review-container {
    padding: 3rem 0;
  }
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .review-item {
    padding: 1.5rem;
  }
  .review-number {
    font-size: 2.5rem;
  }
  .review-label {
    font-size: 0.9rem;
  }
  .review-icon {
    width: 60px;
    height: 60px;
  }
  .review-icon i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .review-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .review-number {
    font-size: 2rem;
  }
  .review-container {
    padding: 2rem 0;
  }
}

.footer-section {
  background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
  color: white;
  padding: 40px 0 20px 0;
  font-family: Arial, sans-serif;
}

.footer-logo {
  font-size: 0.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 200px;
  height: 40px;
}

.footer-subtitle {
  font-size: 0.8rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.9;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background-color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
}

.social-icon:hover {
  background-color: #070745;
  color: white;
}

.footer-section h5 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-green);
}

.contact-info {
  font-size: 0.85rem;
  line-height: 1.6;
}

.contact-info .contact-item {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-info .contact-icon {
  color: var(--accent-green);
  margin-top: 2px;
  min-width: 16px;
}

.details-section {
  padding: 20px 0;
  font-size: 0.75rem;
  line-height: 1.4;
}

.details-text {
  margin-bottom: 8px;
  opacity: 0.9;
}

.app-links {
  margin: 15px 0;
}

.app-link {
  color: var(--accent-green);
  text-decoration: none;
}

.app-link:hover {
  color: red;
}

.disclaimer-text {
  font-size: 0.7rem;
  line-height: 1.3;
  opacity: 0.8;
  margin: 15px 0;
}

.copyright {
  text-align: start;
  padding: 15px 0;
  border-top: 1px solid #2a6d6d;
  font-size: 0.75rem;
  opacity: 0.8;
}

.develop-credit {
  color: rgb(7, 7, 69);
  text-decoration: none;
}

.develop-credit:hover {
  color: rgb(7, 7, 69);
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 0 15px 0;
  }

  .footer-logo {
    font-size: 2rem;
  }

  .social-icons {
    justify-content: flex-start;
    margin-bottom: 25px;
  }

  .footer-description {
    font-size: 0.8rem;
  }

  .contact-info {
    font-size: 0.8rem;
  }

  .details-section {
    padding: 15px 0;
    font-size: 0.7rem;
  }

  .disclaimer-text {
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {
  .footer-logo {
    font-size: 1.8rem;
  }

  .social-icons {
    flex-wrap: wrap;
  }

  .details-section {
    font-size: 0.65rem;
  }
}
.testimonials-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background: #f8fafc;
}

.testimonials-tag {
  display: inline-block;
  color: var(--dark-bg);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: none;
}

.testimonials-title {
  color: rgb(57, 52, 52);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonials-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(74, 137, 226, 0.1);
  border: 1px solid rgba(74, 137, 226, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.testimonials-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.testimonials-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(74, 137, 226, 0.25);
  border-color: var(--accent-color);
}

.testimonials-card:hover::before {
  left: 100%;
}

.testimonials-card:hover::after {
  transform: scaleX(1);
}

.testimonials-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.testimonials-star {
  color: #ffd700;
  font-size: 16px;
  transition: all 0.2s ease;
  transform-origin: center;
}

.testimonials-card:hover .testimonials-star {
  transform: scale(1.2) rotate(15deg);
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.testimonials-card:hover .testimonials-star:nth-child(1) {
  transition-delay: 0.1s;
}
.testimonials-card:hover .testimonials-star:nth-child(2) {
  transition-delay: 0.15s;
}
.testimonials-card:hover .testimonials-star:nth-child(3) {
  transition-delay: 0.2s;
}
.testimonials-card:hover .testimonials-star:nth-child(4) {
  transition-delay: 0.25s;
}
.testimonials-card:hover .testimonials-star:nth-child(5) {
  transition-delay: 0.3s;
}

.testimonials-quote {
  position: relative;
  margin-bottom: 24px;
}

.testimonials-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: -8px;
  font-size: 40px;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonials-text {
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  font-style: italic;
  text-align: left;
  margin-left: 16px;
  transition: all 0.3s ease;
}

.testimonials-card:hover .testimonials-text {
  color: #475569;
  transform: translateX(4px);
}

.testimonials-author {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.testimonials-card:hover .testimonials-author {
  border-top-color: var(--accent-color);
}

.testimonials-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 16px;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.testimonials-card:hover .testimonials-name {
  color: var(--accent-color);
  transform: scale(1.05);
}

.testimonials-role {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 40px 16px;
  }

  .testimonials-tag {
    font-size: 2rem;
  }

  .testimonials-title {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-card {
    padding: 24px;
  }
  .research-reports-filter-btn {
    padding: 6px 12px !important;
    font-size: 14px !important;
    margin: 2px !important;
}
.research-reports-filter {
    gap: 7px !important;
} 
}
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Optional: align properly */
    }

    /* Optional: Fix Bootstrap transition glitch on hover */
    .dropdown-toggle::after {
        transition: transform 0.15s ease-in-out;
    }

    .nav-item.dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
