/* Variables */
:root {
    --color-primary: #27AE60;
    --color-text: #1F1F1F;
    --color-bg: #FAFAFA;
    --color-secondary: #95A5A6;
    --color-white: #FFFFFF;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

body.menu-active {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}


/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1001;
}

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    color: #1d1e20;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    color: #1d1e20
}

.nav-links a {
    color: #1d1e20;
    font-weight: 400;
}

.nav-links a:hover {
    color: #27AE60;
    font-weight: 500;
}

.nav-links li {
    list-style: none;
}

/* Hamburger button (desktop hidden) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1d1e20;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ============================
     Mobile Navigation
     ============================ */
@media (max-width: 768px) {

    /* Hide desktop links off‑screen */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--color-primary);
        flex-direction: column;
        padding: 100px 20px 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: block;
    }

    /* Animate hamburger into "X" */
    .mobile-menu-btn.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu-btn.active span {
        background-color: white;
    }

    /* Mobile link styles */
    .nav-links a {
        color: white !important;
        font-size: 1.2rem;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-content {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    margin-top: 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1d1e20;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: #4CAF50;
    color: #fff;
    border: 2px solid #4CAF50;
}

.hero-buttons .btn-primary:hover {
    background-color: #45a049;
    border-color: #45a049;
    transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
    background-color: transparent;
    color: #1d1e20;
    border: 2px solid #1d1e20;
}

.hero-buttons .btn-secondary:hover {
    background-color: #1d1e20;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 2rem;
        border-radius: 20px;
        transform: none;
        top: 0;
    }

    .brand {
        font-size: 1.6rem;
    }

    .brand span:first-child {
        font-size: 2rem;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--color-light);
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-dark);
    font-size: 2.5rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--color-primary);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.service-card .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.service-card .service-icon i {
    font-size: 3.8rem;
    color: var(--color-white);
}

.service-card .service-icon svg {
    width: 90px;
    height: 90px;
}

.service-card .service-icon svg path {
    fill: var(--color-white);
}

.service-card h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--color-white);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Clients Section */
.clients {
    padding: 4rem 1rem;
    background-color: var(--color-bg);
}

.clients h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.client-carousel {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll 20s linear infinite;
}

.client-logo {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--color-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.client-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 4));
    }
}

/* Footer */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 4rem 1rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-secondary);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.5rem;
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--color-primary);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles */
:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* About Page Styles */
.about-hero {
    padding: 8rem 1rem 4rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.story {
    padding: 4rem 1rem;
}

.story .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    margin-bottom: 1.5rem;
}

.story-content p {
    margin-bottom: 1rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.team {
    padding: 4rem 1rem;
    background-color: var(--color-bg);
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.team-member .role {
    color: var(--color-primary);
    padding: 0 1.5rem;
    font-weight: 500;
}

.team-member .bio {
    padding: 0.5rem 1.5rem 1.5rem;
    color: var(--color-secondary);
}

.timeline {
    padding: 4rem 1rem;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--color-primary);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-content {
    background-color: var(--color-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    width: calc(50% - 2rem);
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-content h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Contact Page Styles */
.contact-hero {
    padding: 8rem 1rem 4rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact {
    padding: 4rem 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info h2 {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-secondary);
    border-radius: 0.5rem;
    background-color: var(--color-white);
    color: var(--color-text);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

.submit-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-info {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.contact-info a {
    text-decoration: none;
    color: inherit;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
}

.map-section {
    padding: 4rem 1rem;
    background-color: var(--color-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--color-secondary);
    border-radius: 1rem;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

/* Error and Success Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.success-message {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 768px) {

    .story .container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-container::before {
        left: 0;
    }

    .timeline-content {
        width: calc(100% - 2rem);
        margin-left: 2rem;
    }

    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 2rem;
    }

    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Why Choose Us Styles */
.why-choose-hero {
    padding: 8rem 1rem 4rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.why-choose-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.why-choose-cards {
    padding: 4rem 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-card {
    background-color: var(--color-white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.why-choose-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-hero-content h1 {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Remove old hero styles */
.why-choose-hero,
.contact-hero {
    display: none;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.whatsapp-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-trigger:hover {
    transform: scale(1.1);
}

.whatsapp-chat {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 300px;
    min-height: 200px;
    background-color: #1F1F1F;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.whatsapp-chat.active {
    display: flex;
    animation: slideUp 0.3s ease;
}

.chat-header {
    height: 48px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    color: var(--color-white);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.close-chat {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}

.chat-body {
    padding: 16px;
    flex-grow: 1;
}

.message-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 24px;
    border: none;
    background-color: #2C2C2C;
    color: var(--color-white);
    font-size: 14px;
}

.message-input::placeholder {
    color: #95A5A6;
}

.chat-footer {
    padding: 16px;
    border-top: 1px solid #2C2C2C;
}

.send-message {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    background-color: var(--color-primary);
    border: none;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.send-message:hover {
    background-color: #219a52;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-chat {
        position: fixed;
        width: calc(100vw - 40px);
        max-width: 400px;
        left: 50%;
        transform: translateX(-50%);
        bottom: 80px;
    }

    .whatsapp-chat.active {
        animation: slideUpMobile 0.3s ease;
    }

    .message-input {
        padding: 15px 20px;
        font-size: 16px;
        height: 50px;
    }

    .send-message {
        height: 50px;
        font-size: 16px;
    }

    .chat-header {
        height: 60px;
        padding: 0 20px;
    }

    .header-content {
        font-size: 18px;
    }

    .chat-body {
        padding: 20px;
    }

    .chat-footer {
        padding: 20px;
    }
}

@keyframes slideUpMobile {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Focus Styles */
.whatsapp-trigger:focus,
.close-chat:focus,
.message-input:focus,
.send-message:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background-color: var(--color-white);
}

.partners h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-dark);
    font-size: 36px;
    font-weight: 600;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-logo {
    width: 100%;
    max-width: 180px;
    height: 90px;
    min-height: 90px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: none;
}

.partner-logo img,
.partner-logo svg {
    max-width: 80px;
    max-height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto 8px auto;
    filter: none !important;
    opacity: 1 !important;
    transition: none;
    padding: 0;
}

.partner-logo:hover img,
.partner-logo:hover svg {
    filter: none !important;
    opacity: 1 !important;
}

.partner-text {
    position: static;
    display: block;
    margin: 0;
    font-size: 1rem;
    color: #222;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    line-height: 1.2;
}

/* Remove GoDaddy special rules */
.partner-logo.godaddy,
.partner-logo.godaddy+.partner-text.godaddy {
    justify-content: center;
    margin-left: 0;
}

@media (max-width: 768px) {
    .partner-logo {
        max-width: 120px;
        min-width: 120px;
        height: 60px;
        min-height: 60px;
    }

    .partner-logo img,
    .partner-logo svg {
        max-width: 50px;
        max-height: 32px;
        margin-bottom: 6px;
    }

    .partner-text {
        font-size: 0.9rem;
    }
}

/* Remove all grayscale, color, and hover effects for partner logos */
.partner-logo img[alt="Cloudflare"],
.partner-logo img[alt="MySQL"],
.partner-logo img[alt="Hostinger"],
.partner-logo img[alt="GoDaddy"] {
    max-width: 85%;
    max-height: 85%;
    background-color: var(--color-white);
    border-radius: 4px;
    padding: 8px;
}

/* Specific adjustments for GoDaddy logo */
.partner-logo svg {
    width: 80%;
    height: 80%;
    max-width: 80%;
    max-height: 80%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    color: #1d1e20;
    margin-bottom: 10px;
}

.partner-logo:hover svg {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo svg path {
    fill: var(--color-dark);
}

.partner-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #333;
    white-space: nowrap;
    font-weight: 500;
    text-align: center;
    width: 100%;
}

@media (max-width: 768px) {
    .partner-logo svg {
        width: 70%;
        height: 70%;
        max-width: 70%;
        max-height: 70%;
    }

    .partner-text {
        font-size: 0.9rem;
        bottom: 8px;
    }
}

/* Update existing partner logo styles */
.partner-logo {
    width: 100%;
    max-width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        max-width: 120px;
        height: 50px;
    }
}

.partner-text {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    color: #333;
    white-space: nowrap;
    font-weight: 500;
}

.partner-logo svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    color: #1d1e20;
}

.partner-logo:hover svg {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo svg path {
    fill: var(--color-dark);
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem;
        min-height: 350px;
    }

    .service-card img {
        width: 60px;
        height: 60px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

/* GoDaddy specific partner card layout */
.partner-logo.godaddy {
    justify-content: flex-start;
    position: relative;
}

.partner-logo.godaddy svg {
    margin-left: 0;
    margin-right: 0;
}

.partner-logo.godaddy+.partner-text.godaddy {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin-left: 16px;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    white-space: nowrap;
    transform: none;
    bottom: auto;
    left: auto;
    text-align: left;
}

@media (max-width: 768px) {
    .partner-logo.godaddy+.partner-text.godaddy {
        font-size: 0.95rem;
        margin-left: 10px;
    }
}

body.menu-active {
    overflow: hidden;
}