* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    text-align: center;
    padding: 6rem 2rem;
    color: white;
    background-image: url("../img/hero1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 50vh;
}

.highlightsss {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 0px 18px 1px 8px;
    border-radius: 5px;
    color: #dc3545;
    font-weight: bold;
}

/* Dark overlay for text readability */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: #ff5a5f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e14c4f;
}

/* Highlight styling */
.highlight {
    color: #ffd700;
    font-weight: bold;
}


body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
}

.first-row {
    background-color: rgb(255, 255, 255);
    border: goldenrod 2px solid;
    border-radius: 5px;
}

.containers {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

h1 {
    font-size: 3em;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Great Vibes', cursive;
}

.red-text {
    color: #dc3545;
}

h2 {
    font-size: 1.8em;
    color: #8B4513;
    margin-bottom: 15px;
}

.highlight {
    color: #dc3545;
    font-weight: bold;
}

.content-section {
    margin-bottom: 25px;
}

.content-section p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333;
}

.lineages {
    color: #dc3545;
    font-weight: bold;
    font-size: 1.1em;
}

.Gotra {
    color: gold;
}

.contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: 2px solid #007bff;
}

.btn-success {
    background-color: #28a745;
    color: white;
    border: 2px solid #28a745;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sidebar h3 {
    color: #dc3545;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc3545;
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    background-color: #dc3545;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c82333;
}

.sidebar-text {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}



.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    .main-content,
    .sidebar {
        padding: 20px;
    }
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}