/*<!-- CSS with unique TISO class names to avoid conflicts -->

/* TISO Services Section Specific Styles */
#tiso-services-section {
  padding: 80px 0;
}

/* TISO Icon Container */
.tiso-icon-container {
  width: 60px;
  height: 60px;
  background-color: rgba(41, 126, 189, 0.1);
  transition: all 0.4s ease;
}

/* TISO Service Card Styling */
.tiso-service-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.tiso-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(41, 126, 189, 0.1) !important;
}

.tiso-service-card:hover .tiso-icon-container {
  transform: scale(1.1);
}

/* TISO Hover Element for Learn More */
.tiso-hover-element {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
}

.tiso-service-card:hover .tiso-hover-element {
  bottom: 20px;
  opacity: 1;
}

/* TISO Custom Button Styling */
.tiso-primary-btn {
  background-color: #297ebd;
  border-color: #297ebd;
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(41, 126, 189, 0.3);
  transition: all 0.3s ease;
}

.tiso-primary-btn:hover {
  background-color: #75b407;
  border-color: #75b407;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 126, 189, 0.4);
}

/* TISO Animation Keyframes */
@keyframes tisoFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* TISO Media Queries for Responsiveness */
@media (max-width: 992px) {
  .tiso-service-card {
    padding: 1.5rem;
  }
  
  .tiso-icon-container {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .tiso-service-card {
    margin-bottom: 1rem;
  }
  
  .tiso-service-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .tiso-divider {
    width: 50px;
  }
}

/* TISO Animation Classes */
.tiso-service-item {
  opacity: 0;
  animation: tisoFadeInUp 0.6s ease forwards;
}

.tiso-service-item:nth-child(1) {
  animation-delay: 0.1s;
}

.tiso-service-item:nth-child(2) {
  animation-delay: 0.2s;
}

.tiso-service-item:nth-child(3) {
  animation-delay: 0.3s;
}

.tiso-service-item:nth-child(4) {
  animation-delay: 0.4s;
}

.tiso-service-item:nth-child(5) {
  animation-delay: 0.5s;
}

.tiso-service-item:nth-child(6) {
  animation-delay: 0.6s;
}

/* <!-- CSS Styles for Services Section --> */

:root {
  /* 60-30-10 color rule */
  --primary-color: #297ebd; /* Primary - 60% */
  --secondary-color: #75b407; /* Secondary - 30% */
  --accent-color: #f8f9fa; /* Accent - 10% */
  --text-dark: #343a40;
  --text-light: #f8f9fa;
  --hover-primary: #1c5c8c;
  --hover-secondary: #5a8c06;
}

/* Header styling */
.services-header {
  background-color: var(--accent-color);
  padding: 3rem 0;
}

.services-header h2 {
  color: var(--primary-color);
  font-weight: 700;
}

.divider-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.divider-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

.divider-icon {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin: 0 15px;
}

/* Individual service section styling */
.service-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  transition: all 0.3s ease;
}

.service-section:nth-child(odd) {
  background-color: #ffffff;
}

.service-section:nth-child(even) {
  background-color: var(--accent-color);
}

.service-content {
  padding: 2rem;
  position: relative;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-content h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.service-content h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 4px;
}

.service-description {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
}

.service-features li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary-color);
  position: absolute;
  left: 0;
}

.feature-highlight {
  font-weight: 700;
  color: var(--primary-color);
  margin-right: 5px;
}

/* Service image styling */
.service-image-container {
  position: relative;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

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

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(41, 126, 189, 0.7), rgba(117, 180, 7, 0.7));
  opacity: 0.8;
}

.image-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 2;
}

.image-content h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.image-content p {
  font-size: 1.1rem;
  max-width: 80%;
}

/* Service background images */
.quality-bg {
  background: url('/api/placeholder/800/500') center/cover no-repeat;
}

.environmental-bg {
  background: url('/api/placeholder/800/501') center/cover no-repeat;
}

.food-bg {
  background: url('/api/placeholder/800/502') center/cover no-repeat;
}

.security-bg {
  background: url('/api/placeholder/800/503') center/cover no-repeat;
}

.medical-bg {
  background: url('/api/placeholder/800/504') center/cover no-repeat;
}

.it-bg {
  background: url('/api/placeholder/800/505') center/cover no-repeat;
}

.pharma-bg {
  background: url('/api/placeholder/800/506') center/cover no-repeat;
}

.education-bg {
  background: url('/api/placeholder/800/507') center/cover no-repeat;
}

.bcms-bg {
  background: url('/api/placeholder/800/508') center/cover no-repeat;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.cta-section h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Button styling */
.custom-btn-primary {
  background-color: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.custom-btn-primary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-section .custom-btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.service-section .custom-btn-primary:hover {
  background-color: var(--hover-primary);
  color: white;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .service-content {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 2rem;
  }
  
  .service-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .service-section {
    padding: 3rem 0;
  }
  
  .service-image-container {
    margin-top: 2rem;
    min-height: 250px;
  }
  
  .service-image {
    height: 250px;
  }
  
  .order-lg-2 {
    order: 0;
  }
  
  .order-lg-1 {
    order: 1;
  }
}

@media (max-width: 576px) {
  .divider-line {
    width: 50px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-icon i {
    font-size: 1.5rem;
  }
  
  .service-content h3 {
    font-size: 1.5rem;
  }
  
  .image-content h4 {
    font-size: 1.7rem;
  }
}


/* <!-- CSS for Footer Section --> */

:root {
  --primary-color: #297ebd;    /* 60% - Primary blue */
  --secondary-color: #75b407;  /* 30% - Secondary green */
  --accent-color: #f5f5f5;     /* 10% - Light gray accent */
  --dark-text: #333333;
  --light-text: #ffffff;
  --dark-blue: #1c6ca9;
  --dark-green: #5a8d06;
  --footer-bg: #222a36;
  --footer-border: rgba(255, 255, 255, 0.08);
}

/* Footer Main Styles */
.footer-section {
  position: relative;
  overflow: hidden;
  color: var(--light-text);
}

.footer-wave {
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  width: 100%;
  height: 120px;
}

.footer-main {
  background-color: var(--footer-bg);
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
}

.footer-main:before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(41, 126, 189, 0.05);
  top: -150px;
  left: -150px;
  z-index: 0;
}

.footer-main:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(117, 180, 7, 0.05);
  bottom: -100px;
  right: -100px;
  z-index: 0;
}

/* Company Info Styles */
.footer-company-info {
  position: relative;
}

.footer-logo {
  margin-bottom: 25px;
  max-width: 180px;
}

.footer-logo img {
  max-height: 60px;
}

.footer-social {
  display: flex;
  margin-top: 20px;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.social-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), var(--dark-green));
  transition: all 0.3s ease;
  opacity: 0;
}

.social-btn i {
  position: relative;
  z-index: 1;
}

.social-btn:hover {
  transform: translateY(-5px);
  color: white;
}

.social-btn:hover:before {
  opacity: 1;
}

/* Footer Widget Styles */
.footer-widget {
  position: relative;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}

.footer-title:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 35px;
  bottom: 0;
  width: 15px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 3px;
}

/* Footer Links Styles */
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
}

.footer-link i {
  opacity: 0;
  margin-right: 8px;
  transition: all 0.3s ease;
  transform: translateX(-5px);
  color: var(--secondary-color);
  font-size: 12px;
}

.footer-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-link:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Info Styles */
.footer-contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  gap:2%;
}

.contact-item i {
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.contact-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.contact-item:hover i {
  color: var(--secondary-color);
  transform: scale(1.2);
}

/* Newsletter Bar Styles */
.footer-newsletter {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-newsletter:before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  top: -100px;
  right: -100px;
  z-index: -1;
}

.footer-newsletter:after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -75px;
  left: -75px;
  z-index: -1;
}

.newsletter-form .form-control {
  height: 50px;
  border-radius: 25px 0 0 25px;
  border: none;
  padding-left: 20px;
  font-size: 15px;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  border: none;
}

.newsletter-btn {
  border-radius: 0 25px 25px 0;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  padding: 0 25px;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.newsletter-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--dark-green);
  z-index: -1;
  transition: width 0.3s ease;
}

.newsletter-btn:hover {
  color: white;
}

.newsletter-btn:hover:before {
  width: 100%;
}

/* Footer Bottom Styles */
.footer-bottom {
   background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
  padding: 20px 0;
  border-top: 1px solid var(--footer-border);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.footer-bottom-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links li {
  position: relative;
}

.footer-bottom-links li:not(:last-child):after {
  content: '|';
  position: absolute;
  right: -12px;
  top: 0;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-widget, .footer-company-info, .footer-newsletter .row > div {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.footer-contact-info .contact-item {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.footer-contact-info .contact-item:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-contact-info .contact-item:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-contact-info .contact-item:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-contact-info .contact-item:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-links li {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.footer-links li:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-links li:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-links li:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-links li:nth-child(4) {
  animation-delay: 0.4s;
}

.footer-links li:nth-child(5) {
  animation-delay: 0.5s;
}

.social-btn {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.social-btn:nth-child(1) {
  animation-delay: 0.1s;
}

.social-btn:nth-child(2) {
  animation-delay: 0.2s;
}

.social-btn:nth-child(3) {
  animation-delay: 0.3s;
}

.social-btn:nth-child(4) {
  animation-delay: 0.4s;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-newsletter .row > div {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .newsletter-form .form-control {
    border-radius: 25px;
    margin-bottom: 15px;
  }
  
  .newsletter-form .newsletter-btn {
    border-radius: 25px;
    width: 100%;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 10px;
  }
  
  .footer-widget {
    text-align: center;
  }
  
  .footer-title:before, .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-title:before {
    width: 30px;
    margin-left: -7.5px;
  }
  
  .footer-title:after {
    width: 15px;
    margin-left: 15px;
  }
  
  .contact-item {
    justify-content: center;
    padding-left: 0;
    padding-top: 25px;
  }
  
  .contact-item i {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item:hover i {
    transform: translateX(-50%) scale(1.2);
  }
  
  .footer-link i {
    opacity: 1;
    transform: translateX(0);
  }
}


/* <!-- Properly formatted CSS with correct syntax --> */

:root {
  /* 60-30-10 color rule */
  --primary-color: #297ebd; /* Primary - 60% */
  --secondary-color: #75b407; /* Secondary - 30% */
  --accent-color: #f8f9fa; /* Accent - 10% */
  --text-dark: #343a40;
  --text-light: #f8f9fa;
  --hover-primary: #1c5c8c;
  --hover-secondary: #5a8c06;
}

/* Base styling */
.services-section {
  background-color: var(--accent-color);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.services-section h2 {
  color: var(--primary-color);
  position: relative;
  margin-bottom: 0.75rem;
}

.divider-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
}

.divider-line {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 4px;
}

.divider-icon {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin: 0 12px;
}

/* Tabs styling */
.service-tabs-container {
  padding-bottom: 1rem;
}

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border: none;
}

.service-tabs .nav-link {
  color: var(--text-dark);
  background-color: transparent;
  border: 1px solid #e9ecef;
  border-radius: 30px;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-tabs .nav-link:hover {
  background-color: rgba(41, 126, 189, 0.1);
}

.service-tabs .nav-link.active {
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: 1px solid transparent;
  box-shadow: 0 4px 10px rgba(41, 126, 189, 0.25);
}

/* Service item styling */
.service-item {
  margin-bottom: 1rem;
}

.service-chip {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-left: 3px solid var(--primary-color);
}

.service-chip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-chip:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-chip:hover::before {
  opacity: 1;
}

.service-chip:hover .service-title,
.service-chip:hover .service-desc {
  color: white;
}

.service-chip:hover .service-icon {
  background-color: white;
}

.service-chip:hover .service-icon i {
  color: var(--primary-color);
}

.service-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(41, 126, 189, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-content {
  flex: 1;
}

.service-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.service-desc {
  color: var(--text-dark);
  font-size: 0.9rem;
  margin-bottom: 0;
  transition: all 0.3s ease;
}

.custom-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(41, 126, 189, 0.3);
  transition: all 0.3s ease;
}

.custom-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(41, 126, 189, 0.4);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .service-chip {
    padding: 0.8rem;
  }
  
  .service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
  
  .service-icon i {
    font-size: 1.2rem;
  }
  
  .service-title {
    font-size: 0.95rem;
  }
  
  .service-desc {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .service-tabs .nav-link {
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .divider-line {
    width: 50px;
  }
  
  .service-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}


/* servies */
/* <!-- CSS only inside style tags --> */

/* Icon Wrapper */
.icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(41, 126, 189, 0.1);
  transition: all 0.4s ease;
}

/* Service Card Styling */
.service-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(41, 126, 189, 0.1) !important;
}

.service-card:hover .icon-wrapper {
  transform: scale(1.1);
}

/* Service Hover Effect */
.service-hover {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 0;
}

.service-card:hover .service-hover {
  bottom: 20px;
  opacity: 1;
}

/* Custom Button Styling */
.custom-btn-primary {
  background-color: var(--primary-color, #297ebd);
  border-color: var(--primary-color, #297ebd);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(41, 126, 189, 0.3);
  transition: all 0.3s ease;
}

.custom-btn-primary:hover {
  background-color: var(--hover-primary, #75b407);
  border-color: var(--hover-primary, #75b407);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(41, 126, 189, 0.4);
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .service-card {
    padding: 1.5rem;
  }
  
  .icon-wrapper {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1rem;
  }
  
  .service-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .divider-line {
    width: 50px;
  }
}

/* Animation Classes */
.service-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.service-item:nth-child(1) {
  animation-delay: 0.1s;
}

.service-item:nth-child(2) {
  animation-delay: 0.2s;
}

.service-item:nth-child(3) {
  animation-delay: 0.3s;
}

.service-item:nth-child(4) {
  animation-delay: 0.4s;
}

.service-item:nth-child(5) {
  animation-delay: 0.5s;
}

.service-item:nth-child(6) {
  animation-delay: 0.6s;
}


/* sevices */
/* <!-- Required CSS --> */

  /* Custom Variables */
  :root {
    --primary-color: #297ebd;   /* 60% */
    --secondary-color: #75b407; /* 30% */
    --accent-color: #e0e0e0;    /* 10% */
  }
  
  /* Service Section Styles */
  .service-section {
    background-color: #f8f9fa;
  }
  
  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
  }
  
  .service-icon-wrapper {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(41, 126, 189, 0.1);
  }
  
  .service-card:hover .service-icon-wrapper {
    background-color: rgba(41, 126, 189, 0.2);
  }
  
  .animate-icon {
    transition: transform 0.5s ease;
  }
  
  .service-card:hover .animate-icon {
    transform: rotate(10deg) scale(1.1);
  }
  
  .service-title {
    transition: color 0.3s ease;
  }
  
  .service-card:hover .service-title {
    color: var(--secondary-color) !important;
  }
  
  .service-btn {
    transition: all 0.3s ease;
  }
  
  .service-btn:hover {
    background-color: var(--secondary-color) !important;
    transform: translateX(5px);
  }
  
  /* Nav Pills Custom Style */
  .nav-pills .nav-link {
    border-radius: 8px;
    color: #333;
    border-left: 4px solid transparent;
    background-color: #f1f1f1;
    transition: all 0.3s ease;
  }
  
  .nav-pills .nav-link:hover {
    border-left-color: var(--secondary-color);
    background-color: #e9e9e9;
  }
  
  .nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: white;
    border-left-color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(41, 126, 189, 0.2);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 767px) {
    .service-icon-wrapper {
      width: 100px !important;
      height: 100px !important;
      margin: 0 auto;
    }
    
    .col-md-5 {
      text-align: center;
    }
    
    .service-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
  }


/* about us css */
    :root {
      --primary-color: #297ebd;
      --secondary-color: #75b407;
      --dark-color: #212529;
      --light-color: #f8f9fa;
      --gray-color: #eeeeee;
    }
    
    .about-us {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
    }
    
    .text-primary {
      color: var(--primary-color) !important;
    }
    
    .text-secondary {
      color: var(--secondary-color) !important;
    }
    
    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
    }
    
    .btn-primary:hover {
      background-color: #1c6ca9;
      border-color: #1c6ca9;
    }
    
    .btn-outline-secondary {
      color: var(--secondary-color);
      border-color: var(--secondary-color);
    }
    
    .btn-outline-secondary:hover {
      background-color: var(--secondary-color);
      color: white;
    }
    
    .divider {
      height: 4px;
      width: 60px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      margin-bottom: 30px;
    }
    
    .card {
      border-radius: 15px;
      transition: all 0.3s ease;
    }
    
    .card:hover {
      transform: translateY(-10px);
    }
    
    .overlay-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 50%;
      background: linear-gradient(to top, rgba(41, 126, 189, 0.7), transparent);
      border-radius: 0 0 15px 15px;
    }
    
    .logo-watermark {
      position: absolute;
      bottom: 20px;
      right: 20px;
      opacity: 0.9;
      transition: all 0.3s ease;
    }
    
    .logo-watermark img {
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .about-content {
      padding: 20px;
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: rgba(117, 180, 7, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }
    
    .feature-item {
      transition: all 0.3s ease;
      padding: 15px;
      border-radius: 10px;
    }
    
    .feature-item:hover {
      background-color: #f8f9fa;
      transform: translateX(5px);
    }
    
    .counter-section {
      position: relative;
      border-radius: 20px;
      background-color: #f8f9fa;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    
    .counter-item {
      position: relative;
      padding: 20px;
    }
    
    .counter {
      font-size: 3rem;
      font-weight: 700;
      display: inline-block;
    }
    
    .counter-item span {
      font-size: 2rem;
    }
    
    @media (max-width: 768px) {
      .counter {
        font-size: 2.5rem;
      }
      
      .counter-item span {
        font-size: 1.5rem;
      }
    }
    
    /* Animation for counters */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Floating animation for card */
    @keyframes float {
      0% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
      100% {
        transform: translateY(0px);
      }
    }
    
    .card {
      animation: float 5s ease-in-out infinite;
    }


/* contact us css */

/* <!-- CSS for Contact Section with Fixed Icon Alignment --> */
:root {
  --primary-color: #297ebd;    /* 60% - Primary blue */
  --secondary-color: #75b407;  /* 30% - Secondary green */
  --accent-color: #f5f5f5;     /* 10% - Light gray accent */
  --dark-text: #333333;
  --light-text: #ffffff;
}

.text-primary-color {
  color: var(--primary-color);
}

.text-secondary-color {
  color: var(--secondary-color);
}

.contact-section {
  position: relative;
  background-color: var(--accent-color);
  overflow: hidden;
}

/* Decorative elements */
.contact-section:before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(41, 126, 189, 0.05);
  top: -150px;
  left: -150px;
  z-index: 0;
}

/* Section divider */
.divider-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-line {
  width: 80px;
  height: 4px;
  border-radius: 2px;
}

/* Cards styling */
.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card {
  height: 100%;
  border: none;
}

/* Form styling - FIXED ICON ALIGNMENT */
.form-group {
  position: relative;
}

.form-control, .form-select {
  height: 55px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 10px 15px 10px 50px; /* Added left padding for icon */
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(41, 126, 189, 0.25);
  border-color: var(--primary-color);
  background-color: #fff;
}

textarea.form-control {
  min-height: 120px;
  padding-top: 40px; /* Increased top padding for textarea */
  resize: none;
}

/* Fixed icon positioning */
.input-icon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.input-icon-wrapper i {
  color: var(--primary-color);
  font-size: 18px;
}

/* Special positioning for textarea icon */
.textarea-icon {
  height: 55px;
  align-items: flex-start;
  padding-top: 15px;
}

/* Button styling */
.btn-gradient-primary {
  background: linear-gradient(135deg, var(--primary-color), #1c6ca9);
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-gradient-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-color), #5a8d06);
  z-index: -1;
  transition: width 0.3s ease;
}

.btn-gradient-primary:hover:before {
  width: 100%;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Success message animation */
.success-message {
  animation: scaleIn 0.5s ease-out forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Form animation */
.form-control, select.form-control {
  transform: translateY(0);
  opacity: 1;
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .form-control, .form-select {
    height: 50px;
  }
  
  .input-icon-wrapper {
    height: 50px;
  }
}



/* industries based company */
/* Custom styles for Industries Section */
.industries-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.title-underline {
  height: 4px;
  width: 80px;
  background: linear-gradient(to right, #297ebd, #75b407);
  margin: 0 auto;
  border-radius: 2px;
}

.industries-section h2 {
  color: #297ebd; /* Primary color - 60% */
  position: relative;
}

.industries-section .lead {
  color: #333; /* Neutral color - 30% */
}

.industry-item {
  transition: transform 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-10px);
}

.industry-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.industry-card:hover {
  box-shadow: 0 10px 30px rgba(41, 126, 189, 0.1) !important;
}

.industry-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: rgba(41, 126, 189, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon-wrapper {
  background-color: #297ebd; /* Primary color - 60% */
}

.industry-icon {
  font-size: 32px;
  color: #297ebd; /* Primary color - 60% */
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  color: white;
}

.industry-card h4 {
  color: #333; /* Neutral color - 30% */
  font-weight: 600;
}

.industry-card p {
  color: #666;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.industry-item:nth-child(1) { animation-delay: 0.1s; }
.industry-item:nth-child(2) { animation-delay: 0.2s; }
.industry-item:nth-child(3) { animation-delay: 0.3s; }
.industry-item:nth-child(4) { animation-delay: 0.4s; }
.industry-item:nth-child(5) { animation-delay: 0.5s; }
.industry-item:nth-child(6) { animation-delay: 0.6s; }
.industry-item:nth-child(7) { animation-delay: 0.7s; }
.industry-item:nth-child(8) { animation-delay: 0.8s; }
.industry-item:nth-child(9) { animation-delay: 0.9s; }

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .industry-item {
    animation-delay: 0.1s !important;
  }
}

@media (max-width: 767.98px) {
  .industry-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .industry-icon {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .industry-item {
    margin-bottom: 15px;
  }
}

  :root {
      --primary-color: #297ebd;
      --secondary-color: #75b407;
      --dark-color: #212529;
      --light-color: #f8f9fa;
      --gray-color: #eeeeee;
    }
    
    .why-choose-us {
      position: relative;
      overflow: hidden;
      background-color: #ffffff;
    }
    
    .text-primary {
      color: var(--primary-color) !important;
    }
    
    .text-secondary {
      color: var(--secondary-color) !important;
    }
    
    .bg-primary {
      background-color: var(--primary-color) !important;
    }
    
    .bg-secondary {
      background-color: var(--secondary-color) !important;
    }
    
    .divider {
      height: 4px;
      width: 60px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
      margin-bottom: 30px;
    }
    
    /* Choice Cards */
    .choice-card {
      border-radius: 15px;
      border: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      background-color: white;
    }
    
    .choice-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(41, 126, 189, 0.1);
    }
    
    .choice-card.featured {
      box-shadow: 0 15px 35px rgba(117, 180, 7, 0.1);
      border-top: 4px solid var(--secondary-color);
    }
    
    .icon-wrapper {
      width: 70px;
      height: 70px;
      border-radius: 15px;
      background: linear-gradient(135deg, var(--primary-color), #5da3d8);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    
    .choice-card.featured .icon-wrapper {
      background: linear-gradient(135deg, var(--secondary-color), #a1e030);
    }
    
    .icon-wrapper i {
      font-size: 30px;
      color: white;
      position: relative;
      z-index: 2;
    }
    
    .icon-wrapper:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.2);
      top: -100%;
      left: 0;
      transition: all 0.5s ease;
    }
    
    .choice-card:hover .icon-wrapper:after {
      top: 0;
    }
    
    /* Ribbon */
    .ribbon {
      position: absolute;
      top: 20px;
      right: -30px;
      transform: rotate(45deg);
      width: 150px;
      height: 30px;
      background-color: var(--secondary-color);
      color: white;
      text-align: center;
      font-weight: bold;
      line-height: 30px;
      z-index: 10;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    /* Timeline */
    .timeline {
      position: relative;
      padding-left: 40px;
    }
    
    .timeline:before {
      content: '';
      position: absolute;
      top: 0;
      left: 7px;
      height: 100%;
      width: 2px;
      background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    }
    
    .timeline-item {
      position: relative;
      margin-bottom: 30px;
    }
    
    .timeline-marker {
      position: absolute;
      left: -40px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background-color: var(--primary-color);
      box-shadow: 0 0 0 4px rgba(41, 126, 189, 0.2);
      top: 5px;
    }
    
    .timeline-item:nth-child(even) .timeline-marker {
      background-color: var(--secondary-color);
      box-shadow: 0 0 0 4px rgba(117, 180, 7, 0.2);
    }
    
    .timeline-content {
      padding-bottom: 15px;
    }
    
    /* Hexagon Grid */
    .hexagon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 15px;
      max-width: 450px;
      margin: 0 auto;
    }
    
    .hexagon {
      position: relative;
      width: 100%;
      padding-top: 115%;
      margin-bottom: 20px;
      clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
      background: linear-gradient(135deg, #f5f7fa, #e4e8ec);
      transition: all 0.3s ease;
    }
    
    .hexagon:hover {
      transform: translateY(-10px);
    }
    
    .hexagon:nth-child(3n+2) {
      margin-top: 35px;
    }
    
    .hexagon.featured-hex {
      background: linear-gradient(135deg, var(--primary-color), #5da3d8);
    }
    
    .hexagon-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 15px;
    }
    
    .featured-hex .hexagon-content {
      color: white;
    }
    
    .stat-icon {
      font-size: 24px;
      margin-bottom: 5px;
      color: var(--primary-color);
    }
    
    .featured-hex .stat-icon {
      color: white;
    }
    
    .stat-number {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0;
      color: var(--primary-color);
    }
    
    .featured-hex .stat-number {
      color: white;
    }
    
    .stat-label {
      font-size: 0.8rem;
      margin-bottom: 0;
      font-weight: 500;
    }
    
    /* Testimonial */
    .testimonial-wrapper {
      background-color: var(--light-color);
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      position: relative;
      overflow: hidden;
    }
    
    .testimonial-wrapper:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    }
    
    .quote-icon {
      font-size: 40px;
      color: rgba(41, 126, 189, 0.1);
      margin-bottom: 20px;
    }
    
    .testimonial-control {
      position: absolute;
      right: 20px;
      bottom: 20px;
    }
    
    /* CTA */
    .cta-wrapper {
      border-radius: 15px;
      background: linear-gradient(135deg, var(--primary-color), #1c6ca9);
      box-shadow: 0 15px 35px rgba(41, 126, 189, 0.2);
      position: relative;
      overflow: hidden;
    }
    
    .cta-wrapper:before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      top: -100px;
      left: -100px;
    }
    
    .cta-wrapper:after {
      content: "";
      position: absolute;
      width: 150px;
      height: 150px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      bottom: -75px;
      right: -75px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 991px) {
      .hexagon-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
      }
      
      .hexagon:nth-child(3n+2) {
        margin-top: 0;
      }
      
      .hexagon:nth-child(2n+1) {
        margin-top: 35px;
      }
    }
    
    @media (max-width: 576px) {
      .timeline {
        padding-left: 30px;
      }
      
      .timeline-marker {
        left: -30px;
      }
      
      .testimonial-wrapper {
        padding: 30px 20px;
      }
    }
    
    /* Animations */
    @keyframes float {
      0% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(-10px);
      }
      100% {
        transform: translateY(0px);
      }
    }
    
    .featured-hex {
      animation: float 5s ease-in-out infinite;
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(117, 180, 7, 0.4);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(117, 180, 7, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(117, 180, 7, 0);
      }
    }
    
    .choice-card.featured:hover {
      animation: pulse 2s infinite;
    }



/* text.html */

        :root {
            --primary-color: #297ebd;
            --secondary-color: #75b407;
            --text-color: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
        }
        
        /* Header Styles */
        .header-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        /* Top Bar */
        .top-bar {
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 8px 0;
            font-size: 0.85rem;
        }
        
        .top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
        }
        
        .top-bar a:hover {
            opacity: 0.8;
        }
        
        /* Main Header */
        .main-header {
            background-color: white;
            border-bottom: 1px solid #eee;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 100px;
            
        }
        
        /* Navigation */
        .main-nav {
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
            margin: 0 20px;
        }
        
        .nav-link {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 0;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        
        .nav-link:hover {
            color: var(--primary-color);
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            width: 45px;
            height: 45px;
            border-radius: 10px;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
        }
        
        /* Mega Menu */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            padding: 0;
            width: 1000px;
            max-width: 90vw;
            display: none;
            z-index: 999;
            border: 1px solid #ddd;
            margin-top: 10px;
        }
        
        .mega-menu.show {
            display: block;
        }
        
        .mega-menu-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0;
            /* padding: 30px; */
        }
        
        .mega-menu-section {
            padding: 0 25px;
            border-right: 1px solid #eee;
        }
        
        .mega-menu-section:last-child {
            border-right: none;
        }
        
        .mega-menu-section h6 {
            color: #333;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 10px 0;
            border-bottom: 2px solid var(--secondary-color);
            display: flex;
            align-items: center;
        }
        
        .mega-menu-section h6 i {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        
        .mega-menu-items {
            display: block;
        }
        
        .mega-menu-item {
            display: block;
            padding: 12px 0;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            line-height: 1.5;
            border-bottom: 1px solid #f5f5f5;
        }
        
        .mega-menu-item:last-child {
            border-bottom: none;
        }
        
        .mega-menu-item:hover {
            color: var(--primary-color);
            padding-left: 10px;
            text-decoration: none;
        }
        
        /* Hero Section */
        .hero-section {
            margin-top: 140px;
            min-height: 70vh;
            background: linear-gradient(135deg, rgba(41, 126, 189, 0.1), rgba(117, 180, 7, 0.1));
            display: flex;
            align-items: center;
            padding: 60px 0;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #555;
        }
        
        .hero-btn {
            padding: 15px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            font-weight: 600;
            margin-right: 15px;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s ease;
        }
        
        .hero-btn:hover {
            transform: translateY(-3px);
        }
        
        .hero-btn-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
        }
        
        .hero-btn-secondary {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        /* Mobile Styles */
        @media (max-width: 991px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                border-radius: 10px;
                margin: 10px 20px;
                z-index: 998;
            }
            
            .nav-menu.show {
                display: flex;
            }
            
            .nav-item {
                margin: 8px 0;
                width: 100%;
            }
            
            .nav-link {
                padding: 15px 20px;
                display: block;
                border-radius: 8px;
                font-size: 1.1rem;
                font-weight: 500;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .nav-link:hover {
                background-color: rgba(41, 126, 189, 0.08);
            }
            
            /* Mobile Mega Menu */
            .mega-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100vw;
                height: 100vh;
                max-width: none;
                padding: 0;
                overflow-y: auto;
                transform: none;
                z-index: 1001;
                border-radius: 0;
                margin: 0;
                background: white;
                border: none;
            }
            
            .mega-menu-header {
                background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
                color: white;
                padding: 30px 20px;
                text-align: center;
                position: relative;
            }
            
            .mega-menu-header h3 {
                font-size: 1.5rem;
                font-weight: 700;
                margin: 0;
            }
            
            .mega-menu-content {
                grid-template-columns: 1fr;
                gap: 0;
                padding: 20px;
                max-width: 600px;
                margin: 0 auto;
            }
            
            .mega-menu-section {
                border-right: none;
                border-bottom: 2px solid #f0f0f0;
                padding: 20px 0;
                margin-bottom: 20px;
            }
            
            .mega-menu-section:last-child {
                border-bottom: none;
            }
            
            .mega-menu-section h6 {
                font-size: 1.3rem;
                color: var(--primary-color);
                margin-bottom: 15px;
                border-bottom: 2px solid var(--secondary-color);
                padding-bottom: 10px;
            }
            
            .mega-menu-item {
                padding: 15px 20px;
                background: #f8f9fa;
                border: 1px solid #e9ecef;
                border-radius: 8px;
                margin-bottom: 8px;
                font-size: 1rem;
                border-bottom: 1px solid #e9ecef;
            }
            
            .mega-menu-item:hover {
                background-color: var(--primary-color);
                color: white;
                padding-left: 20px;
            }
            
            .mega-menu-close {
                position: fixed;
                top: 20px;
                right: 20px;
                background: rgba(255,255,255,0.9);
                color: var(--primary-color);
                border: none;
                width: 45px;
                height: 45px;
                border-radius: 50%;
                font-size: 1.5rem;
                z-index: 1002;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
                backdrop-filter: blur(10px);
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-btn {
                display: block;
                margin: 10px 0;
                text-align: center;
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .top-bar {
                font-size: 0.75rem;
                text-align: center;
            }
            
            .logo {
                height: 45px;
                width: 45px;
            }
            
            .hero-title {
                font-size: 1.5rem;
            }
            
            .nav-item {
                margin: 5px 0;
            }
        }
  