:root {

    --primary: #0f172a;
    /* dark navy (premium) */
    --primary-dark: #020617;
    --accent: #f97316;
    /* modern orange */
    --accent-dark: #ea580c;
    --text-main: #0f172a;
    --bg-light: #f1f5f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --danger: #dc3545;
    --success: #198754;
    --warning: #ffb400;

    --danger-bg: #fff5f5;
--success-bg: #f0fdf4;
--google: #db4437;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-main);
    scroll-behavior: smooth;
}

.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);

    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8) !important;

    position: sticky;
     top: 0; 
     z-index: 1200; 
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--primary) !important;

}

.oval-logo {
    height: 50px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.nav-link {
    font-weight: 600;
    color: var(--text-main) !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent) !important;
}

.lang-toggle {
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 30px;
    overflow: hidden;
    display: inline-flex;
    margin-left: 15px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
}

.hero-section {
    background: radial-gradient(circle at top, #1e293b, #020617);
    padding: 100px 0 120px;
    color: white;
    text-align: center;


}

.hero-title {
    /* line-height: 1.2; */
    /* font-size: 3rem; */
    font-weight: 800;
    letter-spacing: -1px;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero-title span {
    /* color: var(--accent); */
    color: var(--accent);
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.btn-custom-accent {

    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    padding: 14px 32px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 999px;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.btn-custom-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    color: #fff;
    transform: translateY(-3px) scale(1.03);

}

.btn-outline-light-custom {
    border: 2px solid white;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    background-color: white;
    color: var(--primary);
}

section {
    padding: 80px 0;
}

.section-title {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;

    font-size: 2.2rem;
    font-weight: 800;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.problem-box {
    background: #fff5f5;
    border-left: 5px solid #dc3545;
    padding: 30px;
    border-radius: 10px;
}

.problem-box i {
    color: #dc3545;
}

.solution-box {
    background: #f0fdf4;
    border-left: 5px solid #198754;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.solution-box i {
    color: #198754;
}

.trust-quote-container {
    background: linear-gradient(rgba(0, 77, 102, 0.9), rgba(0, 77, 102, 0.9)), url('AdiTechnosoftImg.jpg') center/cover;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.trust-quote {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.5;
}

.service-card {

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;

    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card:hover {

    border-color: var(--accent);


    transform: translateY(-8px);


    box-shadow: 0 0 25px rgba(249, 115, 22, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.pricing-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.pricing-card {


    background: white;
    border-radius: 20px;
    padding: 25px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background-color: var(--primary);
    color: white;
    font-weight: 700;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
}

.pricing-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    padding: 25px 0 15px;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.gst-text {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
}

.renewal-badge {
    background: #fff3e0;
    color: #b26a00;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 15px;
    display: inline-block;
}

.urgency-section {
    background-color: #fff3cd;
    border: 2px dashed #ffc107;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.project-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    transition: var(--transition);
    padding: 25px;
    text-align: center;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 77, 102, 0.1);
}

.project-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.contact-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.free-consult-badge {
    background: #d1e7dd;
    color: #0f5132;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
}

.about-box {
    padding: 25px;
    border-radius: 15px;
    background: #f8fbfd;
    transition: 0.3s;
}

.about-box:hover {
    transform: translateY(-5px);
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 80px 0;
    background: #f9fbfd;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.client-img {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.4rem;
}

.client-meta h4 {
    margin-bottom: 4px;
}

.stars {
    color: #ffb400;
    font-size: 0.9rem;
}

.google-icon {
    color: #db4437;
    font-size: 1.6rem;
    margin-left: auto;
}

.review-text {
    color: #2c3e50;
    line-height: 1.5;
}


/* ========== FOOTER STYLES - MODERN & STYLISH ========== */
footer {
    background: linear-gradient(135deg, #001a26 0%, #002d3d 100%);
    color: #e0e0e0;
    padding: 60px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 102, 0, 0.2);
}

footer h4 {
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

footer h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 10px;
    border-radius: 2px;
}

footer .footer-link {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

footer .footer-link:hover {
    color: var(--accent) !important;
    transform: translateX(5px);
}

/* Contact info list */
footer .contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    transition: 0.3s;
}

footer .contact-info p i {
    width: 30px;
    color: var(--accent);
    font-size: 1.1rem;
    text-align: center;
}

footer .contact-info p:hover {
    transform: translateX(5px);
    color: white;
}

/* Social icons */
footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-right: 12px;
}

footer .social-icons a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(255, 102, 0, 0.3);
}

/* Copyright area */
footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
    transition: 0.3s;
}

footer .copyright a {
    color: var(--accent);
    text-decoration: none;
}

footer .copyright a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer {
        text-align: center;
    }

    footer h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    footer .contact-info p {
        justify-content: center;
    }

    footer .social-icons a {
        margin: 0 6px;
    }
}


.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1030;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    /* padding: 12px 20px; */
    /* border-radius: 50px; */
    text-decoration: none;
    font-weight: 600;
    /* font-size: 0.9rem; */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);

    border-radius: 999px;
    font-size: 0.95rem;
    padding: 14px 22px;
}

.float-whatsapp {
    background: #25D366;
}

.float-btn.call {
    background: #008080;
}

.float-btn:hover {
    transform: scale(1.05);
    color: white;
    filter: brightness(1.1);
}

@media (max-width: 991px) {
    .pricing-card.featured {
        transform: none;
        margin: 15px 0;
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* --- Popup styles for thank you message (added) --- */
#thank-you-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 105;
}

#thank-you-popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin: 20px;
}

#thank-you-popup-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1e2a3a;
}

#thank-you-popup-content button {
    padding: 10px 20px;
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

#thank-you-popup-content button:hover {
    background-color: var(--accent-dark);
}

* {
    transition: transform 0.3s, box-shadow 0.3s;
}

.fw-bold {
    font-weight: 700;
}

.text-lg {
    font-size: 1.2rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.6s ease forwards;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.popup-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
}

.popup-box button {
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 5px;
}