


/* --- నావిగేషన్ బార్ వేరియబుల్స్ --- */
:root {
    --nav-height: 100px;
    --active-blue: #1a73e8;
    --nav-glass: rgba(33, 75, 147, 0.85);
    --accent-orange: #ff9933;
}
/* --- THE UNIQUE WHATSAPP CONTAINER --- */
    .wa-container {
        position: fixed;
        bottom: 25px;
        right: 25px;
        display: flex;
        align-items: center;
        z-index: 1000;
    }

    /* The Label (Appears on Hover) */
    .wa-label {
        background: #ffffff;
        color: #075e54;
        padding: 10px 20px;
        border-radius: 50px 0 0 50px;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 14px;
        margin-right: -15px; /* Pulls it behind the button slightly */
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        pointer-events: none;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
    }

    /* The Floating Button */
    .wa-float {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        position: relative;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        transition: transform 0.3s ease;
    }

    /* The SVG Icon Styling */
    .wa-float svg {
        width: 32px;
        height: 32px;
        fill: white;
    }

    /* Pulse Animation */
    .wa-float::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #25D366;
        border-radius: 50%;
        z-index: -1;
        animation: wa-pulse 2.5s infinite;
    }

    /* Interaction Effects */
    .wa-container:hover .wa-label {
        opacity: 1;
        transform: translateX(0);
    }

    .wa-container:hover .wa-float {
        transform: scale(1.15) rotate(10deg);
    }

    /* Pulse Keyframes */
    @keyframes wa-pulse {
        0% { transform: scale(1); opacity: 0.6; }
        100% { transform: scale(1.8); opacity: 0; }
    }

    /* Navigation Pill Style (Optional - for context) */
    .nav-links a.active-page {
        background: #4285F4 !important;
        color: white !important;
        box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
        border: none;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .wa-label { display: none; }
        .wa-float { width: 55px; height: 55px; }
    }
/* --- మెయిన్ నావిగేషన్ స్టైల్స్ --- */
.navbar {
    height: var(--nav-height);
    background: var(--nav-glass) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0 5%;
    border-bottom: 2px solid rgba(255, 153, 51, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* --- లోగో సెక్షన్ --- */
.brand-container {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    max-width: 70%;
}

.logo-text {
    color: #ffffff !important;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.logo-text span {
    color: var(--accent-orange);
}

.sub-service-text {
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

/* --- డెస్క్‌టాప్ మెను లింక్స్ --- */
.nav-right {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item.active {
    background-color: var(--active-blue) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.5);
}

.nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-orange) !important;
    transform: translateY(-2px);
}

/* --- హ్యాంబర్గర్ ఐకాన్ (Hamburger Icon) --- */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1200;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 5px;
}

/* --- మొబైల్ రెస్పాన్సివ్ సెట్టింగ్స్ (Responsive) --- */
@media (max-width: 1024px) {
    .navbar {
        height: 70px; 
        padding: 20px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-right {
        position: fixed;
        top: 85px;                
        left: -110%; 
        width: 65%;
        height: auto; 
        max-height: 75vh;
        background: #ffffff !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start; 
        padding: 25px 20px; 
        gap: 15px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        border-radius: 20px; 
        margin-left: 15px; 
    }

    .nav-right.open {
        left: 0;                                 
    }

    .nav-item {
        color: #0a2351 !important; 
        font-size: 1.05rem;
        width: 100%;
        text-align: left;       
        padding: 15px 18px; 
        margin-bottom: 5px; 
        display: block;
        border-radius: 12px;
        background: #f8fafc;
        transition: 0.2s ease;
    }

    .nav-item.active {
        background-color: #f1f5f9 !important;
        color: var(--active-blue) !important;
        border-left: 5px solid var(--active-blue);
        font-weight: 700;
    }

    /* Hamburger Animation (X Shape) */
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    
    .hamburger.active span { background: var(--accent-orange); }
}
/* from here name css is stared */
/* ఎత్తు తగ్గించిన హీరో సెక్షన్ CSS */
.short-hero {
    text-align: center;
    /* margin-top ను అవసరాన్ని బట్టి తగ్గించుకోవచ్చు */
    margin-top:60px; 
    
    /* Padding తగ్గించడం వల్ల ఎత్తు తగ్గుతుంది */
    padding: 40px 20px; /* 80px నుండి 40px కి తగ్గించాను */
    
    background: #ffffff;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(#cbd5e1 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}

.compact-heading {
    /* ఫాంట్ సైజును కొద్దిగా తగ్గించడం వల్ల కూడా ఎత్తు తగ్గుతుంది */
    font-size: clamp(2rem, 5vw, 3.2rem); 
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #0a2351 30%, #ff9933 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premiumReveal 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.short-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #ff9933, #0a2351);
    margin: 10px auto 0; /* Margin 15px నుండి 10px కి తగ్గించాను */
    border-radius: 50px;
    animation: lineWidth 1.2s ease-out forwards;
}

/* Animations (పాతవి అలాగే ఉంచవచ్చు) */
@keyframes premiumReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes lineWidth {
    0% { width: 0; opacity: 0; }
    100% { width: 40px; opacity: 1; }
}

@media (max-width: 1024px) {
    .short-hero {
        margin-top: 80px; /* 70px నుండి 60px కి తగ్గించాను */
        padding: 30px 20px; /* 60px నుండి 30px కి తగ్గించాను */
    }
}
/* for footer */

 :root {
            /* డార్క్ అట్రాక్టివ్ రంగులు */
            --night-bg: #0f172a; 
            --gold-accent: #ff9933;
            --silver-text: #94a3b8;
            --white-text: #f8fafc;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

        /* ఫుటర్ మెయిన్ - Night Owl */
        .owl-footer {
            background-color: var(--night-bg);
            padding: 30px 5%; /* ఎత్తు తగ్గించబడింది */
            width: 100%;
            border-top: 4px solid var(--gold-accent); /* పైన ఒక గోల్డ్ లైన్ ఆకర్షణ కోసం */
            color: var(--white-text);
        }

        .owl-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ఎడమ వైపు కాపీరైట్ */
        .owl-copyright {
            font-size: 0.9rem;
            color: var(--silver-text);
        }

        .owl-copyright span {
            color: var(--gold-accent);
            font-weight: 700;
        }

        /* కుడి వైపు లింక్స్ */
        .owl-links {
            display: flex;
            gap: 20px;
        }

        .owl-links a {
            text-decoration: none;
            color: var(--white-text);
            font-size: 0.85rem;
            font-weight: 600;
            transition: 0.3s ease;
            position: relative;
        }

        /* లింక్ కింద చిన్న లైన్ యానిమేషన్ */
        .owl-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--gold-accent);
            transition: 0.3s;
        }

        .owl-links a:hover::after {
            width: 100%;
        }

        .owl-links a:hover {
            color: var(--gold-accent);
        }

        /* మొబైల్ కోసం సర్దుబాటు */
        @media (max-width: 768px) {
            .owl-wrapper {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            .owl-links {
                gap: 15px;
            }
        }
  