* {
  box-sizing: border-box;
}
body {
  user-select: none; /* Prevents text selection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  background-color: #f5f8fa;
  color: #333;
  overflow-x: hidden;
}
:root {
  --primary-blue: #002d62;
  --accent-gold: #d4af37;
  --success-green: #1b4d2c;
  --light-gray: #f5f8fa;
  --text-main: #333;
  --white: #ffffff;
}
.services-container {
  max-width: 1000px;
  margin: 0 auto;
  background: #f9f9fb;
  padding: 50px;
  border-radius: 12px;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h2 {
  color: var(--primary-blue);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-gold);
  margin: 10px auto;
  border-radius: 2px;
}

/* Core Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-left: 5px solid var(--primary-blue);
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  font-weight: 600;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #f1f5f9;
}

.service-card i {
  margin-right: 15px;
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* "Also Provide" Section */
.secondary-section {
  background: #f9f9fb;
  padding: 40px;

  border-radius: 12px;
  text-align: center;
}

.image-placeholder {
  width: 80%;
  max-width: 500px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.image-placeholder img {
  width: 100%;
  display: block;
}

@media (max-width: 600px) {
  .services-container {
    padding: 20px;
  }
  h2 {
    font-size: 1.5rem;
  }
}

header {
  background: linear-gradient(90deg, #004aad, #0080ff);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
}

.logo {
  position: absolute;
  
  left: 10px;
  height: 70px;
  border-radius: 50%;
  align-items: flex-start;
  margin-left: 30px;
}

section {
  width: 100%;
  padding: 30px 20px;
  margin-top: 20px;
}
.team {
  background-color: #00c6216d;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services li {
  background: #fff;

  margin: 8px auto;
  width: 80%;
  border-radius: 6px;
}

.profile-cards {
  overflow-x: auto;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card img {
  height: 12rem;
  width: 12rem;
  border-radius: 50%;
  margin-left: 9px;
}

.reviews form {
  margin-bottom: 20px;
}
#reviewForm {
  width: 55%;
  background-color: #c08a11;
  padding: 10px 0;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#reviewsList {
    display: flex;
  gap: 20px;
  overflow: hidden;
  width: 900px;
}

input,
textarea {
  width: 80%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background-color: #004aad;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #006aff;
}

footer {
  background: #000000;
  color: white;
  padding: 20px;
  width: 100%;
}
.section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

.logo2 {
  height: 32px;
  width: 32px;
}
.location {
  height: 25px;
  width: 25px;
}
/* Navigation Bar */
.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 24px 40px;
  height: 79px;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.contact-us {
  background-color: rgb(255, 255, 255);
  color: black;
  width: 40%;
  margin: 40px auto;
  border-radius: 10px;
  padding-bottom: 7px;
}
.nav-links li {
  margin: 0 30px;
}
.nav-links li a {
  color: white;
}
.nav-links {
  list-style: none;
}

.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.main-title {
  color: #002d62;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: bold;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap; /* Wraps cards on smaller screens */
  border-radius: 20px;
}

.plan-card {
  background: white;
  width: 300px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.plan-header {
  background-color: #c08a11; /* Golden color from image */
  color: black;
  padding: 11px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.plan-body {
  flex-grow: 1; /* Ensures all cards stay same height */
  background-color: #e8e8e8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 400px;
}

.plan-body p {
  margin: 15px 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.plan-body p span {
  color: #d35400; /* Orange/Red for subtext */
  font-size: 16px;
  display: block;
  margin-top: 5px;
}

.not-included {
  color: red !important;
  font-size: 24px !important;
}
/*logo 2*/
.logo2 {
  height: 3rem;
  width: 3rem;
  object-fit: cover;
}

.plan-footer {
  background-color: #1b4d2c; /* Dark green from image */
  color: white;
  padding: 12px;
  font-size: 26px;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pricing-grid {
  }
  .plan-body p {
    margin: 7px 0;
    font-size: 12px;
    font-weight: bold;
    color: #000;
  }

  .plan-card {
    background: white;
    width: 150px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
}

.main-title {
    color: #002d62;
    font-size: 28px;
    margin-top: 4.5rem;
    margin-bottom: 30px;
    font-weight: bold;
}
.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  justify-content: center; /* Vertically center image + text */
  gap: 15px; /* Add space between image and text */
  background: #fff;

  border-radius: 8px;
  margin: 10px auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.4;
}

.review-card {
  margin: 0 auto;

  width: 100%;
  height: 97%;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
}

.review-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.star-container {
  display: inline-flex;
  cursor: pointer;
  user-select: none;
  font-size: 28px;
  color: #ccc; /* empty star color */
}

.star {
  transition: color 0.2s;
}

.star.filled {
  color: gold; /* filled star color */
}
.file-upload {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image2 {
  background-image: url("images/Gemini_Generated_Image_czuhnoczuhnoczuh.png");
  height: 360px;
  width: 100%;

  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.custom-file-upload {
  background-color: #004aad;
  color: white;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
  width: 58%;
}

.custom-file-upload:hover {
  background-color: #006aff;
}

input[type="file"] {
  display: none; /* hide default input */
}
/* 🔔 Toast Notification - Slides from Top */
.toast {
  visibility: hidden;
  min-width: 260px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 14px 20px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 20px; /* Position from top */
  font-size: 16px;
  opacity: 0;
  transform: translateX(-50%) translateY(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When visible */
.toast.show {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Different colors for success/error */
.toast.success {
  background-color: #28a745; /* Green */
}

.toast.error {
  background-color: #dc3545; /* Red */
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9fb;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(
    135deg,
    #1a2a6c,
    #b21f1f,
    #fdbb2d
  ); /* Professional Gradient */
  background-size: cover;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.about-hero span {
  color: #fdbb2d;
  font-weight: 700;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* About Text */
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a2a6c;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Stats Cards */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

.stat-card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #b21f1f;
  margin-bottom: 5px;
}

/* Values Section */
.values-section {
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-item {
  padding: 40px;
  background: #f9f9fb;
  border-radius: 12px;
  transition: transform 0.3s ease;
  text-align: center;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-item .icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.footer {
  text-align: center;
  padding: 40px 0;
  background: #1a2a6c;
  color: white;
}
.nav-links li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;

  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

  list-style: none;
  padding: 8px 0;
  margin-top: 10px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;

  z-index: 1000;
}

/* Show dropdown ONLY when hovering Plans */
.nav-links li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
}

/* Hover effect */
.dropdown-menu li a:hover {
  background-color: #595f83;
  color: #000;
}
.nav-links li {
  position: relative;
}

.logoDiv {
  position: absolute;
  right: 7rem;
  top: 2.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 2.2rem;
    margin-right: 135px;
  }
  .logo {
    height: 50px;
  }
  .logoDiv {
    position: absolute;
    right: 34px;
    top: 7rem;
  }
}

@media (max-width: 490px) {
  .logo {
    height: 50px;
    margin-left: -10px;
  }
  .logoDiv {
    position: absolute;
    right: 34px;
    top: 1.5rem;
  }
  .creditExpert{
    margin-left: 3rem !important;
  }
  .contact-us {
    background-color: rgb(255, 255, 255);
    color: black;
    width: 17rem;
    margin: 40px auto;
  }
  .profile-cards {
  overflow-x: auto;
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
}

#reviewForm {
  width: 80%;
  background-color: #c08a11;
  padding: 10px 0;
  margin: 20px auto;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* ---------- Mobile Navigation ---------- */

/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2000;
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100vh;
  background: #000;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: right 0.4s ease;
  z-index: 3000;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Mobile Dropdown */
.mobile-dropdown span {
  color: #fdbb2d;
  font-size: 18px;
  cursor: pointer;
}

.mobile-dropdown a {
  padding-left: 15px;
  font-size: 16px;
  margin-top: 8px;
}
.mobile-dropdown a:hover {
  background-color: #f9f9f9;
  color: rgb(142, 142, 0);
}

/* Show mobile menu */
.mobile-nav.active {
  right: 0;
}

/* ---------- Hide Desktop Nav on Mobile ---------- */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

#reviewsWrapper {
   display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}


#reviewsList {
   display: flex;
  gap: 20px;
  width: 900px;          /* enough for 3 cards */
  overflow: hidden;
}

.review-card {
     width: 280px;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.review-card p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.review-img {
 width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.stars-display {
  color: gold;
  font-size: 18px;
}

button {
  font-size: 22px;
  padding: 10px 16px;
  cursor: pointer;
}

