/* ===== BASE STYLES ===== */
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #001f3f;
  margin: 0;
  padding: 0;
}





/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #005f99;
  color: white;
}
.hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
.cta-container {
  display: inline-block;
  margin: 20px 0;
  padding: 20px;
  background-color: #e3ebf3;
  border-radius: 10px;
}
.cta-buttons .btn {
  margin: 0 10px;
  padding: 15px 30px;
  font-size: 16px;
  background-color: inherit;
  color: #005f99;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-buttons .btn:hover {
  background-color: #003d66;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: white !important;
}

/* ===== FEATURES SECTION ===== */
.features {
  display: flex;
  justify-content: space-around;
  padding: 60px 20px;
  background-color: #041b35;
  flex-wrap: wrap;
}
.feature {
  text-align: center;
  flex: 1;
  min-width: 250px;
  margin: 15px;
  padding: 25px;
  background: #f0f4f8;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.feature:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}
.feature:hover img {
  transform: scale(1.1) rotate(5deg);
}
.feature:hover h3 {
  color: #005f99;
}
.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #005f99, #2DD4BF);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.feature:hover::after {
  opacity: 1;
}
.feature img {
  max-width: 64px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.feature h3 {
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.feature p {
  color: #555;
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 60px 20px;
  background: #cbcac8;
  text-align: center;
}
.service-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.service-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 31, 63, 0.1);
}
.service-card i {
  font-size: 40px;
  color: #2DD4BF;
  margin-bottom: 15px;
}
.service-btn {
  color: #005f99;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 60px 10px;
  background: #001f3f;
  color: white;
  text-align: center;
}
.testimonial-slider {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: center;
  scroll-snap-type: x mandatory;
}
.testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px;
  min-width: 300px;
  max-width: 400px;
  scroll-snap-align: center;
}
.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
}

.faq-answer.active {
  max-height: 200px; /* Adjust based on your content */
  padding: 10px 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1.2rem;
  color: #001f3f;
  border: none;
  background: #f8f8f8;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #eee;
}

.faq-question i {
  transition: transform 0.3s;
}

.faq-question.active i {
  transform: rotate(180deg);
}



/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
  
  .features, .service-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature, .service-card {
    width: 80%;
  }
}
  /* ===== SERVICES PAGE STYLES ===== */
  .services-container {
    padding: 60px 20px;
    text-align: center;
    background: #f0f4f8;
  }
  .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }
  .service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 31, 63, 0.2);
  }
  .service-card i {
    font-size: 40px;
    color: #2DD4BF;
    margin-bottom: 15px;
  }
  .service-card h3 {
    color: #001f3f;
    margin-bottom: 10px;
  }
  .service-card p {
    color: #555;
  }
  /* ===== SERVICES PAGE SPECIFIC STYLES ===== */
  .services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
  }
  .services-content .subtitle {
    color: #005f99;
    margin-bottom: 40px;
    font-size: 1.2rem;
  }
  /* Category Cards */
  .service-categories {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  .category-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    width: 350px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  .category-card h2 {
    color: #001f3f;
    border-bottom: 2px solid #2DD4BF;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .category-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
  }
  .category-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
  }
  .category-card li:before {
    content: "•";
    color: #2DD4BF;
    position: absolute;
    left: 0;
    font-weight: bold;
  }
  /* Pricing Table */
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .pricing-table th,
  .pricing-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e3ebf3;
  }
  .pricing-table th {
    background-color: #001f3f;
    color: white;
  }
  .pricing-table tr:nth-child(even) {
    background-color: #f8fafc;
  }
  .pricing-table tr:hover {
    background-color: #f0f7ff;
  }
  @media (max-width: 768px) {
  .cta-container {
  display: flex;
  flex-direction: column;
  margin:0 20px;
  padding: 20px;
  background-color: #e3ebf3;
  border-radius: 10px;
 
}
.cta-buttons .btn {
  margin: 10px 0;
  padding: 15px 30px;
  height: fit-content;
  width: 100%;
  background-color: inherit;
  font-size: 16px;
  color: #005f99;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
  }
.get-started-hero {
  background: linear-gradient(135deg, #005f99 0%, #2DD4BF 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.get-started-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.process-steps {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

.step {
  display: flex;
  margin-bottom: 50px;
  align-items: center;
}

.step-number {
  background: #001f3f;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 30px;
  flex-shrink: 0;
}

.step-content {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
}

.form-container {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

.request-form {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #001f3f;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e3ebf3;
  border-radius: 5px;
  font-family: 'Inter', sans-serif;
}

textarea.form-control {
  min-height: 150px;
}

.form-submit {
  background: #2DD4BF;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #001f3f;
  transform: translateY(-2px);
}

.urgency-selector {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.urgency-option {
  flex: 1;
}

.urgency-option input {
  display: none;
  background-color: red;
}

.urgency-option label {
  display: block;
  padding: 15px;
  background: #f0f4f8;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
input {
  padding: 5px;
}
input:hover {
  border: 2px solid aqua;
}
.urgency-option input:checked + label {
  background: #2DD4BF;
  color: white;
}

.file-upload {
  border: 2px dashed #e3ebf3;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
  margin-top: 15px;
}
.file-upload i {
  font-size: 2rem;
  color: #005f99;
  margin-bottom: 10px;
}

/* ===== PROFILE STYLES ===== */


.section {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.section h2 {
  margin-top: 0;
}

@media (max-width: 768px) {
  .step {
    flex-direction: column;
  }
  .step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .urgency-selector {
    flex-direction: column;
  }
  .testimonial{
    min-width: 100px;
  }
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
  }

}
.faq{
  padding: 5%;
}
