/* Font Family */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
}
/* Logo styling */
.logo-img {
    max-height: 50px;
    width: auto;
}


/* Hamburger lines */
.lines-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.line {
    width: 25px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}
.line:nth-child(1) { width: 15px; }
.line:nth-child(3) { width: 20px; }
.lines-menu:hover .line { width: 25px; }

/* Contact button style */
.btn-contact {
    padding: 6px 16px;
    font-size: 14px;
    white-space: nowrap;
    background-color: #0C046B;
    color: white;
    border-radius: 30px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

/* Responsive: Mobile view */
@media (max-width: 991.98px) {
    .lines-menu {
        display: flex;
    }
}


/* Desktop Header Alignment */
@media (min-width: 992px) {
  .navbar {
    padding: 0;
  }

  .logo-img {
    max-height: 50px;
    width: auto;
  }

  .navbar-nav .nav-link {
    font-weight: 500;
    color: #0C046B;
    padding: 10px 12px;
  }

  .navbar-nav .nav-link:hover {
    color: #02BD0A;
  }
}



/* Contact Links Grid Layout */
.contact-links-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-row {
  display: flex;
  gap: 20px;
}

.contact-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #555;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.2s;
  padding: 12px 18px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid gainsboro;
  position: relative;
}

.contact-link:hover {
  color: #02BD0A;
  background-color: #e6f0ff;
}

.contact-icon {
  width: 20px;
  height: 20px;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  margin-left: auto;
}



/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .contact-row {
    flex-direction: column;
    gap: 10px;
  }

  .contact-link {
    width: 100%;
  }
}

/* Top Contact Bar */
.top-contact-bar {
  background-color: #f8f9fa;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid #eaeaea;
}

.contact-item {
  color: #555;
  white-space: nowrap;
}

.contact-icon {
  width: 14px;
  height: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 16px;
  height: 16px;

  transition: opacity 0.3s;
}

.social-icon:hover {
  opacity: 1;
}

/* Main Header */
.main-header {
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.logo-tagline {
  font-size: 14px;
  color: #666;
  margin-left: 10px;
  font-style: italic;
}

.navbar-nav {
  gap: 5px;
}

.nav-link {
  color: #333 !important;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 15px !important;
  border-radius: 4px;
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link:focus {
  color: #02BD0A !important;
  background-color: #f5f8ff;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: #333;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Contact Button */
.btn-contact {
  background: #0C046B;
  color: white !important;
  padding: 10px 25px !important;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(12, 4, 107, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(12, 4, 107, 0.3);
}

.btn-contact:active {
  transform: translateY(0);
}

.btn-contact i {
  transition: transform 0.3s;
}

.btn-contact:hover i {
  transform: translateX(3px);
}

/* Dropdown Menu Styles */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mega-dropdown .dropdown-menu {
  width: max-content;
  left: 0;
  right: 0;
  padding: 20px;
}

.dropdown-item {
  padding: 16px 0 6px 5px !important;
  font-size: 15px;
  color: #555;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.dropdown-item img {
  width: 30px;
  height: 30px;
}

.dropdown-item:hover {
  color: #02BD0A !important;
  background-color: transparent !important;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .navbar-nav {
    margin-top: 15px;
  }

  .header-button {
    margin: 15px 0;
    text-align: center;
  }

  .nav-link {
    padding: 8px 15px !important;
  }
}

@media (max-width: 767.98px) {
  .contact-info {
    flex-direction: column;
    gap: 5px !important;
  }

  .contact-item {
    white-space: normal;
  }

  .social-icons {
    justify-content: center;
    margin-top: 10px;
  }

  .navbar-collapse {
    padding: 15px 0;
  }

  .logo-tagline {
    display: inline !important;
    margin-left: 5px;
  }
}

@media (max-width: 575.98px) {
  .top-contact-bar {
    display: none;
    padding: 8px 0;
  }

  .contact-item span {
    font-size: 12px;
  }

  .btn-contact {
    padding: 8px 20px !important;
    font-size: 14px;
  }
}

/* Mega Dropdown Positioning */
.mega-dropdown {
  position: static !important;
}

.mega-dropdown .dropdown-menu {
  width: 100%;
  max-width: 1200px;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  margin-top: 0;
}

@media (max-width: 1199.98px) {
  .mega-dropdown .dropdown-menu {
    width: calc(100vw - 30px);
    left: 15px !important;
    right: 15px !important;
    transform: translateX(0) !important;
  }
}

@media (max-width: 767.98px) {
  .mega-dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Left Side Tabs */
.nav-pills .nav-link {
  margin-top: 10px;
  padding: 12px 20px;
  color: #555;
  font-weight: 500;
  border-radius: 0;
  text-align: left;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}

.nav-pills .nav-link.active {
  background-color: #f8f9fa;
  color: #02BD0A !important;
  border-left: 3px solid #0C046B;
  font-weight: 600;
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: #f1f3f5;
  color: #333;
}

.nav-link img {
  padding-right: 10px;
}

/* Product Cards */
.product-card {
  padding: 20px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 3px solid #0C046B;
}

.product-card img {
  padding: 5px;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card h5 {
  color: #0C046B;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {


  .nav-pills {
    flex-direction: row !important;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
  }

  .nav-pills .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    display: inline-block;
    width: auto;
  }

  .nav-pills .nav-link.active {
    border-left: none;
    border-bottom: 3px solid #0C046B;
  }
}

@media (max-width: 575.98px) {
  .product-card {
    padding: 15px;
  }

  .tab-content {
    padding: 15px !important;
  }
}

/* Add this to prevent flickering */
.mega-dropdown-menu {
  pointer-events: auto;
}

/* Make sure dropdown stays open when interacting */
.dropdown-menu.show {
  display: block;
}

/* header styles end here  */
/* .................. */
/* hero styles start */
.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
    text-align: center;
  }
}

.hero h1 span {
  background: linear-gradient(90deg, #FF36A1 0%, #049EF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
    margin: 0 auto 30px;
    text-align: center;
  }
}

.hero-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.standard-button {
  display: inline-block;
  background: transparent;
  color: black;
  border: 1px solid #666;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 {
  font-size: 57px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0C046B;
}

.hero-content h1 span {
  float: left;
  color: #02BD0A;
  display: contents;
}

.hero-content .lead {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-image {
  position: relative;
  padding-left: 30px;
}

.hero-image img {
  border-radius: 10px;

}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 30px 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content .lead {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content .lead {
    font-size: 16px;
  }
}

/* hero styles end */
/* .................. */
/* stats section */

.stats-section {
  padding: 20px 0;
  
}

.stat-item {
  text-align: center;
  padding: 30px 15px;
}

.stat-value {
  font-size: 48px;
  font-weight: 700;
  color: #0C046B;
  margin-bottom: 10px;
  line-height: 1;
}

.stat-label {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 767.98px) {
  .stats-section {
    padding: 20px 0;
  }

  .stat-item {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .stat-value {
    font-size: 36px;
  }

  .stat-label {
    font-size: 16px;
  }

  /* Remove margin from last item */
  .stat-item:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .stat-value {
    font-size: 32px;
  }
}

/* stats styles end */
/* .................. */
/* client logos section */

.client-logos {
  padding: 30px 0;
  background-color: #ffffff;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 120px;
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;

  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .logo-item {
    height: 100px;
    padding: 15px;
  }
}

@media (max-width: 767.98px) {
  .client-logos {
    padding: 20px 0;
  }

  .logo-item {
    height: 90px;
    padding: 10px;
  }

  .logo-item img {
    max-height: 50px;
  }
}

@media (max-width: 575.98px) {
  .logo-item {
    height: 80px;
  }

  .logo-item img {
    max-height: 40px;
  }
}



/* client logos section */
/* .................. */
/* Services Section */


.services-section {
 padding-bottom: 30px;
  overflow: hidden;
  
  background-size: cover;
  background-position: center;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.services-content {
  position: relative;
  z-index: 2;
}


.services-section h3 span {
  background: linear-gradient(90deg, #FF36A1 0%, #049EF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 40px;
  text-align: center;
}

.service-card {

  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  background: white;

  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);

}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* Services Section - Mobile Slider */
.services-slider {
  display: none;
  /* Hidden by default */

  position: relative;
}

.services-slider .swiper {
  padding-bottom: 40px;
}

.services-slider .service-card {
  margin: 0 10px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.services-slider .swiper-slide-active .service-card {
  opacity: 1;
}

.services-slider .swiper-pagination {
  bottom: 0;
}

.services-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.services-slider .swiper-pagination-bullet-active {
  background: #0C046B;
}

/* Hide regular services grid on mobile */
@media (max-width: 768px) {
  .services-grid {
    display: none;
  }

  .services-slider {
    display: block;
  }
}

/* Show regular services grid on desktop */
@media (min-width: 769px) {
  .services-grid {
    display: flex;
  }

  .services-slider {
    display: none;
  }
}

@media (max-width: 768px) {

  .services-slider .service-card {
    margin: 0 10px;

    opacity: 0.5;
    transition: opacity 0.3s;
  }

  .swiper-slide {
    margin: 0px !important;
  }

  .service-card {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    background: white;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .swiper-slide,
  swiper-slide {
    flex-shrink: 0;
    width: 80%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
  }


}


/* services section */
/* .................. */
/* about Section */





.about-section {
    padding-top:30px;
padding-bottom: 30px;
  background-color: #ffffff;
}

.section-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0C046B;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.lead {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}
.feature-section{
    padding-bottom: 30px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-list li {
  
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  flex-shrink: 0;
}

.feature-list span {
  font-size: 16px;
  color: #333;
}

.about-image {
  position: relative;
  margin-left: -50px;
  /* Pull image to overlap with content */
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: relative;
  z-index: 1;
}

.image-card {
  position: absolute;
  top: 80%;
  left: 0;
  transform: translate(-40%, -50%);
  background: white;
  padding: 25px;
  border-radius: 0px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 180px;
  z-index: 2;
  border-left: 5px solid #0C046B;
}

.image-card-two {
  position: absolute;
  top: 80%;
  right: 0%;
  transform: translate(20%, -60%);
  background: white;
  border-radius: 0px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 180px;
  z-index: 2;
  border-right: 5px solid #0C046B;
}

.card-value {
  font-size: 32px;
  font-weight: 700;
  color: #0C046B;
  line-height: 1;
  margin-bottom: 5px;
}

.card-label {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .image-card {
    transform: translate(-30%, -50%);
    min-width: 160px;
    padding: 20px;
  }
}

@media (max-width: 991.98px) {
  .about-image {
    margin-left: 0;
  }

  .image-card {
    transform: translate(-20%, -50%);
  }
}


/* Responsive Styles */
@media (max-width: 991.98px) {
 

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  

  .section-title {
    font-size: 28px;
  }

  .feature-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-list li {
    justify-content: left;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 24px;
  }

  

  .lead {
    text-align: left;
    font-size: 16px;
  }
}


/* about section */
/* .................. */
/* industries Section */

.industries-section {
 padding-bottom: 30px;
  position: relative;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0C046B;
  margin-bottom: 0;
}

.section-title span {
  color: #02BD0A;
}

.industry-card {
  background: white;
  border-radius: 10px;
  padding: 30px 20px;
  margin: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.industry-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 0;
}

/* Swiper Slider Styles */
.industries-slider {
  overflow: hidden;
  position: relative;
  padding: 0 40px;
}

.swiper {
  overflow: visible;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
 display: none;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #0C046B;
  transition: all 0.3s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: #0C046B;
  color: white;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(12, 4, 107, 0.2);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0C046B;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .industries-slider {
    padding: 0 30px;
  }
}

@media (max-width: 991.98px) {
  .section-title {
    font-size: 32px;
  }

  .industry-card {
    padding: 25px 15px;
  }
}

@media (max-width: 767.98px) {
  

  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 28px;
  }

  .industry-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .industry-card h4 {
    font-size: 16px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 24px;
  }

  .industries-slider {
    padding: 0 15px;
  }
}

/* industries section */
/* .................. */
/* industries Section */

@media (min-width: 992px) {

  /* lg breakpoint */
  .feature-content {
    padding-left: 80px;
    /* Adjust this value as needed */
  }
}

/*.................*/
/* Why Us Section Styling */


.table-image-comparison {
  height: 25px;
}


/* Comparison Table Styling */
.comparison-table {
  width: 100%;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.comparison-table th {
  background-color: #0C046B;
  color: white;
  font-weight: 600;
  padding: 12px 8px;
  font-size: 20px;
}

.comparison-table td {
  padding: 20px 8px;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
  font-size: 18px;
  line-height: 1.4;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-header {
  width: 50%;
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.comparison-table i {
  font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
  .section-title {
    font-size: 22px;
  }

  .comparison-table th {
    font-size: 13px;
    padding: 8px 5px;
  }

  .comparison-table td {
    font-size: 12px;
    padding: 8px 5px;
  }

  .comparison-table i {
    font-size: 14px;
  }

  .feature-header {
    width: 55%;
  }
}

@media (max-width: 575.98px) {
  .comparison-table td br {
    display: none;
  }

  .comparison-table td {
    white-space: nowrap;
  }
}




/*........................services grid...................................*/


.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0C046B;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding: 8px 20px;
  background: white;
  border: 1px solid #666;
  border-radius: 30px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0C046B;
  margin-bottom: 20px;
}

.section-title span {
  color: #02BD0A;
}

.technology-card {
  border: 1px solid rgba(0, 0, 0, 0.158);
  background: white;
  border-radius: 15px;
  padding: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.technology-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.technology-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6f0ff;
  border-radius: 50%;
}

.technology-icon img {
  max-width: 40px;
  height: auto;
}

.technology-name {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.technology-category {
  font-size: 14px;
  color: #666;
}

.show-more-btn {
  display: block;
  margin: 30px auto 0;
  padding: 10px 25px;
  background: #0C046B;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s;
}

.show-more-btn:hover {
  background: #02BD0A;
}

/* Hide extra technologies on mobile by default */
@media (max-width: 767.98px) {
  .technology-item.hidden-mobile {
    display: none;
  }
}






/* Blogs Section */
.blogs-container {
  position: relative;
}

.blogs-grid-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 25px;
}

.blog-date {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.blog-title {
  font-size: 1.2rem;
  margin: 0 0 20px;
  color: #0C046B;
  line-height: 1.4;
  text-align: left;
}

.blog-link {
  color: #0C046B;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.link-arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-link:hover .link-arrow {
  transform: translateX(3px);
}

.view-all-link {
  color: #0C046B;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

/* Mobile Slider */
.blogs-slider-mobile {
  display: none;
  margin: 0 -15px;
  padding: 0 15px;
}

.blogs-slider-mobile .slick-list {
  padding: 20px 0;
  overflow: visible;
}

.blogs-slider-mobile .blog-card {
  margin: 0 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Slider dots customization */
.blogs-slider-mobile .slick-dots {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blogs-slider-mobile .slick-dots li {
  margin: 0 5px;
}

.blogs-slider-mobile .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  position: relative;
}

.blogs-slider-mobile .slick-dots li button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #0C046B;
  border-radius: 50%;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.blogs-slider-mobile .slick-dots li.slick-active button:before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .blogs-grid-desktop {
    display: none;
  }

  .blogs-slider-mobile {
    display: block;
  }

  .blog-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .view-all-link {
    margin-top: 20px;
    margin-left: 0;
  }

  .blog-title {
    font-size: 1.1rem;
  }

  .blog-date {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .blogs-slider-mobile {
    margin: 0 -10px;
    padding: 0 10px;
  }

  .blog-content {
    padding: 15px;
  }

  .blog-image {
    height: 180px;
  }
}

.cta-section {
 

  color: black;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
  opacity: 0.3;
}

.cta-subtitle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  color: white;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-description {
  font-size: 18px;
  max-width: 700px;
  opacity: 0.9;
  line-height: 1.6;
  color: #555;
}




@media (max-width: 767.98px) {
  .cta-title {
    font-size: 36px;
  }

  .cta-description {
    font-size: 16px;
  }
}



.founder-image-container {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {


  h2 {
    font-size: 32px !important;
  }

  .founder-quote {
    font-size: 16px !important;
  }
}

@media (max-width: 767.98px) {
  

  .founder-image-container {
    width: 350px;
  }

  h2 {
    font-size: 28px !important;
  }

  .founder-image-container {
    margin-bottom: 30px;
  }
}

.founder-image-container {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .founder-image-container {
    margin: 0 auto 30px;
  }
}



.contact-form {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control:focus,
.form-select:focus {
  border-color: #0C046B;
  box-shadow: 0 0 0 0.25rem rgba(12, 4, 107, 0.25);
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
 

  .contact-form {
    padding: 30px 20px;
  }
}
.contact-content {
  padding-top: 50px;
  padding-bottom: 0px;
}
.contact-content-container
{
  border-radius: 70px; 
  background: url('images/background.png') no-repeat center center; 
  background-size: cover; 
  position: relative;
}
.contact-img-direction {
  flex-direction: column;
}

@media (max-width: 575.98px) {
 

  .contact-img-direction {
    flex-direction: row;
  }

  .contact-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .contact-content-container
{
  border-radius: 0px; 
 
}
}

/* Portfolio Filter Styles */
  .filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .filter-btn {
    padding: 8px 20px;
    border: 1px solid #0C046B;
    background: transparent;
    color: #0C046B;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    border: 1px solid #02BD0A;
    background: #EDFFE3;
    
  }
  
  /* Portfolio Item Animation */
  .portfolio-item {
    transition: all 0.3s ease;
  }
  
  .portfolio-item.hide {
    display: none;
  }

  @media (max-width: 768px) {
    .filter-buttons {
      justify-content: flex-start;
      overflow-x: auto;
      padding-bottom: 10px;
      -webkit-overflow-scrolling: touch;
    }
    
    .filter-buttons::-webkit-scrollbar {
      height: 5px;
    }
    
    .filter-buttons::-webkit-scrollbar-thumb {
      background: #0C046B;
      border-radius: 10px;
    }
  }

.portfolio-img img
{
 border: 1px solid white;
    height: auto;
    width: max-content;
        max-height: 350px;
    border-radius: 25px;
}

         /* Job Card Hover Effect */
    .job-card {
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .job-card:hover {
        border-color: #0C046B !important;
        box-shadow: 0 5px 15px rgba(12, 4, 107, 0.1);
    }
    
    /* Form Input Focus */
    .form-control:focus {
        border-color: #0C046B;
        box-shadow: 0 0 0 0.25rem rgba(12, 4, 107, 0.1);
    }
    
    /* Responsive Adjustments */
  
    
  
    .career-upload-btn{
      border-style: dashed;
      border-color: #0C046B;
      color: #0C046B; 
      padding: 8px 20px; 
      border-radius: 30px; 
      font-weight: 600; 
      cursor: pointer;
    }
     .career-upload-btn:hover {
      border-color: #fff;
      color: #fff; 
      background-color: #02BD0A;
      padding: 8px 20px; 
      border-radius: 30px; 
      font-weight: 600; 
      cursor: pointer;
    }
    
    /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: white;
    padding: 30px;
    border-radius: 48px;
    width: 90%;
    max-width: 1100px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        .modal-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #333;
        }

        .modal-list {
            margin-bottom: 25px;
        }

        .modal-list-item {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

  