@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* Navigation styles */
.nav-text{
  font-size: 0.8rem;
}

/* Global reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  font-style: normal;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Enhanced navigation links with icons and reduced radius */
.navbar .nav-link {
  color: #1C2A44 !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 1.5rem !important;
  margin: 0 0.3rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 248, 255, 0.8));
  border: 2px solid rgba(28, 42, 68, 0.3);
  box-shadow: 0 4px 15px rgba(28, 42, 68, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.navbar .nav-link i {
  font-size: 1rem;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.navbar .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 173, 238, 0.4), transparent);
  transition: left 0.6s ease;
}

.navbar .nav-link:hover {
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #00ADEE, #0080B8);
  border: 2px solid #00ADEE;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 173, 238, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.navbar .nav-link:hover i {
  transform: scale(1.1) rotate(5deg);
  color: #FFFFFF;
}

.navbar .nav-link:hover::before {
  left: 100%;
}

.navbar .nav-link:active {
  transform: translateY(-1px) scale(1.01);
}

/* Layout utilities */
.description {
  height: 150px;
  background-color: blue;
}

/* Main section spacing utility */
.main-section {
  padding: 2rem 0;
  margin-bottom: 1.5rem;
}

/* White Navbar with transparency on scroll */
.navbar {
  background: #FFFFFF !important;
  transition: all 0.4s ease-in-out;
  padding: 1.2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 173, 238, 0.2);
}

.navbar.navbar-scrolled {
  padding: 0.8rem 0;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 173, 238, 0.4);
}

.navbar-brand img {
  transition: all 0.3s ease-in-out;
}

.navbar.navbar-scrolled .navbar-brand img {
  width: 100px !important;
}

/* Enhanced navbar toggler */
.navbar .navbar-toggler {
  border: 2px solid rgba(28, 42, 68, 0.3);
  border-radius: 8px;
  padding: 0.5rem;
  background: rgba(28, 42, 68, 0.1);
  transition: all 0.3s ease;
}

.navbar .navbar-toggler:hover {
  background: rgba(28, 42, 68, 0.2);
  border-color: rgba(0, 173, 238, 0.8);
  transform: scale(1.05);
}

.navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 173, 238, 0.3);
}

.navbar .navbar-toggler-icon {
  filter: brightness(0);
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .navbar .nav-link {
    margin: 0.3rem 0;
    text-align: center;
    padding: 0.7rem 1.2rem !important;
    border-radius: 10px;
  }
  
  .navbar .nav-link i {
    font-size: 0.9rem;
    margin-right: 0.4rem;
  }
  
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 173, 238, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Contact section styling */
.contact-item {
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 173, 238, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: rgba(0, 173, 238, 0.2);
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 1.5rem;
}

.social-links a {
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  color: #0080B8 !important;
}

/* HubSpot form styling */
.hs-form-frame {
  border-radius: 12px;
  overflow: hidden;
}

/* Scroll offset for fixed navbar */
.anchor {       
  scroll-margin-top: 75px;
}

/* Client section harmonic gradient background */
.container-secondary {
  background: #00ADEE;
  background: linear-gradient(135deg, #00ADEE 0%, #1B92BD 50%, #2B378D 100%);
  background: -moz-linear-gradient(135deg, #00ADEE 0%, #1B92BD 50%, #2B378D 100%);
  background: -webkit-linear-gradient(135deg, #00ADEE 0%, #1B92BD 50%, #2B378D 100%);
}

.text-container {
  color: #FFFFFF;
}


/* Footer styling */
footer {
  background-color: #1C2A44;
  color: #FFFFFF;
}

footer .footer-section h5,
footer .footer-section h6 {
  color: #ffffff;
  font-weight: 600;
}

footer .social-links a {
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-links a:hover {
  color: #00ADEE !important;
  transform: translateY(-2px);
}

footer .contact-info a:hover,
footer ul a:hover {
  color: #00ADEE !important;
  transition: color 0.3s ease;
}

footer .certifications {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 6px;
  border-left: 3px solid #00ADEE;
}

/* Section spacing standardization */
.services-section,
.faq-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Services section enhancements */
.service-card {
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 173, 238, 0.15) !important;
  border-color: rgba(0, 173, 238, 0.3);
}

.service-icon {
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-features .badge {
  font-size: 0.75rem;
  padding: 0.4em 0.8em;
  border: 1px solid #dee2e6;
}

/* Sectors section styling */
.sectors-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
}

.sector-item {
  transition: all 0.3s ease;
  border-radius: 8px;
}

.sector-item:hover {
  background: rgba(0, 173, 238, 0.1);
  transform: translateY(-2px);
}

.sector-item i {
  transition: color 0.3s ease;
}

.sector-item:hover i {
  color: #00ADEE !important;
}

/* FAQ section enhancements */
.faq-accordion .accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: none;
  border-radius: 12px 12px 0 0 !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #00ADEE 0%, #1B92BD 100%);
  color: white;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) i {
  color: white !important;
}

.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 173, 238, 0.25);
  border-color: #00ADEE;
}

.faq-accordion .accordion-button::after {
  background-size: 1.25rem;
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  background: #ffffff;
}

.certification-badge {
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.certification-badge:hover {
  border-color: #00ADEE;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 173, 238, 0.15);
}

.service-summary {
  transition: all 0.3s ease;
}

.service-summary:hover {
  border-color: #00ADEE !important;
  box-shadow: 0 4px 12px rgba(0, 173, 238, 0.15);
  transform: translateY(-2px);
}

.timeline-item {
  display: flex;
  align-items: center;
}

.alert-info {
  border-left: 4px solid #00ADEE;
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
}

.color-stroke {
  filter: drop-shadow(0 0 2px white) drop-shadow(1px 1px 0 white) drop-shadow(-1px -1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px 1px 0 white);
}