/* Dropdown Menu Styling */
.dropdown-menu {
  background: rgba(0, 0, 0, 0.95);
  border: none;
  border-radius: 10px;
  margin-top: 0.5rem;
  min-width: 320px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  animation: dropdownFadeIn 0.3s ease forwards;
  padding: 10px 0;
}
body {
  background-color: #001f33;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-header {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 20px 15px 20px;
  border-bottom: 1px solid #34495e;
  margin-bottom: 10px;
}

/* Services Dropdown */
.services-dropdown {
  min-width: 400px;
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-dropdown::-webkit-scrollbar {
  display: none;
}

.services-dropdown .dropdown-item {
  color: #ffffff !important;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 6px;
  margin: 2px 8px;
  font-size: 0.9rem;
}

.services-dropdown .dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: #007bff !important;
  transform: translateX(5px);
}

.services-dropdown .dropdown-item i {
  color: #ffffff;
  transition: color 0.3s ease;
}

.services-dropdown .dropdown-item:hover i {
  color: #007bff;
}

/* FAQ Dropdown */
.faq-dropdown {
  min-width: 300px;
  padding: 15px;
  max-height: 300px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.faq-dropdown::-webkit-scrollbar {
  display: none;
}

.option-selector {
  padding: 10px 0;
}

.option-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.option-item:hover {
  background-color: rgba(0, 123, 255, 0.1);
  transform: translateX(5px);
}

.option-item input[type="radio"] {
  margin-right: 12px;
  accent-color: #007bff;
  transform: scale(1.1);
}

.option-item label {
  color: #ffffff;
  cursor: pointer;
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.option-item:hover label {
  color: #007bff;
}

.select-btn {
  margin-top: 12px;
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.select-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Industries & Technologies Dropdown */
.industries-dropdown,
.technologies-dropdown {
  min-width: 400px;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industries-dropdown::-webkit-scrollbar,
.technologies-dropdown::-webkit-scrollbar {
  display: none;
}

.dropdown-item-text {
  color: #ffffff;
  padding: 10px 20px;
  display: block;
  cursor: default;
  border-radius: 6px;
  margin: 2px 8px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-item-text:hover {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
  transform: translateX(5px);
}

.dropdown-item-text i {
  color: #ffffff;
  transition: color 0.3s ease;
}

.dropdown-item-text:hover i {
  color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type i {
  color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type:hover i {
  color: #007bff;
}

/* Default dropdown item styling for backward compatibility */
.dropdown-item {
  color: #ffffff !important;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: #007bff !important;
  transform: translateX(5px);
}
:root {
  --Primary-Blue-Dark-Blue: #001f33;
  --Primary-Blue-Medium-Blue: #003d66;
  --Primary-Blue-Light-Blue: #87ceeb;
  --Accent-Yellow: #ffea00;
  --Text-Dark: #333333;
  --Text-Light: #666666;
  --Background-Light: #f8f9fa;
  --White: #ffffff;
  --Black: #000000;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
}

/* Header Styles */
.transparent-header {
  background: rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 0;
  animation: slideDown 0.8s ease-out;
}

.transparent-header:hover {
  background: rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: var(--Primary-Blue-Dark-Blue, #001f33) !important;
  backdrop-filter: none;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-brand img {
  filter: brightness(1.2) contrast(1.1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 0.2rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff !important;
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
  transform: rotate(180deg);
}

/* Right side menu styling */
.right-menu-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.top-nav-links {
  display: flex;
  align-items: center;
  margin-bottom: 0.3rem;
  gap: 0.5rem;
}

.top-nav-links .nav-link {
  font-size: 0.85rem;
  margin: 0;
  padding: 0.2rem 0.5rem;
  font-weight: 400;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.top-nav-links .nav-link:hover {
  color: #007bff !important;
  transform: translateY(-1px);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border: none;
  border-radius: 8px;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: white !important;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 123, 255, 0.2) !important;
  color: #007bff !important;
}

.btn-primary {
  background: linear-gradient(45deg, #007bff, #0056b3);
  border: none;
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
  border-radius: 8px;
  padding: 0.7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: url("/images/services-hero.png"); */
  background-size: 100% 100%;
  margin: 0;
  padding: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
  width: 100%;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  line-height: 1.3;
}

/* Ensure no spacing issues */
.hero-section + * {
  margin-top: 100px !important;
  padding-top: 0 !important;
}

/* Services Content Section */
.services-content-section {
  background: #001f33;
  color: #ffffff;
  position: relative;
}

/* Section Header */
.section-header {
  margin-bottom: 20px;
  margin-top: 30px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.title-divider {
  width: 550px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  margin-bottom: 80px;
}

/* Service Main Description */
.service-main-description {
  margin-bottom: 100px;
  padding: 0 20px;
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.4;
}

.service-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: white;
  text-align: justify;
  padding-right: 30px;
}

.service-text p {
  margin-bottom: 25px;
  font-weight: 400;
}

.service-text p:last-child {
  margin-bottom: 0;
}

.text-highlight {
  color: #487fff;
  font-weight: 600;
}
.text-highlight-yellow {
    color: #ffea00 !important; /* Yellow color for {{...}} */
    font-weight: bold;
}
.service-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  height: 100%;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Footer Section */
.footer-section {
  background: #001f33;
  padding: 60px 0 30px;
  color: #ffffff;
  position: relative;
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 180px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
}

.footer-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-description.limited-width {
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.instagram {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #ffea00;
  padding-left: 5px;
}

.footer-link.underlined {
  text-decoration: underline;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: #001f33;
  color: #87ceeb;
  font-size: 0.9rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2c5f7f;
}

.contact-details {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.contact-value:hover {
  color: #ffea00;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.8rem;
  }

  .services-content-section {
    padding: 200px 0 120px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .title-divider {
    width: 450px;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-text {
    font-size: 1rem;
    padding-right: 20px;
  }

  .service-image {
    padding-left: 30px;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }

  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }

  .services-content-section {
    padding: 150px 0 100px;
  }

  .section-title {
    font-size: 2rem;
  }

  .title-divider {
    width: 350px;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .service-text {
    font-size: 0.95rem;
    padding-right: 15px;
  }

  .service-image {
    padding-left: 20px;
    margin-top: 30px;
  }

  .dropdown-menu {
    min-width: 280px;
  }

  .services-dropdown,
  .industries-dropdown,
  .technologies-dropdown {
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .transparent-header {
    padding: 0.5rem 0;
  }

  .services-content-section {
    padding: 100px 0 80px;
  }

  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .title-divider {
    width: 250px;
    margin: 0 auto 60px;
  }

  .service-main-description {
    margin-bottom: 60px;
    padding: 0 15px;
  }

  .service-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .service-text {
    font-size: 0.9rem;
    padding-right: 0;
    text-align: left;
  }

  .service-image {
    padding-left: 0;
    margin-top: 40px;
    justify-content: center;
  }

  .dropdown-menu {
    min-width: 250px;
  }

  .services-dropdown,
  .industries-dropdown,
  .technologies-dropdown {
    min-width: 280px;
    max-height: 250px;
  }

  .faq-dropdown {
    min-width: 250px;
    max-height: 200px;
  }

  /* Footer Mobile */
  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-logo {
    justify-content: center;
    text-align: center;
  }

  .footer-logo-img {
    width: 150px;
    height: 65px;
  }

  .footer-brand {
    text-align: center;
    margin-bottom: 40px;
  }

  .social-links {
    justify-content: center;
  }

  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .contact-icon {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    padding: 0.5rem;
  }

  .services-content-section {
    padding: 80px 0 60px;
  }

  .section-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .title-divider {
    width: 200px;
    margin-bottom: 40px;
  }

  .service-main-description {
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .service-title {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .service-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .service-text p {
    margin-bottom: 20px;
  }

  .dropdown-menu {
    min-width: 220px;
  }

  .services-dropdown,
  .industries-dropdown,
  .technologies-dropdown {
    min-width: 250px;
    max-height: 200px;
  }

  .faq-dropdown {
    min-width: 220px;
    max-height: 180px;
  }

  .dropdown-header {
    font-size: 0.9rem;
    padding: 10px 15px 12px 15px;
  }

  .services-dropdown .dropdown-item,
  .dropdown-item-text {
    font-size: 0.8rem;
    padding: 8px 15px;
  }

  .option-item label {
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-outline-light {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    min-width: 120px;
  }

  /* Footer Extra Small */
  .footer-section {
    padding: 30px 0 15px;
  }

  .footer-logo-img {
    width: 120px;
    height: 50px;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .services-content-section {
    padding: 60px 0 40px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .title-divider {
    width: 150px;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-text {
    font-size: 0.8rem;
  }

  .dropdown-menu {
    min-width: 200px;
  }

  .services-dropdown,
  .industries-dropdown,
  .technologies-dropdown {
    min-width: 220px;
  }

  .faq-dropdown {
    min-width: 200px;
  }
}

/* platform */

/* Platform Section */
.platform-section {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin: 120px 80px;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-section .container-fluid {
  padding: 0 !important;
  margin: 0;
  max-width: 100%;
}

.platform-section .row {
  margin: 0;
  position: relative;
  z-index: 2;
  min-height: 400px;
  align-items: center;
}

.platform-section .col-lg-7,
.platform-section .col-lg-5 {
  padding: 0;
}

.platform-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: var(--primary-blue-blue-10, #487fff1a);
  z-index: 1;
}

.platform-content {
  padding: 60px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.platform-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffea00;
  margin-bottom: 40px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-section .section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0;
  color: #ffffff;
  text-align: justify;
}

.platform-section .highlight-text {
  color: #60a5fa;
  font-weight: 600;
}

.platform-image {
  position: relative;
  z-index: 2;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.platform-section .platform-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Content Sections Responsive Design */
@media (max-width: 991px) {
  .platform-section::before {
    width: 100%;
  }

  .platform-section .row {
    flex-direction: column;
    min-height: auto;
  }

  .platform-content {
    padding: 60px 40px;
    order: 1;
  }

  .platform-image {
    order: 2;
    margin-top: 0;
  }

  .platform-section .platform-image img {
    height: 250px;
  }

  .platform-section .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .platform-section {
    padding: 0;
    margin: 40px 20px;
  }

  .platform-section .row {
    flex-direction: column;
    min-height: auto;
  }

  .platform-content {
    padding: 50px 30px;
    order: 1;
  }

  .platform-image {
    order: 2;
  }

  .platform-section .platform-image img {
    height: 220px;
  }

  .platform-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .platform-section {
    padding: 0;
    margin: 20px 10px;
  }

  .platform-content {
    padding: 40px 20px;
  }

  .platform-section .platform-image img {
    height: 200px;
  }

  .platform-section .section-title {
    font-size: 1.6rem;
  }

  .platform-section .section-text {
    font-size: 0.95rem;
  }
}
/* Remove bullets from all headings inside Service-2 page */
h1, h2, h3, h4, h5, h6 {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: block !important;
}
