
:root {
    --brand-red: #E31E24;
    --brand-yellow: #FDB813;
    --brand-blue: #1B75BC;
    --brand-green: #39B54A;
    --brand-purple: #92278F;
}


.itms-discover-our-brand-section {
    margin-top: 50px;
    padding: 1rem;
}

.itms-discover-our-brand-container {
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

.itms-discover-our-brand-carousel {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f8f9fa; /* Optional: background color for letterboxing */
}

.itms-discover-our-brand-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4;
}

.itms-discover-our-brand-carousel-item.active {
    opacity: 1;
}

.itms-discover-our-brand-carousel-item img {
    /* max-width: 100%; */
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: fill; 
    border-radius: 8px; 
}

.itms-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

.itms-carousel-caption h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.itms-carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%; /* Fixed centering */
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    visibility: visible; /* Made visible */
}

.itms-carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.itms-carousel-indicator.active {
    background: white;
}

.itms-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    z-index: 3;
}

.itms-carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.itms-carousel-control-prev {
    left: 1rem;
}

.itms-carousel-control-next {
    right: 1rem;
}

.itms-discover-our-brand-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

/* Responsive adjustments */
@media (max-width: 425px) {
    .itms-discover-our-brand-carousel {
        height: 250px; /* Reduced height for mobile */
    }
    
    .itms-para {
        margin-bottom: 1rem;
        font-size: 1.1rem;
        text-align: justify;
        word-spacing: -0.15em;
        line-height: 1.8;
        font-family: 'IBM Plex Serif', sans-serif;
    }
    
    .itms-discover-our-brand-content-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0rem;
    }
    
    .itms-home-content-section h3 {
        color: #3498db;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .itms-discover-our-brand-carousel {
        height: 300px; /* Adjusted height for tablets */
    }
    
    .itms-discover-our-brand-navigation {
        flex-direction: column;
    }

    .itms-discover-our-brand-nav-item {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .itms-discover-our-brand-content-wrapper {
        grid-template-columns: 1fr;
    }

    .itms-stats-container {
        grid-template-columns: 1fr;
    }

    .itms-stat-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 1.5rem;
    }

    .itms-stat-item:last-child {
        border-bottom: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .itms-discover-our-brand-carousel {
        height: 350px; /* Adjusted height for large tablets */
    }
    
    .content-desktop { display: none; }
    .content-tablet { display: block; }
}

@media (min-width: 1025px) {
    .itms-discover-our-brand-carousel {
        height: 400px; /* Standard height for desktop */
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .content-desktop { display: none; }
    .content-tablet { display: block; }
}

@media (max-width: 768px), (min-width: 1025px) {
    .content-tablet { display: none; }
    .content-desktop { display: block; }
}




.itms-section {
    border-radius: 20px;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 1rem;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    background-color: #145476;    
}

.itms-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.itms-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.itms-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    animation: splitText 1.5s ease-out forwards; /* Apply Split Text animation */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.itms-content p {
    font-size: 1.5rem;
    line-height: 1.75;
    margin: 0 auto;
    max-width: 600px;
    opacity: 0;
    animation: slideUpFade 1s ease-out 0.5s forwards;
}


/* Responsive Fix */
@media (max-width: 768px) {
    .itms-section {
        min-height: 60vh;
        padding: 10%;
    }
    
    .itms-content {
        max-width: 95%;
    }
}
.spec-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures equal height */
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.spec-header {
    background: #008080;
    padding: 20px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-header h4 {
    font-size: 1.3rem;
    font-weight: bold;
}

.spec-body {
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Ensures content stretches inside */
}

.spec-body p {
    font-size: 1rem;
    color: #333;
}


.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* .interface-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg,#1B75BC,  #39B54A);
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
} */

.interface-icon:hover {
    transform: scale(1.1);
}

.key-features-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 25px 20px;
}

.key-features-title {
  
    letter-spacing: 1px;
    font-family:Chakra Petch;
    color:#3498db;
    margin-bottom: 40px;
   
}

.key-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Adjust spacing between cards */
}

.feature-card {
    flex: 1 1 calc(33.33% - 30px); /* Ensures 3 cards per row with spacing */
    max-width: calc(33.33% - 30px); /* Prevents overflow */
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 40px;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .feature-card {
        flex: 1 1 calc(50% - 30px); /* 2 cards per row */
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex: 1 1 100%; /* 1 card per row */
        max-width: 100%;
    }
}


.interface-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px; /* Adjusts space between cards */
}

.interface-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px; /* Ensures cards align well and are responsive */
    max-width: 350px;
    text-align: center;
}

.interface-icon i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg,#1B75BC,  #39B54A);
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .interface-grid {
        flex-direction: column;
        align-items: center;
    }
}