/* ===================
 Global Styles
=================== */
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #2e004f, #1b0030, #3d0057);
    color: #f4f4f4;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* ===================
 Navbar
=================== */
.navbar {
    background: #4A148C !important;
}

.navbar-brand {
    color: #FFD54F !important;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-link {
    color: #fff !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #FFD54F !important;
    text-shadow: 0px 0px 6px rgba(255, 213, 79, 0.8);
}

/* ===================
 Hero Section
=================== */
.hero {
    background: url('../img/vedadrishti.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero>* {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD54F;
}

.hero p {
    font-size: 1.2rem;
    color: #E1BEE7;
}

.hero .btn {
    background: linear-gradient(45deg, #FF6F00, #E91E63);
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

.hero .btn:hover {
    background: linear-gradient(45deg, #FFD54F, #FF6F00);
    transform: scale(1.05);
}

/* ===================
 Headings
=================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #FFD54F !important;
    font-weight: bold;
}

/* ===================
 Buttons
=================== */
.btn-primary,
.btn-custom {
    background: linear-gradient(45deg, #FF6F00, #E91E63) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 25px;
    padding: 10px 24px;
    font-weight: 500;
}

.btn-primary:hover,
.btn-custom:hover {
    background: linear-gradient(45deg, #FFD54F, #FF6F00) !important;
    box-shadow: 0px 6px 20px rgba(255, 213, 79, 0.5);
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(45deg, #FF6F00, #E91E63);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    background: linear-gradient(45deg, #FFD54F, #FF6F00);
    box-shadow: 0px 8px 20px rgba(255, 213, 79, 0.4);
    transform: translateY(-3px);
}

/* ===================
 Service Cards
=================== */
.service-card {
    transition: 0.3s;
    border-radius: 15px;
    background: #1c1c1c;
    color: #f4f4f4;
    border: 1px solid rgba(255, 213, 79, 0.3);
    margin-bottom: 40px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 25px rgba(255, 213, 79, 0.4);
}

/* ===================
 Testimonials Section
=================== */
.testimonials {
    background: #2e004f;
    color: #f4f4f4;
    padding: 60px 0;
}

.testimonial-card {
    background: rgba(29, 0, 41, 0.85);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    border: 1px solid rgba(255, 213, 79, 0.3);
}

.testimonial-card p {
    font-style: italic;
    color: #E1BEE7;
}

.testimonial-card h5 {
    color: #FFD54F;
    margin-top: 15px;
}

/* ===================
 Forms
=================== */
.form-section {
    background: rgba(33, 0, 48, 0.8);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 8px 25px rgba(255, 213, 79, 0.3);
}

.form-control {
    background-color: #2a003f;
    border: 1px solid #4A148C;
    color: #fff;
    border-radius: 8px;
}

.form-control::placeholder {
    color: #bbb;
}

.form-control:focus {
    border-color: #FFD54F;
    box-shadow: 0 0 10px rgba(255, 213, 79, 0.5);
    background-color: #3d0057;
    color: #fff;
}

label {
    color: #FFD54F;
}

/* ===================
 Report Cards
=================== */
.report-card {
    background: linear-gradient(135deg, #1c1c1c, #2a2a2a);
    border: 1px solid rgba(233, 30, 99, 0.3);
    color: #f4f4f4;
    border-radius: 18px;
    padding: 20px;
    transition: 0.3s ease-in-out;
    margin-bottom: 40px;
}

.report-card h5 {
    color: #FFD54F;
    font-weight: bold;
}

.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 30px rgba(74, 20, 140, 0.6);
}

/* ===================
 Gradient Section
=================== */
.bg-gradient {
    background: linear-gradient(45deg, #4A148C, #FF6F00);
    padding: 60px 0;
}

/* ===================
 Footer
=================== */
footer {
    background: #1c1c1c;
    color: #ddd;
    padding: 20px 0;
}

footer a {
    color: #FFD54F;
    text-decoration: none;
}

footer a:hover {
    color: #E91E63;
}

/* ===================
 Responsive
=================== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Google Translate styling */
#google_translate_element {
    display: inline-block;
    margin-top: 6px;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Hide Google Translate widget box */
#google_translate_element {
    display: none !important;
}

/* Hide top Google translate banner */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Remove the hover tooltip */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
    visibility: hidden !important;
}

/* Hide Google Translate UI elements and iframes */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
iframe.goog-te-banner-frame,
iframe.skiptranslate {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    border: none !important;
}

/* Prevent Google Translate from shifting body */
body {
    top: 0px !important;
}

.bg-vedic {
    background: linear-gradient(135deg, #fdf6e3, #f7efe1);
}