@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #1a97b5; /* Teal blue */
  --secondary-color: #f47b20; /* Orange */
  --dark-color: #0a3b47;
  --light-color: #f5f5f5;
  --white: #ffffff;
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}
.fw-semibold{
  font-weight: 600;
}
.source-link{
    color:var(--secondary-color);
    text-decoration:none;
    font-size: 15px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn-head{
  padding: 11px 30px !important;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 16px;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #e06a10;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
}

.text-center {
  text-align: center;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.flex {
  display: flex;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-between {
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.px-1 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2 { padding-left: 1rem; padding-right: 1rem; }
.px-3 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }
.px-5 { padding-left: 2.5rem; padding-right: 2.5rem; }

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive styles */
@media (max-width: 992px) {
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}


}

.cta-section .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 70px 0 20px;
}

.footer-content {
  margin-bottom: 50px;
}

.footer-logo p {
  margin: 20px 0;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer .logo {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  opacity: 1;
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-bottom p {
  opacity: 0.7;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--light-color);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
  opacity: 1;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.page-header h1 {
  font-size: 2.4rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

.page-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* About Page */
.story-section {
  background-color: var(--white);
}

.story-content p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-color: var(--secondary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.story-image::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 150px;
  height: 150px;
  background-color: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

/* Values Section */
.values-section {
  background-color: var(--light-color);
  position: relative;
}

.values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a97b5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.value-card {
  background-color: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 151, 181, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
  font-size: 32px;
}

.value-card:hover .value-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.value-card p {
  color: #666;
}

/* Approach Section */
.approach-section {
  background-color: var(--white);
}

.approach-content p {
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.approach-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.approach-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.step-content p {
  margin-bottom: 0;
}

.approach-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approach-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.approach-image:hover img {
  transform: scale(1.05);
}

/* Services Page */
.services-overview {
  background-color: var(--white);
}

.overview-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.overview-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.service-item {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-item .service-icon {
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 151, 181, 0.1);
  color: var(--primary-color);
  transition: all 0.3s ease;
  margin-bottom: 0;
  border-radius: 0;
}

.service-item:hover .service-icon {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.service-content p {
  color: #555;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #555;
}

.service-features li i {
  color: var(--primary-color);
  flex-shrink: 0;
}

/* Process Section */
.process-section {
  background-color: var(--light-color);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a97b5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background-color: var(--primary-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  z-index: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  width: calc(50% - 50px);
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.timeline-content p {
  color: #555;
  margin-bottom: 0;
}

/* Contact Page */
.contact-section {
  background-color: var(--white);
}

.contact-info {
  max-width: 500px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(26, 151, 181, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 24px;
}

.info-item:hover .info-icon {
  background-color: var(--primary-color);
  color: var(--white);
  transform: rotateY(180deg);
}

.info-content h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.info-content p {
  margin-bottom: 0;
  color: #555;
}

/* Contact Form */
.contact-form-container {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-form {
  padding: 40px;
}

.form-header {
  margin-bottom: 30px;
  text-align: center;
}

.form-header h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 151, 181, 0.1);
  outline: none;
}

.form-control.error {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  display: block;
}

.captcha {
  margin: 20px 0;
}

.captcha-placeholder {
  background-color: #f5f5f5;
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  color: #666;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  margin-top: 10px;
  position: relative;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-disclaimer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #777;
  text-align: center;
}

.form-disclaimer a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-disclaimer a:hover {
  text-decoration: underline;
}

.success-message {
  padding: 60px 40px;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.success-message h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.success-message p {
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-color);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a97b5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.faq-item {
  background-color: var(--white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.faq-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  padding-left: 25px;
}

.faq-item p {
  color: #555;
  position: relative;
  padding-left: 15px;
}


/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease-in;
}

.slide-in-left {
  animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Animation delays */
.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

/* Responsive styles */
@media (max-width: 1200px) {
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  .navbar-toggler {
    display: block;
  }
  
  .about-image{
              margin-bottom: 25px !important;
            }
  
  .image-container {
    width: 80%;
    transform: none;
  }
  
  .image-container:hover {
    transform: none;
  }
  
  .process-timeline::before {
    left: 30px;
  }
  
  .timeline-number {
    left: 30px;
    transform: none;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .page-header {
    padding: 80px 0;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
  
  .timeline-content {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
}



.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
  flex-grow: 1;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.col-sm-*, .col-md-*, .col-lg-*, .col-xl-*, .col-xxl-* {
  flex-grow: 1;
  width: 100%;
}
.d-none, .d-sm-block, .d-md-block, .d-lg-block, .d-xl-block, .d-xxl-block {
  display: none;
}
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.glass-button {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
    color: var(--light-color);
    background: rgba(255, 255, 255, 0.2); /* Transparent white */
    backdrop-filter: blur(10px); /* Blur effect */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border */
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        padding-top: 60px !important;
    }
    .contact-form .btn{
        padding: 12px 20px;
        font-size: 15px;
    }
    .glass-button{
        margin-top: 60px;
    }
    .contact-home{
      width: 100%;
      flex-grow: 1;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    }
    .chapter-title{
        font-size: 1.8rem !important;
    }
}
.contact-home{}
.custom-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .icon-circle {
            width: 80px;
            height: 80px;
            background-color: var(--secondary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }
        
        .icon-circle i {
            color: var(--white);
            font-size: 32px;
        }
        
        .custom-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 7px;
        }
        
        .custom-description {
            color: var(--text-gray);
            margin-bottom: 10px;
            font-size: 15px;
        }
        
        .bottom-cards-container {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .bottom-custom-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .bottom-custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .custom-card-image {
            width: 200px;
            height: 240px;
            object-fit: cover;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            margin-right: 25px;
        }
        
        .card-content {
            flex: 1;
        }
        
        /* Animation for about cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-card {
            opacity: 0;
        }
        
        .animate-card.visible {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .delay-1 {
            animation-delay: 0.1s;
        }
        
        .delay-2 {
            animation-delay: 0.3s;
        }
        
        .delay-3 {
            animation-delay: 0.5s;
        }
        
        .delay-4 {
            animation-delay: 0.7s;
        }
        
        .delay-5 {
            animation-delay: 0.9s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 480px) {
            .bottom-custom-card{
              display: block;
            }
            .custom-card-image{
              width: 100%;
              border-radius: 12px;
            }
            .custom-content{
              padding: 20px;
            }
            .about-image{
              margin-bottom: 25px !important;
            }
            .cta-buttons{
              margin-top: 30px !important;
            }
            .approach-content p{
              margin-top: 30px;
            }
            .btn-contact{
              padding: 14px 28px;
            }
        }
        .learn-more svg {
      transition: transform 0.3s ease;
    }
    
    .learn-more:hover svg {
      transform: translateX(4px);
    }
    .learn-more{
      text-decoration: none;
      font-weight: 500;
      align-items: center;
    }
    .custom-content{
      padding-right: 20px;
    }
    .text-primary{
      color: var(--primary-color);
    }
    .text-secondary{
      color: var(--secondary-color);
    }
    .text-danger{
        color:#dc3545;
    }
.text-decoration-none{
  text-decoration: none;
}    

/* Main section */
.fw-section {
  padding: 80px 0;
  
}


/* Main content card */
.fw-content-card {
  background-color: var(--white);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(10, 59, 71, 0.1);
  padding: 50px;
  position: relative;
  z-index: 1;
}

/* Header section */
.fw-header {
  margin-bottom: 40px;
}

.fw-icon-wrapper {
  margin-bottom: 20px;
}

.fw-icon-wrapper i {
  font-size: 40px;
  color: var(--primary-color);
  background: linear-gradient(135deg, #e6f4f7 0%, #d4eef3 100%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(26, 151, 181, 0.2);
}

.fw-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.fw-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.fw-divider span {
  height: 4px;
  border-radius: 2px;
  background-color: var(--primary-color);
  display: inline-block;
}

.fw-divider span:nth-child(1) {
  width: 30px;
}

.fw-divider span:nth-child(2) {
  width: 60px;
  margin: 0 8px;
  background-color: var(--secondary-color);
}

.fw-divider span:nth-child(3) {
  width: 30px;
}

.fw-description {
  font-size: 18px;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features list */
.fw-features-list {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px;
  background-color: var(--light-color);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.fw-offer-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.fw-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fw-offer-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-left: 10px;
  transition: var(--transition);
}

.fw-offer-list li:hover {
  transform: translateX(5px);
}

.fw-offer-list li i {
  color: var(--secondary-color);
  margin-right: 15px;
  font-size: 20px;
}

.fw-offer-list li span {
  font-size: 17px;
  color: #4a5568;
}

/* Call to action section */
.fw-cta-wrapper {
  margin-top: 40px;
  text-align: center;
}

.fw-cta-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.fw-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
  margin: 30px auto;
  width: 60%;
}

.fw-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #e06a10 100%);
  color: var(--white);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(244, 123, 32, 0.3);
  font-size: 16px;
  margin-bottom: 20px;
}

.fw-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 123, 32, 0.4);
  color: var(--white);
}

.fw-contact-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.fw-contact-link:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.fw-contact-link:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.fw-cta-text {
  color: #4a5568;
  font-size: 16px;
  margin-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fw-content-card {
    padding: 30px;
  }
  
  .fw-title {
    font-size: 26px;
  }
  
  .fw-features-list {
    padding: 20px;
  }
  
  .fw-cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }
}