body {
    color: #666666;
    background: #dddddd;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #030f27;
}

.imgshadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    /* Optional */

    transition: all 0.3s ease;
}

.imgshadow:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #f4b621;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* Changed from 1366px to 100% for full screen width */
    margin: 0 auto;
    background: #ffffff;
}




/******* Section Header ********/

.section-header {
    position: relative;
    width: 100%;
    margin-bottom: 45px;
}

.section-header p {
    color: #f4b621;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 30px;
    /* section header */
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #030f27;
}

.feature .col-md-12:nth-child(2n) {
    background: #f4b621;
    color: #030f27;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Icon circle with dotted border */
.feature .feature-icon {
    width: 80px;
    height: 80px;
    border: 2px dotted #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #030f27;
    flex-shrink: 0;
}

/* Inverted background for alternate section */
.feature .col-md-12:nth-child(2n) .feature-icon {
    background-color: #f4b621;
    border-color: #030f27;
}

.feature .feature-icon i {
    font-size: 36px;
    color: #f4b621;
}

/* Invert icon color for alternate section */
.feature .col-md-12:nth-child(2n) .feature-icon i {
    color: #030f27;
}

/* Text styling */
.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    font-size: 25px;
    font-weight: 600;
    color: #f4b621;
}

.feature .feature-text p {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #f4b621;
}

.feature .col-md-12:nth-child(2n) .feature-text h3,
.feature .col-md-12:nth-child(2n) .feature-text p {
    color: #030f27;
}




/******slider *******/
.logo-slider-section {
    padding: 50px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.logo-slider-heading {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.logo-slider-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.logo-slider-heading h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.logo-slider-heading p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.logo-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.logo-slider-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.logo-slide {
    flex: 0 0 auto;
    width: 400px;
    margin: 0 2px;
    padding: 0;
    background: white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.logo-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(77, 68, 219, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-slide img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.logo-slide .company-info {
    text-align: center;
    padding: 10px;
    width: 100%;
}

.logo-slide .company-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.logo-slide .company-link {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-slide .company-link:hover {
    color: var(--secondary-color);
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.logo-slider-container:hover .logo-slider-track {
    animation-play-state: paused;
}

/* Gradient overlay for fading effect */
.logo-slider-container::before,
.logo-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider-container::before {
    left: 0;
    background: linear-gradient(90deg, white 0%, transparent 100%);
}

.logo-slider-container::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, white 100%);
}

/* Decorative elements */
.decorative-shape {
    position: absolute;
    opacity: 0.05;
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-slide {
        width: 200px;
        margin: 0 2px;
    }

    .logo-slide img {
        height: 100px;
    }

    .logo-slider-heading h2 {
        font-size: 2rem;
    }

    .logo-slider-container::before,
    .logo-slider-container::after {
        width: 50px;
    }

    .logo-slide .company-title {
        font-size: 0.9rem;
    }

    .logo-slide .company-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .logo-slide {
        width: 150px;
        margin: 0 2px;
    }

    .logo-slide img {
        height: 75px;
    }

    .logo-slider-section {
        padding: 60px 0;
    }

    .logo-slider-track {
        animation: scroll 30s linear infinite;
    }

    .shape-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
    }

    .shape-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -100px;
    }

    .logo-slide .company-title {
        font-size: 0.8rem;
    }

    .logo-slide .company-link {
        font-size: 0.7rem;
    }
}

/*************** slider ********************/
.text-primary {
    color: #030f27 !important;
}