:root {
  --primary-color: #FF4203;       /* brand‑orange‑500 */
  --secondary-color: #FF4433;     /* brand‑blue‑500 */
  --accent-color: #6593DC;        /* brand‑blue‑300 (tint on dark) */

  --light-color: #EBF1F9;          /* blue‑100, lightest background tint */
  --dark-color: #2E2E2E;           /* dark gray text/background (So‑called primary‑black) */

  --text-color: #2E2E2E;           /* main dark gray for content text */
  --text-light: #FFFFFF;           /* white for text on dark backgrounds */
  --text-muted: #737373;           /* mid‑tone gray for muted text */

  /* Optional supportive neutrals */
  --neutral-gray-light: #F4F4F4;   /* very light gray background */
  --neutral-gray-mid: #505050;     /* mid gray for UI elements */
  --error-color: #c83727;          /* red for error messages */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    user-select: none;
}

/* Header Styles */
.navbar {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--primary-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    margin-right: 20px;
    width: 20px;
    text-align: center;
}

.dropdown-item:hover {
    background-color: rgba(0, 86, 214, 0.1);
    color: var(--secondary-color);
}

.dropdown-item:hover i {
    color: var(--accent-color);
}

.dropdown-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Scrollbar styling for dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 8px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 8px 8px 0;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.btn-success {
    background-color: #25d366;
    border-color: #25d366;
}

.btn-success:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* navbar active css start*/
.nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active {
    color: var(--secondary-color) !important;
    font-weight: 600;
    position: relative;
}

.nav-link.active:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--secondary-color);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content h1 {
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: white;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 2rem;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-box p {
    color: var(--text-muted);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

/* Services Section */
.services-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
}

.service-card:hover .service-icon {
    transform: rotate(10deg);
}

/* Testimonials */
.testimonial-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--text-light);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-card h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 0;
}

.testimonial-card small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.testimonial-card .fa-star {
    margin-right: 2px;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* About Section */
#about {
    background-color: white;
    padding: 100px 0;
}

#about h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

#about p {
    color: var(--text-color);
    margin-bottom: 15px;
}

/* Form Styles */
.form-control {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 214, 0.25);
}

/* Contact Section */
#contact {
    background-color: var(--light-color);
    padding: 100px 0 0;
}

#contact .card {
    background-color: white;
    border: none;
}

#contact .card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

#contact .card h6 {
    color: var(--secondary-color);
}

#contact .card p {
    color: var(--text-muted);
}

/* Footer */
.footer-section {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-section a {
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-section .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-section .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sticky WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: var(--secondary-color);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* preloader css start */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.preloader-content {
    text-align: center;
}

.preloader-content h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.preloader-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* preloader css end */