*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* HOME-PAGE */
.home-page .hero {
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
    color: white;
    padding: 100px 0 50px;
    overflow: hidden;
}

.home-page .hero-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.badge.bg-primary-soft {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.home-page .hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.home-page .floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    color: #4B0082;
    top: 10%;
    left: 0;
    animation-delay: 0.5s;
}

.floating-card.card-2 {
    color: #932C8B;
    bottom: 10%;
    right: 0;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Domain Search Section */
.domain-search {
    padding: 40px 0;
    position: relative;
    z-index: 1;
}

.domain-search h2 {
    color: #2d2d2d;
}

.domain-search-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.domain-search-box .input-group {
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 15px;
}

.domain-search .input-group .form-control {
    height: 65px;
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 0 25px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.domain-search .form-control:focus {
    border-color: #4B0082;
    box-shadow: 0 5px 20px rgba(75, 0, 130, 0.15);
}

.domain-search .btn {
    background: linear-gradient(135deg, #4B0082, #932C8B);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.domain-search .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(75, 0, 130, 0.3);
    color: white;
}

.domain-search .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.5s ease;
}

.domain-search .btn:hover::before {
    left: 100%;
}


.domain-prices {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.domain-price {
    color: #202020;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.domain-price:hover {
    color: #4B0082;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .domain-search {
        padding: 20px 0;
    }

    .domain-search-box {
        padding: 15px;
    }

    .domain-search .form-control,
    .domain-search .btn {
        height: 55px;
        font-size: 1rem;
    }

    .domain-search .btn {
        width: 100%;
    }

    .domain-prices {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .domain-price {
        font-size: 0.9rem;
    }

    .domain-search .d-flex {
        flex-direction: column;
        gap: 1rem !important;
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(75, 0, 130, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4B0082, #932C8B);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card .icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.feature-card p {
    color: #202020;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Solution Cards */
.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(75, 0, 130, 0.1);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.1);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.solution-icon i {
    font-size: 2rem;
    color: white;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #202020;
}

.solution-features li i {
    color: #4B0082;
    font-size: 1.2rem;
}

.solution-card .btn {
    background: white;
    border-color: #4B0082;
    color: #4B0082;
    width: 100%;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.solution-card .btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #4B0082, #932C8B);
    color: white;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.1);
    border-color: transparent;
    transition: all 0.3s ease;
}


/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #4B0082;
    box-shadow: 0 20px 40px rgba(75, 0, 130, 0.1);
}

.pricing-header {
    background: linear-gradient(135deg, #4B0082, #932C8B);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.1) 55%, transparent 55%);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    line-height: 1;
}

.price-duration {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #202020;
}

.pricing-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: #4B0082;
    font-size: 1.2rem;
    background: rgba(75, 0, 130, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-card .btn {
    border: 2px solid #4B0082;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: transparent;
    color: #4B0082;
    transition: all 0.3s ease;
    width: 100%;
}

.pricing-card .btn:hover {
    color: white;
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border-color: transparent;
    transform: translateY(-2px);
}


/* Speed */
.speed-domain {
    background: linear-gradient(135deg, #2D0050, #6B1B66); /* Darker gradient for better contrast */
    
    color: #ffffff;
    padding: 80px 20px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.2); /* Inner shadow for depth */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Layout */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative; /* For positioning decorative elements */
}

/* Text Section */
.text-section {
    flex: 1;
    text-align: left;
    padding: 20px;
    background: rgba(0,0,0,0.1); /* Subtle background */
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.section-titled {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.purple-section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter grey for better readability */
    line-height: 1.6;
}

.domain-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.purple-domain-text {
    padding: 15px;
    border-left: 3px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.purple-domain-text:hover {
    border-left-color: #ffffff;
    background: rgba(255,255,255,0.1);
}

.purple-domain-text h3 {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.purple-domain-text p {
    font-size: 16px;
    color: #E0E0E0;
    line-height: 1.5;
}

/* Button */
.purple-domain-btn {
    background: #ffffff;
    color: #2D0050;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.domain-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #F0F0F0;
}

/* Image Section */
/* .image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-section img {
    width: 100%;
    height: auto;
    max-width: min(500px, 90vw);
    border-radius: clamp(8px, 2vw, 15px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.image-section img:hover {
    transform: scale(1.02);
} */


/* Responsive */
/* @media (max-width: 550px) {
    .image-section img{
        display: none;
    }
} */


/* Feature Section */
.section-header::after {
    background: linear-gradient(90deg,  #4B0082, #932C8B);
}

.refeature-card::before {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9) 0%, rgba(147, 44, 139, 0.9) 100%);
}

.feature-icon::before {
    background: linear-gradient(90deg,  #4B0082, #932C8B);
}

.feature-badge {
    background-color: rgba(75, 0, 130, 0.1);
    color: #4B0082;
}

.feature-arrow {
    background-color: rgba(75, 0, 130, 0.1);
}

.cloud-1 {
    background-color: #4B0082;
}

.cloud-2 {
    background-color:  #932C8B;
}



.features-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.clo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4B0082,  #932C8B);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: #4B0082;
}

.section-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
}

/* Modified to create a 3x3 grid */
.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.refeature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
    cursor: pointer;
    height: 100%;
}

.refeature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
}

.refeature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4B0082,  #932C8B);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.refeature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.feature-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #4B0082,  #932C8B);
    opacity: 0.1;
    z-index: -1;
}

.refeature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: #4B0082;
    transition: all 0.5s ease;
}

.refeature-card:hover .feature-icon svg {
    transform: rotateY(180deg);
}

.feature-content {
    padding: 30px;
    height: 100%;
    /* display: flex; */
    flex-direction: column;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.refeature-card:hover .feature-title {
    color: #4B0082;
}

.feature-description {
    color: #64748b;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(37, 99, 235, 0.1);
    color: #4B0082;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin-bottom: auto;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232563eb' viewBox='0 0 24 24'%3E%3Cpath d='M10.2426 16.3137L6 12.071L7.41421 10.6568L10.2426 13.4853L16.3137 7.41421L17.7279 8.82842L10.2426 16.3137Z'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feature-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.feature-stat {
    display: flex;
    align-items: baseline;
}

.feature-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: #4B0082;
}

.feature-stat-label {
    font-size: 14px;
    color: #64748b;
    margin-left: 5px;
}

.feature-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.refeature-card:hover .feature-arrow {
    background-color: #4B0082;
    transform: translateX(5px);
}

.feature-arrow svg {
    width: 20px;
    height: 20px;
    color: #4B0082;
    transition: all 0.3s ease;
}

.refeature-card:hover .feature-arrow svg {
    color: white;
}

.feature-cloud {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.05;
    z-index: -1;
    filter: blur(40px);
}

.cloud-1 {
    background-color: #4B0082;
    top: 20%;
    left: 5%;
}

.cloud-2 {
    background-color:  #932C8B;
    bottom: 10%;
    right: 5%;
}

@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 36px;
    }

    .features-container {
        grid-template-columns: 1fr;
    }
}

/* Difficulty section */


.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.page-service-card {
    margin-bottom: 50px;
    padding: 40px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid #4B0082;
}
.page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 0, 130, 0.12);
}
.page-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(147, 44, 139, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}
.page-heading {
    color: #4B0082;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.page-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
}
.page-service-title {
    font-weight: 800;
    color: #4B0082;
    font-size: 28px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    display: inline-block;
}
.page-service-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #932C8B 0%, rgba(147, 44, 139, 0.3) 100%);
}
.page-service-text {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}
.text-accent {
    font-weight: 600;
    color: #4B0082;
}
.btn-primary-action {
    display: inline-block;
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
    color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
    border: none;
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.2);
    letter-spacing: 0.5px;
}
.btn-primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(75, 0, 130, 0.3);
    color: white;
    text-decoration: none;
}
.btn-primary-action::after {
    content: " →";
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    display: inline-block;
    transform: translateX(-5px);
}
.btn-primary-action:hover::after {
    opacity: 1;
    transform: translateX(3px);
}
.page-feature-block {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}
.page-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.1) 0%, rgba(147, 44, 139, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.page-feature-icon i {
    color: #4B0082;
    font-size: 20px;
}
.page-feature-details {
    flex-grow: 1;
}
.page-feature-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    color: #4B0082;
}

/* Migration Section */
.migration-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.migration-hero {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.migration-hero h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #4B0082;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.migration-hero h2 span {
    color: #932C8B;
    display: block;
    font-size: 1.6rem;
}

.migration-hero p {
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.3px;
    color: #202020;
}

.migration-icon-wrap {
    margin-bottom: 20px;
}

.migration-circle-icon {
    background: #4B0082;
    color: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.25);
    position: relative;
    z-index: 2;
}

.migration-circle-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: migrationPulse 3s infinite;
}

@keyframes migrationPulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 0.4; }
    100% { transform: scale(1); opacity: 0.7; }
}

.migration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.migration-box {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.migration-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.migration-number {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4B0082;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.migration-box-icon {
    transition: transform 0.3s ease;
    margin: 0 auto 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #4B0082;
    color: #FFFFFF;
    font-size: 22px;
}

.migration-box:hover .migration-box-icon {
    transform: scale(1.1);
}

.migration-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #4B0082;
    position: relative;
    padding-bottom: 10px;
}

.migration-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #932C8B;
    border-radius: 2px;
}

.migration-box p {
    color: #202020;
    line-height: 1.6;
    font-size: 0.9rem;
}

.migration-cta {
    text-align: center;
    margin-top: 40px;
}

.migration-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(75, 0, 130, 0.25);
}

.migration-button:hover {
    transform: translateY(-5px);
}

.migration-button i {
    margin-right: 8px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .migration-wrapper {
        padding: 30px 15px;
    }
    
    .migration-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .migration-box {
        padding: 20px 15px;
    }
}


/* Success Section */
.success{
    line-height: 1.4;
    margin: 0;
    padding: 15px 90px;
}
.success-subtitle {
    color: #4B0082;
    margin-bottom: 10px;
    font-size: 1.8em;
    font-weight: 700;
}

.success-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
    margin-top: 8px;
}

.sub {
    /* color: #932C8B; */
    color: black;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.featured-list {
    list-style: none;
    padding: 0;
}

.featured-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.featured-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #932C8B;
}

.calltoaction-button {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9em;
    box-shadow: 0 3px 10px rgba(75, 0, 130, 0.2);
}

.calltoaction-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.3);
}

.addon-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.addon-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(75, 0, 130, 0.1);
    border: 1px solid rgba(75, 0, 130, 0.1);
    transition: all 0.3s ease;
    background: #f9f9f9;
    cursor: pointer;
}

.addon-card:hover {
    transform: translateY(-3px);
}

.paragraph {
    color: #202020;
    font-size: 1em;
}
@media (max-width: 768px) {
    .success{
        padding: 15px;
    }
.success-subtitle {
    color: #4B0082;
    margin-bottom: 10px;
    font-size: clamp(1.2em, 4vw, 1.8em);
    font-weight: 700;
}

.success-subtitle::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
    margin-top: 8px;
}

.sub {
    color: #932C8B;
    font-size: clamp(1em, 3vw, 1.2em);
    margin-bottom: 15px;
}

.featured-list {
    list-style: none;
    padding: 0;
}

.featured-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
    font-size: clamp(0.9em, 2.5vw, 1em);
}

.featured-list li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #932C8B;
}

.calltoaction-button {
    display: inline-block;
    padding: clamp(6px, 2vw, 8px) clamp(15px, 4vw, 20px);
    background: linear-gradient(135deg, #4B0082 0%, #932C8B 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: clamp(0.8em, 2.5vw, 0.9em);
    box-shadow: 0 3px 10px rgba(75, 0, 130, 0.2);
}

.calltoaction-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(75, 0, 130, 0.3);
}

.addon-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
}
@media (max-width: 576px) {
    .success{
        padding: 10px;
    }
    .addon-section {
        grid-template-columns: 1fr;
    }
}

.addon-card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(75, 0, 130, 0.1);
    border: 1px solid rgba(75, 0, 130, 0.1);
}

.addon-card:hover {
    transform: translateY(-3px);
}

.paragraph {
    color: #202020;
    font-size: clamp(0.9em, 2.5vw, 1em);
}

/* strong {
    color: #4B0082;
} */








/*CONTACT PAGE*/
.contact-page {
    background-color: rgb(228, 237, 243);
}

.contact-page .hero-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9), rgba(147, 44, 139, 0.8)), url('../media/hd-1.jpg') center center/cover no-repeat;
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.contact-page .hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-page .hero-section .lead {
    font-size: 1.25rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/*contact form*/
.contact-form {
    padding: 3rem;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form .form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    height: 55px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    background-color: white;
    transition: all 0.2s ease;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: none;
}

.contact-form .form-floating > label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 0.5rem;
    color: #202020;
    font-size: 1rem;
    pointer-events: none;
    transition: 0.2s ease all;
}

.contact-form .form-floating > .form-control:focus,
.contact-form .form-select:focus {
    border-color: #4B0082;
    box-shadow: none;
    outline: none;
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-floating > .form-select ~ label {
    top: 0;
    font-size: 0.85rem;
    color: #4B0082;
    font-weight: 600;
    background: white;
    transform: translateY(-50%);
}

.contact-form .form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.contact-form .form-floating > label {
    padding: 0.75rem 1rem;
    color: #202020;
    transition: all 0.2s ease-in-out;
    background: transparent;
}

.contact-form .form-control,
.contact-form .form-select {
    height: 56px;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: white;
    transition: all 0.2s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #4B0082;
    box-shadow: 0 0 0 3px rgba(75, 0, 130, 0.1);
}

.contact-form .form-floating > .form-control:focus ~ label,
.contact-form .form-floating > .form-control:not(:placeholder-shown) ~ label,
.contact-form .form-select ~ label {
    height: 24px;
    transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
    padding: 0 0.5rem;
    color: #4B0082;
    font-weight: 600;
    z-index: 5;
}

.contact-form .form-floating > label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: white;
    z-index: -1;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(75, 0, 130, 0.2);
}

/*contact info*/
.contact-page .contact-info-card {
    background: white;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.05);
}

.contact-info-card .icon-box {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-card .contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-info-card .contact-info-item:hover {
    transform: translateX(10px);
    background: #f0f2f5;
}

.contact-info-card .content h5 {
    margin: 0 0 5px;
    font-size: 1rem;
    font-weight: 600;
    color: #4B0082;
}

.contact-info-card .content p,
.contact-info-card .content a {
    margin: 0;
    color: #202020;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-info-card .content a:hover {
    color: #932C8B;
}

@media (max-width: 576px) {
    .contact-info-card .contact-info-item {
        padding: 1rem;
    }
    
    .contact-info-card .icon-box {
        min-width: 40px;
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .contact-info-card .icon-box i {
        font-size: 1rem;
    }
    
    .contact-info-card .content h5 {
        font-size: 0.9rem;
    }
    
    .contact-info-card .content p,
    .contact-info-card .content a {
        font-size: 0.85rem;
    }
}

/* Help Section Cards */
.help-section .card {
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
}

.help-section .icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.help-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(75, 0, 130, 0.1);
}

.help-section .card:hover .icon-box {
    transform: scale(1.1);
}

.help-section .card-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0;
    color: #2d2d2d;
}

.help-section .card-body p {
    color: #202020;
    margin-bottom: 1.5rem;
}

.help-section .btn-outline-primary {
    border: 2px solid #4B0082;
    color: #4B0082;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.help-section .btn-outline-primary:hover {
    background: linear-gradient(135deg, #4B0082, #932C8B);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    color: #2d2d2d;
    background: white;
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #4B0082;
    background: linear-gradient(to right, rgba(75, 0, 130, 0.05), transparent);
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234B0082'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.faq-section .accordion-body {
    padding: 0 1.5rem 1.5rem;
    color: #202020;
    line-height: 1.6;
}

