@import url(../fonts/gordita/stylesheet.css);
@import url(../vendor/bootstrap/css/bootstrap.min.css);
@import url(navbar.css);
@import url(framework.css);
@import url(../fonts/bootstrap-icons/font-css.css);
@import url(../fonts/font-awesome/css/all.min.css);
@import url(../vendor/fancybox/dist/jquery.fancybox.min.css);
@import url(../vendor/slick/slick.css);
@import url(animate.min.css);
@import url(custom-animation.css);
@import url(../vendor/skills-master/habilidades.css);
@import url(../vendor/aos-next/dist/aos.css);
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #913bff;
  border-radius: 0;
}
:root {
    --text-color: #1A1A1A; /* Dark Gray for better readability */
    --heading: #0A3D62; /* Deep Blue */
    --prime-one: #0E5A8A; /* Rich Blue */
    --prime-two: #1076B0; /* Vibrant Blue */
    --prime-three: #1C1C1C; /* Soft Black */
    --prime-four: #E3E3E3; /* Light Gray */
    --prime-five: #F5F5F5; /* Off-White */
    --gr-one: linear-gradient(to right, #0E5A8A, #1076B0); /* Smooth Blue Gradient */
  }
  
::selection {
  background-color: #2a2a2a;
  color: #fff;
}
body {
    font-family: gorditaregular;
    font-weight: 400;
    font-size: 20px;
    position: relative;
    line-height: 2em;
    color: var(--text-color);
  }
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading);
    font-weight: 400;
  }
  .h1,
  h1 {
    font-size: 80px;
  }
  .h2,
  h2 {
    font-size: 52px;
  }
  .h3,
  h3 {
    font-size: 36px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 24px;
    font-family: gorditamedium;
  }
  .h6,
  h6 {
    font-size: 20px;
    font-family: gorditamedium;
  }
/* ===== Hero Section ===== */
.healthcare-hero .hero-content {
  background-color:#cccaca96; 
}
.healthcare-hero {
    background-color: var(--prime-five);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
  }
  
  .healthcare-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../images/shape/shape_26.svg');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
  }
  
  .healthcare-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 25px;
  }
  
  .healthcare-hero .hero-title span {
    color: var(--prime-three);
    position: relative;
    z-index: 1;
  }
  
  .healthcare-hero .hero-title span::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }
  
  .healthcare-hero .hero-text {
    font-size: 1.2rem;
    color: var(--prime-three);
    margin-bottom: 40px;
    max-width: 90%;
  }
  
  .healthcare-hero .hero-buttons {
    display: flex;
    gap: 20px;
  }
  
  .healthcare-hero .hero-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
  }
  
  .healthcare-hero .hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .healthcare-hero .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 90, 138, 0.3) 0%, rgba(16, 118, 176, 0) 50%);
  }
  
  /* ===== Main Content Section ===== */
  .healthcare-section {
    background-color: #f8fbff;
    position: relative;
  }
  
  .healthcare-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/shape/shape_35.svg');
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
  }
  .industry-hero {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
  }
  
  .industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../images/shape/shape_26.svg');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
  }
  
  .industry-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 25px;
  }
  
  .industry-hero .hero-title span {
    color: var(--prime-three);
    position: relative;
    z-index: 1;
  }
  
  .industry-hero .hero-title span::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }
  
  .industry-hero .hero-text {
    font-size: 1.2rem;
    color: var(--prime-three);
    margin-bottom: 40px;
    max-width: 90%;
  }
  
  .industry-hero .hero-buttons {
    display: flex;
    gap: 20px;
  }
  
  .industry-hero .hero-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
  }
  
  .industry-hero .hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .industry-hero .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 90, 138, 0.3) 0%, rgba(16, 118, 176, 0) 50%);
  }
  
  /* ===== Industry Content Section ===== */
  .industry-section {
    background-color: #f8fbff;
    position: relative;
  }
  
  .industry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/shape/shape_35.svg');
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
  }
  .technology-hero {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
  }
  
  .technology-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-image: url('../images/shape/shape_26.svg');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1;
  }
  
  .technology-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading);
    margin-bottom: 25px;
  }
  
  .technology-hero .hero-title span {
    color: var(--prime-three);
    position: relative;
    z-index: 1;
  }
  
  .technology-hero .hero-title span::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: -1;
  }
  
  .technology-hero .hero-text {
    font-size: 1.2rem;
    color: var(--prime-three);
    margin-bottom: 40px;
    max-width: 90%;
  }
  
  .technology-hero .hero-buttons {
    display: flex;
    gap: 20px;
  }
  
  .technology-hero .hero-image {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
  }
  
  .technology-hero .hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
  }
  
  .technology-hero .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 90, 138, 0.3) 0%, rgba(16, 118, 176, 0) 50%);
  }
  
  /* ===== Main Content Section ===== */
  .technology-section {
    background-color: #f8fbff;
    position: relative;
  }
  
  .technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/shape/shape_35.svg');
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.1;
    pointer-events: none;
  }
  
  .title-style-four .main-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--heading);
    position: relative;
    margin-bottom: 15px;
  }
  
  .title-style-four .main-title span {
    color: var(--prime-one);
    position: relative;
    z-index: 1;
  }
  
  .title-style-four .main-title span::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(14, 90, 138, 0.1);
    z-index: -1;
  }
  
  .title-separator {
    width: 70px;
    margin: 0 auto 20px;
    position: relative;
    height: 2px;
    background-color: var(--prime-one);
  }
  
  .title-separator span {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--prime-two);
    top: 0;
    left: 50%;
    animation: separatorMove 2s infinite alternate;
  }
  
  @keyframes separatorMove {
    0% { left: 0; }
    100% { left: calc(100% - 20px); }
  }
  
  .title-style-four .subtitle {
    font-size: 1.1rem;
    color: #667085;
    max-width: 650px;
    margin: 0 auto;
  }
  
  /* ===== Email List Sidebar ===== */
  .email-list-sidebar {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .email-list-sidebar:hover {
    box-shadow: 0 15px 50px rgba(14, 90, 138, 0.15);
    transform: translateY(-5px);
  }
  
  .sidebar-header {
    margin-bottom: 25px;
  }
  
  .sidebar-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .sidebar-title i {
    color: var(--prime-one);
    margin-right: 10px;
  }
  
  .sidebar-description {
    color: #667085;
    font-size: 0.95rem;
  }
  
  .search-box {
    position: relative;
  }
  
  .search-box input {
    width: 100%;
    height: 48px;
    padding: 0 20px;
    padding-right: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9fafb;
    transition: all 0.3s ease;
  }
  
  .search-box input:focus {
    border-color: var(--prime-one);
    box-shadow: 0 0 0 3px rgba(14, 90, 138, 0.1);
    background-color: #fff;
    outline: none;
  }
  
  .search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #667085;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .search-box button:hover {
    color: var(--prime-one);
  }
  
  .category-tabs {
    margin: 25px 0;
  }
  
  .nav-tabs {
    border-bottom: 1px solid #e0e0e0;
    gap: 10px;
  }
  
  .nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: #667085;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--prime-one);
    transition: all 0.3s ease;
  }
  
  .nav-tabs .nav-link:hover, 
  .nav-tabs .nav-link.active {
    color: var(--prime-one);
    background-color: transparent;
    border: none;
  }
  
  .nav-tabs .nav-link.active::after {
    width: 100%;
  }
  
  .email-list-items {
    max-height: 700px;
    overflow-y: auto;
    padding-right: 10px;
  }
  
  .email-list-items::-webkit-scrollbar {
    width: 4px;
  }
  
  .email-list-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .email-list-items::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
  
  .email-list-items::-webkit-scrollbar-thumb:hover {
    background: var(--prime-one);
  }
  
  .email-list-items li {
    margin-bottom: 10px;
  }
  
  .email-list-items li a {
    display: flex;
    align-items: center;
    color: #4d5761;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
  }
  
  .email-list-items li a i {
    color: var(--prime-one);
    min-width: 24px;
  }
  
  .email-list-items li a:hover {
    background-color: rgba(14, 90, 138, 0.05);
    color: var(--prime-one);
    transform: translateX(5px);
  }
  
  .sidebar-cta {
    background: var(--gr-one);
    padding: 25px;
    border-radius: 10px;
    color: #fff;
    margin-top: 30px;
  }
  
  .sidebar-cta h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .sidebar-cta p {
    margin-bottom: 15px;
    opacity: 0.9;
  }
  
  .theme-btn-sm {
    display: inline-block;
    background-color: #fff;
    color: var(--prime-one);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .theme-btn-sm:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* ===== Main Content ===== */
  .main-content-wrapper {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    height: 100%;
  }
  
  .content-card {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
  }
  
  .card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: var(--gr-one);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(14, 90, 138, 0.2);
  }
  
  .content-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
  }
  
  .intro-text {
    font-size: 1.05rem;
    color: #4d5761;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  .section-title-wrapper {
    margin: 40px 0 25px;
  }
  
  .section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    color: #667085;
    font-size: 1rem;
  }
  
  /* Benefits Cards */
  .benefits-section {
    margin-bottom: 40px;
  }
  
  .benefit-card {
    background-color: #f8f9fc;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gr-one);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
  }
  
  .benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 15px;
  }
  
  .benefit-card p {
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Action Section */
  .action-section {
    background-color: #f8f9fc;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
  }
  
  .action-section h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 10px;
  }
  
  .action-section p {
    color: #667085;
    margin-bottom: 0;
  }
  
  /* Testimonial Section */
  .testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    border-left: 4px solid var(--prime-one);
    transition: all 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 90, 138, 0.1);
  }
  
  .quote-icon {
    font-size: 24px;
    color: var(--prime-one);
    opacity: 0.3;
    display: block;
    margin-bottom: 15px;
  }
  
  .testimonial-content p {
    font-size: 1.05rem;
    color: #4d5761;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--prime-one);
  }
  
  .author-info h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 5px;
  }
  
  .author-info p {
    color: #667085;
    font-size: 0.9rem;
    margin: 0;
  }
  
  /* Stats Section */
  .stats-section {
    background: var(--gr-one);
    padding: 80px 0;
    position: relative;
  }
  
  .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/shape/shape_12.svg');
    background-position: center;
    background-size: cover;
    opacity: 0.1;
  }
  
  .stat-item {
    color: #fff;
    text-align: center;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
  }
  
  .stat-title {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  /* Footer Newsletter */
  .subscribe-area {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* padding-bottom: 50px;
    margin-bottom: 50px; */
  }
  
  .subscribe-form {
    position: relative;
  }
  
  .subscribe-form input {
    width: 100%;
    height: 60px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    padding: 0 160px 0 25px;
    color: var(--text-color);
  }
  
  .ripple-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--gr-one);
    border: none;
    color: #fff;
    font-weight: 500;
    padding: 0 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .ripple-btn:hover {
    background: var(--prime-three);
  }
  
  .subscribe-form p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
  }
  
  /* Responsive Styles */
  @media (max-width: 1199px) {
    .healthcare-hero .hero-title {
      font-size: 3rem;
    }
    
    .content-card {
      flex-direction: column;
      gap: 15px;
    }
    
    .card-icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }
  }
  
  @media (max-width: 991px) {
    .healthcare-hero {
      padding: 100px 0 80px;
    }
    
    .healthcare-hero .hero-title {
      font-size: 2.5rem;
    }
    
    .healthcare-hero .hero-image {
      margin-top: 50px;
    }
    
    .main-content-wrapper {
      padding: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .healthcare-hero {
      padding: 80px 0 60px;
    }
    
    .healthcare-hero .hero-title {
      font-size: 2rem;
    }
    
    .title-style-four .main-title {
      font-size: 2rem;
    }
    
    .email-list-sidebar, 
    .main-content-wrapper {
      padding: 32px;
    }
    
    .content-title {
      font-size: 1.5rem;
    }
    
    .stats-section {
      padding: 60px 0;
    }
    
    .stat-number {
      font-size: 2.5rem;
    }
    
    .stat-title {
      font-size: 1rem;
    }
    
    .subscribe-form input {
      padding-right: 25px;
      padding-bottom: 80px;
    }
    
    .ripple-btn {
      right: auto;
      top: auto;
      bottom: 5px;
      left: 5px;
      width: calc(100% - 10px);
    }
  }
  
  @media (max-width: 575px) {
    .healthcare-hero {
      padding: 60px 0 40px;
    }
    
    .healthcare-hero .hero-title {
      font-size: 1.8rem;
    }
    
    .healthcare-hero .hero-text {
      font-size: 1rem;
    }
    
    .healthcare-hero .hero-buttons {
      flex-direction: column;
      gap: 15px;
    }
    
    .title-style-four .main-title {
      font-size: 1.8rem;
    }
    
    .content-title {
      font-size: 1.3rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
  }
  
  /* Animation Classes */
  .fade-up {
    animation: fadeUp 0.8s both;
  }
  
  .fade-in {
    animation: fadeIn 1s both;
  }
  
  .slide-in-right {
    animation: slideInRight 0.8s both;
  }
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Button Styles */
  .theme-btn {
    display: inline-block;
    background: var(--gr-one);
    color: #fff;
    font-weight: 500;
    padding: 13px 30px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  
  .theme-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--prime-three);
    z-index: -1;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: right;
  }
  
  .theme-btn:hover {
    color: #fff;
  }
  
  .theme-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  .theme-btn-two {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .theme-btn-two:hover {
    background-color: #fff;
    color: var(--prime-one);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  Enhance Existing Elements
  .navbar {
    backdrop-filter: blur(10px);
  }
  
  .sticky-menu.fixed {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s forwards;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  
  /* Additional Helper Classes */
  .rounded-lg {
    border-radius: 12px;
  }
  
  .shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  /* Base styles and imports remain the same up to the root variables */

/* Mobile-first base styles */
body {
  font-family: gorditaregular;
  font-weight: 400;
  font-size: 16px; /* Reduced base font size for mobile */
  position: relative;
  line-height: 1.6;
  color: var(--text-color);
}

/* Mobile-first typography */
.h1, h1 { font-size: 2rem; }
.h2, h2 { font-size: 1.75rem; }
.h3, h3 { font-size: 1.5rem; }
.h4, h4 { font-size: 1.25rem; }
.h5, h5 { font-size: 1.1rem; }
.h6, h6 { font-size: 1rem; }

Enhanced Mobile Navigation
.navbar {
  padding: 0.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* iOS support */
  z-index: 1000;
}

/* Mobile-first Hero Sections */
.healthcare-hero,
.industry-hero,
.technology-hero {
  padding: 2rem 1rem;
  overflow: hidden;
}

.hero-content {
  text-align: center; /* Center align on mobile */
  padding: 1rem;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.hero-image {
  margin-top: 2rem;
  transform: none; /* Remove perspective on mobile */
  width: 100%;
  height: auto;
}

/* Mobile-first Cards and Content */
.content-card {
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
}

.benefit-card {
  margin-bottom: 1rem;
  padding: 1.25rem;
}

/* Mobile-first Email List Sidebar */
.email-list-sidebar {
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.search-box input {
  height: 40px;
  padding: 0 40px 0 15px;
}

/* Mobile-first Stats Section */
.stats-section {
  padding: 2rem 1rem;
}

.stat-item {
  margin-bottom: 1.5rem;
}

.stat-number {
  font-size: 2rem;
}

/* Mobile-first Subscribe Form */
.subscribe-form {
  padding: 1rem;
}

.subscribe-form input {
  height: 50px;
  padding: 0 1rem;
  margin-bottom: 1rem;
}

.ripple-btn {
  position: relative;
  width: 100%;
  margin-top: 0.5rem;
}

/* Progressive Enhancement with Media Queries */
@media (min-width: 576px) {
  body { font-size: 18px; }
  
  .h1, h1 { font-size: 2.5rem; }
  .h2, h2 { font-size: 2rem; }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .ripple-btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  body { font-size: 19px; }
  
  .h1, h1 { font-size: 3rem; }
  .h2, h2 { font-size: 2.5rem; }
  
  .hero-content {
    text-align: left;
  }
  
  .content-card {
    flex-direction: row;
    align-items: flex-start;
  }
  
  .email-list-sidebar {
    padding: 2rem;
  }
}

@media (min-width: 992px) {
  body { font-size: 20px; }
  
  .h1, h1 { font-size: 4rem; }
  .h2, h2 { font-size: 3rem; }
  
  .hero-image {
    transform: perspective(1000px) rotateY(-5deg); /* Restore perspective effect */
  }
  
  .stats-section {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1200px) {
  .h1, h1 { font-size: 5rem; }
  .container {
    max-width: 1140px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .hero-image:hover {
    transform: none;
  }
  
  .benefit-card:hover {
    transform: none;
  }
  
  .theme-btn:hover::before {
    transform: none;
  }
}

/* Responsive Grid Utilities */
.row {
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.col, [class*="col-"] {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Responsive Tables */
@media (max-width: 767px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Print Styles */
@media print {
  .hero-image,
  .animation-wrapper,
  .video-wrapper {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  a[href]:after {
    content: " (" attr(href) ")";
  }
}