:root {
    --primary-blue: #1e40af;
    --primary-blue-hover: #1d4ed8;
    --gray-bg: #f9fafb;
    --white: #ffffff;
    --black: #111827;
    --gray-dark: #374151;
    --gray-medium: #6b7280;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--white);
    font-family: 'Oswald', sans-serif;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--black);
    text-decoration: none; 
}


.service-header-section {
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    padding: 5rem 1rem;
}

#service-header-title {
    font-size: 3rem;
    font-weight: 700;
}

.service-header-subtitle {
    font-size: 1.25rem;
    max-width: 60ch;
    margin: 1rem auto 0 auto;
    color: #d1d5db;
}


.hosting-intro-section {
    background-color: var(--gray-bg);
    padding: 5rem 0;
}

.hosting-intro-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 1000px;
}

.hosting-intro-text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--gray-dark);
}

.hosting-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    color: var(--gray-dark);
}

.hosting-intro-grid strong {
    display: block;
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.hosting-intro-grid .feature-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
}

.hosting-intro-grid .feature-icon img {
    width: 100%;
    height: 100%;
    filter: invert(15%) sepia(98%) saturate(3015%) hue-rotate(218deg) brightness(89%) contrast(90%);
}


.host-section {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--primary-blue) 0%, var(--black) 100%);
    color: var(--white);
}

.host-section .section-title {
    color: var(--white);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.plan-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.plan-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.plan-price-unit {
    font-size: 1rem;
    color: #9ca3af;
}

.plan-description {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #d1d5db;
    flex-grow: 1; 
}

.plan-features {
    text-align: left;
    margin-bottom: 1.5rem;
    list-style: none;
    padding: 0;
}

.plan-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features .feature-icon {
    width: 20px;
    height: 20px;
}

.plan-features .feature-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.plan-button {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: auto; 
}

.plan-card .plan-button:hover {
    background-color: #d1d5db;
    color: var(--black);
}


/* --- Section Separator --- */
.section-separator {
    height: 4rem;
    background-color: var(--gray-bg);
}

/* --- Other Services Section --- */
.other-services-section {
    padding: 4rem 0;
    background-color: var(--gray-bg);
}

.service-detail-card {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-detail-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 65ch;
    color: var(--gray-dark);
}

.service-detail-card .plan-button:hover {
    background-color: var(--black);
    color: var(--white);
}

.service-detail-visual {
    width: 100%;
    height: 300px;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .service-detail-card {
        flex-direction: row;
        align-items: center;
    }
    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }
    .service-detail-content {
        flex: 1;
        padding: 3.5rem;
    }
    .service-detail-visual {
        flex: 1;
        height: auto;
        align-self: stretch;
    }
}



.service-card-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--animation-delay, 0s);
}

.service-card-animate.visible {
    opacity: 1;
    transform: translateY(0);
}


.web-dev-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.web-dev-card {
    background-color: var(--gray-bg);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 1000px;
}

.web-dev-intro-text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--gray-dark);
}

.web-dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.web-dev-grid strong {
    display: block;
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.web-dev-grid .feature-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
}

.web-dev-grid .feature-icon img {
    width: 100%;
    height: 100%;
    filter: invert(15%) sepia(98%) saturate(3015%) hue-rotate(218deg) brightness(89%) contrast(90%);
}


.special-offer-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--black));
    color: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.special-offer-box h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.special-offer-box p {
    font-size: 1.1rem;
    max-width: 60ch;
    margin: 0 auto 1.5rem auto;
    color: #d1d5db;
}

.special-offer-box .offer-button {
    background-color: var(--white);
    color: var(--primary-blue);
}

.special-offer-box .offer-button:hover {
    background-color: #e5e7eb;
    color: var(--black);
}


.final-cta {
    text-align: center;
}

.final-cta p {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.web-dev-banner {
    position: relative; 
    width: 100%;
    height: 400px; 
    overflow: hidden;
    margin-bottom: 5rem; 
}

.web-dev-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.7); 
}

.web-dev-banner .banner-text {
    position: absolute;
    bottom: 2rem;
    left: 1rem; /* Anchor to the left */
    right: 1rem; /* Anchor to the right */
    transform: none; /* Remove the transform */
    color: var(--white);
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    
    /* **THIS IS THE FIX** */
    white-space: normal; /* Allow text to wrap to a new line */
    text-align: center;   /* Center the (now potentially multi-line) text */
    
    overflow: hidden; 
    border-right: 3px solid rgba(255, 255, 255, 0.75);
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: rgba(255, 255, 255, 0.75); }
}


.banner-text.typing-done {
    animation: none; 
    border-right: none; 
}

.app-dev-section {
    background-color: var(--gray-bg); 
    padding: 5rem 0;
}

.app-dev-card {
    background-color: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    margin: 0 auto;
    max-width: 1000px;
}

.app-dev-intro-text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--gray-dark);
}

.app-dev-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
}

.app-dev-grid strong {
    display: block;
    font-size: 1.125rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.app-dev-grid .feature-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
}

.app-dev-grid .feature-icon img {
    width: 100%;
    height: 100%;
    filter: invert(15%) sepia(98%) saturate(3015%) hue-rotate(218deg) brightness(89%) contrast(90%);
}


.timeline-box {
    background-color: #f3f4f6; 
    border: 1px dashed var(--primary-blue);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline-box h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.timeline-box p {
    font-size: 1.1rem;
    max-width: 60ch;
    margin: 0 auto;
    color: var(--gray-dark);
    line-height: 1.7;
}

.parallax-break2 {
    height: 400px; 
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hosting-image2.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

}

.parallax-break {
    height: 400px; 
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/app-development.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; 
}

#seo .service-detail-content > h3 {
    display: none;
}

.seo-content-wrapper {
    margin-bottom: 2rem;
}

.seo-qa-block {
    margin-bottom: 1.75rem;
}


.seo-qa-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}


.seo-qa-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin: 0;
    padding: 0;
    max-width: 100%; 
}


.seo-summary {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.7;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 100%; 
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.service-detail-content h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 20px;

}

.ai-dev-section {
    background-color: var(--white);
    padding: 2rem 0;
}

.ai-dev-card {
    background: var(--black); 
    color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column-reverse; 
    overflow: hidden;
}

.ai-dev-content {
    padding: 2.5rem;
}

#ai-dev-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
}

.ai-dev-intro-text {
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #d1d5db; 
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ai-features-grid strong {
    display: block;
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.ai-features-grid p {
    color: #9ca3af; 
}

.ai-features-grid .feature-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-bottom: 1rem;
}

.ai-features-grid .feature-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1); 
}


.chatbot-promo-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.chatbot-promo-box h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.chatbot-promo-box p {
    font-size: 1.1rem;
    max-width: 60ch;
    margin: 0 auto;
    color: #d1d5db;
    line-height: 1.7;
}

.ai-dev-visual {
    width: 100%;
    height: 300px;
    background-color: #1f2937;
}

.ai-dev-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#chatbot-canvas {
    width: 100%;
    height: 100%;
    display: block; 
    outline: none;
}

.ai-fallback-image {
    display: none; 
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-nav-section {
    background-color: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: static;
    top: 80px; 
    z-index: 900; 
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8);
}

.quick-nav-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    gap: 0.75rem; 
}

.quick-nav-button {
    text-decoration: none;
    color: var(--gray-dark);
    background-color: transparent;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    border-radius: 9999px; 
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
}

.quick-nav-button:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}




@media (min-width: 992px) {
    .ai-dev-card {
        flex-direction: row;
    }
    .ai-dev-content {
        flex: 1.2; 
        padding: 3.5rem;
    }
    .ai-dev-visual {
        flex: 0.8; 
        height: auto;
    }
    #ai-dev-title, .ai-dev-intro-text {
        text-align: left;
    }
}

@media (max-width: 768px) {
    #service-header-title { font-size: 2.25rem; }
    .service-header-subtitle { font-size: 1.1rem; }
    .hosting-intro-section, .host-section, .other-services-section, .web-dev-section, .app-dev-section, .ai-dev-section { padding: 3rem 0; }
    .hosting-intro-card, .web-dev-card, .app-dev-card, .service-detail-content { padding: 1.5rem; }
    .hosting-intro-grid { grid-template-columns: 1fr; }
    .plan-grid { grid-template-columns: 1fr; }
    .service-detail-visual { height: 250px; }
    .web-dev-banner {
        height: 300px;
    }
    .web-dev-banner .banner-text { font-size: 1.75rem; }
    .parallax-break, .parallax-break2 {
        background-attachment: scroll;
        height: 250px;
    }
    #chatbot-canvas { display: none; }
    .ai-fallback-image { display: block; }

    .parallax-break, .parallax-break2 {
        background-attachment: scroll; 
        height: 250px; 
        background-position: center 65%; 
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hosting-intro-grid, .web-dev-grid, .app-dev-grid, .ai-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}