/* 
* Main Styles
* Mobile-first approach
*/

:root {
    --primary-color: #31b5d6;
    --secondary-color: #6c757d;
    --dark-color: #111;
    --light-color: #f8f9fa;
    --body-font: 'Inter', sans-serif;
    --heading-font: 'Jost', sans-serif;
    --transition: all 0.3s ease;
  }
  
  body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: #333;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
  }
  
  a {
    text-decoration: none;
    transition: var(--transition);
  }
  
  /* Utility Classes */
  .subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    text-align: center;
  }
  
  :focus {
    outline: 0;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -o-box-shadow: none !important
}
  .shadow-hover {
    transition: var(--transition);
  }
  
  .shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  }


  .site-button {
    padding: 0 45px;
    display: inline-block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #fff;
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 56px;
    position: relative;
    transition: all 0.3s ease;
    border: none;
}

@media (max-width: 576px) {
    .site-button {
      line-height: 26px;
      padding: 15px 45px;
    }
}

/* Button for darker backgrounds - adds border and brighter effects */
.primary-btn-light {
  background: linear-gradient(to right, #62227D, #31b5d6);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}


.primary-btn-light:hover {
  background: linear-gradient(225deg, #1a0b19, #49232a, #4a2938);
  background-size: 200% 200%;
  background-position: 100% 50%;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.primary-btn-light:hover::before {
  opacity: 0.8;
  transform: translateX(100%);
}

/* Alternative version with light border and brighter effect */
.primary-btn-outlined {
  background: linear-gradient(45deg, #1a0b19, #49232a, #4a2938);
  background-size: 200% 200%;
  background-position: 0% 50%;
  border: 2px solid #31b5d6;
  box-shadow: 0 4px 15px rgba(156, 86, 117, 0.3);
}

.primary-btn-outlined:hover {
  background: linear-gradient(225deg, #1a0b19, #49232a, #4a2938);
  background-size: 200% 200%;
  background-position: 100% 50%;
  color: #ffffff;
  border-color: #d38fb0;
  box-shadow: 0 6px 20px rgba(156, 86, 117, 0.5);
  transform: translateY(-2px);
}
  .heading-subtitle {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 30px;
  }

.section-title-dark {
  /*color: #4a2938;
  font-size: 2.4rem;*/
  font-size: 2.4rem;
  
  /* Create the gradient background */
  background: linear-gradient(to right, #62227D, #31b5d6);
  
  /* Make the background visible through the text */
  -webkit-background-clip: text;
  background-clip: text;
  
  /* Make the text transparent so the gradient shows through */
  -webkit-text-fill-color: transparent;
  color: transparent;
  
  /* Preserve the text's sharpness */
  -webkit-font-smoothing: antialiased;
  
  /* Fallback for older browsers */
  position: relative;
  display: inline-block;
}

.section-title-light {
  color: #ffffff;
  font-size: 2.4rem;
}
  
/* Header & Navigation Styles */
header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.header-nav {
  transition: var(--transition);
  background-color: transparent; /* Purple background matching the example */
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  /*min-height: 80px;*/
}

/* Logo Container with White Background */
.logo-container {
  position: relative;
  background-color: #fff;
  padding: 0 3rem 0 1.5rem;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin-right: 0;
  display: flex;
  align-items: center;
}

.navbar-brand .logo {
  height: 70px;
  width: auto;
}

/* Navigation Links */
.nav-link {
  color: #fff;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link.active {
  color: #f8f9fa;
}

.navbar-nav .nav-link:hover {
  color: #f5d8df;
}

@media (min-width: 991.98px) {
  .nav-item {
    margin-left: 1.5rem;
  }
}

/* Scrolled State */
.header-nav.scrolled {
  position: fixed;
  background: linear-gradient(to right, #62227D, #31b5d6);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.5s ease-in-out;
}

.header-nav.scrolled .logo-container {
  height: 75px;
}

.header-nav.scrolled .navbar-brand .logo {
  height: 60px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toggler Button */
.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding-right: 0;
}

/* Mobile Styles */
@media (max-width: 991.98px) {
  .logo-container {
    padding: 0 2rem 0 1rem;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    height: 70px;
  }
  
  .navbar-brand .logo {
    height: 50px;
  }
  
  .navbar-collapse {
    background: linear-gradient(to bottom, #1a0b19, #4a2938);
    margin-top: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
  }
  
  .navbar-nav {
    margin-left: 0 !important;
  }
  
  .header-nav.scrolled .navbar-collapse {
    background: transparent;
  }
}

@media (max-width: 575.98px) {
  .logo-container {
    padding: 0 1.5rem 0 0.75rem;
    height: 60px;
  }
  
  .navbar-brand .logo {
    height: 40px;
  }
}
  
  /* Hero Section */
  .hero-section {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url('../images/services-blue-bg.png');
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    color: #fff;
    position: relative;
  }
  
  .hero-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
  }
  
  .hero-section .container {
    position: relative;
    z-index: 1;
  }
  
  .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
  }
  
  .hero-text {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 30px;
    max-width: 600px;
  }
  
  /* About Section */
  .about-section {
    background-color: #ffffff;
    /* background-color: #f3ecee;*/
  }
  .about-section img {
    width: 100%;
  }

  .about-section p {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 30px;
  }
  
    .about-card {
      background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
  }
  .about-card::before {
      content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: all 0.3s ease;
  }
  
  /* Services Section */

  .services-section {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url('../images/services-blue-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .service-card {
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
  }
  
  .service-card:hover {
    border-bottom: 3px solid var(--primary-color);
  }
  
  .service-icon {
    color: var(--primary-color);
  }

  .service-icon i {
    font-size: 3rem;
    font-weight: 600;
  }

  .services-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  /* CTA Section */
  .cta-section {
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), url('../images/services-blue-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark-color);
  }
  
  .footer-logo {
    height: 50px;
    width: auto;
  }
  
  .footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .footer-link:hover {
    color: #fff;
    padding-left: 5px;
  }
  
  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition);
  }
  
  .social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .contact-info i {
    color: var(--primary-color);
  }

  .company-details span {
    font-size: .9rem;
    font-weight: 300;
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
  }
  
  @media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
  }


  /* Why Us Section Styles */
.why-us-section {
    background-color: #fff;
    overflow: hidden;
  }
  
  
  .counter-card {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
  }
  
  .counter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  
  .counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: all 0.3s ease;
  }
  
  .counter-card:hover::before {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(0, 123, 255, 0.1) 100%);
    opacity: 0.1;
  }
  
  .counter-icon {
    height: 90px;
    width: 90px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .counter-card:hover .counter-icon {
    background-color: var(--primary-color);
    transform: scale(1.1);
  }
  
  .counter-svg {
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .counter-card:hover .counter-svg {
    color: #fff;
  }
  
  .counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    font-family: var(--heading-font);
    margin-bottom: 10px;
  }
  
  .counter-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .counter-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0 10px;
  }
  
  /* Animation Classes for Fade-in Effect */
  .fade-in-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in-item.appear {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive adjustments */
  @media (max-width: 767px) {
    .counter-number {
      font-size: 2.5rem;
    }
    
    .counter-suffix {
      font-size: 2rem;
    }
    
    .counter-icon {
      height: 70px;
      width: 70px;
    }
    
    .counter-svg {
      width: 36px;
      height: 36px;
    }
  }


  /* About us page */
  .hero-about-us-section {
    background-image: url('../images/services-blue-bg.png');
    background-size: cover;
    background-position: center center;
    min-height: 60vh;
    color: #fff;
    position: relative;
  }

  .hero-about-us-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
  }
  
  .hero-about-us-section .container {
    position: relative;
    z-index: 1;
  }
  
  .hero-about-us-section .hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
  }
  
  .hero-about-us-section .hero-text {
    font-size: 1.1rem;
    max-width: 600px;
  }

  .hero-about-us-section .hero-text {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
  }

  .about-us-content p {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 30px;
  }

  .cta-section p {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 30px;
  }


  /* Contact Page Styles */

/* Contact Form */
.contact-form-wrapper {
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  
  .form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    transition: all 0.3s;
  }
  
  .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
  }
  
  .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  /* Contact Info */
  .contact-info {
    padding: 30px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-color);
  }
  
  .contact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .contact-item p {
    color: #6c757d;
  }
  
  /* Form Validation */
  .was-validated .form-control:invalid,
  .form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  
  .was-validated .form-control:valid,
  .form-control.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  }
  
  /* Privacy checkbox */
  .form-check-label {
    font-size: 0.875rem;
  }
  
  /* Alert messages */
  .alert {
    border-radius: 8px;
  }
  
  /* Media Queries */
  @media (max-width: 991px) {
    .contact-info {
      margin-bottom: 2rem;
    }
  }