/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template


/* Modern Domain Section Styles with Multi-color Scheme */
.domains-grid {
    margin-top: 30px;
}

.domain-item {
    margin-bottom: 30px;
}

.domain-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.domain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--domain-color-1), var(--domain-color-2));
    transition: all 0.4s ease;
}

.domain-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--domain-border-color);
}

.domain-card:hover::before {
    width: 6px;
    background: linear-gradient(135deg, var(--domain-color-2), var(--domain-color-1));
}

/* Domain Card Color Variations */
.domain-card-1 {
    --domain-color-1: #5cb874;
    --domain-color-2: #4a9d5e;
    --domain-border-color: rgba(92, 184, 116, 0.3);
}

.domain-card-2 {
    --domain-color-1: #6c5ce7;
    --domain-color-2: #5b4fcf;
    --domain-border-color: rgba(108, 92, 231, 0.3);
}

.domain-card-3 {
    --domain-color-1: #fd79a8;
    --domain-color-2: #e84393;
    --domain-border-color: rgba(253, 121, 168, 0.3);
}

.domain-card-4 {
    --domain-color-1: #00cec9;
    --domain-color-2: #00b894;
    --domain-border-color: rgba(0, 206, 201, 0.3);
}

.domain-card-5 {
    --domain-color-1: #fdcb6e;
    --domain-color-2: #f39c12;
    --domain-border-color: rgba(253, 203, 110, 0.3);
}

.domain-card-6 {
    --domain-color-1: #e17055;
    --domain-color-2: #d63031;
    --domain-border-color: rgba(225, 112, 85, 0.3);
}

.domain-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f8f9fa;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    z-index: 1;
    transition: all 0.4s ease;
}

.domain-card:hover .domain-number {
    color: var(--domain-color-1);
    transform: scale(1.1);
}

.domain-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--domain-color-1), var(--domain-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.domain-card:hover .domain-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.domain-icon svg {
    width: 30px;
    height: 30px;
    color: white;
    transition: all 0.4s ease;
}

.domain-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.domain-card:hover h4 {
    color: var(--domain-color-1);
}

.domain-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.domain-link {
    color: var(--domain-color-1);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.domain-link:hover {
    color: var(--domain-color-2);
    gap: 12px;
    transform: translateX(5px);
}



/* Responsive Design */
@media (max-width: 768px) {
    .domain-card {
        padding: 25px 20px;
    }

    .domain-number {
        font-size: 2.5rem;
    }

    .domain-icon {
        width: 60px;
        height: 60px;
    }

    .domain-icon svg {
        width: 25px;
        height: 25px;
    }

}

@media (max-width: 576px) {
    .domain-card,
    .service-card {
        margin-bottom: 20px;
    }

    .domain-number {
        font-size: 2rem;
        top: 5px;
        right: 15px;
    }

}


/* Services Section with Enhanced Features */
#services {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fcf9 0%, #ffffff 50%, #f8fcf9 100%);
}

/* Animated SVG Background */
.services-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.bg-shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    top: 60%;
    right: 10%;
    width: 150px;
    height: 150px;
    animation-delay: 5s;
    animation-duration: 20s;
    animation-direction: reverse;
}

.shape-3 {
    bottom: 20%;
    left: 15%;
    width: 180px;
    height: 180px;
    animation-delay: 10s;
    animation-duration: 30s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

/* Enhanced Service Cards */
.services-grid {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.service-item {
    margin-bottom: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--service-color-1), var(--service-color-2));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--service-border-color);
}

.service-card:hover::before {
    opacity: 0.03;
}

/* Enhanced Service Image Section */
.service-img {
    height: 160px;
    background: linear-gradient(135deg, var(--service-color-1), var(--service-color-2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.8s ease;
}

.service-card:hover .service-img::before {
    left: 100%;
}

.service-card:hover .service-img {
    background: linear-gradient(135deg, var(--service-color-2), var(--service-color-1));
}

/* SVG Icons Container */
.service-svg-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-svg-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-svg-icon svg {
    width: 50px;
    height: 50px;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-svg-icon svg {
    transform: scale(1.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Backup Image (hidden when SVG is available) */
.service-backup-img {
    display: none;
    max-height: 80px;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
}

/* Service Content */
.service-content {
    padding: 35px 30px;
    position: relative;
    z-index: 1;
    background: white;
}

.service-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--service-color-1), var(--service-color-2));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover .service-content::before {
    transform: scaleX(1);
}

.service-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: all 0.4s ease;
}

.service-card:hover .service-content h4 {
    color: var(--service-color-1);
    transform: translateY(-2px);
}

.service-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-link {
    color: var(--service-color-1);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.02);
}

.service-link:hover {
    color: var(--service-color-2);
    gap: 15px;
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.05);
}

.service-link i {
    transition: all 0.4s ease;
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Service Card Color Variations */
.service-card-1 {
    --service-color-1: #5cb874;
    --service-color-2: #4a9d5e;
    --service-border-color: rgba(92, 184, 116, 0.4);
}

.service-card-2 {
    --service-color-1: #6c5ce7;
    --service-color-2: #5b4fcf;
    --service-border-color: rgba(108, 92, 231, 0.4);
}

.service-card-3 {
    --service-color-1: #fd79a8;
    --service-color-2: #e84393;
    --service-border-color: rgba(253, 121, 168, 0.4);
}

.service-card-4 {
    --service-color-1: #00cec9;
    --service-color-2: #00b894;
    --service-border-color: rgba(0, 206, 201, 0.4);
}

.service-card-5 {
    --service-color-1: #fdcb6e;
    --service-color-2: #f39c12;
    --service-border-color: rgba(253, 203, 110, 0.4);
}

.service-card-6 {
    --service-color-1: #e17055;
    --service-color-2: #d63031;
    --service-border-color: rgba(225, 112, 85, 0.4);
}

.service-card-7 {
    --service-color-1: #a29bfe;
    --service-color-2: #7467e0;
    --service-border-color: rgba(162, 155, 254, 0.4);
}

.service-card-8 {
    --service-color-1: #55efc4;
    --service-color-2: #00b894;
    --service-border-color: rgba(85, 239, 196, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-img {
        height: 140px;
        padding: 25px;
    }

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

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

    .service-content {
        padding: 25px 20px;
    }

    .service-content h4 {
        font-size: 1.2rem;
    }

    .bg-shape {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (max-width: 576px) {
    .service-card,
    .service-item {
        margin-bottom: 20px;
    }

    .service-img {
        height: 120px;
        padding: 20px;
    }

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

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

    .bg-shape {
        display: none;
    }
}

/* Modern CTA Section Styles */
#cta {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg,
        #5cb874 0%,
        #4a9d5e 25%,
        #3d8b4f 50%,
        #2d673c 75%,
        #1e3a28 100%);
    overflow: hidden;
    border-radius: 20px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(92, 184, 116, 0.3);
}

/* Animated Background */
.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    opacity: 0.15;
    animation: ctaFloat 25s infinite linear;
}

.shape-1 {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    animation-delay: 0s;
    animation-duration: 30s;
}

.shape-2 {
    top: 60%;
    right: -80px;
    width: 250px;
    height: 250px;
    animation-delay: 10s;
    animation-duration: 25s;
    animation-direction: reverse;
}

.shape-3 {
    bottom: -60px;
    left: 40%;
    width: 200px;
    height: 200px;
    animation-delay: 5s;
    animation-duration: 35s;
}

@keyframes ctaFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(0) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(30px) rotate(270deg) scale(0.9);
    }
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* CTA Content */
.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-text-content {
    color: white;
    padding-right: 30px;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* Features List */
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.feature-item span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

/* CTA Action Container */

.cta-action-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
}

.cta-btn-wrapper {
    position: relative;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    gap: 20px;
}

.cta-btn:hover::before {
    left: 100%;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.cta-btn:hover .btn-icon {
    transform: translateX(5px) rotate(45deg);
}

.btn-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.btn-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.cta-btn:hover .btn-hover-effect {
    width: 200px;
    height: 200px;
}

/* Stats */
.cta-stats {
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    #cta {
        padding: 60px 0;
        margin: 30px 15px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-action-container {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        padding-top: 30px;
        margin-top: 30px;
    }

    .cta-text-content {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    #cta {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .cta-features {
        gap: 12px;
    }

    .feature-item {
        padding: 10px 0;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    #cta {
        padding: 40px 0;
        border-radius: 15px;
    }

    .cta-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .cta-badge {
        margin-bottom: 15px;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

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