/* Static Section Styles */
.pt-75 {
    padding-top: 75px;
}

.pb-75 {
    padding-bottom: 75px;
}

#section-domains {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#section-domains .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 0%, #FBF9FF, #FEF9FC 100%);
    z-index: -1;
}

#section-domains .container-special-width {
    width: 100%;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

#section-domains .section-header {
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn-up 0.8s ease forwards;
}

#section-domains .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #212529;
    margin-top: 0;
    margin-bottom: 15px;
}

#section-domains .section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #6C757D;
    line-height: 1.6;
}

#section-domains .feature-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(108, 117, 125, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn-up 0.8s ease forwards;
}

#section-domains .row .col-md-4:nth-child(2) .feature-card {
    animation-delay: 0.2s;
}

#section-domains .row .col-md-4:nth-child(3) .feature-card {
    animation-delay: 0.4s;
}

#section-domains .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(108, 117, 125, 0.15);
}

#section-domains .icon-box {
    width: 64px;
    height: 64px;
    margin: 0 auto 30px;
    background-color: #F1EEFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

#section-domains .icon-box i {
    font-size: 26px;
    color: #4F32D8;
}

#section-domains .feature-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #212529;
    margin-top: 0;
    margin-bottom: 15px;
}

#section-domains .feature-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #6C757D;
    line-height: 1.7;
    margin-bottom: 0;
}

@keyframes fadeIn-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feature Cards Subtle Hover Animation - First Section */
#section-domains .icon-box {
    transition: transform 0.4s ease;
}

#section-domains .feature-card:hover .icon-box {
    transform: rotate(10deg);
}

/* Domain Registration Section Styles */
#section-domain-registration {
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

#section-domain-registration.dark-theme {
    background-color: #1A1A2E;
    color: #FFFFFF;
}

#section-domain-registration .container-special-width {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
}

#section-domain-registration .title-heading {
    font-size: 48px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: #FFFFFF;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

#section-domain-registration .title-heading .highlight {
    background: linear-gradient(90deg, #8A2BE2, #C13584);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#section-domain-registration .subtitle {
    font-size: 18px;
    color: #A9A9D5;
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

#section-domain-registration .registration-box {
    background: rgba(45, 45, 66, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 50px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

#section-domain-registration .stepper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 40px;
}

#section-domain-registration .stepper-line {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, #6A3E9E, #A855F7);
    z-index: 1;
}

#section-domain-registration .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20%;
    position: relative;
    z-index: 2;
}

#section-domain-registration .step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #8338EC;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    border: 2px solid #1A1A2E;
}

#section-domain-registration .step-title {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 5px;
}

#section-domain-registration .step-time {
    font-size: 14px;
    color: #A9A9D5;
    margin: 0;
}

#section-domain-registration .result-box {
    background-color: #1E463C;
    border-radius: 15px;
    padding: 25px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

#section-domain-registration .result-box:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

#section-domain-registration .domain-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#section-domain-registration .status-dot {
    width: 10px;
    height: 10px;
    background-color: #25D366;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

#section-domain-registration .result-box:hover .status-dot {
    transform: scale(1.3);
}

#section-domain-registration .domain-name {
    font-size: 22px;
    font-weight: 600;
    color: #25D366;
    margin: 0;
    flex-grow: 1;
    text-align: left;
}

#section-domain-registration .lock-icon {
    font-size: 20px;
    color: #F1C40F;
    transition: transform 0.4s ease;
}

#section-domain-registration .result-box:hover .lock-icon {
    transform: scale(1.2) rotate(10deg);
}

#section-domain-registration .status-text {
    font-size: 15px;
    color: #A9D5C0;
    margin: 0;
    text-align: left;
    padding-left: 20px;
}

#section-domain-registration .check-icon {
    color: #25D366;
    margin-right: 8px;
}

/* Success Stories Section Styles */
#section-success-stories {
    position: relative;
    overflow: hidden;
}

#section-success-stories .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(249, 245, 255, 0.8), rgba(255, 247, 251, 0.8));
    z-index: -2;
}

#section-success-stories .container-special-width {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

#section-success-stories .section-title {
    color: #21293c;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

#section-success-stories .section-subtitle {
    color: #5A6478;
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Fix for equal height cards */
#section-success-stories .story-row {
    display: flex;
    flex-wrap: wrap;
}

#section-success-stories .story-col {
    display: flex;
    margin-bottom: 30px;
}

#section-success-stories .story-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 15px 45px rgba(33, 41, 60, 0.07);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.5s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* Fixed height for all cards */
    min-height: 300px;
}

#section-success-stories .story-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(33, 41, 60, 0.15);
}

#section-success-stories .testimonial-card.card-alt {
    background: linear-gradient(180deg, #F7F9FF 0%, #FFFFFF 100%);
}

#section-success-stories .stats-card {
    background-color: #F2FFF8;
    justify-content: center;
}

#section-success-stories .stars {
    margin-bottom: 20px;
    color: #FFC700;
    font-size: 18px;
    transition: transform 0.3s ease;
}

#section-success-stories .stars .fa {
    margin-right: 4px;
}

#section-success-stories .testimonial-text {
    color: #5A6478;
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

#section-success-stories .user-info {
    display: flex;
    align-items: center;
    margin-top: auto; /* Push to bottom of card */
}

#section-success-stories .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

#section-success-stories .avatar-m {
    background: linear-gradient(135deg, #D965E0, #9A60E0);
}

#section-success-stories .avatar-j {
    background: linear-gradient(135deg, #8C82FF, #5A67FF);
}

#section-success-stories .user-details strong {
    display: block;
    color: #21293c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

#section-success-stories .user-details p {
    color: #5A6478;
    font-size: 14px;
    margin: 0;
}

#section-success-stories .stats-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

#section-success-stories .stats-header .fa-clock-o {
    color: #28A745;
    font-size: 32px;
    margin-right: 15px;
}

#section-success-stories .stats-number {
    color: #21293c;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    transition: transform 0.3s ease;
}

#section-success-stories .stats-label {
    color: #5A6478;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 15px;
    padding-left: 47px;
}

#section-success-stories .stats-trend {
    color: #28A745;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding-left: 47px;
    margin-top: auto; /* Push to bottom of card */
}

#section-success-stories .stats-trend .fa-long-arrow-up {
    margin-right: 8px;
}

#section-success-stories .section-title,
#section-success-stories .section-subtitle,
#section-success-stories .story-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

#section-success-stories .section-subtitle { animation-delay: 0.2s; }
#section-success-stories .row > .story-col:nth-child(1) .story-card { animation-delay: 0.4s; }
#section-success-stories .row > .story-col:nth-child(2) .story-card { animation-delay: 0.6s; }
#section-success-stories .row > .story-col:nth-child(3) .story-card { animation-delay: 0.8s; }

@media (max-width: 991px) {
    #section-success-stories .story-col {
        margin-bottom: 30px;
    }
    #section-success-stories .row > div:last-child .story-col {
        margin-bottom: 0;
    }
    #section-success-stories .story-col:nth-child(odd):last-child {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    #section-success-stories .story-card {
        min-height: 250px; /* Adjust for smaller screens */
    }
}

@media (max-width: 767px) {
    #section-success-stories .section-title {
        font-size: 32px;
    }
    #section-success-stories .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    #section-success-stories .story-col {
        margin-bottom: 30px;
    }
    #section-success-stories .row > div:last-child .story-col {
        margin-bottom: 0;
    }
    #section-success-stories .story-card {
        min-height: auto; /* On mobile, let cards be their natural height */
    }
}

@keyframes subtle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

#section-success-stories .stats-card:hover .stats-number {
    animation: subtle-bounce 0.5s ease;
}

@keyframes subtle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

#section-success-stories .stats-card:hover .fa-clock-o,
#section-success-stories .stats-card:hover .fa-long-arrow-up {
    animation: subtle-pulse 1.5s infinite;
}

/* Domain Claim Section Styles */
#section-domain-claim {
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    z-index: 1;
}

#section-domain-claim .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, #6A30EE 0%, #3075F9 100%);
    z-index: -1;
}

#section-domain-claim .container-special-width {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
}

#section-domain-claim .content-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

#section-domain-claim h1 {
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

#section-domain-claim h1 .highlight {
    color: #F9C74F;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

#section-domain-claim .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 20px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

#section-domain-claim .features-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px 20px 30px;
    margin-bottom: 40px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#section-domain-claim .features-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

#section-domain-claim .feature-item {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

#section-domain-claim .feature-item:hover {
    transform: translateY(-3px);
}

#section-domain-claim .feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

#section-domain-claim .feature-item:hover .feature-title {
    transform: scale(1.1);
}

#section-domain-claim .feature-title.free-yellow {
    color: #F9C74F;
}

#section-domain-claim .feature-title.free-green {
    color: #57E298;
}

#section-domain-claim .feature-title.free-blue {
    color: #69A6F9;
}

#section-domain-claim .feature-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 0;
}

#section-domain-claim .combined-value {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 0;
}

#section-domain-claim .btn-claim {
    background-color: #FFFFFF;
    color: #4832A3;
    border: none;
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

#section-domain-claim .btn-claim:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

#section-domain-claim .btn-claim:hover:before {
    left: 100%;
}

#section-domain-claim .btn-claim:hover,
#section-domain-claim .btn-claim:focus {
    color: #4832A3;
    background-color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(48, 117, 249, 0.3);
}

@media (max-width: 991px) {
    #section-domain-claim h1 {
        font-size: 50px;
    }
    #section-domain-claim .lead {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    #section-domain-claim h1 {
        font-size: 40px;
    }
    #section-domain-claim .lead {
        font-size: 16px;
        margin-bottom: 30px;
    }
    #section-domain-claim .features-card {
        padding: 30px 20px 10px 20px;
    }
    #section-domain-claim .feature-item {
        margin-bottom: 30px;
    }
    #section-domain-claim .feature-item:last-child {
        margin-bottom: 20px;
    }
    #section-domain-claim .btn-claim {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Custom animation to make the highlight text pulsate slightly */
@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

#section-domain-claim:hover h1 .highlight {
    animation: gentle-pulse 2s infinite ease-in-out;
}
