/* css/style.css */
:root {
    --primary-black: #121212;
    --secondary-gray: #2c2c2c;
    --light-gray: #f8f9fa;
    --pure-white: #ffffff;
    --accent-gold: #EFBF04;
    --hover-gold: #FFD3AC;
    --text-gray: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background-color: var(--light-gray);
    color: var(--secondary-gray);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* --- UTILITIES --- */
.hidden-element {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.show-element {
    opacity: 1;
    transform: translateY(0);
}

.text-3d {
    text-shadow: 
        1px 1px 0 var(--accent-gold),
        2px 2px 0 var(--accent-gold),
        3px 3px 0 var(--hover-gold),
        5px 5px 10px rgba(0, 0, 0, 0.3);
}

/* --- HEADER --- */
header {
    background-color:#fff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.logo-img {
    height: 60px;
    width: auto;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #000;
    transition: 0.3s;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: 0.3s;
}

@media(max-width: 768px) {
    nav a {
        color: #fff;
    }
}
nav a:hover, nav a.active {
    color:#033fd4;
}

/* --- LAYOUT --- */
main { flex: 1; }

.section-padding { padding: 4rem 5%; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}


@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");

svg {
    font-family: "Russo One", sans-serif;
    width: 100%;
    height: 50%;
}

svg text {
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    stroke: #0A12A0;
    font-size: 50px;
}

@keyframes stroke {
    0% {
        fill: rgba(25,204,47,0);
        stroke: rgba(10,18,160,1);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 2;
    }
    70% {
        fill: rgba(25,204,47,0);
        stroke: rgba(10,18,160,1);
    }
    80% {
        fill: rgba(25,204,47,0);
        stroke: rgba(10,18,160,1);
        stroke-width: 3;
    }
    100% {
        fill: rgba(25,204,47,1);
        stroke: rgba(10,18,160,0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

.wrapper {
    background-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 10px auto;
}

/* --- HERO SECTION --- */
.hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(65, 63, 63, 0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero h1 { font-size: 3.5rem; margin-bottom: 1rem; }

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    background: linear-gradient(135deg,#2312e3, #11d61a);
    color: var(--pure-white);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
}

/* --- CARDS & GRID --- */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--pure-white);
    border: 1px solid #e0e0e0;
    transition: 0.4s;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

/* Required Docs List Styling */
.req-docs {
    margin: 15px 0;
    background: #f9f9f9;
    padding: 10px;
    border-left: 3px solid var(--accent-gold);
    font-size: 0.9rem;
}

.req-docs strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.req-docs ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555;
}

/* --- PAGE BANNERS --- */
.page-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: left;
    position: relative;

}
.text-3d{
  margin-left: 22px;
}

.page-banner::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.2);
}

.page-banner h1 {
    position: relative; z-index: 2; color: #fff; font-size: 3rem;
}

/* --- CONTACT FORM --- */
.contact-section {
    background-color: var(--pure-white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-left: 5px solid var(--accent-gold);
}

.form-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
input, textarea {
    width: 100%; padding: 15px; border: 1px solid #ddd;
    background: #fafafa; border-radius: 5px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--primary-black);
    color: #aaa;
    padding-top: 4rem;
    border-top: 4px solid var(--accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 0 5% 3rem;
}

.footer-col h3 { color: var(--pure-white); margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #aaa; text-decoration: none; }
.footer-bottom { background: #000; text-align: center; padding: 1.5rem; }

/* --- FIXED BUTTONS --- */
.fixed-buttons {
    position: fixed; bottom: 20px; right: 20px;
    display: flex; flex-direction: column; gap: 15px; z-index: 9999;
}
.fixed-btn {
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px; text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.whatsapp-btn { background: #25D366; }
.call-btn { background: #0088cc; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    nav {
        position: fixed; top: 0; right: -100%;
        width: 70%; height: 100vh; background: var(--primary-black);
        padding-top: 80px; transition: 0.3s;
    }
    nav.active { right: 0; }
    nav ul { flex-direction: column; padding: 20px; }
    .hero h1 { font-size: 2rem; }
}

   .brand-logo {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.2;
}

.brand-logo .anjali {
   background: #121FCF;
background: linear-gradient(to right, #121FCF 0%, #10CF0A 67%);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
    font-size: 25px;
    font-family: ui-monospace;
    font-weight: 800;
    letter-spacing: 1px;  
}



.brand-logo .slogan {
    font-size: 12px;
    letter-spacing: 1px;
    color: #0c0c0c;
    margin-top: 4px;
    font-weight: 600;
}
@media(max-width:768px)
{
.brand-logo .slogan 
{
    font-size: 9px;
}
.brand-logo .anjali {
    font-size: 20px;
}

.brand-logo .digital {
    font-size: 20px;
}
}














