/* ===== LOGO AND NAVIGATION SPACING FIX ===== */

/* Fix the column layout and spacing */

/* ===== NAVIGATION CORE STYLES ===== */

* {
    box-sizing: border-box;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Header Top Styles */
.header-top {
    background: #1e3a5f;
    color: white;
    padding: 10px 0;
}

.top-bg {
    background: #1e3a5f !important;
}

.header-info-left ul,
.header-info-right ul {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.header-info-left li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: white;
}

.header-info-left i {
    color: #fff;
    font-size: 12px;
}

.header-social li a {
    color: #fff;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

.header-social li a:hover {
    color: #ff6b6b;
}

/* Main Header */
.header-bottom {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    max-width: 180px;
    height: auto;
    width: 150px;
}

/* ===== MAIN NAVIGATION STYLES ===== */

.main-menu {
    display: flex;
    justify-content: center;
}

#navigation {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

#navigation > li {
    position: relative;
}

#navigation > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 15px;
    padding: 20px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

#navigation > li > a:hover {
    color: #1e3a5f;
}

#navigation i.fas {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

#navigation li:hover i.fas {
    transform: rotate(180deg);
}

/* ===== DROPDOWN STYLES ===== */

.has-children {
    position: relative;
}

/* Regular Submenu */
.has-children .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 20px 0;
    border-top: 3px solid #ff6b6b;
}

.has-children:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 12px 25px;
    color: #2c5aa0;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child a {
    border-bottom: none;
}

.submenu li a:hover {
    color: #1e3a5f;
    background: #f8f9fa;
    padding-left: 35px;
}

/* ===== MEGAMENU STYLES ===== */

.megamenu--mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    width: 950px;
    max-width: 95vw;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(15px);
    transition: all 0.4s ease;
    z-index: 999;
    padding: 40px;
    display: none;
    border-top: 4px solid #ff6b6b;
}

.has-children:hover .megamenu--mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    display: flex;
}

.megamenu--mega {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.megamenu--mega > li {
    flex: 1;
    min-width: 0;
}

.page-list-title {
    color: #2c5aa0;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.megamenu--mega ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.megamenu--mega ul li {
    margin-bottom: 12px;
}

.megamenu--mega ul li a {
    color: #2c5aa0;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.megamenu--mega ul li a:hover {
    color: #1e3a5f;
    padding-left: 15px;
}

/* ===== GET QUOTE BUTTON ===== */

.header-btn {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.header-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
    color: #fff;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1199px) {
    .megamenu--mega {
        width: 850px;
        padding: 30px;
        gap: 30px;
    }
    
    #navigation {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .d-lg-block {
        display: none !important;
    }
    
    .d-lg-none {
        display: block !important;
    }
    
    .megamenu--mega {
        width: 100vw;
        left: 0;
        transform: none;
        border-radius: 0;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        position: fixed;
        top: 100%;
    }
    
    .has-children:hover .megamenu--mega {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 8px 0;
    }
    
    .header-info-left ul,
    .header-info-right ul {
        gap: 15px;
    }
    
    .header-info-left li {
        font-size: 12px;
    }
    
    .header-social li a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .logo img {
        width: 120px;
    }
}

/* ===== EXISTING STYLES (Keep your other styles) ===== */

/* Brand Logo Slider */
.brand-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    overflow: hidden;
}

.brand-logo__image,
.brand-logo__image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease-in-out;
}

.brand-logo__image-hover {
    opacity: 0;
}

.brand-logo:hover .brand-logo__image {
    opacity: 0;
}

.brand-logo:hover .brand-logo__image-hover {
    opacity: 1;
}

.brand-logo img {
    max-height: 80px;
    object-fit: contain;
    max-width: 100%;
}

.swiper-slide {
    text-align: center;
    padding: 10px;
}

/* Section Styles */
.section-paddingt {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.col-xl-4, .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Responsive Grid */
@media (max-width: 767px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Section Title */
.section-tittle {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tittle h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
}

/* Recent Projects */
.single-recent-cap {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease-in-out;
}

.single-recent-cap:hover {
    transform: scale(1.02);
}

.recent-img {
    position: relative;
    width: 100%;
    height: 12rem;
    overflow: hidden;
}

.recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.recent-cap {
    padding: 1.5rem;
}

.recent-cap span {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.recent-cap h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.recent-cap h4 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

.recent-cap h4 a:hover {
    color: #ef4444;
}

.recent-cap p {
    color: #4b5563;
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Keep all your other existing styles... */
.header-bottom .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo column - reduce width and add margin */
.col-xl-2.col-lg-1.col-md-1 {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
    margin-right: 40px; /* Add space after logo */
}

/* Navigation column - adjust positioning */
.col-xl-8.col-lg-8.col-md-6 {
    flex: 1;
    max-width: none;
    display: flex;
    justify-content: center;
    margin-left: 20px; /* Add space before navigation */
}

/* Main menu positioning */
.main-menu {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-menu.f-right {
    float: none; /* Remove float */
    display: flex;
    justify-content: center;
}

/* Navigation list spacing */
#navigation {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 180px;
    height: auto;
    width: 150px;
}

/* Get Quote button column */
.col-xl-2.col-lg-3.col-md-3:last-child {
    flex: 0 0 auto;
    max-width: none;
    width: auto;
    margin-left: 20px; /* Add space before button */
}

/* Header right button */
.header-right-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Remove the inline style width constraint */
.col-xl-2.col-lg-1.col-md-1[style*="width: 50px"] {
    width: auto !important;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

@media (max-width: 1199px) {
    .col-xl-2.col-lg-1.col-md-1 {
        margin-right: 30px;
    }
    
    .col-xl-8.col-lg-8.col-md-6 {
        margin-left: 15px;
    }
    
    #navigation {
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .col-xl-2.col-lg-1.col-md-1 {
        margin-right: 20px;
    }
    
    .col-xl-8.col-lg-8.col-md-6 {
        margin-left: 10px;
    }
    
    #navigation {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header-bottom .row {
        justify-content: space-between;
        align-items: center;
    }
    
    .col-xl-2.col-lg-1.col-md-1 {
        margin-right: 15px;
    }
    
    .logo img {
        width: 120px;
    }
}

/* ===== ADDITIONAL LAYOUT IMPROVEMENTS ===== */

/* Ensure proper container fluid behavior */
.header-bottom .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

/* Better alignment for the entire header */
.header-bottom {
    padding: 15px 0;
}

/* Navigation link styling (maintain existing) */
#navigation > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #2c5aa0;
    font-weight: 600;
    font-size: 15px;
    padding: 20px 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

#navigation > li > a:hover {
    color: #1e3a5f;
}

/* Get Quote button styling (maintain existing) */
.header-btn {
    background: #ff6b6b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.header-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
    color: #fff;
}
.brand-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  overflow: hidden;
}

.brand-logo__image,
.brand-logo__image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease-in-out;
}

.brand-logo__image-hover {
  opacity: 0;
}

.brand-logo:hover .brand-logo__image {
  opacity: 0;
}
.brand-logo:hover .brand-logo__image-hover {
  opacity: 1;
}

.brand-logo img {
  max-height: 80px;
  object-fit: contain;
  max-width: 100%;
}

.swiper-slide {
  text-align: center;
  padding: 10px;
}
.section-paddingt {
  padding-top: 4rem; /* Equivalent to py-16 */
  padding-bottom: 4rem; /* Equivalent to py-16 */
  background-color: #f9fafb; /* Equivalent to bg-gray-50 */
}

/* Container */
.container {
  max-width: 1200px; /* Example max-width, adjust as needed */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* Equivalent to px-4 */
  padding-right: 1rem; /* Equivalent to px-4 */
}

/* Row (Flexbox for grid layout) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem; /* Compensate for column padding */
  margin-right: -1rem; /* Compensate for column padding */
}

/* Column (Responsive grid) */
.col-lg-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.col-xl-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Responsive adjustments for columns */
@media (max-width: 767px) {
  /* md breakpoint */
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* lg breakpoint */
  .col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  /* xl breakpoint */
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Section Title */
.section-tittle {
  text-align: center;
  margin-bottom: 3rem; /* Equivalent to mb-12 */
}

.section-tittle h2 {
  font-size: 2.25rem; /* Equivalent to text-4xl */
  font-weight: 700; /* Equivalent to font-bold */
  color: #1f2937; /* Equivalent to text-gray-800 */
  margin-bottom: 0;
}

/* Single Recent Project Card */
.single-recent-cap {
  background-color: #ffffff; /* Equivalent to bg-white */
  border-radius: 0.5rem; /* Equivalent to rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Equivalent to shadow-md */
  overflow: hidden;
  margin-bottom: 2rem; /* Equivalent to mb-30 */
  transition: transform 0.3s ease-in-out; /* Equivalent to transition-transform duration-300 */
}

.single-recent-cap:hover {
  transform: scale(1.02); /* Equivalent to hover:scale-[1.02] */
}

.recent-img {
  position: relative;
  width: 100%;
  height: 12rem; /* Equivalent to h-48 */
  overflow: hidden;
}

.recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Equivalent to objectFit="cover" */
  border-top-left-radius: 0.5rem; /* Equivalent to rounded-t-lg */
  border-top-right-radius: 0.5rem; /* Equivalent to rounded-t-lg */
}

.recent-cap {
  padding: 1.5rem; /* Equivalent to p-6 */
}

.recent-cap span {
  font-size: 0.875rem; /* Equivalent to text-sm */
  color: #6b7280; /* Equivalent to text-gray-500 */
  font-weight: 500; /* Equivalent to font-medium */
  display: block;
  margin-bottom: 0.5rem; /* Equivalent to mb-2 */
}

.recent-cap h4 {
  font-size: 1.25rem; /* Equivalent to text-xl */
  font-weight: 600; /* Equivalent to font-semibold */
  color: #1f2937; /* Equivalent to text-gray-800 */
  margin-bottom: 0.5rem; /* Equivalent to mb-2 */
}

.recent-cap h4 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease-in-out; /* Equivalent to transition-colors duration-200 */
}

.recent-cap h4 a:hover {
  color: #ef4444; /* Equivalent to hover:text-red-500 */
}

.recent-cap p {
  color: #4b5563; /* Equivalent to text-gray-600 */
  font-size: 0.875rem; /* Equivalent to text-sm */
  margin-bottom: 0;
}
.profile-caption h4 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.profile-caption p {
    font-size: 16px;
    color: #444;
}

.profile-img img {
    max-width: 200px;
}


.custom-img-size {
    width: 100%;
    max-width: 450px; /* Increase this as needed */
    height: auto;
    display: block;
    margin: 0 auto; /* center the image */
}


.counter-section {
    background-color: #ff7c7c; /* Red background */
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.counter-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.business-banner {
  background-color: #ff6f6f;
  background-image: url('assets/images/globe-dots.png'); /* Optional: Use similar dotted background */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding: 80px 20px;
  color: white;
}

.business-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.business-banner .highlight {
  background-color: #e62429;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
}

.btn-contact {
  background-color: #ff0000;
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background-color: #b3a52f;
}

.btn-contact i {
  font-size: 1rem;
}
.btn-xl {
        padding: 16px 40px;
        font-size: 1.25rem;
        border-radius: 0.5rem;
    }


    .info-box {
  background-color: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border: 2px dashed #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb9b9;
  font-size: 24px;
}


    .careers-section {
      padding: 60px 20px;
      text-align: center;
    }

    .careers-section h2 {
    
      font-size: 2.5rem;
      color: #ff9696;
      margin-bottom: 10px;
    }

    .careers-section p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 40px;
    }

    .careers-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .career-card {
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      width: 250px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s;
    }

    .career-card:hover {
      transform: translateY(-5px);
    }

    .career-icon {
      font-size: 40px;
      color: #000000;
      margin-bottom: 15px;
    }

    .career-title {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #ff6161;
    }

    .career-desc {
      font-size: 0.95rem;
      color: #666;
      min-height: 60px;
    }

    .read-more {
      margin-top: 15px;
      display: inline-block;
      color: #e60000;
      font-weight: bold;
      text-decoration: none;
    }

    .read-more:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .careers-grid {
        flex-direction: column;
        align-items: center;
      }
    }

     .form-control, .form-select {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
    }
    .btn-danger {
      background-color: #d9534f;
      border: none;
    }
    .btn-danger:hover {
      background-color: #c9302c;
    }





    
    
    .card-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      background: #fffdfd;
      border-radius: 10px;
      width: 30%;
      min-width: 280px;
      padding: 50px 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.08);
      text-align: center;
      transition: 0.3s;
    }

    .card:hover {
      background: #ff0000;
      color: #fff;
    }

    .icon {
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, #f59ca9, #f28795);
      border-radius: 50%;
      margin: 0 auto 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      color: white;
    }

    .card-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #222;
    }

    .card:hover .card-title,
    .card:hover .card-text {
      color: white;
    }

    .card-text {
      font-size: 14px;
      color: #555;
    }

    @media (max-width: 992px) {
      .card {
        width: 45%;
      }
    }

    @media (max-width: 768px) {
      .card {
        width: 100%;
      }
    }



/* bulk SMS css code */

.services-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.services-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.services-section .highlight {
  color: #e60000;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}
.banner-section {
  background: url('/assets/images/features/smsback.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.banner-content h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.quote-btn {
  background-color: #ff0019;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #cc0015;
}

.ai-contact-section {
   background-image: url("../images/bg/new-cta-bg.webp");
  background-color: #0d163d;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  
}

.solution-label {
  color: #aaa;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 3px solid red;
  padding-left: 10px;
  font-size: 14px;
}

.ai-heading {
  color: white;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}

.contact-btn {
  background-color: white;
  color: #d82727;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s ease;
  display: inline-block;
}

.contact-btn:hover {
  background-color: #f0f0f0;
  color: #b0001d;
}

.ai-img {
  max-width: 80%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc3545;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #dc3545;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc3545;
}

.language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.flag {
    border-radius: 2px;
}

/* Services Section */
.services {
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-number {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.card-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Card Color Variants */
.card-red .card-number {
    color: #dc3545;
}

.card-red:hover {
    border-left: 4px solid #dc3545;
}

.card-blue .card-number {
    color: #007bff;
}

.card-blue:hover {
    border-left: 4px solid #007bff;
}

.card-gray {
    background: #f8f9fa;
}

.card-gray .card-number {
    color: #6c757d;
}

.card-gray:hover {
    border-left: 4px solid #6c757d;
    background: white;
}

.card-orange .card-number {
    color: #fd7e14;
}

.card-orange:hover {
    border-left: 4px solid #fd7e14;
}

/* Hover animations for card content */
.service-card:hover .card-title {
    color: #222;
    transform: translateX(5px);
}

.service-card:hover .card-description {
    color: #555;
    transform: translateX(5px);
}

.service-card:hover .card-number {
    transform: scale(1.1);
    opacity: 1;
}

/* Bottom Section */
.bottom-section {
    background: #f1f3f4;
    padding: 4rem 0;
}

.bottom-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.success-story {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.years-badge {
    text-align: center;
}

.years-number {
    display: block;
    font-size: 6rem;
    font-weight: bold;
    color: #dc3545;
    line-height: 1;
    animation: pulse 2s infinite;
}

.years-text {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-top: 0.5rem;
}

.story-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.cta-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

.newsletter h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.subscribe-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-button:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding: 20px 0;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff5e57;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.card-description {
  color: #666;
  font-size: 0.95rem;
}

/* Responsive Grid */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.software-innovation-about-company-area {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        
        .software-innovation-about-bg {
             background-image: url("../images/bg/soft-s2-bg.webp");
        }
        
        .section-space--ptb_60 {
            padding-top: 60px;
            padding-bottom: 60px;
        }
        
        .image-inner-video-section img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .border-radus-5 {
            border-radius: 8px;
        }
        
        .machine-learning-about-content {
            padding-left: 20px;
        }
        
        .section-title-wrap {
            margin-bottom: 30px;
        }
        
        .section-title-wrap h3.heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .check-list .list-item {
            position: relative;
            padding: 12px 0 12px 35px;
            font-size: 1.1rem;
            color: #666;
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .check-list .list-item:last-child {
            border-bottom: none;
        }
        
        .check-list .list-item:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 12px;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }
        
        .check-list .list-item:hover {
            color: #e74c3c;
            transform: translateX(5px);
        }
        
        .mt-30 {
            margin-top: 30px;
        }
        
        .mb-20 {
            margin-bottom: 20px;
        }
        
        .section-space--mb_30 {
            margin-bottom: 30px;
        }
        
        @media (max-width: 991px) {
            .machine-learning-about-content {
                padding-left: 0;
                margin-top: 40px;
            }
            
            .section-title-wrap h3.heading {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-title-wrap h3.heading {
                font-size: 1.75rem;
            }
            
            .check-list .list-item {
                font-size: 1rem;
            }
        }

.cta-image-area_one {
            position: relative;
            overflow: hidden;
        }
        
        .section-space--ptb_80 {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .cta-bg-image_one {
            background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 50%, #1a1a1a 100%);
            position: relative;
        }
        
        .cta-bg-image_one::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 20px 20px;
            opacity: 0.6;
        }
        
        .cta-bg-image_one::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 250px;
            height: 250px;
            background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
            background-size: 15px 15px;
            opacity: 0.5;
        }
        
        .cta-content {
            padding-right: 20px;
        }
        
        .cta-content .heading {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 0;
        }
        
        .text-white {
            color: #ffffff !important;
        }
        
        .text-color-secondary-bg {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 5px 15px;
            border-radius: 5px;
            display: inline-block;
            font-weight: 700;
        }
        
        .cta-button-group--one {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }
        
        .btn--secondary {
            background: linear-gradient(45deg, #3c32c3, #2a57b8);
            border: none;
            color: white;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(64, 55, 184, 0.3);
        }
        
        .btn--secondary:hover {
            background: linear-gradient(45deg, #3a2db0, #2542a0);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(64, 50, 195, 0.4);
            color: white;
            text-decoration: none;
        }
        
        .btn-two {
            min-width: 160px;
            justify-content: center;
        }
        
        .btn-icon {
            font-size: 1.2rem;
        }
        
        .me-2 {
            margin-right: 0.5rem;
        }
        
        /* Responsive Design */
        @media (max-width: 1199px) {
            .cta-content .heading {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 991px) {
            .cta-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .md-text-center {
                text-align: center;
            }
            
            .cta-content .heading {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .section-space--ptb_80 {
                padding-top: 60px;
                padding-bottom: 60px;
            }
            
            .cta-content .heading {
                font-size: 1.8rem;
            }
            
            .btn--secondary {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 575px) {
            .cta-content .heading {
                font-size: 1.5rem;
            }
            
            .text-color-secondary-bg {
                padding: 3px 10px;
                font-size: 0.9em;
            }
        }

.machine-learning-laptop {
    background-image: url("../images/bg/laptop.jpg");
    background-color: #d82727;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 500px; /* ⬅️ Adjust this based on how tall your image is */
    display: flex;
    align-items: center;
}

/* e-commerce */
.shopify-features-section {
    padding: 80px 0;
    position: relative;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sub-heading {
    text-transform: uppercase;
    color: #555;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 32px;
    font-weight: 700;
}

.main-heading .highlight {
    color: #ff0019;
}

.steps-wrapper {
    position: relative;
    text-align: center;
}

.step-line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.step-number {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin: 0 40px;
    line-height: 41px;
    font-weight: bold;
    font-size: 18px;
    color: #333;
    position: relative;
    transition: all 0.3s ease;
}

.step-number:hover {
    background-color: #ff0019;
    color: #fff;
    border-color: #ff0019;
    transform: scale(1.1);
}

.step-number::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 80px;
    background-color: #ccc;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.step-number:first-child::before {
    display: none;
}

.step-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.step-box {
    width: 22%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.step-box:hover {
    background-color: #fff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.step-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.steps-indicator {
    position: absolute;
    top: 20px;
    right: 50px;
    text-align: right;
    opacity: 0.1;
}

.steps-indicator .steps-title {
    font-size: 14px;
    letter-spacing: 2px;
}

.steps-indicator .steps-number {
    font-size: 100px;
    font-weight: bold;
}
.about-section {
  padding: 80px 0;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  position: relative;
  flex: 1 1 45%;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.border-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid #ff0019;
  border-radius: 12px;
  z-index: -1;
}

.about-text {
  flex: 1 1 50%;
}

.sub-title {
  color: #ff0019;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}

.sub-title::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #ff0019;
  display: block;
  margin-top: 6px;
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text .highlight {
  color: #ff0019;
}

.about-text p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-author {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.about-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.about-author h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.about-author p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

.btn-primary {
  display: inline-block;
  padding: 10px 30px;
  background-color: #ff0019;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #ff0019;
}

.container-technology {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Technology Section */
.technology-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ef4444;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.section-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* Technology Carousel */
.technology-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
}

.carousel-btn {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4a5568;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.technology-grid {
    display: flex;
    gap: 20px;
    overflow: hidden;
    flex: 1;
    transition: transform 0.5s ease;
}

/* Tech Cards */
.tech-card {
    background: #f7fafc;
    border-radius: 15px;
    padding: 30px 20px;
    min-width: calc((100% - 100px) / 6);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
    transition: left 0.5s;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    background: white;
    border-color: #ef4444;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.15);
    transform: translateY(-5px) scale(1.02);
}

.tech-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-logo svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-logo svg {
    transform: scale(1.1);
}

.tech-card:hover .tech-logo svg path,
.tech-card:hover .tech-logo svg circle,
.tech-card:hover .tech-logo svg line,
.tech-card:hover .tech-logo svg text {
    fill: #ef4444;
    stroke: #ef4444;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered Animation for Tech Cards */
.tech-card:nth-child(1) { animation: slideInLeft 0.6s ease-out 0.1s both; }
.tech-card:nth-child(2) { animation: slideInLeft 0.6s ease-out 0.2s both; }
.tech-card:nth-child(3) { animation: slideInLeft 0.6s ease-out 0.3s both; }
.tech-card:nth-child(4) { animation: slideInRight 0.6s ease-out 0.4s both; }
.tech-card:nth-child(5) { animation: slideInRight 0.6s ease-out 0.5s both; }
.tech-card:nth-child(6) { animation: slideInRight 0.6s ease-out 0.6s both; }

/* Responsive Design */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .technology-carousel {
        gap: 20px;
    }
    
    .tech-card {
        min-width: calc((100% - 80px) / 4);
        height: 100px;
        padding: 20px 15px;
    }
    
    .tech-logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .technology-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .technology-carousel {
        flex-direction: column;
        gap: 30px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .technology-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 100%;
    }
    
    .tech-card {
        min-width: auto;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-card {
        height: 80px;
        padding: 15px;
    }
    
    .tech-logo {
        width: 40px;
        height: 40px;
    }
}

/* Focus States for Accessibility */
.carousel-btn:focus {
    outline: 2px solid #ef4444;
    outline-offset: 4px;
}

.tech-card:focus {
    outline: 2px solid #ef4444;
    outline-offset: 4px;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.tech-card.loading {
    animation: pulse 1.5s infinite;
}
#Whatsapp {
  position: fixed;
  bottom: 20%;
  right: .5%;
  width: 60px;
  z-index: 999;
  border: 2px solid #18970e;
  border-radius: 50px;
  height: 60px;
  background-color: #fff;
  padding: 7px;
  line-height: 40px;
  text-align: center;
  animation: animate 2s infinite 2s;
}

#Whatsapp img{height: 40px;}
    .tawk-flex .tawk-flex-center .tawk-text-center .tawk-padding-small a{
		display: none;
}

