/* customizations */

.about-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }
    .about-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #004085;
      /* margin-bottom: 30px; */
    }
    .about-section p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333;
    }
    .highlight {
      color: #0d6efd;
      font-weight: 600;
    }
    .about-img {
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      max-height: 100%;
      object-fit: cover;
    }

    .services-section {
      background: #ffffff;
      padding: 60px 0;
    }
    .services-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      color: #004085;
      margin-bottom: 40px;
    }
    .service-box {
      background-color: #f8f9fa;
      padding: 30px 20px;
      text-align: center;
      border-radius: 12px;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    }
    .service-box:hover {
      background-color: #e9ecef;
      transform: translateY(-5px);
    }
    .service-icon {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }
    .service-title {
      font-size: 1.2rem;
      font-weight: 600;
      color: #333;
    }

    .why-choose-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }
    .why-choose-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #004085;
      text-align: center;
      margin-bottom: 40px;
    }
    .why-box {
      background-color: #ffffff;
      padding: 30px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
      height: 100%;
    }
    .why-box:hover {
      background-color: #e9ecef;
      transform: translateY(-5px);
    }
    .why-icon {
      font-size: 40px;
      color: #0d6efd;
      margin-bottom: 15px;
    }
    .why-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }
    .why-text {
      font-size: 0.95rem;
      color: #555;
    }

    .cta-section {
      background: linear-gradient(135deg, #004085, #0d6efd);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0;
    }
    .cta-section h2 {
      font-size: 2.2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .cta-section p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }
    .cta-section .btn {
      font-size: 1rem;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
    }

    .testimonial-section {
      background-color: #f8f9fa;
      padding: 60px 0;
    }
    .testimonial-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      color: #004085;
      text-align: center;
      margin-bottom: 40px;
    }
    .testimonial-box {
      background-color: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
      transition: 0.3s ease-in-out;
      height: 100%;
    }
    .testimonial-box:hover {
      transform: translateY(-5px);
    }
    .testimonial-box .quote-icon {
      font-size: 30px;
      color: #0d6efd;
      margin-bottom: 15px;
    }
    .testimonial-text {
      font-style: italic;
      color: #555;
      margin-bottom: 20px;
    }
    .testimonial-author {
      font-weight: 600;
      color: #333;
    }
    .testimonial-position {
      font-size: 0.9rem;
      color: #888;
    }

    .faq-section {
      background-color: #ffffff;
      padding: 60px 0;
    }
    .faq-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      text-align: center;
      color: #004085;
      margin-bottom: 40px;
    }
    .accordion-button {
      font-weight: 600;
      color: #004085;
    }
    .accordion-button:focus {
      box-shadow: none;
    }
    .accordion-item {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    /* About Content */
.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Mission and Vision Boxes */
.mission-vision-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.mission-vision-box:hover {
    transform: translateY(-5px);
}

/* Features List */
.features-box {
    background-color: #f1f3f5;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}
.features-box:hover {
    background-color: #0a58ca;
    color: #fff;
    transform: scale(1.03);
}
.features-box i {
    font-size: 2rem;
    color: #0a58ca;
    margin-bottom: 10px;
}
.features-box:hover i {
    color: #fff;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #0d6efd, #0a58ca);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.cta-section .btn-outline-light {
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 25px;
}

/* Topbar Styles */
.topbar {
    background: #3498db;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.topbar small {
    transition: color 0.3s ease;
}

.topbar small:hover {
    color: #f1c40f !important;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

/* Logo hover effect */
.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    font-weight: 500;
    color: #2c3e50 !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    /* background-color: #3498db; */
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Dropdown hover functionality */
.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease;
}

/* Animation for smooth dropdown appearance */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional styling for better hover experience */
.navbar .dropdown-menu {
    margin-top: 0;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.navbar .dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 2rem;
    color: #0d6efd;
}

/* Dropdown Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #3498db;
    padding-left: 2rem;
}

/* Call Now Button */
.btn-primary {
    background: linear-gradient(45deg, #3498db, #2980b9);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
    background: linear-gradient(45deg, #2980b9, #3498db);
}

/* Sticky Navbar Effect */
.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* xampp\htdocs\nishko\css\style.css */
#heroCarousel {
    margin-bottom: 3rem;
}

#heroCarousel .carousel-item {
    height: 70vh;
}

#heroCarousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
}

#heroCarousel .carousel-caption {
    bottom: 20%;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

#heroCarousel .carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

#heroCarousel .carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

#heroCarousel .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

#heroCarousel .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

#heroCarousel .carousel-indicators {
    bottom: 30px;
}

#heroCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Base Floating Button Styles */
.floating-btn {
    position: fixed !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    z-index: 9999 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    font-size: 24px;
    cursor: pointer;
    border: none;
    outline: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25d366 !important;
    color: white !important;
    bottom: 30px;
    right: 30px;
}

.whatsapp-btn:hover {
    background: #128c7e !important;
    color: white !important;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Call Button */
.call-btn {
    background: #007bff !important;
    color: white !important;
    bottom: 30px;
    left: 30px;
}

.call-btn:hover {
    background: #0056b3 !important;
    color: white !important;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

/* Back to Top Button */
.back-to-top-btn {
    background: #6c757d !important;
    color: white !important;
    bottom: 110px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.back-to-top-btn:hover {
    background: #495057 !important;
    color: white !important;
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.back-to-top-btn.show {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Icon Styling */
.floating-btn i {
    font-size: 24px;
    line-height: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .floating-btn i {
        font-size: 20px;
    }
    
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .call-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .back-to-top-btn {
        bottom: 85px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
    
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .call-btn {
        bottom: 15px;
        left: 15px;
    }
    
    .back-to-top-btn {
        bottom: 75px;
        right: 15px;
    }
}

/* Animation for button appearance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-btn {
    animation: fadeInUp 0.5s ease-out;
}

/* Pulse animation for WhatsApp button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    animation: pulse 2s infinite;
}

/* Remove link styling */
.floating-btn:link,
.floating-btn:visited,
.floating-btn:active,
.floating-btn:focus {
    text-decoration: none !important;
    color: white !important;
}