/* ============================================
   Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: rgb(0, 28, 51);
    --secondary-color: #049b8f;
    --accent-color: #e74c3c;
    --light-gray: #ecf0f1;
    --dark-gray: #34495e;
    --white: #ffffff;
    --text-color: #333333;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Touch-friendly elements */
@media (hover: none) and (pointer: coarse) {
    button,
    a,
    .btn,
    .product-card,
    .team-member,
    .testimonial-card {
        -webkit-user-select: none;
        user-select: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
    background-color: var(--primary-color);
    /* padding: 1rem 0; */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand h1 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin: 0;
}
.navbar-brand img {
    height: 70px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Touch-friendly button sizes */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        min-width: 48px;
        padding: 14px 32px;
    }

    .form-group input,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px;
    }

    .hamburger span {
        cursor: pointer;
    }

    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 10px 0;
    }
}


/* ============================================
   Hero Section with Image Slider
   ============================================ */

.hero {
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    height: 100vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image Slider Container */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slide.fade {
    animation: fade 1s ease-in-out;
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slider Navigation Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    user-select: none;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next {
    right: 0;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Slider Dots */
.dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.dot.active {
    background-color: white;
    border-color: white;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Hero Content Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .btn {
    margin-top: 20px;
    font-size: 1.1rem;
}


/* ============================================
   Section Headers
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature {
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.2);
}

.feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.feature:hover i {
    color: var(--white);
}

.feature h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature:hover h3 {
    color: var(--white);
}

.about-industries{
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ============================================
   Products Section
   ============================================ */

.products {
    padding: 80px 20px;
    background-color: var(--white);
}

.products-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

.product-category {
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.product-category:hover {
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
    transform: translateY(-5px);
}

.category-number {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 10px;
    display: inline-block;
}

.product-category h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 15px 0 20px 0;
    line-height: 1.4;
}

.product-category .bold {
    font-weight: 700;
}

.subcategory {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.subcategory:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.product-category h4 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.product-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-category li {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-category li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}


/* ============================================
   Partners Section
   ============================================ */

.partners {
    padding: 80px 20px;
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    align-items: center;
}

.partner-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
    background-color: var(--white);
}

.partner-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #f39c12;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.stars i {
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-color);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

/* ============================================
   Contact Section
   ============================================ */

.contact {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 5px;
}

.info-item p {
    color: var(--dark-gray);
    margin: 0;
}

.email-link {
    color: var(--dark-gray);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.contact-form {
    display: grid;
    gap: 15px;
}

.form-group {
    display: grid;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.form-group button {
    margin-top: 10px;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}
.footer-section a:hover>i {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Responsive Design - Large Desktop (1200px and up)
   ============================================ */

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero {
        padding: 0;
        min-height: 650px;
    }

    .prev, .next {
        width: 60px;
        height: 60px;
        margin-top: -30px;
        padding: 18px;
        font-size: 28px;
        cursor: pointer !important;
    }

    .dots-container {
        bottom: 40px;
        gap: 20px;
    }

    .dot {
        height: 18px;
        width: 18px;
        cursor: pointer;
    }

    h2 {
        font-size: 2.8rem;
    }
}

/* ============================================
   Responsive Design - Desktop (769px to 1199px)
   ============================================ */

@media (min-width: 769px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero {
        padding: 0;
        min-height: 500px;
    }

    .prev, .next {
        width: 50px;
        height: 50px;
        margin-top: -25px;
        padding: 14px;
        font-size: 22px;
        cursor: pointer;
    }

    .dots-container {
        bottom: 30px;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero h2 {
        font-size: 2.8rem;
    }

    .products-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Responsive Design - Tablet (600px to 768px)
   ============================================ */

@media (min-width: 600px) and (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 15px;
    }

    .navbar-brand h1 {
        font-size: 1.4rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.9rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 0;
        min-height: 400px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .prev, .next {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        padding: 10px;
        font-size: 18px;
        cursor: pointer;
    }

    .dots-container {
        bottom: 20px;
        gap: 10px;
    }

    .dot {
        height: 12px;
        width: 12px;
    }

    .about,
    .products,
    .partners,
    .testimonials,
    .contact {
        padding: 60px 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .feature {
        padding: 15px;
    }

    .feature i {
        font-size: 1.8rem;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .partner-card {
        padding: 25px;
        min-height: 120px;
    }

    .products-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-category {
        padding: 25px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-image {
        width: 180px;
        height: 180px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        gap: 25px;
    }

    .info-item i {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header p {
        font-size: 1rem;
    }

    .footer-content {
        gap: 30px;
    }
}

/* ============================================
   Responsive Design - Small Mobile (480px to 599px)
   ============================================ */

@media (min-width: 480px) and (max-width: 599px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .navbar-brand h1 {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        display: flex !important;
        padding: 15px;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active li {
        margin: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 12px;
    }

    .nav-menu.active li:last-child {
        border-bottom: none;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 0;
        min-height: 350px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .prev, .next {
        width: 38px;
        height: 38px;
        margin-top: -19px;
        padding: 8px;
        font-size: 16px;
        cursor: pointer;
    }

    .dots-container {
        bottom: 15px;
        gap: 8px;
    }

    .dot {
        height: 10px;
        width: 10px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .about,
    .products,
    .partners,
    .testimonials,
    .contact {
        padding: 50px 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature {
        padding: 15px;
    }

    .feature i {
        font-size: 1.8rem;
    }

    .products-categories {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-category {
        padding: 20px;
    }

    .category-number {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-card {
        padding: 20px;
        min-height: 100px;
    }

    .partner-card img {
        max-height: 80px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        gap: 20px;
    }

    .info-item {
        gap: 15px;
    }

    .info-item i {
        font-size: 1.6rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ============================================
   Responsive Design - Extra Small Mobile (Below 480px)
   ============================================ */

@media (max-width: 479px) {
    .container {
        max-width: 100%;
        padding: 0 12px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-brand h1 {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        display: flex !important;
        padding: 20px 15px;
        gap: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active li {
        margin: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .nav-menu.active li:last-child {
        border-bottom: none;
    }

    .nav-menu.active a {
        font-size: 1rem;
        display: block;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    h3 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }

    .hero {
        padding: 0;
        min-height: 300px;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .prev, .next {
        width: 35px;
        height: 35px;
        margin-top: -17.5px;
        padding: 6px;
        font-size: 14px;
        cursor: pointer;
    }

    .dots-container {
        bottom: 12px;
        gap: 6px;
    }

    .dot {
        height: 9px;
        width: 9px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .about,
    .products,
    .partners,
    .testimonials,
    .contact {
        padding: 40px 12px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature {
        padding: 12px;
    }

    .feature i {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .feature h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .feature p {
        font-size: 0.85rem;
    }

    .products-categories {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-category {
        padding: 15px;
    }

    .category-number {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .product-category h3 {
        font-size: 1.2rem;
        margin: 10px 0 15px 0;
    }

    .product-category h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .product-category li {
        font-size: 0.85rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .partner-card {
        padding: 15px;
        min-height: 100px;
    }

    .partner-card img {
        max-height: 70px;
    }


    .team-member h3 {
        font-size: 1rem;
    }

    .team-member .position {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .team-member .bio {
        font-size: 0.85rem;
    }

    .member-image {
        width: 140px;
        height: 140px;
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 15px;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .testimonial-author {
        font-size: 0.85rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info {
        gap: 15px;
    }

    .info-item {
        gap: 12px;
    }

    .info-item i {
        font-size: 1.5rem;
    }

    .info-item h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .info-item p {
        font-size: 0.85rem;
        margin: 0;
    }

    .form-group input,
    .form-group textarea {
        padding: 9px;
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-header h2 {
        margin-bottom: 8px;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 12px;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 15px;
    }
}

/* ============================================
   Fixed Contact Buttons
   ============================================ */

.fixed-contact-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background-color: #25d366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.phone-btn {
    background-color: #ff9800;
}

.phone-btn:hover {
    background-color: #e68900;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.contact-btn:active {
    transform: scale(0.95);
}

/* Responsive Contact Buttons */
@media (max-width: 768px) {
    .fixed-contact-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .contact-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .fixed-contact-buttons {
        bottom: 10px;
        right: 10px;
        gap: 10px;
    }

    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.team-member,
.testimonial-card {
    animation: fadeIn 0.6s ease-out;
}
