/* Base Styles */
html {
  scroll-behavior: smooth;
}

:root {
  /* Primary Colors - Softer Blues */
  --primary-color: #4A90E2;        /* Lighter, more approachable blue */
  --primary-light: #7BB3F0;        /* Even lighter for hover states */
  --primary-dark: #357ABD;         /* Slightly darker for text/accents */
  
  /* Secondary Colors - Warmer Accent */
  --secondary-color: #FF6B6B;      /* Soft coral red (less harsh than #cc0000) */
  --secondary-light: #FF9999;      /* Light coral for backgrounds */
  --secondary-dark: #E85555;       /* Darker coral for buttons */
  
  /* Background Colors */
  --bg-primary: #FAFBFC;           /* Very light blue-white */
  --bg-secondary: #F0F7FF;         /* Soft blue tint */
  --bg-accent: #FFF5F5;            /* Very light coral tint */
  --light-gray: #F8F9FA;           /* Keep existing light gray */
  --white: #FFFFFF;
  
  /* Text Colors */
  --text-primary: #2D3748;         /* Softer dark gray instead of #333 */
  --text-secondary: #4A5568;       /* Medium gray for secondary text */
  --text-light: #718096;           /* Light gray for muted text */
  --dark-gray: #A0AEC0;            /* Lighter version of existing dark gray */
  
  /* Success/Growth Colors (for financial data) */
  --success-color: #48BB78;        /* Softer green */
  --success-light: #9AE6B4;        /* Light green for backgrounds */
  
  /* Warning/Alert Colors */
  --warning-color: #ED8936;        /* Soft orange */
  --warning-light: #FBD38D;        /* Light orange */
  
  /* Neutral Tones */
  --neutral-100: #F7FAFC;
  --neutral-200: #EDF2F7;
  --neutral-300: #E2E8F0;
  --neutral-400: #CBD5E0;
  --neutral-500: #A0AEC0;
  
  /* Shadows and Effects */
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 8px 25px rgba(74, 144, 226, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border: none;
  box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

/* Header Styles */
#header {
  background: linear-gradient(135deg, #A8D5E5 0%, #B8C5E5 100%);
  color: #2D3748;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

.logo span {
  color: var(--secondary-color);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items:end;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 1.5rem;
}

.nav-item a {
  color: #2D3748;
  font-weight: 600;
}

.nav-item a:hover,
.nav-item.active a {
  color: var(--secondary-color);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: var(--transition);
  background-color: #cc0000;
}

/* Hero Section */
.hero-slider-section {
  background: linear-gradient(135deg, #F0F7FF 0%, #FAFBFC 100%);
  padding: 30px 0;
  position: relative;
}

.hero-slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.text-content {
  flex: 1;
  min-width: 280px;
}

.text-content h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
}

.text-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
}

.text-content .btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border: none;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.text-content .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.image-content {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.image-content img {
  max-width: 100%;
  height: auto;
}

/* Swiper Pagination & Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #004f7c;
}

/* Featured Funds Section */
.featured-funds {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff 0%, #F0F7FF 100%);
}

.featured-funds h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-dark);
}

.funds-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
}

.fund-item {
  flex: 0 0 calc(33.333% - 20px);
  background-color: var(--white);
  border-radius: 1px solid var(--neutral-200);
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.fund-item:hover {
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-light);
  transform: translateY(-10px);
}

.fund-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.performance {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.rate {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--success-color);
}

.period {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Information Slider */
.info-slider {
  padding: 60px 0;
  background-color: var(--white);
}

.slider-title {
  text-align: center;
  margin-bottom: 40px;
}

.slider-title h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.slider-container {
  overflow: hidden;
  position: relative;
  background: #b0d6fa; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
  border-radius: 12px;
  padding: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  padding: 30px;
  background-color: var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slide h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.slide p {
  font-size: 1rem;
  line-height: 1.6;
}

.slider-nav {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  background-color: #b4c6fc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background-color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background-color: var(--secondary-color);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-section .btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

/* Footer */
#footer {
  background: linear-gradient(135deg, #A8D5E5 0%, #B8C5E5 100%);
  color: var(--text-primary);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Add subtle pattern overlay */
#footer::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="50" cy="50" r="1" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.footer-logo,
.footer-links,
.footer-contact {
  margin-bottom: 0;
}

/* Enhanced logo section */
.footer-logo {
  padding-right: 20px;
}

.footer-logo h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.footer-logo p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Improved headings */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-links h4:after,
.footer-contact h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), rgba(255, 107, 1007, 0.6));
  border-radius: 2px;
}

/* Enhanced links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}

.footer-links ul li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  opacity: 0.9;
}

.footer-links a:hover {
  color: var(--secondary-color);
  opacity: 1;
}

/* Enhanced contact section */
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.footer-contact ul li:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 15px;
  margin-left: -15px;
  margin-right: -15px;
}

.footer-contact i {
  margin-right: 15px;
  color: var(--secondary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  margin-top: 2px;
}

.footer-contact ul li span {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* Enhanced footer bottom */
.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.8);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
  font-weight: 400;
}

/* Enhanced social links */
.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  color: #2c2c2c;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 107, 107, 0.4);
  border-color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center; /* Center content on tablet */
  }
  
  .footer-contact {
    grid-column: 1 / -1;
    text-align: center; /* Center contact section */
  }
  
  .footer-logo {
    text-align: center; /* Center logo section */
  }
  
  .footer-links {
    text-align: center; /* Center links section */
  }
}

@media (max-width: 768px) {
  #footer {
    padding: 60px 0 25px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-logo {
    padding-right: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-logo a {
    justify-content: center; /* Center the logo and text */
  }
  
  .footer-logo p {
    text-align: center;
    margin-top: 15px;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin: 5px 0;
  }
  
  .footer-contact {
    text-align: center;
  }
  
  .footer-contact ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    padding: 0;
  }
  
  .footer-contact ul li {
    margin: 10px 0;
    text-align: center;
  }
  
  .footer-links h4:after,
  .footer-contact h4:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-logo h3 {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-logo a {
    justify-content: center;
  }
  
  .footer-contact ul li {
    text-align: center;
    padding: 10px;
  }
  
  .footer-contact ul li:hover {
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
  }
  
  .footer-links ul li,
  .footer-contact ul li {
    text-align: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in {
  animation: slideInFromBottom 0.8s ease forwards;
}

.stagger-item:nth-child(1) {
  animation-delay: 0.1s;
}
.stagger-item:nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-item:nth-child(3) {
  animation-delay: 0.3s;
}

/* Media Queries */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }

  .funds-slider {
    flex-wrap: wrap;
  }

  .fund-item {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    width: 100%;
    margin-bottom: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    margin-bottom: 15px;
  }

  .social-links {
    margin-top: 10px;
  }

  .social-links a {
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }

  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .featured-funds,
  .info-slider,
  .cta-section {
    padding: 50px 0;
  }
}
/* About Page Styles */

/* About Hero Section */

.about-hero {
  background-image: linear-gradient(
      rgba(74, 144, 226, 0.3),   /* less opacity */
      rgba(74, 144, 226, 0.3)
    ),
    url("/assets/images/about-hero.png");
  background-size: cover;
  background-position: center;
  color: #000000;
  padding: 80px 0;
  text-align: center;
}

.about-hero-content h1 {
color: #cc0000;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-hero-content span {
  color: #cc0000;
}

.about-hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 50px 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-container.reverse {
  flex-direction: row-reverse;
}

.about-text-container,
.about-image-container {
  flex: 1;
}

.about-image-container {
  text-align: center;
}

.about-img {
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  max-width: 90%;
  height: auto;
}

.about-text-container h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.about-text-container h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
}

.about-text-container p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-list {
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.about-list li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.about-list li i {
  color: var(--secondary-color);
  margin-right: 10px;
  margin-top: 5px;
}

/* Background Utility */
.bg-light {
  background-color: var(--light-gray);
}

/* Vision & Mission Section */
.vision-mission {
  padding: 40px 0;
}

.vm-container {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.vm-card {
  flex: 1;
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
  max-width: 500px;
}

.vm-card:hover {
  transform: translateY(-10px);
}

.vm-icon {
  margin-bottom: 20px;
}

.vm-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  background-color: rgba(30, 58, 138, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.vm-card h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.vm-card p {
  color: var(--text-color);
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.stats-section h2 {
  margin-bottom: 50px;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-box {
  flex: 1;
  min-width: 200px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
}

.stat-box h3 {
  font-size: 2.5rem;
  color: #cc0000;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-box p {
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #cc0000;
}

/* Media Queries */
@media (max-width: 991px) {
  .about-container,
  .about-container.reverse,
  .vm-container {
    flex-direction: column;
  }

  .vm-card {
    max-width: 100%;
  }

  .about-image-container {
    order: -1;
  }

  .about-text-container h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-text-container h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .stats-container {
    justify-content: center;
  }

  .stat-box {
    min-width: 45%;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 60px 0;
  }

  .about-hero-content h1 {
    font-size: 2rem;
  }

  .about-section,
  .vision-mission,
  .stats-section,
  .team-section {
    padding: 50px 0;
  }

  .stat-box {
    min-width: 100%;
  }
}

/*Mutual fund*/
.fund-card {
  background-color: #fdfdfd;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.fund-card h2 {
  color: #0d6efd;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.fund-card .highlight {
  background-color: #eaf4ff;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.fund-card ul {
  list-style: none;
  padding-left: 0;
}
.fund-card ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0d6efd;
  margin-right: 0.5rem;
}
.fund-card img {
  max-width: 100%;
  border-radius: 8px;
}
.why-invest ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #0d6efd;
  margin-right: 0.5rem;
}

/*Contact page*/
body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color:linear-gradient(90deg, #efd5ff 0%, #515ada 100%);
  color: #333;
}

.container1 {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info-box,
.contact-form-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  min-width: 300px;
}

.contact-info-box h2,
.contact-form-box h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #222;
}

.contact-info-box p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail i {
  font-size: 20px;
  color: #1e3a8a;
  padding-top: 5px;
}

.contact-detail h4 {
  margin: 0 0 5px;
  font-weight: 600;
}

.contact-detail p {
  margin: 0;
  color: #555;
}

.contact-form-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}


/* Form Status Messages */
#form-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
}

#form-status.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#form-status.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#form-status.sending-message {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Disable submit button when form is being submitted */
button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Goal Planning Page */
.goal-planning-section {
  background-color: #f8f9fa;
}
.goal-card {
  text-align: center;
  padding: 25px 20px;
  border: 1px solid var(--neutral-200);
  border-radius: 10px;
  text-decoration: none;
  background: var(--white);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.12);
  border-color: var(--primary-light);
}
.goal-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.goal-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}
.goal-card h5 {
  font-size: 1.2rem;
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.goal-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.goal-card .card-body {
  padding: 1rem;
}
.goal-card .btn {
  margin-top: 0.5rem;
}
.goal-heading {
  text-align: center;
  margin-bottom: 2rem;
}

/*Planning Section*/
.planning-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }
    .planning-title {
      color: #003366;
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 30px;
      margin-top: 15px;
      margin-left: 10px;
    }
    .planning-img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .planning-content {
      font-size: 1rem;
      line-height: 1.8;
      color: #444;
      margin-left: 10px;
    }
    .planning-section .btn-primary{
      margin-left: 10px;
    }