    /* Hero Section */
    .hero-section {
        color: white;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        margin-top: -30px;
        padding-top: 0;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(43, 86, 211, 0.5);
        z-index: 1;
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        z-index: 2;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: clamp(2.25rem, 4.5vw, 3.5rem); /* Adjusted to new styles */
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        background: linear-gradient(45deg, #ffffff, #d1d5db);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: fadeInSlideUp 0.8s ease-out 0.2s forwards;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.25rem); /* Adjusted to new styles */
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 2rem;
        animation: fadeInSlideUp 0.8s ease-out 0.4s forwards;
    }

    /* Section Styling */
    .section {
        padding: 2.5rem 0;
        background-color: #ffffff;
    }

    .section-title {
        font-size: clamp(2rem, 3.5vw, 2.75rem); /* Adjusted to new styles (body text ~1.25rem * 2) */
        font-weight: 800;
        text-align: center;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: clamp(1rem, 1.5vw, 1.125rem); /* Adjusted to new styles */
        text-align: center;
        color: #6b7280;
        max-width: 1000px;
        margin: 0 auto 2.5rem;
    }

/* Card Styling */
.modern-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Feature Icons */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #2b56d3, #5b7ce8);
    color: white;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon-secondary {
    background: linear-gradient(135deg, #2b56d3);
}

.feature-icon-accent {
    background: linear-gradient(135deg, #93c5fd, #dbeafe);
}

/* Stats Grid for Achievements */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, #f0f9ff, #f8fafc);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2b56d3, #5b7ce8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

/* Services Row Specific Styles */
.services-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    padding: 0 1rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
    position: relative;
    min-height: 280px; /* Base height for icon + title + short description */
    cursor: pointer; /* Indicate clickability */
}

.service-card:hover, .service-card.expanded {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    min-height: 380px; /* Expanded height for icon + title + full description + button */
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b56d3, #5b7ce8);
    color: white;
    margin: 0 auto 1rem; /* Center icon */
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon, .service-card.expanded .service-icon {
    transform: rotate(360deg);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 3; /* Above descriptions */
}

.service-details {
    font-size: 0.95rem;
    color: #4b5563;
    position: absolute;
    text-justify: auto;
    margin-top: 50px;
    left: 1.5rem;
    right: 1.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2; /* Below title */
}

.service-details.short {
    opacity: 1;
    transform: translateY(0);
    top: 5rem; /* Below icon + title */
}

.service-details.full {
    opacity: 0;
    transform: translateY(10px);
    top: 5rem; /* Same as short for smooth swap */
}

.service-card:hover .service-details.short, .service-card.expanded .service-details.short {
    opacity: 0;
    transform: translateY(-10px);
}

.service-card:hover .service-details.full, .service-card.expanded .service-details.full {
    opacity: 1;
    transform: translateY(0);
}

/* Arrow Button */
.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: linear-gradient(135deg, #2b56d3);
    color: white;
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    margin-top: 1rem;
    bottom: 1rem; /* Position at bottom */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0; /* Hidden by default */
    z-index: 4; /* Above title and descriptions */
}

.service-card:hover .arrow-btn, .service-card.expanded .arrow-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.arrow-btn:hover {
    background: linear-gradient(135deg, #ff5600);
    color:white;
    transform: translateX(-50%) translateY(-2px);
}

.arrow-btn svg {
    margin-left: 0.5rem;
    width: 1rem;
    height: 1rem;
}


    /* Buttons */
    .btns {
        display: inline-flex;
        align-items: center;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid rgb(255, 255, 255);
        cursor: pointer;
    }

    .btn-primary1 {
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        color: white;
        backdrop-filter: blur(10px);
    }

    .btn-primary1:hover {
        background: linear-gradient(135deg, #ff5600);
        color: white;
        transform: translateY(-3px);
    }
/* Company Overview Specific Styles */
.company-overview-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.company-overview-card {
    flex: 1;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease;
}

.company-overview-card:hover {
    transform: translateY(-5px);
}

.company-overview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #2b56d3);
    color: white;
    margin: 0 auto 1rem; /* Center icon */
}

.company-overview-icon-secondary {
    background: linear-gradient(135deg, #3b82f6);
}

.who-we-are-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4b5563;
}

.who-we-are-text p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.who-we-are-text p.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mission & Vision Specific Styles */
.mission-vision-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.mission-vision-card {
    flex: 1;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    transition: transform 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
}

.mission-vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #2b56d3, #5b7ce8);
    color: white;
    margin: 0 auto 1rem; /* Center icon */
}

.mission-vision-icon-secondary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

/* Core Values Specific Styles */
.core-values-container {
    width: 100%;
    margin: 0;
    position: relative;
    padding: 0;
    background: #ffffff;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    padding: 0 1rem;
}

.core-value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.core-value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.core-value-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.core-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b56d3, #5b7ce8);
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.core-value-card:hover .core-value-icon {
    transform: rotate(360deg);
}

/* CEO Message Specific Styles */
.ceo-message-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.ceo-message-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(43, 86, 211, 0.1) 0%, transparent 50%);
    animation: float 10s ease-in-out infinite;
}

.ceo-message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ceo-profile {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b56d3, #5b7ce8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Join Our Team Specific Styles */
.careers-container {
    width: 100%;
    margin: 0;
    position: relative;
    padding: 0;
    background: #ffffff;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    padding: 0 1rem;
    margin-top: 2rem;
}

.career-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.career-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.career-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.career-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #2b56d3, #5b7ce8);
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.career-card:hover .career-icon {
    transform: rotate(360deg);
}

 /* CTA Section */
    .section-cta {
        position: relative;
        padding: 6rem 1rem;
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        text-align: center;
        color: white;
    }

    .cta-container {
        position: relative;
        z-index: 1;
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    .cta-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        z-index: 0;
        animation: float 12s ease-in-out infinite;
    }

    .cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-button-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin-top: 2.5rem;
    }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in-up {
    animation: slideInUp 0.6s ease-out both;
}

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

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 1.5rem;
        margin-top: -30px; /* Maintain header overlap */
        padding-top: 0;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 2.75rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }

    .section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .services-row {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .modern-card {
        padding: 1.5rem;
    }

    .company-overview-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .mission-vision-container {
        flex-direction: column;
        padding: 1.5rem;
    }

    .core-values-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .careers-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .ceo-message-container {
        padding: 1.5rem;
    }

    .cta-container {
        padding: 2rem 0.5rem;
    }

    .company-overview-card {
        padding: 1.5rem;
    }

    .company-overview-icon {
        width: 2rem;
        height: 2rem;
    }

    .mission-vision-icon {
        width: 2rem;
        height: 2rem;
    }

    .who-we-are-text {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .service-card {
        min-height: 260px; /* Adjust for icon + title + short description */
    }

    .service-card:hover, .service-card.expanded {
        min-height: 320px; /* Adjust for icon + title + full description + button */
    }

    .service-details.short {
        top: 5rem;
    }

    .service-details.full {
        top: 5rem;
    }

    .arrow-btn {
        bottom: 0.75rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
    }

    .section-subtitle {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }

    .careers-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }

    .cta-container {
        padding: 2rem 0.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.25rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}


 /* Service Hosting Page */
    .hosting-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .hosting-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(43, 86, 211, 0.1);
    }

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

    .hosting-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 12px;
        background: linear-gradient(135deg, #2b56d3, #5b7ce8);
        color: white;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }

    .hosting-card:hover .hosting-icon {
        transform: scale(1.1);
    }

    .hosting-icon-secondary {
        background: linear-gradient(135deg, #ec4899, #ef4444);
    }

    .hosting-icon-accent {
        background: linear-gradient(135deg, #16a34a, #059669);
    }

    .hosting-icon-baremetal {
        background: linear-gradient(135deg, #6b7280, #4b5563);
    }

    .hosting-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .hosting-description {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .focuscare-section {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 4rem 0;
    }

    .focuscare-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    .focuscare-row {
        display: grid;
        gap: 2rem;
        margin-top: 2rem;
    }

    .focuscare-row.middle {
        grid-template-columns: repeat(2, minmax(350px, 1fr));
        justify-content: center;
        max-width: 800px; /* Constrain to center 2 cards */
        margin-left: auto;
        margin-right: auto;
    }

    .focuscare-row.bottom {
        grid-template-columns: repeat(3, minmax(350px, 1fr));
    }

    @media (min-width: 768px) and (max-width: 1023px) {
        .focuscare-row.middle {
            grid-template-columns: repeat(2, minmax(350px, 1fr));
        }
        .focuscare-row.bottom {
            grid-template-columns: repeat(2, minmax(350px, 1fr));
        }
    }

    @media (max-width: 767px) {
        .focuscare-row.middle,
        .focuscare-row.bottom {
            grid-template-columns: 1fr;
        }
    }

    .focuscare-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .focuscare-card:hover {
        transform: translateY(-4px);
    }

    .focuscare-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background: linear-gradient(135deg, #2b56d3, #5b7ce8);
        color: white;
        margin-bottom: 1rem;
    }

    .focuscare-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.75rem;
    }

    .focuscare-text {
        color: #6b7280;
        line-height: 1.6;
    }

    .focuscare-list {
        list-style: none;
        padding: 0;
        margin: 1rem 0;
    }

    .focuscare-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.75rem;
        color: #6b7280;
    }

    .focuscare-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #2b56d3;
        font-weight: bold;
    }

    .packages-section {
        padding: 4rem 0;
    }

    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .package-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(43, 86, 211, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .package-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .package-header {
        display: flex;
        align-items: center;
        margin-bottom: 1.5rem;
    }

    .package-icon {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 8px;
        background: linear-gradient(135deg, #2b56d3, #5b7ce8);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
    }

    .package-icon-secondary {
        background: linear-gradient(135deg, #ec4899, #ef4444);
    }

    .package-icon-accent {
        background: linear-gradient(135deg, #16a34a, #059669);
    }

    .package-icon-baremetal {
        background: linear-gradient(135deg, #6b7280, #4b5563);
    }

    .package-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: #1f2937;
    }

    .package-price {
        font-size: 1.5rem;
        font-weight: 800;
        color: #2b56d3;
        margin-bottom: 1rem;
    }

    .package-features {
        list-style: none;
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .package-features li {
        padding: 0.5rem 0;
        border-bottom: 1px solid #f3f4f6;
        color: #6b7280;
    }

    .package-features li:last-child {
        border-bottom: none;
    }

    .package-cta {
        width: 100%;
        text-align: center;
    }



      /* Domain Registration Pages */
    .domain-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .domain-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .domain-icon {
        font-size: 2rem;
        color: #1e40af;
        margin-bottom: 1rem;
    }

    /* Domain Checker */
    .domain-checker {
        background: linear-gradient(135deg, #f0f9ff, #ffffff);
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        max-width: 600px;
        margin: 0 auto;
    }

    .domain-input {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .domain-input:focus {
        border-color: #1e40af;
        box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    }

    /* FAQ Section */
    .faq-item {
        background: #ffffff;
        border-radius: 12px;
        padding: 1.5rem;
        margin-bottom: 1rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .faq-question {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 0.5rem;
    }

    .faq-answer {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.6;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 1.5rem;
        grid-auto-flow: row; /* Ensure row-based flow for strict 2x2 */
    }
    /* Responsive Design */
    @media (max-width: 768px) {

        .domain-card {
            padding: 1.25rem;
        }

        .domain-checker {
            padding: 1.5rem;
        }

        .feature-image {
            width: 60px;
        }

        .domain-icon {
            font-size: 1.5rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
        }

        .modern-card {
            min-height: 160px; /* Slightly smaller for medium screens */
        }
    }

    @media (max-width: 640px) {

        /* Stack benefits grid in a single column on small screens */
        .benefits-grid {
            grid-template-columns: 1fr;
            grid-template-rows: auto;
        }
    }



       /* Web Development Page */
    .feature-image {
        width: 80px;
        height: auto;
        border-radius: 12px;
        margin: 0 auto 1.5rem;
        display: block;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .modern-card:hover .feature-image {
        transform: scale(1.1);
    }

    /* Package Table */
    .package-table {
        width: 100%;
        background: #ffffff;
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border-collapse: collapse;
        overflow: hidden;
    }

    .package-table th, .package-table td {
        padding: 1.5rem;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .package-table th {
        background: linear-gradient(135deg, #f0f9ff, #ffffff);
        font-size: 1.1rem;
        font-weight: 600;
        color: #1e293b;
    }

    .package-table-row {
        transition: background 0.3s ease;
    }

    .package-table-row:hover {
        background: #f8fafc;
    }

    .package-icon {
        font-size: 1.5rem;
        color: #f7f7f7;
        margin-right: 1rem;
        vertical-align: middle;
    }

    /* Portfolio Images */
    .portfolio-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 1rem;
        transition: transform 0.3s ease;
    }

    .portfolio-card:hover .portfolio-image {
        transform: scale(1.05);
    }

    /* Process Steps */
    .process-step {
        background: #ffffff;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

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

    .process-number {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        background: linear-gradient(135deg, #1e40af, #3b82f6);
        color: white;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    /* Testimonial Cards */
    .testimonial-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        text-align: center;
    }

    .testimonial-quote {
        font-size: 1rem;
        color: #64748b;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .testimonial-author {
        font-size: 0.95rem;
        font-weight: 600;
        color: #1e293b;
    }

    /* Benefits Grid */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 1.5rem;
        grid-auto-flow: row; /* Ensure row-based flow for strict 2x2 */
    }


      /* Join Our Team Specific Styles ---- Service*/
    .careers-container {
        width: 100%;
        margin: 0;
        position: relative;
        padding: 0;
        background: #ffffff;
    }

    .careers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
        justify-content: center;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .career-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
        opacity: 0;
    }

    .career-card.animate {
        opacity: 1;
        transform: translateY(0);
    }

    .career-card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .career-image {
        width: 300px;
        height: auto;
        border-radius: 8px;
        margin: 0 auto 1rem;
        display: block;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }



        /* News-Pages */
    .news-section {
        padding: 4rem 0;
        background: #ffffff;
    }

    .news-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Main News Section */
    .main-news-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
        .main-news-grid {
            grid-template-columns: 2fr 1fr; /* Featured article takes more space */
        }
    }

    .main-news-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(43, 86, 211, 0.1);
    }

    .main-news-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .main-news-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 16px 16px 0 0;
    }

    .main-news-content {
        padding: 1.5rem;
    }

    .main-news-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }

    .main-news-summary {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .main-news-meta {
        font-size: 0.875rem;
        color: #9ca3af;
        margin-bottom: 1rem;
    }

    /* Secondary News Grid */
    .recent-news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .recent-news-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .recent-news-card:hover {
        transform: translateY(-4px);
    }

    .recent-news-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 16px 16px 0 0;
    }

    .recent-news-content {
        padding: 1.5rem;
    }

    .recent-news-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
    }

    .recent-news-summary {
        font-size: 0.875rem;
        color: #6b7280;
        line-height: 1.6;
    }

    .recent-news-meta {
        font-size: 0.75rem;
        color: #9ca3af;
        margin-bottom: 0.5rem;
    }

    /* News Categories */
    .categories-section {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 4rem 0;
    }

    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .category-card {
        background: white;
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }

    .category-card:hover {
        transform: translateY(-4px);
    }

    .category-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 8px;
        background: linear-gradient(135deg, #2b56d3, #5b7ce8);
        color: white;
        margin-bottom: 1rem;
    }

    .category-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #1f2937;
    }

    /* Search Bar */
    .search-bar {
        margin-bottom: 2rem;
        text-align: center;
    }

    .search-input {
        width: 100%;
        max-width: 500px;
        padding: 0.75rem 1.5rem;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        font-size: 1rem;
        color: #1f2937;
        background: #f9fafb;
        transition: border-color 0.3s ease;
    }

    .search-input:focus {
        outline: none;
        border-color: #2b56d3;
        box-shadow: 0 0 0 3px rgba(43, 86, 211, 0.1);
    }

    /* Document Management Specific Styles */
    .dms-section {
        padding: 4rem 0;
        background: #ffffff;
    }

    .dms-container {
        max-width: 100%; /* Full width to remove margins */
        margin: 0 auto;
        padding: 0 1rem;
    }

    .packages-inner-container {
        max-width: 1200px; /* Constrain packages-grid to match hosting.blade.php */
        margin: 0 auto;
    }

    .dms-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }

    @media (min-width: 768px) {
        .dms-grid {
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        }
    }

    .dms-card {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(43, 86, 211, 0.1);
    }

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

    .dms-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 12px;
        background: linear-gradient(135deg, #2b56d3, #5b7ce8);
        color: white;
        margin-bottom: 1.5rem;
        transition: transform 0.3s ease;
    }

    .dms-card:hover .dms-icon {
        transform: scale(1.1);
    }

    .dms-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 1rem;
    }

    .dms-description {
        font-size: 1rem;
        color: #6b7280;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .overview-section {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        padding: 4rem 0;
    }

    .overview-container {
        max-width: 100%; /* Full width to remove margins */
        margin: 0 auto;
        padding: 0 1rem;
    }

    .overview-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .overview-text {
        font-size: 1.125rem;
        color: #4b5563;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .packages-section {
        padding: 4rem 0;
    }

    .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    @media (min-width: 1024px) {
        .packages-grid {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
        }
    }
