    body, html {
      margin: 0;
      padding: 0;
      /*font-family: 'Segoe UI', sans-serif;*/
      font-family: 'Nunito', sans-serif;
      background: #16052d;
      color: white;
    }
   

    /* Sticky Transparent Navbar */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(22, 5, 45, 0.7); /* semi-transparent */
      backdrop-filter: blur(10px);
    }

    .navbar .nav-link {
      color: white !important;
      font-weight: 500;
      margin-right: 15px;
    }

    .navbar .nav-link:hover {
      color: #a37ae7 !important;
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: #7e56e7 !important;
      padding-right: 100px; /* Reduced from Bootstrap default */
    }

    .navbar-brand span {
      color: #e073d6;
    }
    .navbar-brand img {
      width: 35px; /* Optional: Reduce logo size */
      height: auto;
    }
    .navbar-brand span {
      font-size: 1.1rem; /* Optional: Adjust company name font */
    }

    .btn-quote {
      background: #a073ff;
      color: white;
      font-weight: bold;
      border-radius: 10px;
      padding: 8px 20px;
    }

    .btn-quote:hover {
      background: #c88fff;
    }

    /* Hero Section */
    .hero {
      padding: 120px 20px;
      background: linear-gradient(to right, #1d0937, #4e0d62);
      text-align: center;
    }

    .hero h1 {
      font-size: 4rem;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .hero h1 span {
      background: linear-gradient(to right, #a273ff, #61d4fa);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero p {
      font-size: 1.2rem;
      color: #ccc;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .hero .btn {
      margin: 10px;
      padding: 10px 25px;
      border-radius: 10px;
      font-weight: 600;
    }

    .btn-start {
      background: #b58eff;
      color: white;
    }

    .btn-view {
      border: 2px solid #a17aff;
      color: white;
      background: transparent;
    }

    .btn-view:hover {
      background: #a17aff;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero-section p {
        font-size: 1rem;
      }

      .navbar-brand {
        padding-left: 5px;
      }

      .navbar-brand span {
        font-size: 1rem;
      }
      .hero-heading {
        font-size: 2.5rem;
      }
    }
    /* Custom transparent navbar style */
.custom-navbar {
  background: transparent;
  transition: background-color 0.3s, box-shadow 0.3s;
  padding: 1rem 0;
  z-index: 1000;
}

.custom-navbar .nav-link {
  color: #ffffff;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #74b9ff;
}

.custom-navbar.sticky {
  background: #0a0130;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.custom-navbar .btn {
  background: #d63384;
  border: none;
  font-weight: 600;
}

.custom-navbar .btn:hover {
  background: #c02572;
}

.hero-section {
  min-height: 100vh;
  background: url('../images/Asset1.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 1, 48, 0.75); /* dark overlay */
  z-index: -1;
}
.hero-section h1 {
  font-size: 4rem;
  font-weight: 900;
}

.hero-section p {
  font-size: 1.25rem;
}
.hero-heading {
  font-size: 6rem;      /* Increased from 4.5rem */
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
}

.word-purple {
  color: #b388ff;
}

.word-blue {
  color: #74b9ff;
}

.word-white {
  color: #ffffff;
}

/* Circular, bold dot */
.dot {
  color: #ffffff;
  font-weight: 900;
  margin-left: 4px;
  margin-right: 10px;
  display: inline-block;
  font-size: 1.2em;
  line-height: 1;
}
.hero-image-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hero-image {
  max-width: 90%;
  max-height: 400px; /* Decrease this value as needed */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  object-fit: contain; /* Keeps image ratio safe */
}

.stats-section {
  background-color: #020824;
}

.stats-box {
  background-color: #041636;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stats-icon {
  font-size: 40px;
  color: #00d6b4;
  margin-bottom: 15px;
}
/* Section Background */
.stats-section {
  background-color: #01081a;
}

/* Stats Cards */
.stats-card {
  background-color: #041636;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
}

/* Circular Icon Background */
.icon-circle {
  background-color: #003366;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  color: #00e3cc;
}

/* Text Styles */
.stats-number {
  font-size: 28px;
  font-weight: 700;
  color: #00e3cc;
  margin-bottom: 5px;
}

.stats-label {
  font-size: 16px;
  color: #ddd;
  margin: 0;
}
.expertise-section {
  background-color: #01081a;
  color: #fff;
}

.section-title {
  color: #00ff84;
  font-size: 32px;
}

.section-subtitle {
  color: #ccc;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.expertise-card {
  background-color: #041636;
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.expertise-card:hover {
  transform: translateY(-5px);
}

.icon-box {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #ccc;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
}

.feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00ff84;
  font-size: 14px;
}
.powered-section {
  background-color: #01081a;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.powered-icon {
  font-size: 40px;
  color: #00bfff;
  background-color: #06294d;
  display: inline-flex;
  padding: 15px;
  border-radius: 50%;
}

.powered-title {
  font-size: 32px;
  color: #008cff;
}

.powered-subtitle {
  color: #bbb;
  font-size: 16px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.tech-tags {
  margin-top: 30px;
}

.tag {
  background-color: #071b39;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.tag:hover {
  background-color: #008cff;
  color: #fff;
  cursor: pointer;
}
/* Who We Are Section */
.who-we-are-section {
  background-color: #01081a;
  color: #fff;
}

.icon-circle {
  background-color: #0d1328;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #c3ff41;
}

.section-title span {
  color: #fff;
}

.section-desc {
  color: #bbb;
  font-size: 16px;
  line-height: 1.7;
}

.badge-container .custom-badge {
  background-color: #0a122d;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.image-wrapper {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255, 98, 0, 0.4);
}

.image-wrapper img {
  border-radius: 12px;
}

.rating-badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #111629;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
section:nth-of-type(even) {
  background-color: #000511; /* dark */
}

section:nth-of-type(odd) {
  background-color: #01081a; /* slightly different dark */
}

/* General Section Styles (re-using your existing principles) */
.section-title {
    font-size: 2.5rem;
    color: #e63946; /* A prominent red/pink for titles */
}

.section-subtitle {
    font-size: 1.1rem;
    color: #a8dadc; /* A lighter blue/green for subtitles */
    max-width: 700px;
    margin: 0 auto;
}

/* Experts Section Specific Styles */
.experts-section {
  background-color: #0a122d;
  color: #fff;
}

.experts-icon {
    font-size: 3rem;
    color: #e63946; /* Matching the title color */
    margin-bottom: 1rem;
    /* Circular background for icon, if needed */
    background-color: rgba(230, 57, 70, 0.1); /* Light transparent background */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto; /* Center the icon */
}


.expert-card {
  background-color: #111629;
  color: #fff;
  height: 100%;
  transition: transform 0.3s;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
}

.expert-card:hover {
    transform: translateY(-5px); /* Lift on hover */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

.expert-image-container {
    width: 120px; /* Adjust size of image container */
    height: 120px;
    margin: 0 auto; /* Center the image */
    overflow: hidden; /* Ensure image stays within bounds */
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the circle */
    filter: grayscale(80%) brightness(120%); /* Adds a subtle monochrome effect with brightness for style */
    transition: filter 0.3s ease;
}

.expert-card:hover .expert-image {
    filter: grayscale(0%) brightness(100%); /* Color on hover */
}

.expert-name {
    color: #e63946; /* Matching your primary accent color for names */
    font-size: 1.3rem;
}

.expert-title {
    color: #a8dadc; /* Secondary blue/green for titles */
    font-size: 0.95rem;
    font-style: italic;
}

.expert-description {
    color: #f1faee; /* Light color for description */
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.expert-socials .social-icon {
    color: #f1faee; /* Social icon color */
    font-size: 1.2rem;
    margin: 0 8px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.expert-socials .social-icon:hover {
    color: #a8dadc; /* Hover color for social icons */
    transform: translateY(-3px);
}




/* Adjustments for existing sections to ensure consistency */
.section-title span {
    color: #e63946; /* Ensure consistent color for titles if they use spans */
}

/* NEW: Contact Section Styles */
.contact-section {
    background-color: #1a1e36; /* Dark background from screenshot */
    color: #f1faee; /* Light text color */
    padding: 80px 0;
}

.contact-section .section-title {
    color: #f1faee; /* White title */
}

.contact-section .section-subtitle {
    color: rgba(241, 250, 238, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-card {
    background-color: #2b304c; /* Slightly lighter dark background for cards */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #f1faee;
}

.contact-info-card .contact-card-title {
    color: #e63946; /* Accent color for inner title */
    font-size: 1.6rem;
}

.contact-icon-wrapper {
    background-color: #e63946; /* Accent color for icons */
    color: #f1faee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0; /* Prevent icon from shrinking */
}

.contact-detail-title {
    font-weight: 600;
    color: #a8dadc; /* Light blue accent for detail titles */
    margin-bottom: 0;
    font-size: 1.1rem;
}

.contact-detail-text {
    color: rgba(241, 250, 238, 0.8);
    font-size: 0.95rem;
}

.contact-form-card {
    background-color: #2b304c; /* Same as contact info card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    background-color: #3b4260; /* Darker input background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f1faee; /* Light text color for input */
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.contact-form-card .form-control::placeholder,
.contact-form-card .form-select {
    color: rgba(241, 250, 238, 0.6); /* Lighter placeholder text */
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    background-color: #4b5270; /* Slightly lighter on focus */
    border-color: #a8dadc; /* Accent border on focus */
    box-shadow: 0 0 0 0.25rem rgba(168, 218, 220, 0.25);
    color: #f1faee;
}

.contact-form-card .form-select option {
    background-color: #2b304c; /* Ensure dropdown options match card background */
    color: #f1faee;
}

.contact-form-card .btn-submit-inquiry {
    background-color: #e63946; /* Accent color for submit button */
    border-color: #e63946;
    color: #f1faee;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form-card .btn-submit-inquiry:hover {
    background-color: #fca311; /* Orange on hover */
    border-color: #fca311;
}


/* NEW: Main Footer Styles */
.main-footer {
    background-color: #1a1e36; /* Dark background */
    color: rgba(241, 250, 238, 0.8); /* Light text for general content */
    padding-top: 50px;
    padding-bottom: 20px;
}

.main-footer .footer-brand {
    font-size: 1.4rem;
    color: #f1faee;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Styles for the "Anne InfoTech" text inside the footer brand */
.main-footer .footer-brand span {
    font-size: 1.4rem; /* Ensure font size is consistent with brand */
}


.main-footer .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(241, 250, 238, 0.7);
    max-width: 300px;
}

.main-footer .footer-socials .footer-social-icon {
    color: rgba(241, 250, 238, 0.6); /* Lighter icons */
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.main-footer .footer-socials .footer-social-icon:hover {
    color: #a8dadc; /* Accent color on hover */
    transform: translateY(-3px);
}

.main-footer .footer-heading {
    font-size: 1.25rem;
    color: #e63946; /* Accent color for headings */
    margin-bottom: 1.5rem;
}

.main-footer .footer-links {
    padding-left: 0;
}

.main-footer .footer-links li {
    margin-bottom: 10px;
}

.main-footer .footer-links li a {
    color: rgba(241, 250, 238, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-footer .footer-links li a:hover {
    color: #a8dadc; /* Accent color on hover */
}

.main-footer .footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.main-footer .copyright-text {
    font-size: 0.85rem;
    color: rgba(241, 250, 238, 0.5);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-heading {
        font-size: 2.8rem;
    }
    .hero-heading .dot {
        font-size: 3rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }

    .expertise-card,
    .contact-info-card,
    .contact-form-card {
        margin-bottom: 1.5rem; /* Add spacing for smaller screens */
    }
}

