* {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
:root{
    --main-color: #04386b;
    --secondary-color: #019219;
    --whatsapp-green: #25D366;
    --primary-light: #2c5f8a;
    --navbar-bg: rgba(255, 255, 255, 0.95);
}
.text-main-color{
    color: var(--main-color) !important;
}
.text-second-color{
    color: var(--secondary-color) !important;
}
.bg-main-color{
    background-color: var(--main-color);
}
.bg-second-color{
    background-color: var(--secondary-color);
}

.fs-085 {
    font-size: 0.85rem;
}
.text-justify{
    text-align: justify;
}
.header-variation {
    background: var(--navbar-bg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-variation.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.header-variation .minimal-logo-icon img {
    transition: transform 0.3s ease;
    height: 65px;
    width: auto;
}

.header-variation .navbar-nav .nav-link {
    color: var(--main-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.header-variation .navbar-nav .nav-link:hover,
.header-variation .navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.header-variation .btn-primary-minimal,
.header-variation .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 40px;         
  padding: 0rem 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.header-variation .btn-primary-minimal {
  background: linear-gradient(135deg, var(--main-color), #3b82f6);
  border: none;
  color: #fff;
}
.header-variation .btn-primary-minimal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
  background: linear-gradient(135deg, #1d4ed8, var(--main-color));
}

.header-variation .whatsapp-btn {
  background: linear-gradient(135deg, var(--whatsapp-green), #22c55e);
  border: none;
  color: #fff;
  text-decoration: none;
  border-radius: 0.375rem;
}
.header-variation .whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  background: linear-gradient(135deg, #22c55e, var(--whatsapp-green));
}
.header-variation .whatsapp-btn i {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}
.header-variation .whatsapp-btn i {
    animation: pulse3 2s infinite;
}

@keyframes pulse3 {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.header-variation .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    background: var(--main-color);
    border-radius: 8px;
}

.header-variation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.header-variation .offcanvas-header {
    background: linear-gradient(135deg, var(--main-color), #3b82f6);
    color: white;
}

.header-variation .dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: block;
    transition: all 0.3s ease;
}

.header-variation .dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-variation .dropdown-item {
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 400;
}

.header-variation .dropdown-item:hover {
    background: linear-gradient(135deg, var(--main-color), #3b82f6);
    color: white;
}

/* .minimal-nav a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
} */

.minimal-cta {
    display: flex;
    gap: 0.95rem;
    align-items: stretch;
}

.btn-minimal {
    transition: all 0.3s ease;
}

.btn-primary-minimal {
    background: var(--main-color);
    color: white;
}

.btn-primary-minimal:hover {
    background: #2563eb;
    color: #fff;
}

.btn-secondary-minimal {
    background: var(--secondary-color);
    color: #fff;
}

.btn-secondary-minimal:hover {
    background: var(--whatsapp-green);
    color: #fff;
}

.about-us .experince-box {
    background-image: url('../img/experince-shape.png');
}

.custom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-us .left-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    place-items: center;
}

.about-us .experience-card {
    width: 370px;
    height: 370px;
    background-color: #fff;
}
.about-us .shape-1{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.experience-number {
    font-size: 180px;
    font-weight: 600;
    position: relative;
    line-height: 1;
    z-index: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

.experience-text {
    font-size: 24px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.about-us .right-section {
    padding: 25px;
    border-radius: 20px;
}

.about-us .header-tag {
    color: #4285f4;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.about-us .main-title {
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-us .description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(66, 133, 244, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(66, 133, 244, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285f4 0%, #1565c0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
}
.about-us .cta-section {
  display: flex;  
  align-items: center;      
  gap: 12px;            
}
.about-btn-main{
    background: linear-gradient(135deg, var(--main-color), #3b82f6);
    color: white;
}
.about-btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #25D366);
    color: white;
}
.about-btn {
    padding: 12px 18px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    text-decoration: none;
    display: inline-flex; 
    align-items: center;
    justify-content: center;
}

.about-btn-main:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8, var(--main-color));
}
.about-btn-secondary:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(1, 146, 25, 0.3);
    background: linear-gradient(135deg, #25D366, var(--secondary-color));
}
/* .decorative-element {
    width: 60px;
    height: 60px;
    border: 3px solid #4285f4;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.decorative-element::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #4285f4;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
} */
.about-shape-two {
    animation: bounceleft 4s linear infinite;
}

@keyframes bounceleft {
    0% {
        transform: translateX(-40px);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(-40px);
    }
}

.testimonials-section {
    padding: 30px 20px;
    position: relative;
    /* background: #1a1d29; */
    background-image: url('../img/testi-bg.webp');
    background-size: cover;
    background-position: center;
    height: 90%;
}

/* Exact dotted pattern from image */
.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    /* background: #04386b; */
    background-size: 20px 20px;
    opacity: 0.4;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag {
    display: inline-block;
    background: #ff4500;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.section-title {
    /* font-size: 45px; */
    font-weight: 500;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--main-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testinomial-slider .slick-slide {
    display: flex !important;       
    align-items: stretch;           
}
.testimonial-card {
    flex: 1 1 auto;                 
    display: flex;                  
    flex-direction: column;        
    justify-content: space-between; 
    background: rgb(42, 46, 57);
    border-radius: 15px;
    padding: 30px 25px 25px 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.quote-icon {
    font-size: 60px;
    color: #ff4500;
    margin-bottom: 25px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #b8bcc8;
    margin-bottom: 35px;
    font-weight: 400;
}

.star-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 3px;
}

.star {
    font-size: 18px;
    color: #ffd700;
}

/* .author-section {
    position: relative;
} */
.author-info {
    text-align: center;
    margin-bottom: 20px;
}

.author-info h4 {
    font-size: 20px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.author-role {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.author-avatar {
    max-width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-wrapper {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
}

.author-avatar-wrapper::before,
.author-avatar-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: url('../img/testi7.webp') no-repeat center;
    background-size: contain;
    z-index: 2;
}

.author-avatar-wrapper::before {
    left: -60px;
}

.author-avatar-wrapper::after {
    right: -60px;
}

.hero-banner {
    overflow: hidden;
    position: relative;
}

.banner-content {
    max-width: 700px;
}

.banner-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    text-align: justify;
}

.banner-cta {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.banner-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 38px;
  align-items: center;
}

.stats-container {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 20px;
  border-right: 1px solid #e9ecef;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--main-color), #0056b3);
  border-radius: 50%;
  flex-shrink: 0;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.stat-content {
    text-align: left;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--main-color);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: #3a3a3a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Animation for counting effect */
.counting {
    animation: pulse 0.1s ease-in-out;
}

.container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.feature-card {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: rgb(240, 240, 240);
    /* backdrop-filter: blur(20px); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.feature-card:hover .icon-container {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}

.icon {
    width: 40px;
    height: 40px;
    fill: #04386b;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon {
    transform: scale(1.2);
}

.feature-card .card-title {
    color: #04386b;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); */
}

.card-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-description {
    opacity: 1;
}

/* Different gradient backgrounds for each card */
.feature-card:nth-child(1) .icon-container {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    box-shadow: 0 10px 30px rgba(255, 154, 158, 0.3);
}

.feature-card:nth-child(1):hover .icon-container {
    box-shadow: 0 15px 40px rgba(255, 154, 158, 0.5);
}

.feature-card:nth-child(2) .icon-container {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    box-shadow: 0 10px 30px rgba(168, 237, 234, 0.3);
}

.feature-card:nth-child(2):hover .icon-container {
    box-shadow: 0 15px 40px rgba(168, 237, 234, 0.5);
}

.feature-card:nth-child(3) .icon-container {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    box-shadow: 0 10px 30px rgba(252, 182, 159, 0.3);
}

.feature-card:nth-child(3):hover .icon-container {
    box-shadow: 0 15px 40px rgba(252, 182, 159, 0.5);
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-card {
    animation: float 6s ease-in-out infinite;
}

.feature-card:nth-child(2) {
    animation-delay: -2s;
}

.feature-card:nth-child(3) {
    animation-delay: -4s;
}

/* .feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.feature-card:hover::after {
    width: 200px;
    height: 200px;
} */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 180px;
    height: 80px;
}

.brand-text {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.certifications {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.cert-badge {
    width: 80px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
    transition: transform 0.3s ease;
}

.cert-badge:hover {
    transform: translateY(-3px);
}

.cert-badge .cert-icon {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.8;
}

.contact-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #04386b, #28a745);
    border-radius: 50%;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.industries-we-serve .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* default desktop: 4 cols */
    gap: 16px;
}

/* Grid items */
.industries-we-serve .grid-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

/* Hover effect */
.industries-we-serve .grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Title inside item */
.industries-we-serve .grid-item > .title {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    padding: 15px;
    transition: opacity 0.3s ease;
    z-index: 2;
    position: relative;
    color: #fff;
}

.industries-we-serve .overlay {
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background-color: rgba(1, 146, 25, 0.9);
    padding: 30px 20px 20px;
    color: white;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.industries-we-serve .grid-item:hover > .title {
    opacity: 0;
    visibility: hidden;
}
.industries-we-serve .grid-item:hover .overlay {
    opacity: 1;
    visibility: visible;
}

.industries-we-serve .overlay .title {
    font-size: 22px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}
.industries-we-serve .grid-item.active > .title {
    opacity: 0;
    visibility: hidden;
}

.industries-we-serve .grid-item.active .overlay {
    opacity: 1;
    visibility: visible;
}

.industries-we-serve .item-1 {
    grid-row: 1 / 3;
    grid-column: 1;
}

.industries-we-serve .item-2 {
    grid-row: 1;
    grid-column: 2;
}

.industries-we-serve .item-3 {
    grid-row: 1;
    grid-column: 3;
}

.industries-we-serve .item-4 {
    grid-row: 2;
    grid-column: 2;
}

.industries-we-serve .item-5 {
    grid-row: 1 / 3; /* Spans both rows */
    grid-column: 4;
}

/* Individual item styling */
.industries-we-serve .item-1 {
    background: url('../img/it-asset-b2bexportllc.png');
    background-position: center;
    background-size: cover;    
}

.industries-we-serve .item-2 {
    background-image: url('../img/data-destruction-b2bexportllc.png');
    background-position: center;
    background-size: cover;    
}

.industries-we-serve .item-3 {
    background-image: url('../img/data-center-exportllc.png');
    background-position: center;
    background-size: cover;
}

.industries-we-serve .item-4 {
    background-image: url('../img/It-asset-re-marketing-b2bexportsllc.png');
    background-position: center;
    background-size: cover;
}

.industries-we-serve .item-5 {
    background-image: url('../img/It-asset-disposal-b2bexportllc.png');
    background-position: center;
    background-size: cover;
}

.industries-we-serve .item-6 {
    background-image: url('../img/asset-rerurbishing-value-recovery.png');
    background-position: center;
    background-size: cover;
}
.industries-process{
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.industries-process-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.industries-process .flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.industries-process .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.industries-process .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.industries-process .flip-card-front, .industries-process .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.4s ease;
}

.industries-process .flip-card-front {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    color: #333;
    border: 2px solid var(--main-color);
}

.industries-process .flip-card-back {
    background-image: var(--bg-image);
    background-position: center;
    background-size: cover;
    color: white;
    transform: rotateY(180deg);
    position: relative;
}

/* Overlay effect */
.industries-process .flip-card-back::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(4, 56, 107, 0.9) !important;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 12px;
}

/* Show overlay only on hover */
.industries-process .flip-card-back::after {
    opacity: 1;
}

/* Keep text and content above overlay */
.industries-process .flip-card-back > * {
    position: relative;
    z-index: 2;
}


.flip-card:hover .flip-card-front {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.industries-process .icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.industries-process .flip-card-back .icon {
    background: #667eea;
    transform: scale(1.1);
}

.industries-process .icon svg {
    width: 40px;
    height: 40px;
    fill: #000;
}

.industries-process .title {
    /* margin-top:20px; */
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.industries-process .flip-card-front .title {
    color: #2d3748;
}

.industries-process .flip-card-back .title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.industries-process .arrow {
    width: 50px;
    height: 2px;
    background: #667eea;
    position: relative;
    transition: all 0.3s ease;
}

.industries-process .arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid #667eea;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    transition: all 0.3s ease;
}

.flip-card-back .arrow {
    background: #fff;
    transform: translateX(20px);
}

.flip-card-back .arrow::after {
    border-left-color: #fff;
}

.industries-process .description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    text-align: center;
    margin-bottom: 20px;
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    color: #fff;
}
/* blog page */
.breadcrump-banner {
    position: relative; /* Needed for absolute heading */
    background: url('../img/faq-it-asset-management-company-b2bexportsllc.png') center/cover no-repeat;
    min-height: 150px;
    padding: 30px 0;
    display: flex;
    align-items: center;
}

.banner-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}

.banner-heading h3 {
    font-size: 1.75rem;
}

.banner-heading h3 span::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    margin: 10px auto 0;
    background-color: #fff;
}
.blog-section{
    background-color: #f8f9fa;
}

.blog-section .card{
    transition: all 0.4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.blog-section .card:hover{
    transform: translateY(-5px);    
}
.hover-btn {
    position: relative;
    overflow: hidden;
    color: var(--secondary-color);
    background: transparent;
    border: 1px solid var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease-out;
    z-index: 1;
}

.hover-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform 0.3s ease-out;
    z-index: -1;
}

.hover-btn:hover {
    color: #fff !important;
}

.hover-btn:hover::before {
    transform: scaleX(1);
}
.article-category{
        display: inline-block;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}
.article-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}
.article-title{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2b6cb0, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.blog-featured-image{
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.blog-featured-image:hover {
    transform: scale(1.02);
}
.blog-detail p{
    line-height: 1.7;
    color: #2d3748;
}
.blog-detail .article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #718096;
    font-size: 0.925rem;
    margin-bottom: 30px;
}

.blog-detail .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-detail .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4299e1, #3182ce);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}
.blog-detail .popular-posts {
    background: #ffffff;
    /* border-radius: 24px; */
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* border: 1px solid #e2e8f0; */
}
.blog-detail .sidebar {
    position: sticky;
    top: 90px;          
    /* max-height: calc(100vh - 100px);  */
    padding-right: 5px;
    overflow-y: hidden;
}
.blog-detail .sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #2b6cb0, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-detail .post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.blog-detail .post-item:hover {
    background: rgba(66, 153, 225, 0.05);
    transform: translateX(5px);
    border-color: rgba(66, 153, 225, 0.2);
    box-shadow: 0 5px 20px rgba(66, 153, 225, 0.1);
}

.blog-detail .post-item:last-child {
    margin-bottom: 0;
}

.blog-detail .post-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.blog-detail .post-info h4 {
    font-size: 0.925rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a202c;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-detail .post-item:hover .post-info h4 {
    color: #3182ce;
}

.blog-detail .post-meta {
    font-size: 0.8rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 10px;
}

.read-count {
    display: flex;
    align-items: center;
    gap: 4px;
}
.category-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.category-item {
    border: none !important;
    border-bottom: 1px solid #e9ecef !important;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.category-item:last-child {
    border-bottom: none !important;
}

.category-item:hover {
    background-color: #f8f9fa;
    transform: translateX(4px);
}

.category-item.active {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.category-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.category-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-icon {
    color: #6c757d;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.category-text {
    font-weight: 500;
    color: #495057;
    transition: color 0.3s ease;
}

.expand-icon {
    color: #6c757d;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: transparent;
    border: none;
}

.expand-icon:hover {
    background-color: #e9ecef;
    color: #495057;
}

.expand-icon.expanded {
    transform: rotate(45deg);
    color: #dc3545;
}

.subcategory-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background-color: #f8f9fa;
}

.subcategory-list.expanded {
    max-height: 400px;
    padding: 12px 0;
}

.subcategory-item {
    padding: 10px 24px;
    margin: 0 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.subcategory-item:hover {
    background-color: white;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.subcategory-icon {
    color: #8e24aa;
    font-size: 0.75rem;
}

.subcategory-text {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 400;
}

.category-badge {
    background-color: #e3f2fd;
    color: #1976d2;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subcategory-item {
    animation: slideIn 0.3s ease forwards;
}
.newsletter-section{
    /* background-color: #e8f4f8; */
    background-color: var(--main-color);
    color: #fff;
}
.subscription-container {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.subscription-content {
    flex: 1;
}

.subscription-title {
    font-size: 48px;
    font-weight: 600;
    /* color: var(--main-color); */
    margin-bottom: 8px;
    line-height: 1.1;
}

.subscription-subtitle {
    font-size: 18px;
    /* color: #333; */
    font-weight: 400;
}

.subscription-form {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 500px;
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    background-color: white;
    color: #666;
}

.email-input::placeholder {
    color: #999;
    font-size: 16px;
}

.email-input:focus {
    border-color: #2c8aa6;
    box-shadow: 0 0 0 3px rgba(44, 138, 166, 0.1);
}

.subscribe-btn {
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background-color: #ffb300;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.subscribe-btn:active {
    transform: translateY(0);
}
.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.content-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* ===== Sidebar ===== */
.faq-sidebar {
    flex: 0 0 320px;         
    max-width: 320px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.faq-sidebar h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

/* ===== Accordion Items ===== */
.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    margin-bottom: 1.5rem;
}
.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: #e2e8f0;
}

/* ===== Accordion Buttons ===== */
.accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: #1e293b;
    padding: 1.3rem 2rem;
    background-color: transparent;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 0 !important;
}

.accordion-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.08), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.accordion-button:hover::before {
    left: 100%;
}
.accordion-button:hover {
    background: #f8fafc;
}
.accordion-button::after {
    transition: transform 0.3s ease;
}

/* ===== Accordion Body ===== */
.accordion-body {
    color: #64748b;
    line-height: 1.7;
}

/* ===== Accordion Animation ===== */
.accordion {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ===== Content Area ===== */
.flex-grow-1 {
    flex: 1;
    min-width: 0;
}

.category-btn {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: #f8fafc;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    width: 100%;
}

.category-btn:hover,
.category-btn.active {
    background: #3b82f6;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.06);
    animation: float1 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}
.wanttobuy-grid {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    animation: slideUp 0.8s ease-out;
    perspective: 1000px;
    padding: 1rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wanttobuy-grid .left-section {
    width: 100%;
    /* max-width: 500px;
    min-height: 450px; */
    position: relative;
}

.wanttobuy-grid .flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
    transform-style: preserve-3d;
}

.left-section:hover .flip-inner {
    transform: rotateY(180deg);
}

.wanttobuy-grid .flip-front {
    position: relative;
    overflow: hidden;
}

.wanttobuy-grid .flip-front img.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0; 
}
.wanttobuy-grid .flip-front,
.wanttobuy-grid .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    text-align: center;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

/* Back side */
.wanttobuy-grid .flip-back {
    transform: rotateY(180deg);
    background: var(--main-color);
    color: white;
}

.flip-front p,
.flip-front h3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.flip-front p:nth-child(3) { animation-delay: 0.1s; }
.flip-front h3 { animation-delay: 0.2s; }
.flip-front p.subtitle:nth-of-type(1) { animation-delay: 0.35s; }
.flip-front p.subtitle:nth-of-type(2) { animation-delay: 0.5s; }

.flip-back h1,
.flip-back p {
    opacity: 0;
    transform: scale(0.95);
    animation: fadeScale 0.5s ease forwards;
}

.flip-back h1 { animation-delay: 0.15s; }
.flip-back p { animation-delay: 0.35s; }

/* Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.input-field,
.select-field,
.text-area-field {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.input-field:focus,
.select-field:focus,
.text-area-field:focus {
    outline: none;
    border-color: #60a5fa;
    background: white;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
    transform: translateY(-2px);
}

.select-field {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    appearance: none;
}

.text-area-field {
    resize: vertical;
    min-height: 100px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}
.submit-btn{
    background: var(--secondary-color);
    color: white;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    background-color: var(--main-color);
    color: #fff;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:hover::before {
    left: 100%;
}
.form-container h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}
.underline::after{
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background-color: var(--secondary-color);
    margin: 0.5rem auto 0 auto;
}
.underline-want-to::after{
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background-color: var(--main-color);
    margin: 0.8rem auto 0 auto;
}
.contact-flip-container .main-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

.contact-flip-container .card-header {
    /* background: linear-gradient(135deg, var(--main-color), var(--secondary-color)); */
    background: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 12px;
    border: none;
    position: relative;
}

.contact-flip-container .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-flip-container .card .card-body {
    min-height: 530px;
}

.contact-flip-container .office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    width: 100%;
}

.contact-flip-container .flip-card {
    background-color: transparent;
    width: 100%;
    min-height: 250px;
    perspective: 1000px;
}

.contact-flip-container .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.contact-flip-container .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.contact-flip-container .flip-card-front, 
.contact-flip-container .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-flip-container .flip-card-front {
    border-color: var(--main-color);
    background: linear-gradient(135deg, var(--main-color) 0%, #0550a3 100%);
    color: white;
}

.contact-flip-container .flip-card-back {
    border-color: var(--secondary-color) !important;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #02b621 100%) !important;
    color: white;
    transform: rotateY(180deg);
}

.contact-flip-container .flip-card-front i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    /* animation: pulse 2s infinite; */
}

.contact-flip-container .flip-card-back i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.contact-flip-container .office-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contact-flip-container .office-info {
    font-size: 1rem;
    line-height: 1.4;
    margin: 5px 0;
    opacity: 0.95;
}

.contact-flip-container .office-phone {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
}

.contact-flip-container .middle-border {
    position: relative;
}

.contact-flip-container .middle-border::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--main-color), transparent);
    z-index: -1;
}

.contact-flip-container .middle-border::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 120%;
    background: linear-gradient(0deg, transparent, var(--secondary-color), transparent);
    z-index: -1;
}
.caret-animation{
    text-decoration: none;
}
.caret-animation i {
    font-size: 1rem !important;
    animation: caretBlink 1s infinite;
    opacity: 0.3;
}

.caret-animation i:nth-child(1) {
    animation-delay: 0s;
}
.caret-animation i:nth-child(2) {
    animation-delay: 0.2s;
}
.caret-animation i:nth-child(3) {
    animation-delay: 0.4s;
}
.caret-animation i:nth-child(4) {
    animation-delay: 0.6s;
}
/* footer */
.footer {
    background-color: #f8f9fa;
    padding: 50px 0 20px;
}

.footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Left Section */
.footer .footer-left-section {
    display: flex;
    flex-direction: column;
}

.footer .logo {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer .logo img {
    margin-right: 10px;
}

.footer .social-icons {
    display: flex;
    gap: 8px;
}

.bg-colory{

 background-color: #FF0000 !important; 
}
.bg-colori{
 background-color: #E4405F !important;
}

.footer .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.footer .social-icon:hover {
    transform: scale(1.1);
}

.footer .social-icon.pinterest { background-color: #E60023; } 
.footer .social-icon.facebook { background-color: #1877F2; }  
.footer .social-icon.x { background-color: #000000; }        
.footer .social-icon.linkedin { background-color: #0077B5; }  
.footer .social-icon.instagram { background-color: #E4405F; }  
.footer .social-icon.youtube { background-color: #FF0000; }  

.footer .company-description {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.footer .award-text {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer .awards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.footer .award-badge {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.footer .award-badge:hover {
    transform: translateY(-2px);
}

.footer .award-badge img {
    max-height: 7rem;
    object-fit: cover;
}

.footer .best-search-badge {
    background: #ffd700;
    color: #333;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    padding: 8px;
}

.footer .round-badge {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    text-align: center;
    font-weight: bold;
}

.footer .seo-badge {
    background: #6c757d;
    color: white;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
}

/* Right Section */
.footer .footer-right-section {
    display: flex;
    flex-direction: column;
}

.footer .get-in-touch h2 {
    color: #333;
    font-size: 24px;
}

.footer .locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer .location {
    display: flex;
}

.footer .location-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.footer .location-icon i {
    color: white;
    font-size: 20px;
}

.footer .location-details h3 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer .location-details p {
    color: #666;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.footer .location-details .phone {
    color: #007bff;
    font-weight: 500;
}

/* Services Section */
.footer .services-section {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-top: 30px;
}

.footer .service-column h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer .service-column ul {
    list-style: none;
    padding-left: 0;
}

.footer .service-column li {
    margin-bottom: 8px;
}

.footer .service-column a {
    text-decoration: none;
    color: var(--main-color);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer .service-column a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer .location-services {
    background-color: #e3f2fd;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: right;
}

.footer .location-services a {
    color: #1976d2;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}
@keyframes caretBlink {
    0% { opacity: 0.3; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(2px); }
    100% { opacity: 0.3; transform: translateX(0); }
}

.thankyou-page .main-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75vh;
    background: rgba(245, 245, 245, 0.95);
    text-align: center;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-page .checkmarks {
    width: 50px;
    aspect-ratio: 1 / 1;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: checkmarkPop 0.8s ease-out;
}

.thankyou-page .checkmarks i {
    color: white;
    font-size: 30px;
    display: block;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-page h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thankyou-page .description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
}

.thankyou-page .content-sections {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    gap: 40px;
}

.thankyou-page .section {
    flex: 1;
    text-align: center;
    background: white;
    padding: 22px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.thankyou-page .section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.thankyou-page .section h2 {
    font-size: 1.3rem;
    color: var(--main-color);
    font-weight: bold;
}

/* Social icons */
.thankyou-page .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.thankyou-page .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.thankyou-page .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-page .facebook { background: #1877f2; }
.thankyou-page .linkedin { background: #0077b5; }
.thankyou-page .pinterest { background: #bd081c; }
.thankyou-page .twitter { background: #000000; }

/* Button */
.thankyou-page .visit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(1, 146, 25, 0.3);
    min-width: 150px;
}

.thankyou-page .visit-btn:hover {
    background: #016a14;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 146, 25, 0.4);
}
.checkboxa{
    position: relative !important;
    margin-left: 210px !important;
}
.error-page .container-animation {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

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

.error-page .error-illustration {
    position: relative;
    margin-bottom: 3rem;
    display: inline-block;
}

.error-page .error-number {
    font-size: clamp(120px, 20vw, 200px);
    font-weight: 900;
    color: var(--main-color);
    text-shadow: 2px 2px 0px rgba(4, 56, 107, 0.1);
    line-height: 1;
    position: relative;
    display: inline-block;
}

.error-page .error-number::before {
    content: '404';
    position: absolute;
    top: 4px;
    left: 4px;
    color: var(--secondary-color);
    opacity: 0.3;
    z-index: -1;
}

.error-page .content {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(4, 56, 107, 0.1);
    backdrop-filter: blur(10px);
}

.error-page h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--main-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.error-page .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 400;
}

.error-page .description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-page .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 100%);
    color: var(--white);
}

.error-page .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0559a3 0%, var(--main-color) 100%);
}
.certifications .certification-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certifications .certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
/* .certifications .cert-info {
    margin-bottom: 30px;
} */

.certifications .cert-info h1 {
    color: var(--main-color);
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: bold;
}

.certifications .meta-info {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.certifications .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.certifications .inner-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.certifications .inner-text p {
    margin-bottom: 15px;
}

.certifications .certification-details {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
}
.certifications .certificate-design {
    /* width: 250px; */
    /* height: 350px; */
    /* background: linear-gradient(45deg, var(--main-color), #065a9e); */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 30px;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.certifications .certificate-design::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    /* border: 2px solid rgba(255,255,255,0.3); */
    border: 2px solid rgba(5, 42, 250, 0.3);
    border-radius: 10px;
}
.certifications .certificate-visual {
    position: relative;
    overflow: hidden;
    padding: 0.85rem;
    display: flex;
    justify-content: center;

}
.certifications .cert-logo {
    width: 100%;
    max-width: 150px;
    height: auto;     
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.certifications .cert-logo img {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}
/* why choose us */
.why-choose-us .image-section .overlay-content {
    width: 512px;
    margin: 0 auto;
}
.why-choose-us .image-section {
    flex: 1;
    position: relative;
}

.why-choose-us .handshake-image {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    opacity: 0.9;
}

.why-choose-us .content-section {
    background-color: white;
}

.why-choose-us .section-header {
    color: #666;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-choose-us .main-title {
    color: #1565C0;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.why-choose-us .service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.why-choose-us .icon-container {
    width: 60px;
    height: 60px;
    background: var(--main-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--secondary-color);
}
.why-choose-us .icon-container i{
    color: #fff;
    font-size: 1.4rem;
}
.why-choose-us .icon {
    width: 28px;
    height: 28px;
    color: #2E7D32;
}

.why-choose-us .service-content h3 {
    color: #1565C0;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-choose-us .service-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}
.blog-border{
    font-size: 20px;
    margin: 3px 0 12px;
    font-weight: 500;
    color: #fff;
    padding: 3px 0px;
    border-bottom: solid var(--secondary-color) 3px;
    left: 25px;
    width: 100%;
}
.services-page .card{
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
}
.services-page .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.services-page .col-md-4:nth-child(1) .card-image {
    background-image: url('../img/It-asset-re-marketing-b2bexportsllc.png');
}
.services-page .col-md-4:nth-child(2) .card-image {
    background-image: url('../img/data-destruction-b2bexportllc.png');
}
.services-page .col-md-4:nth-child(3) .card-image {
    background-image: url('../img/It-asset-disposal-b2bexportllc.png');
}
.services-page .col-md-4:nth-child(4) .card-image {
    background-image: url('../img/it-asset-b2bexportllc.png');
}
.services-page .col-md-4:nth-child(5) .card-image {
    background-image: url('../img/data-center-exportllc.png');
}
.services-page .col-md-4:nth-child(6) .card-image {
    background-image: url('../img/hdd-disposal-b2bexportllc.png');
}

.services-page .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    z-index: 3;
    background: linear-gradient(transparent, rgba(74, 105, 189, 0.9) 30%, rgba(30, 60, 114, 0.95) 100%);
}
.services-page .card-content .card-title{
    font-size: 1.45rem;
}
.services-page .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(74, 105, 189, 0.8) 50%, rgba(30, 60, 114, 0.9) 100%);
    z-index: 2;
}
.faq-section .faq-left {
  position: relative;
  background: url('../img/industrial-service.jpg') center/cover no-repeat;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.faq-section .faq-left::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(4, 56, 107, 0.85);
}

.faq-section .faq-left h2, 
.faq-section .faq-left p {
  position: relative;
  z-index: 2;
}

/* Accordion Styling */
.faq-section .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-section .custom-accordion .accordion-button {
  background: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.faq-section .custom-accordion .accordion-button:hover {
  background: #f0f4ff;
}

.faq-section .custom-accordion .accordion-button:not(.collapsed) {
  color: var(--main-color);
  background: #eef4ff;
  box-shadow: none;
}

.faq-section .custom-accordion .accordion-body {
  background: #fff;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

/* WhatsApp Icon */
.faq-section .whatsapp-icon {
  background-color: var(--secondary-color);
}

/* Email Icon */
.faq-section .email-icon {
  background-color: #fff;       
  color: var(--main-color);     
}

/* Hover effect */
.faq-section .nav-link:hover .icon-circle {
  opacity: 0.85;
  transition: 0.3s ease;
}
.faq-section .view-more-btn {
  background-color: #fff;
  color: var(--main-color);
  text-decoration: none;
  transition: 0.3s ease;
}

.faq-section .view-more-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
.process-section .process-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}
.process-section .process-card {
  position: relative;
  background: #fff;
  padding: 30px 15px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--main-color);
}

.process-section .process-card:hover {
  transform: translateY(-5px);
  border: 2px solid var(--secondary-color);
}

.process-section .process-card .card-front {
  z-index: 2;
}
.process-section .process-card .icon-step {
  position: absolute;
  top: 0px;     
  left: 0px;     
  background-color: var(--secondary-color);
  color: #fff;     
  font-size: 14px;
  font-weight: 600;
  padding: 5px 12px;
  border-bottom-right-radius: 16px;  
  z-index: 2;   
  overflow: hidden;      
}

.process-section .process-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
  z-index: 3;
}
.process-section .process-card:hover .card-overlay {
  opacity: 1;
}
.process-section .process-card .card-front .icon-circle {
  width: 52px !important;          
  height: 52px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: lightgray;
  margin: 0 auto 10px;
}
.process-section .process-card .card-front .icon-circle i {
  font-size: 25px;  
  color: rgb(54, 54, 54);
}
.service-banner-section {
    background: var(--service-bg) center/cover no-repeat;
    min-height: 300px;
    position: relative;
}
.services-inner-page .section {
    padding: 60px 0;
}
.services-inner-page.hero {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 60px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-inner-page.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/it-asset-management-company.webp') center/cover;
    opacity: 0.1;
}

.services-inner-page.hero-content {
    position: relative;
    z-index: 2;
}

.services-inner-page.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-inner-page.hero p {
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.services-inner-page .cta-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.services-inner-page .cta-button:hover {
    background: #34ce57;
    transform: translateY(-2px);
}
/* Stats Section */
.service-stats {
    background: var(--main-color);
    color: #fff;
    padding: 40px 0;
}

.service-stats .service-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.service-stats .service-stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-stats .service-stat-item p {
    font-size: 1.1rem;
}
.services-inner-page .section-title.h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 3rem;
    color: var(--main-color);
    font-weight: 700;
}
.services-inner-page .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.services-inner-page .about-text {
    font-size: 1rem;
    line-height: 1.5;
}

.services-inner-page .about-image {
    height: 420px;
}

.services-inner-page .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.services-inner-page .objective-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.services-inner-page .objective-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.5s ease;
}

.services-inner-page .objective-card:hover::before {
    left: 100%;
}

.services-inner-page .objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-inner-page .objective-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.services-inner-page .objective-icon i {
    font-size: 2rem;
    color: white;
}

.services-inner-page .objective-card h3 {
    font-size: 1.4rem !important;
    color: var(--main-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.services-inner-page .objective-card p {
    /* color: var(--text-light); */
    line-height: 1.8;
}
.services-inner-page .benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid var(--secondary-color);
}

.services-inner-page .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-inner-page .benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.services-inner-page .benefit-card h3 {
    color: var(--main-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.itad-card {
    background: #fff;
    border: 1px solid #eee;
}

.itad-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.itad-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f9fafc;
}

.itad-list li:hover {
    background: #eef5ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.itad-list .icon {
    flex: 0 0 50px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.itad-list .text {
    flex: 1;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.itad-list strong {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 5px;
}
.lifecycle-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 30px;
  width: 4px;
  height: calc(100% + 30px);
  background: var(--secondary-color);
  transform: translateX(-50%);
}

.timeline-item:last-child::before {
  display: none;
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 2rem;
  position: relative;
}

.timeline-number {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 10;
}
.content-differeciate{
    color: #ffffff;
    /* min-height: 100vh; */    
    background: url('../img/industrial-service.jpg');
    position: relative;
    overflow-x: hidden;
}
.content-differeciate::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 0;
}

.content-differeciate .content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.content-differeciate .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.content-differeciate .content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}
.vs-divider {
    /* grid-column: 1 / -1; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.vs-circle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.4),
        0 0 0 6px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.vs-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: subtract;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: subtract;
    opacity: 0.5;
}

.vs-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(59, 130, 246, 0.3),
            0 0 0 4px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 15px 40px rgba(59, 130, 246, 0.4),
            0 0 0 6px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}
.itam-type-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.itam-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--main-color), var(--secondary-color));
}

.itam-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.ads-img-box .ad-btn-img {
    max-width: 100%;
    height: auto;
}
.ad-buttons a {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
/* Hover glow only inside .ad-buttons */
.ad-buttons a.bg-main-color:hover {
    box-shadow: 0 0 12px rgba(4, 56, 107, 0.6);
    transform: translateY(-2px);
}

.ad-buttons a.bg-second-color:hover {
    box-shadow: 0 0 12px rgba(1, 146, 25, 0.6);
    transform: translateY(-2px);
}
.desktop-cta {
  z-index: 1050;
  box-shadow: 0 -6px 10px -2px rgba(0, 0, 0, 0.19);
  transition: transform 0.3s ease;
}
.desktop-cta.hide {
  transform: translateY(100%);
}
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  padding: 0.6rem 0;        
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.12);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.mobile-cta .cta-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  color: #333;
  text-decoration: none;
}

.mobile-cta .cta-link i {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
  color: var(--main-color);
}

.mtl{
    margin-left: -110px !important;
}


@media(min-width: 991px){
    .header-variation .dropdown-menu.services-dropdown {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(180px, 1fr));
        gap: 0.5rem 1rem;
        min-width: 420px;
    }
    .header-variation .dropdown-menu.services-dropdown .dropdown-item {
        white-space: normal;
    }
    .industries-we-serve .grid-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    .industries-we-serve .grid-item:hover > .title {
        opacity: 0;
        visibility: hidden;
    }

    .industries-we-serve .grid-item:hover .overlay {
        opacity: 1;
        visibility: visible;
    }
    .ad-buttons {
        justify-content: center;
        gap: 1rem;
    }
}
@media(min-width: 768.98px){
}
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .banner-title {
        font-size: 2.8rem;
    }
    .minimal-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    .offcanvas-body .dropdown-menu {
        position: absolute !important;
        top: 100%;
        left: 0;
        min-width: 200px;
        z-index: 1050;
    }
    .footer .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer .services-section{
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    .experience-number {
        font-size: 140px;
    }
    .industries-we-serve .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-we-serve .grid-container .grid-item {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    .services-inner-page .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-inner-page .about-image {
        height: auto;
    }
    .services-inner-page .about-image img {
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }
    .services-inner-page .section {
        padding: 40px 0;
    }
    .services-inner-page .section-title.h2{
        font-size: 1.95rem;
    }
    .itad-list li {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
    }
    .itad-list .icon {
        flex: 0 0 45px;
        height: 45px;
        width: 45px;
        font-size: 18px;
        margin-right: 12px;
    }
    .itad-list .text {
        font-size: 14px;
    }
    .timeline-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    .timeline-item::before {
        left: 20px; /* move line to the left */
        transform: none;
    }
    .timeline-number {
        left: 20px;
        transform: none;
        top: 0;
        margin-bottom: 1rem;
    }
    .timeline-content {
        margin: 1rem 0 1rem 60px; 
        width: 100%;
    }
    .wanttobuy-grid {
        grid-template-columns: 1fr;
    }

    .wanttobuy-grid .flip-front,
    .wanttobuy-grid .flip-back {             
        width: 100%;
        height: 600px;
        padding: 20px;
    }
    .wanttobuy-grid .flip-front img.bg-img {
        width: 100%;
        height: auto;
        object-fit: cover;
        position: relative;
    }
}

@media (max-width:768px) {
    .banner-heading {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 15px;
        width: 100%;
    }
    .custom-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .left-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-us .experience-card {
        width: 325px;
        height: 325px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .testimonial-card {
        padding: 30px 25px 25px 25px;
    }

    .testimonial-card::after,
    .testimonial-card::before {
        display: none;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        border-right: none;          /* mobile में divider न दिखे */
        border-bottom: 1px solid #e9ecef;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    .industries-we-serve .grid-container {
        grid-template-columns: 1fr;
    }

    .industries-we-serve .grid-container .grid-item {
        min-height: auto;
        height: auto;
    }
    .industries-we-serve .title {
        font-size: 20px;
    }
    .industries-process .section-title {
        font-size: 2rem;
    }
    .content-wrapper{
        grid-template-columns: 1fr;
    }
    .industries-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-title {
        font-size: 2rem;
    }
    .blog-detail .popular-posts {
        position: static;
    }
    .subscription-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }

    .subscription-title {
        font-size: 36px;
    }

    .subscription-form {
        flex-direction: column;
        max-width: 100%;
        width: 100%;
    }

    .email-input {
        border-radius: 8px;
        border-right: 2px solid #e0e0e0;
        margin-bottom: 12px;
        width: 100%;
    }

    .subscribe-btn {
        border-radius: 8px;
        width: 100%;
    }
    .faq-sidebar {
        position: static;
        order: -1;
    }

    .category-btn {
        justify-content: center;
        font-size: 0.85rem;
    }

    .accordion-button {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    .contact-flip-container .office-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-row{gap: 0;}
    
    .contact-flip-container .flip-card {
        min-height: 240px;
    }
    .contact-flip-container .flip-card-front i,
    .contact-flip-container .flip-card-back i {
        font-size: 2rem;
    }
    .contact-flip-container .office-title{
        font-size: 1rem;
    }
    .thankyou-page .main-content {
        padding: 40px 30px;
    }

    .thankyou-page h1 {
        font-size: 2.5rem;
    }

    .thankyou-page .content-sections {
        flex-direction: column;
        gap: 30px;
    }

    .thankyou-page .section {
        padding: 30px 20px;
    }

    .thankyou-page .section h2 {
        font-size: 1.2rem;
    }

    .thankyou-page .social-icons {
        gap: 8px;
    }

    .thankyou-page .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .thankyou-page .visit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .footer .locations {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .footer .services-section{
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .content-wrapper {
        flex-direction: column;
    }
    .faq-sidebar {
        flex: 1 1 auto;
        max-width: 100%;
        position: static;
    }
    .breadcrump-banner {
        min-height: 120px;
        padding: 20px 0;
        text-align: center;
    }
    .banner-heading h3 {
        font-size: 1.4rem;
    }
    .breadcrumb {
        justify-content: center;
        font-size: 0.9rem;
    }
    .services-inner-page .benefit-card{
        padding: 1.5rem;
    }
    .timeline-number {
        display: none;
    }

    .timeline-content {
        margin-left: 0;
        padding-left: 1rem;
    }
    .timeline-item::before {
        left: 10px;
    }
    .timeline-item{
        margin-bottom: 0;
    }
    .ad-buttons a {
        padding: 8px 10px;
    }
}
@media (max-width:576px){
    .why-choose-us .image-section .overlay-content{
        width: 100%;
    }
    .services-inner-page .about-grid {
        padding: 0 1rem;
    }
    .services-inner-page .about-text {
        font-size: 0.95rem;
    }
    .services-inner-page .about-image img {
        border-radius: 12px;
    }
    .services-inner-page .section {
        padding: 30px 0;
    }
    .about-us .header-tag {
        font-size: 18px;
    }
    .about-us .shape-1{
        max-width: 320px;
    }
    .about-us .experience-card {
        width: 290px;
        height: 290px;
    }
}
@media (max-width:468px) {
    .banner-title {
        font-size: 1.8rem;
    }
    .banner-cta {
        padding: 14px 24px;
        font-size: 1rem;
    }
    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
        min-height: 1500px;
    }
    
    .item-1, .item-5 {
        grid-row: auto;
        grid-column: auto;
    }
    
    .title {
        font-size: 18px;
    }
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .thankyou-page .main-content {
        padding: 30px 20px;
    }

    .thankyou-page h1 {
        font-size: 2rem;
    }

    .thankyou-page .description {
        font-size: 1rem;
    }

    .thankyou-page .section h2 {
        font-size: 1.4rem;
    }
    .footer .services-section .service-column:last-child {
        grid-column: 1 / -1;
    }
    .service-banner-section .lead{
        font-size: 1rem;
    }
    .industries-process-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .services-inner-page.hero h1{
        font-size: 2rem;
    }
    .itad-list li {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0.8rem;
    }
    .itad-list .icon {
        margin-right: 0;
        margin-bottom: 0.6rem;
    }
    .itad-list .text {
        font-size: 14px;
        line-height: 1.5;
    }
    .itad-list strong {
        font-size: 14.5px;
        margin-bottom: 3px;
    }
    .services-inner-page .section-title.h2{
        font-size: 1.6rem;
    }
    .services-inner-page .benefit-card{
        padding: 1.2rem;
    }
    .about-us .right-section {
        padding: 0px;
    }
    .contact-flip-container .office-title{
        font-size: 0.9rem;
    }
    .contact-flip-container .flip-card-front i,
    .contact-flip-container .flip-card-back i {
        font-size: 1.6rem;
    }
}
@media(max-width: 376px){
    .about-btn{
        font-size: 12px;
    }
    .why-choose-us .main-title{
        font-size: 22px;
    }
}