/* About Us Section */
.about-us {
    background-color: #7a6ad8;
    color: #7a6ad8;
    padding: 60px 0;
}

.about-us h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f8f9fa;
}

.service-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.btn-custom {
    background: #fff;
    color: #7D6EC4;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background: #f8f9fa;
}


.contact-us .section-heading h6 {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff2e63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info i {
    font-size: 18px;
    margin-right: 10px;
}

.contact-info li:nth-child(1) i { color: #007bff; } /* Phone Icon - Blue */
.contact-info li:nth-child(2) i { color: #dc3545; } /* Email Icon - Red */
.contact-info li:nth-child(3) i { color: #28a745; } /* Address Icon - Green */

.orange-button {
    background: white;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.orange-button:hover {
    background: white;
}

.contact-us .section-heading h6 {
    font-size: 24px;
    font-weight: bold;
    background: #7D68D0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.contact-us .section-heading h6::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: #7D68D0;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.insights-button {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.insights-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.insights-button:active {
  transform: scale(0.98);
}

.button-container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  margin-top: 100px;
}

/* HEADER */
.custom-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #002349;
  padding: 12px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* MAIN NAV */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* LOGO */
.logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

/* SEARCH BAR */
.search-input {
  position: relative;
  margin-left: 16px;
  flex-shrink: 0;
}

.search-input input {
  padding: 8px 36px 8px 14px;
  border-radius: 30px;
  background: #a597f4;
  border: none;
  color: #fff;
  font-size: 14px;
  outline: none;
}

.search-input i {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #ffcc00;
}

/* HAMBURGER */
.menu-trigger {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE NAV */
@media (max-width: 991px) {
  .menu-trigger {
    display: block;
  }

  .search-input {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    right: 20px;
    background: #222;
    flex-direction: column;
    padding: 16px;
    border-radius: 8px;
    display: none;
    width: 220px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 12px;
  }

  .nav-links li:last-child {
    margin-bottom: 0;
  }
}

/* FORM SPACING OPTIMIZATION */
.form-control,
.form-select,
textarea {
  margin-bottom: 12px !important;
  padding: 10px 16px;
  font-size: 14px;
}

textarea.form-control {
  border-radius: 10px;
}

/* SECTION SPACING (tight) */
section {
  padding: 40px 0;
}

    /* footer Design */
    
    .footer-section {
  background: #002349;
  color: white;
  padding: 20px 20px 10px;
  font-family: 'Poppins', sans-serif;
}

.footer-section .container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer-col h4, .footer-col h5 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  color: #ddd;
  max-width: 300px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #ccc;
}

.footer-socials a {
  color: #ccc;
  margin-left: 12px;
  font-size: 16px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

