/* Color Palette */
:root {
    --neon-cyan: #00d2ff;
    --neon-blue: #3a47d5;
    --dark-bg: #1a1a1a;
    --text-light: #f8f9fa;
}

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

.navbar-brand img { height: 50px; }

/* Custom Gradient Button/Backgrounds */
.bg-neon-gradient {
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    color: white;
}

.dropdown-item:hover {
    background-color: var(--neon-cyan);
    color: white;
}

footer {
    background-color: #111;
    color: #ccc;
    padding: 60px 0 20px;
}

footer h5 { color: var(--neon-cyan); margin-bottom: 20px; }

.contact-link { color: #ccc; text-decoration: none; transition: 0.3s; }
.contact-link:hover { color: var(--neon-cyan); }


/* Hero Slider Styles */
.carousel-item {
    height: 80vh; /* Adjust height as needed */
    min-height: 500px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darkens the image for text clarity */
}

.carousel-caption {
    bottom: 30%;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--neon-cyan);
}

.carousel-caption h1 {
    font-weight: 800;
    font-size: 3rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.btn-neon {
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.6);
    color: white;
}

@media (max-width: 768px) {
    .carousel-caption h1 { font-size: 1.8rem; }
    .carousel-caption { bottom: 15%; width: 90%; left: 5% !important; }
}

/* About Us Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-wrapper img {
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(0, 210, 255, 0.1); /* Subtle neon shadow */
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(58, 71, 213, 0.4);
}

.experience-badge h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
}

.section-title {
    font-weight: 700;
    color: #333;
    position: relative;
    margin-bottom: 25px;
}

.section-title span {
    color: var(--neon-blue);
}

.about-text {
    color: #666;
    line-height: 1.8;
}

.list-style-neon {
    list-style: none;
    padding-left: 0;
}

.list-style-neon li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.list-style-neon li::before {
    content: "\2713"; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background-color: #fcfcfc;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.15);
    border-color: var(--neon-cyan);
}

.service-icon {
    font-size: 45px;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(var(--neon-cyan), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

/* Hover Line Effect */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-blue));
    transition: width 0.4s ease;
}

.service-card:hover::after {
    width: 100%;
}

/* Testimonial Section Styles */
.testimonial-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin: 15px 0;
    height: 100%;
    transition: 0.3s;
    border-top: 4px solid transparent;
}

.testimonial-card:hover {
    border-top: 4px solid var(--neon-cyan);
    transform: translateY(-5px);
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--neon-cyan);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

.client-info h6 {
    margin-bottom: 2px;
    font-weight: 700;
    color: #333;
}

.client-info span {
    color: var(--neon-blue);
    font-size: 13px;
    font-weight: 600;
}

.quote-icon {
    font-size: 30px;
    color: #eee;
    margin-bottom: 10px;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-box {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--neon-cyan);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.contact-info-box i {
    font-size: 24px;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
}

.form-control:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 210, 255, 0.25);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Breadcrumb / Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: white;
    text-align: center;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--neon-cyan);
}

.breadcrumb-item a { color: var(--neon-cyan); }
.breadcrumb-item.active { color: #fff; }

/* Owner Section */
.owner-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}

.owner-image {
    height: 400px;
    object-fit: cover;
}

.stats-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-bottom: 3px solid var(--neon-blue);
    margin-bottom: 20px;
}

/* Why Choose Us Styles */
.why-choose-section {
    padding: 80px 0;
    background: #0b0b0b; /* Dark background for a premium neon feel */
    color: #fff;
}

.feature-item {
    padding: 40px 25px;
    border-radius: 20px;
    background: #1a1a1a;
    transition: all 0.4s ease;
    border: 1px solid #333;
    height: 100%;
}

.feature-item:hover {
    background: #222;
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.2);
    transform: translateY(-10px);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border-radius: 50%;
    font-size: 28px;
    color: white;
    margin-bottom: 25px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
}

.feature-item h5 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.feature-item p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
}


/* Mission, Vision, Values Styles */
.mvv-section {
    padding: 100px 0;
    background-color: #fff;
}

.mvv-card {
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #f0f0f0;
    background: #fff;
    position: relative;
}

.mvv-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 25px;
    font-size: 24px;
    color: #fff;
}

/* Specific Colors for each pillar */
.bg-mission { background: linear-gradient(135deg, #00d2ff, #3a47d5); } /* Cyan to Blue */
.bg-vision { background: linear-gradient(135deg, #6a11cb, #2575fc); }  /* Purple to Blue */
.bg-values { background: linear-gradient(135deg, #00c6ff, #0072ff); }  /* Sky to Deep Blue */

.mvv-card h3 {
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #222;
}

.mvv-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Contact Page Specifics */
.contact-header {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?auto=format&fit=crop&w=1400&q=80');
    background-size: cover;
    padding: 100px 0;
}

.info-card {
    background: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.info-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.info-card .icon-box {
    width: 50px;
    height: 50px;
    background: var(--neon-cyan);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.form-wrapper {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.1);
}

/* Shared Styles for Floating Buttons */
.whatsapp-float, .phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    border-radius: 50% !important; /* Forces perfect circle */
    text-align: center;
    display: flex; /* Centers icon horizontally */
    align-items: center; /* Centers icon vertically */
    justify-content: center;
    color: #FFF;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

/* WhatsApp - Right Side */
.whatsapp-float {
    right: 40px;
    background-color: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

/* Phone - Left Side */
.phone-float {
    left: 40px;
    background: linear-gradient(135deg, #00d2ff, #3a47d5);
    animation: pulse-phone 2s infinite;
}

/* Icon Size Fix */
.whatsapp-float i, .phone-float i {
    font-size: 30px;
    margin: 0;
    padding: 0;
}

/* Hover Effects */
.whatsapp-float:hover, .phone-float:hover {
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

/* Animations */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes pulse-phone {
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 210, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

/* Mobile Fix */
@media screen and (max-width: 767px) {
    .whatsapp-float, .phone-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }
    .whatsapp-float { right: 20px; }
    .phone-float { left: 20px; }
    .whatsapp-float i, .phone-float i { font-size: 22px; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
    text-decoration: none;
}

/* Tooltip appearance on hover */
.chat-tooltip {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    right: 125%; /* Position to the left of the button */
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-float:hover .chat-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Pulsing effect to draw attention */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
}

/* Responsive adjustment for mobile */
@media screen and (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Phone Floating Button (Left Side) */
.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px; /* Positioned on the left */
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0px 4px 15px rgba(58, 71, 213, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0px 6px 20px rgba(0, 210, 255, 0.6);
    text-decoration: none;
}

/* Tooltip appearance on hover for Phone */
.phone-tooltip {
    visibility: hidden;
    width: 130px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    left: 125%; /* Position to the right of the button */
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.phone-float:hover .phone-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Pulsing effect to match the Neon vibe */
@keyframes pulse-phone {
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 210, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

.phone-float {
    animation: pulse-phone 2s infinite;
}

/* Responsive adjustment for mobile */
@media screen and (max-width: 767px) {
    .phone-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 20px;
    }
}