/* Base Styles - Matching Landing Page */
:root {
    --primary-color: #3a86ff;
    --secondary-color: #4361ee;
    --accent-color: #f5c542;
    --dark-color: #2b2d42;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #06d6a0;
    --white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-color);
    font-size: 18px;
}

/* Preloader & Header - matches landing page */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--accent-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; /* Increased to accommodate larger logo */
    padding: 0;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
}

.header.sticky {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    height: 150px; /* Increased sticky height */
}

.header .container {
    height: 100%;
    padding: 0 30px;
}

.header-content {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-text-container {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    height: 200px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.header.sticky .logo-image {
    height: 150px;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list li {
    margin-left: 14px; /* Reduced space to fit all items */
}

.nav-list a {
    color: var(--accent-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap; /* Keep text in one line */
    font-size: 16px; /* Slightly smaller font to fit all items */
}

.nav-list a.two-words {
    letter-spacing: -0.5px; /* Tighten letter spacing for multi-word items */
}

.header.sticky .nav-list a {
    color: var(--dark-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent-color);
}

.dropdown {
    position: relative;
  }
  
  .dropdown-toggle {
    display: flex;
    align-items: center;
  }
  
  .dropdown-icon {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
  }
  
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
  }
  
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .dropdown-menu li {
    margin: 0;
    display: block;
    width: 100%;
  }
  
  .dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--dark-color) !important;
    font-size: 14px;
    transition: background-color 0.2s ease;
  }
  
  .dropdown-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  
  .dropdown-menu a::after {
    display: none;
  }

  .dba-text {
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 400;
    margin-top: -2px;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
  

/* Body adjustments for fixed header */
body {
    padding-top: 200px; /* Match header height */
}

/* Hero Section adjustment */
.hero {
    margin-top: -200px; /* Match header height */
    padding-top: 200px; /* Match header height */
}

/* Toggle Menu for Mobile */
.menu-toggle {
    display: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: var(--transition);
}

.header.sticky .menu-toggle span {
    background-color: var(--dark-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .header {
        height: 180px;
    }
    
    .header.sticky {
        height: 130px;
    }
    
    .logo-image {
        height: 180px;
    }
    
    .header.sticky .logo-image {
        height: 130px;
    }
    
    body {
        padding-top: 180px;
    }
    
    .hero {
        margin-top: -180px;
        padding-top: 180px;
    }
    
    .nav-list a {
        font-size: 13px;
    }
    
    .nav-list li {
        margin-left: 12px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 150px;
    }
    
    .header.sticky {
        height: 100px;
    }
    
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo-text-container {
        flex: 0 0 30%;
        order: 1;
    }
    
    .logo-container {
        flex: 0 0 40%;
        order: 2;
    }
    
    .main-nav {
        flex: 0 0 30%;
        order: 3;
    }
    
    .logo-image {
        height: 120px;
    }
    
    .header.sticky .logo-image {
        height: 80px;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 150px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px 0;
        box-shadow: var(--box-shadow);
        flex-direction: column;
        align-items: center;
    }
    
    .header.sticky .nav-list {
        top: 100px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        margin: 10px 0;
    }
    
    .nav-list a {
        color: var(--dark-color);
        font-size: 15px; /* Return to normal size for mobile menu */
    }
    
    .menu-toggle {
        display: block;
    }
    
    body {
        padding-top: 150px;
    }
    
    .hero {
        margin-top: -150px;
        padding-top: 150px;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transform: none;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-menu li {
        padding-left: 15px;
    }
    
    .dropdown-menu a {
        padding: 8px 15px;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .header {
        height: 120px;
    }
    
    .header.sticky {
        height: 80px;
    }
    
    .logo-image {
        height: 100px;
    }
    
    .header.sticky .logo-image {
        height: 60px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    body {
        padding-top: 120px;
    }
    
    .hero {
        margin-top: -120px;
        padding-top: 120px;
    }
}

/* Hero Section - Microbiology Specific */
#micro-hero {
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 700px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Introduction Section */
.intro {
    background-color: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--dark-color);
}

.intro-text p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--gray-color);
}

.intro-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* About Section */
.about {
    background-color: #f5f8ff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.about-text p {
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--gray-color);
}

.about-text h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--dark-color);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Services Section */
.services {
    background-color: var(--white);
}

.services-tabs {
    max-width: 100%;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 15px;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    white-space: nowrap;
    width: 100%;
    scrollbar-width: thin;
    position: relative;
    cursor: grab;
}

.tabs-nav::-webkit-scrollbar {
    height: 6px;
}

.tabs-nav::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.tabs-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.tabs-nav::before,
.tabs-nav::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tabs-nav::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0));
}

.tabs-nav::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.8), rgba(255,255,255,0));
}

/* Show shadows only when content overflows */
.tabs-nav.overflow-left::before {
    opacity: 1;
}

.tabs-nav.overflow-right::after {
    opacity: 1;
}



.tab-btn {
    flex: 0 0 auto;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    transition: var(--transition);
    margin: 0 15px;
    white-space: nowrap;
    min-width: fit-content;
}

.tab-btn:first-child {
    margin-left: 15px;
}

.tab-btn:last-child {
    margin-right: 15px;
}


.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Improve tab button focus state for accessibility */
.tab-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Add a subtle animation for the active tab */
.tab-btn.active {
    position: relative;
}


.tabs-content {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    animation: pulseWidth 2s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseWidth {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.tab-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.tab-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.tab-details ul {
    margin-bottom: 30px;
}

.tab-details ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.tab-details ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* Clients Section */
.clients {
    background-color: #f5f8ff;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.client-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-10px);
}

.client-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(58, 134, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.client-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.client-card h3 {
    font-size: 18px;
    font-weight: 600;
}

/* Why Us Section */
.why-us {
    background-color: var(--white);
}

.counter-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.counter-box {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f5f8ff;
    box-shadow: var(--box-shadow);
}

.counter {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.counter-box h4 {
    font-size: 18px;
    color: var(--dark-color);
}

.reasons-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.reason-box {
    display: flex;
    background-color: #f5f8ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.reason-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 1;
}

.reason-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.reason-content p {
    font-size: 14px;
    color: var(--gray-color);
}

/* Testimonials Section */
.testimonials {
    background-color: #f5f8ff;
}

.testimonial-container {
    position: relative;
    height: 250px;
    margin-bottom: 30px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    visibility: hidden;
}

.testimonial-item.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.quote-icon {
    margin-bottom: 20px;
}

.quote-icon i {
    font-size: 36px;
    color: var(--accent-color);
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.client-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info p {
    font-size: 14px;
    color: var(--gray-color);
    font-style: normal;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-arrow {
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-arrow:hover {
    color: var(--secondary-color);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Resources Section */
.resources {
    background-color: var(--white);
}

.resources-content {
    /*display: grid;*/
    display: block;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.articles-section h3,
.webinars-section h3 {
    margin-bottom: 30px;
    font-size: 24px;
}

.article-grid {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
    background-color: var(--white);
}

.article-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.article-content p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.article-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.article-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.article-link:hover {
    color: var(--secondary-color);
}

.article-link:hover i {
    transform: translateX(5px);
}

.webinar-list {
    margin-bottom: 30px;
}

.webinar-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #f5f8ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.webinar-icon {
    margin-right: 20px;
}

.webinar-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.webinar-details h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.webinar-details p {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.newsletter-signup {
    background-color: #f5f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.newsletter-signup h3 {
    margin-bottom: 15px;
}

.newsletter-signup p {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray-color);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* ************************************************************************Contact Section ******************************************************/
.contact {
    padding: 80px 0;
    background-color: var(--primary-color); /* Change background to blue */
    color: var(--white);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .contact .section-header h2 {
    font-size: 36px;
    color: var(--white); /* Change text color to white */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
  }



  
  /* Override for contact section specifically */
  .section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color); /* Yellow underline */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-color); /* Change text color to white */
    line-height: 1.7;
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .contact-info, .google-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    transition: var(--transition);
  }
  
  .contact-item:last-child {
    margin-bottom: 0;
  }
  
  .contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    flex-shrink: 0;
  }
  
  .contact-item div {
    flex-grow: 1;
  }
  
  
  .contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  .contact-item p {
    color: var(--dark-color);
    line-height: 1.7;
    margin: 0;
  }
  
  .google-form {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
    text-align: center;
  }
  
  .google-form h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
  }
  
  .google-form p {
    margin-bottom: 30px;
    color: var(--dark-color);
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 82, 204, 0.3);
  }
  
  .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.4);
  }
  
  .btn i {
    margin-right: 8px;
  }

  /***********************************************FOOTER***********************************/
  .footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .tab-flex {
      grid-template-columns: 1fr;
    }
    
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .contact-content {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .intro-content {
      grid-template-columns: 1fr;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
        margin: 0 5px;
    }
    
    .tab-pane {
      padding: 30px 20px;
    }

    .services .section-header p {
        font-size: 16px;
    }
    
    /* Make tabs section full width */
    .services-tabs {
        width: 100%;
        max-width: 100%;
    }
    
    /* Adjust tab content for mobile */
    .tab-content-inner {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .client-grid {
      grid-template-columns: 1fr 1fr;
    }
    
    .why-us-grid {
      grid-template-columns: 1fr;
    }
    
    .blog-slider {
      grid-template-columns: 1fr;
    }
    
    .webinar-cards {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .client-grid {
      grid-template-columns: 1fr;
    }
    
    .tab-buttons {
      flex-direction: column;
    }
    
    .testimonial-text {
      font-size: 16px;
      padding-left: 0;
    }
    
    .quote-icon {
      display: none;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 13px;
        margin: 0 3px;
    }
    
    /* Smaller header for services section */
    .services .section-header h2 {
        font-size: 22px;
    }
    
    /* Make sure tabs don't get too small */
    .tabs-nav {
        justify-content: flex-start;
        padding-left: 0;
    }
  }
/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: var(--light-color);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
    .intro-content,
    .about-content,
    .tab-content-inner,
    .contact-content,
    .resources-content {
        grid-template-columns: 1fr;
    }
    
    .intro-image,
    .about-image {
        order: -1;
    }
    
    .services-tabs {
        overflow-x: auto;
    }
    
    .tab-btn {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 101;
    }
    
    .nav-list.active {
        right: 0;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .nav-list a {
        color: var(--dark-color);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .values-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .counter-section {
        grid-template-columns: 1fr 1fr;
    }
}