/* Global Styles */
:root {
    --primary-color:rgb(72, 84, 97);
    --secondary-color: #2e3a59;
    --accent-color: #ff6b35;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #f0f0f0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}



/* Banner Styles */
.banner {
    background: linear-gradient(rgba(46, 58, 89, 0.8), rgba(46, 58, 89, 0.9)), url('./assets/banner1.jpg') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: #fff;
}

.banner-content {
    padding-right: 30px;
}

.banner-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.quote-form {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.quote-form .card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.quote-form .card-header {
    background-color: var(--primary-color);
    border-bottom: none;
    padding: 20px;
    text-align: center;
}

.quote-form .form-control, 
.quote-form .form-select {
    border-radius: 0.25rem;
    padding: 12px 15px;
    height: auto;
    border: 1px solid #ddd;
    font-size: 0.9rem;
}

.quote-form textarea.form-control {
    min-height: 100px;
}

.quote-form .btn-primary {
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.feature-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
  }
  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
  .feature-icon i {
    padding: 15px;
    border-radius: 50%;
    background: #f8f9fa;
    transition: 0.3s;
  }
  .feature-card:hover .feature-icon i {
    background: #10416A;
    color: #fff !important;
    transform: scale(1.1);
  }
  .feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
  }
/* About Section */
.about {
    background-color: var(--gray-color);
}

/* Testimonials Section */
.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    margin-bottom: 0;
    font-weight: 600;
}
/* ============================================================================ */
 #industries .section-title {
    font-weight: 700;
    font-size: 2rem;
  }
  #industries .section-subtitle {
    color: #666;
    font-size: 1.1rem;
  }
  .industry-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
  }
  .industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .industry-icon {
    color: #10416A;
    transition: 0.3s;
  }
  .industry-card:hover .industry-icon {
    color: #198754; /* Changes color on hover */
    transform: scale(1.1);
  }
  .industry-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
  }
  .industry-card p {
    font-size: 0.95rem;
    color: #555;
    min-height: 100px;
  }
/* ====================================================== */
/* Brand Section Styling */
.section-title {
    font-weight: 700;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #10416A, #83b3ff);
    margin: 0 auto;
    margin-top: 10px;
}

.brand-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border: 1px solid #10416A;
}

/* Services Section Styling */
.services-section {
  background: #f9fafc;
}

.services-section h2 {
  color: #212529;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #10416A;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
}
/* Button Styles */
.btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #1a63a2;
    border-color: #1a63a2;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #23304b;
    border-color: #23304b;
}

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

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .banner {
        padding: 80px 0;
    }
    
    .banner-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .navbar-collapse {
        background-color: var(--dark-color);
        padding: 15px;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


 /* Enhanced FAQ styling */
 .faq-accordion .accordion-item {
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    transform: translateY(-3px);
}

.faq-accordion .accordion-button {
    font-size: 1.1rem;
}


.faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--accent-color) !important;
}

.faq-accordion .accordion-body {
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
    padding: 1.5rem;
}

@media (max-width: 767px) {
    .faq-accordion .accordion-button {
        font-size: 1rem;
    }
}

.projects-section {
  background-color: #f9fafb;
}

.projects-section h2 {
  font-weight: 700;
  color: #212529;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.project-card h5 {
  font-weight: 600;
  color: #0d6efd;
}

.project-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 767.98px) {
  .project-card {
    padding: 1.5rem;
  }
}