/* 
   Medhyacom Technology Website CSS
   Author: Manus AI
   Date: May 20, 2025
*/

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-blue: #0046ad;
    --secondary-blue: #0067b3;
    --primary-green: #00a651;
    --secondary-green: #009245;
    --dark-blue: #002a66;
    --light-blue: #e6f0ff;
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --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: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-green);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    margin: 0 auto 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* ===== HEADER STYLES ===== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.main-menu {
    display: flex;
    margin-right: -15px; /* Adjust spacing to fit in one line */
    flex-wrap: nowrap; /* Prevent wrapping to ensure single line */
}

.main-menu li {
    margin-left: 10px; /* Reduced from 15px to fit in one line */
    position: relative;
}

.main-menu li a {
    color: var(--dark-gray);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    display: block;
    font-size: 14px; /* Reduced font size to fit in one line */
}

.main-menu > li > a {
    padding: 10px 3px; /* Reduced horizontal padding to fit in one line */
}

.main-menu li a:hover,
.main-menu li a.active {
    color: var(--primary-blue);
}

.main-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    transition: var(--transition);
}

.main-menu li a:hover::after,
.main-menu li a.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.main-menu li.has-dropdown > a {
    padding-right: 15px; /* Reduced from 20px to fit in one line */
}

.main-menu li.has-dropdown > a:before {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.main-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu li a {
    padding: 8px 20px;
    color: var(--dark-gray);
    font-size: 14px;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 25px;
}

.dropdown-menu li a::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark-gray);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.slide-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
    padding: 0 15px;
    margin: 0 auto;
    text-align: center;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.slider-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--white);
}

.prev-slide,
.next-slide {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.prev-slide {
    position: absolute;
    left: 20px;
    top: -260px;
    transform: translateY(-50%);
}

.next-slide {
    position: absolute;
    right: 20px;
    top: -260px;
    transform: translateY(-50%);
}

.prev-slide:hover,
.next-slide:hover {
    background-color: var(--primary-blue);
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: var(--light-blue);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== CORE VALUES SECTION ===== */
.core-values {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media screen and (max-width: 768px) {
   .values-grid {
     display: block;
     margin-bottom: 20px!important;
    }
 }

.value-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card .icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-card .icon img {
    height: 80px;
    width: auto;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.value-card p {
    color: var(--medium-gray);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding: 30px;
    text-align: center;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon img {
    height: 60px;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card ul {
    margin-bottom: 20px;
    text-align: left;
}

.service-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-card ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-green);
    position: absolute;
    left: 0;
    top: 2px;
}

.service-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-green);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 70, 173, 0.9), rgba(0, 42, 102, 0.9)), url('../images/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    margin: 20px;
    position: relative;
    display: block;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--white);
}

.stat-plus,
.stat-percent {
    font-size: 36px;
    font-weight: 700;
    display: inline-block;
    vertical-align: top;
    margin-left: 5px;
    color: var(--white);
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    color: var(--white);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonial-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.testimonial-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial {
    min-width: 300px;
    width: calc(33.333% - 20px);
    margin-right: 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.client-details p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-nav button {
    background-color: var(--primary-blue);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    margin: 0 5px;
    transition: var(--transition);
}

.testimonial-nav button:hover {
    background-color: var(--primary-green);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
    background-color: var(--white);
}

.team-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== SOLUTIONS OVERVIEW ===== */
.solutions-overview {
    padding: 80px 0;
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.overview-text {
    flex: 1;
}

.overview-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.featured-product {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.featured-product:last-child {
    margin-bottom: 0;
}

.featured-product:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-content {
    flex: 1;
}

/* ===== PRODUCT CATEGORIES ===== */
.product-categories {
    padding: 80px 0;
}

.product-category {
    margin-bottom: 60px;
}

.product-category:last-child {
    margin-bottom: 0;
}

.category-content {
    display: flex;
    gap: 30px;
}

.category-icon {
    font-size: 40px;
    color: var(--primary-blue);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-blue);
    border-radius: 50%;
}

.category-details {
    flex: 1;
}

/* ===== SERVICE CATEGORIES ===== */
.service-categories {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #eee;
}

.service-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* ===== PARTNERSHIP CATEGORIES ===== */
.partnership-categories {
    padding: 80px 0;
}

.partnership-category {
    margin-bottom: 60px;
}

.partnership-category:last-child {
    margin-bottom: 0;
}

.partnership-category h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.partnership-category p {
    margin-bottom: 30px;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: center;
}

.partner-logo {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
}

/* ===== PARTNERSHIP BENEFITS ===== */
.partnership-benefits {
    padding: 80px 0;
    background-color: var(--light-gray);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(to right, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details li i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-details li span,
.contact-details li a {
    color: var(--dark-gray);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 70, 173, 0.1);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding-top: 80px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: #bbb;
    font-size: 14px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
}

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

.footer-links ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    margin-bottom: 15px;
    color: #bbb;
}

.footer-contact ul li i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 18px;
}

.footer-contact ul li a {
    color: #bbb;
}

.footer-contact ul li a:hover {
    color: var(--primary-green);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a.linkedin {
    background-color: #0077b5;
}

.social-icons a.youtube {
    background-color: #ff0000;
}

.social-icons a.facebook {
    background-color: #3b5998;
}

.social-icons a.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #bbb;
    font-size: 14px;
}

.footer-bottom-links a {
    color: #bbb;
    margin-left: 20px;
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-5px);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .main-menu li {
        margin-left: 8px;
    }
    
    .main-menu li a {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logos {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .featured-product {
        flex-direction: column;
    }
    
    .featured-product:nth-child(even) {
        flex-direction: column;
    }
    
    .product-image, .product-content {
        width: 100%;
    }
    
    .testimonial {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .main-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-menu li {
        margin: 0 0 15px 0;
    }
    
    .main-menu li:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .main-menu li:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        padding-left: 30px;
    }
    
    .about-content, 
    .overview-content, 
    .contact-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image, 
    .overview-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
    
    .footer-bottom-links a {
        margin: 0 10px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .testimonial {
        width: calc(100% - 20px);
    }
}

@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .category-content {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin: 0 auto 20px;
    }
}

.stat-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

/* Testimonial Styles */

.services-description {
    margin-bottom: 40px;
}

.service-detail {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 20px;
}

.service-detail h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.service-detail p {
    color: var(--medium-gray);
    line-height: 1.6;
}
