/* Custom CSS for domain registration page */

.domain-search-container {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.domain-search-container h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.domain-search-input {
    height: 50px;
    font-size: 18px;
}

.domain-search-btn {
    height: 50px;
    font-size: 18px;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-box i {
    font-size: 40px;
    margin-bottom: 15px;
}

.faq-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
}

.faq-section p {
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 10rem 0;
    color: white;
    background-size: cover;
    background-position: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Flip Card Effect for Services */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 250px; /* Adjust height as needed */
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: .25rem; /* Match Bootstrap card border-radius */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.flip-card-front {
    background-color: #fff;
    color: black;
    border: 1px solid #ddd;
}

.flip-card-back {
    background-color: #2980b9;
    color: white;
    transform: rotateY(180deg);
}
