:root {
    --primary-color: #110b03;
    --secondary-color: #f69712;
    --light-color: #f8f9fa;
    --dark-color: rgb(255, 142, 12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 70px;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar .nav-link {
    padding: 15px 50px;
    transition: color 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
        background-color: var(--light-color);
        border-bottom: 5px solid rgba(0, 0, 0, 0.1);
        padding: 50px 0;       

}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

/* Services */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--secondary-color);
    border-radius: 0.25rem;
    padding: 0px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us */
.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonials i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
}

/* About Page */
.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Team */
.team-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    border-radius: 0.25rem 0.25rem 0 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
}

/* Contact Page */
.contact-info i {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Buttons */
.btn{
    background-color: rgb(255, 162, 0);
    color:black;
    text-transform: uppercase;
    font-weight: bold;
    border:2px solid rgb(255, 255, 255);
    padding: 10px 20px;
    

}
.btn:hover{
    background-color: rgb(255, 255, 255);
    color:rgb(2, 2, 2);
    border:2px solid rgb(255, 162, 0);
    text-transform: uppercase;
}


/* Utility Classes */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-section img {
        margin-top: 30px;
    }
}
.nav-link{
    color:#ffffff !important;
    font-size: 18px;
    text-transform: uppercase;
}
.nav-link:hover{
    color:var(--secondary-color) !important;
    transition: all 0.3s ease;
    transform: scale(1.1);
}
.image{
    width:100%;
    height:450px;
    object-fit:cover;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
}

.feature-card {
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-icon i {
    line-height: 1;
}

/* About Us Section */
.about-us-section {
    background-color: #f8f9fa;
}

.section-title {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.feature-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Image Grid Styling */
.about-us-section img {
    transition: transform 0.3s ease;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.about-us-section img:hover {
    transform: scale(1.03);
}

@media (max-width: 767.98px) {
    .about-us-section img {
        height: 120px;
    }
}

/* FAQ Section */
.faq-section .accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    background-color: white;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(255, 214, 58, 0.1);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    background-color: white;
}

.faq-section .accordion-body ul {
    padding-left: 1rem;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
}

/* Scroll Animation Styles */
.section-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animations for staggered effect */
.delay-1 {
    transition-delay: 0.2s;
}
.delay-2 {
    transition-delay: 0.3s;
}
.delay-3 {
    transition-delay: 0.4s;
}
.delay-4 {
    transition-delay: 0.6s;
}
/* Hero Section Animation */
.hero-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sitemap Page Styles */
.sitemap-section {
    background-color: #f8f9fa;
}

.sitemap-list ul li a {
    transition: all 0.3s ease;
    border-radius: 5px;
    color: var(--primary-color);
}

.sitemap-list ul li a:hover {
    background-color: rgba(15, 15, 15, 0.05);
    padding-left: 15px;
    color: var(--primary-color);
}

.sitemap-list h3 {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.sitemap-list h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}
button:hover{
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    border:2px solid var(--secondary-color) !important;
    transition: all 0.3s ease;
}



.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

.whatsapp-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp-widget i {
  color: white;
  font-size: 36px;
}

/* Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
  40% {transform: translateY(-15px);}
  60% {transform: translateY(-10px);}
}

.whatsapp-widget a {
  animation: bounce 2s ease-in-out;
}