/* Base Styles */
:root {
    --primary-color: #0077b6;
    --secondary-color: #00b4d8;
    --dark-color: #002244;
    --light-color: #f8f9fa;
    --accent-color: #ff6b35;
    --text-color: #333;
    --text-light: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --font-primary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}
/* General Styles */


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: #004494;
  border-color: #004494;
}

.btn-outline-theme {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-theme:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.section-title {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.section-subtitle {
  color: var(--gray-color);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Header Styles */
.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white-color);
  padding: 150px 0;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Services Section */
.services-section {
  background-color: var(--white-color);
}

.service-card {
  background: var(--white-color);
  border-radius: 8px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
}

.service-link:hover {
  color: var(--secondary-color);
}

/* Projects Section */
.projects-section {
  background-color: var(--light-color);
}

.project-card {
  background: var(--white-color);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.project-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-card p {
  color: var(--gray-color);
  margin-bottom: 5px;
}

.project-card small {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Competency Section */
.competency-section {
  background-color: var(--white-color);
}

.competency-points {
  margin-top: 30px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.point-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.point-item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Evaluation Section */
.evaluation-section {
  background-color: var(--dark-color);
}

.evaluation-section .section-title {
  color: var(--white-color);
}

.evaluation-section p {
  color: rgba(255, 255, 255, 0.8);
}

.evaluation-benefits {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.benefit-icon {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-right: 15px;
}

.benefit-item h4 {
  color: var(--white-color);
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.benefit-item p {
  margin-bottom: 0;
}

/* Equipment Section */
.equipment-section {
  background-color: var(--white-color);
}

.equipment-category {
  background: var(--light-color);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
}

.equipment-category h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.equipment-category h3 i {
  margin-right: 10px;
}

.equipment-list {
  list-style-type: none;
  padding-left: 0;
}

.equipment-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.equipment-list li:last-child {
  border-bottom: none;
}

/* Certification Section */
.certification-section {
  background-color: var(--light-color);
}

.certification-badges {
  margin-top: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.badge-icon {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-right: 15px;
}

.badge-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.badge-item p {
  color: var(--gray-color);
  margin-bottom: 0;
}

.achievement {
  display: flex;
  align-items: center;
  padding: 15px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.achievement i {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-right: 15px;
}

.achievement p {
  margin-bottom: 0;
  font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: var(--white-color);
}

.accordion-button {
  font-weight: 600;
  padding: 15px;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 86, 179, 0.1);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 86, 179, 0.2);
}

.accordion-body {
  padding: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box {
  background: var(--light-color);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color);
}

.contact-section .section-title {
  color: var(--white-color);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.9);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.info-item h5 {
  color: var(--white-color);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.info-item p {
  margin-bottom: 0;
}

.contact-form {
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.form-control, .form-select {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

.btn-light {
  background-color: var(--white-color);
  color: var(--primary-color);
  font-weight: 600;
}

.btn-light:hover {
  background-color: #e2e6ea;
  color: var(--primary-color);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 50px 0 20px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

.footer-links ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-section {
    padding: 100px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-section .row > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}
body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Theme Colors */
.theme-color {
    color: var(--primary-color);
}

.theme-bg {
    background-color: var(--primary-color);
    color: var(--white);
}

.secondary-bg {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Buttons */
.btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
}

.btn-theme {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-theme:hover {
    background-color: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-theme {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-theme:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--primary-color) !important;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    color: var(--white) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--white);
    bottom: 0;
    left: 15px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: rgba(0, 180, 216, 0.1);
    color: var(--primary-color);
}

/* Hero Carousel */
.carousel {
    margin-top: 80px;
}

.carousel-item {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 100px;
    text-align: left;
    left: 10%;
    right: 10%;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    border: none;
}

/* Quick Stats */
.quick-stats {
    background-color: var(--light-color);
    padding: 40px 0;
}

.stat-item {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0;
}

.stat-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.3);
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    margin-bottom: 0;
    text-align: center;
}

.about-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 15px;
}

.feature-item span {
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: var(--white);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card:hover .service-link {
    color: var(--white);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: var(--transition);
}

/* Industries Section */
.industries-section {
    padding: 80px 0;
    background-color: var(--white);
}

.industry-item {
    text-align: center;
    padding: 30px 15px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.industry-item:hover {
    background-color: var(--light-color);
    transform: translateY(-5px);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.industry-item:hover .industry-icon {
    background-color: var(--primary-color);
}

.industry-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.industry-item:hover .industry-icon i {
    color: var(--white);
}

.industry-item p {
    font-weight: 500;
    margin-bottom: 0;
    transition: var(--transition);
}

.industry-item:hover p {
    color: var(--primary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.05), rgba(0, 119, 182, 0.05));
}

.accordion-item {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    background-color: var(--white);
    font-weight: 500;
    padding: 20px;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
}

.accordion-button:not(.collapsed) i {
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button i {
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-body {
    padding: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 180, 216, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: var(--white);
}

.client-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo {
    flex: 0 0 calc(16.666% - 30px);
    padding: 20px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(11, 37, 63, 0.8), rgba(103, 138, 192, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.cta-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Contact Info Section */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.contact-info-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-info-card h4 {
    margin-bottom: 15px;
}

.contact-info-card p {
    margin-bottom: 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-icon {
    font-size: 2rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    position: relative;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    border-radius: 50px;
    padding: 12px 25px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 80px;
}

.back-to-top:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 1s ease forwards;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .carousel-caption h2 {
        font-size: 2.5rem;
    }
    
    .client-logo {
        flex: 0 0 calc(20% - 20px);
    }
}

@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .carousel-item {
        height: 70vh;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .client-logo {
        flex: 0 0 calc(25% - 20px);
    }
}

@media (max-width: 767.98px) {
    .navbar {
        padding: 10px 0;
    }
    
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        bottom: 50px;
    }
    
    .carousel-caption h2 {
        font-size: 1.8rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge span {
        font-size: 2rem;
    }
    
    .client-logo {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 575.98px) {
    .carousel-item {
        height: 50vh;
        min-height: 350px;
    }
    
    .carousel-caption {
        bottom: 30px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .client-logo {
        flex: 0 0 calc(50% - 15px);
    }
}
