/* Hero section Style */
.hero-section {
    padding-top: 3rem;
    text-align: center;
}

.hero-section .hero-image-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.hero-section .hero-image {
    max-width: 200px;
    height: 60px;
}

.hero-section .hero-heading {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section .hero-subheading {
    font-size: 1.5rem;

}

.hero-section .hero-btn {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section .hero-image {
        max-width: 220px;
    }
}

@media (max-width: 576px) {
    .hero-section .hero-image {
        max-width: 180px;
    }
}

/* Default button style */
.btn-outline-dark {
    color: #085aac !important;
    border-color: black !important;
    background-color: transparent !important;
}

/* Hover / Focus / Active states */
.btn-outline-dark:hover,
.btn-outline-dark:focus,
.btn-outline-dark:active {
    background-color: transparent !important;
    color: #085aac !important;
    border-color: #085aac !important;
    box-shadow: none !important;
}

/* Orbit Section */
.orbit-section {
    position: relative;
    padding: 6rem 0;
    background-color: #f8f9fa;
    overflow: hidden;
}

.security-it-section {
    background-color: #EBF5FF;
}

.orbit-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 500px;
    margin: 0 auto;
}

/* Center Content */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 400px;
    z-index: 2;
}

.orbit-center h2 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.orbit-center p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.orbit-center .btn {
    font-size: 0.95rem;
}

/* Orbit Icons */
.orbit-icon-wrapper {
    position: absolute;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}

.orbit-icon-wrapper .icon-circle {
    padding: 0 !important;
    overflow: hidden !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* make images size relative to the circle */
.orbit-icon-wrapper .icon-circle img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Label below icon */
.orbit-icon-wrapper .icon-label {
    font-size: 0.95rem;
    line-height: 1.3rem;
    max-width: 120px;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}

/* Icon Positions (Desktop/Tablet) */
.icon-pos-1 {
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-pos-2 {
    top: 25%;
    right: 5%;
    transform: translate(50%, -50%);
}

.icon-pos-3 {
    bottom: 25%;
    right: 5%;
    transform: translate(50%, 50%);
}

.icon-pos-4 {
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.icon-pos-5 {
    bottom: 25%;
    left: 5%;
    transform: translate(-50%, 50%);
}

.icon-pos-6 {
    top: 25%;
    left: 5%;
    transform: translate(-50%, -50%);
}

/* Large Tablets */
@media (max-width: 992px) {
    .orbit-wrapper {
        height: 450px;
        max-width: 550px;
    }

    .orbit-icon-wrapper {
        width: 100px;
    }

    .orbit-icon-wrapper .icon-circle {
        width: 60px;
        height: 60px;
    }

    .orbit-center h2 {
        font-size: 1.3rem;
    }

    .orbit-center p {
        font-size: 0.95rem;
    }

    .orbit-icon-wrapper .icon-label {
        font-size: 0.9rem;
    }
}

/* Tablets / Small screens */
@media (max-width: 768px) {
    .orbit-wrapper {
        height: 400px;
        max-width: 450px;
    }

    .orbit-icon-wrapper {
        width: 90px;
    }

    .orbit-icon-wrapper .icon-circle {
        width: 90px !important;
        height: 90px !important;
    }

    .orbit-center h2 {
        font-size: 1.2rem;
    }

    .orbit-center p {
        font-size: 0.9rem;
    }

    .orbit-icon-wrapper .icon-label {
        font-size: 0.85rem;
    }
}

/* large-tablet / small-laptop tweak */
@media (min-width: 769px) and (max-width: 992px) {
    .orbit-icon-wrapper .icon-circle {
        width: 90px !important;
        height: 90px !important;
    }
}

/* Mobile layout: content + 6 icons below */
@media (max-width: 576px) {

    /* Orbit wrapper for mobile */
    .orbit-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        max-width: 95%;
        margin: 0 auto;
        height: auto;
        padding: 0 1rem;
        /* prevent overflow */
    }

    /* Center content fix */
    .orbit-center {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        max-width: 100% !important;
        text-align: center;
        margin: 0 auto;
    }

    /* Mobile icons */
    .top-icons,
    .bottom-icons {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .bottom-icons {
        margin-top: 0.5rem;
    }

    .mobile-icons .orbit-icon-wrapper {
        position: relative !important;
        transform: none !important;
        flex: 1;
        min-width: 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mobile-icons .icon-circle {
        width: 80px !important;
        height: 80px !important;
    }

    .mobile-icons .icon-circle img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .mobile-icons .icon-label {
        font-size: 0.75rem;
        line-height: 1.1rem;
        max-width: 80px;
        word-wrap: break-word;
        white-space: normal;
    }

    .orbit-center h2 {
        font-size: 1.1rem;
    }

    .orbit-center p {
        font-size: 0.85rem;
    }
}

/* Truncate paragraph text (limit lines) */
.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5rem;
}


/* Desktop & Tablet Tabs */
/* inactive text dark */
.nav-tabs .nav-link {
    color: black;
    border: none;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
}

/* Active tab: blue text */
.nav-tabs .nav-link.active {
    color: #085aac;
}

.responsive-tabs-section {
    padding: 3rem 0; 
    background-color: #f8f9fa; 
}

.custom-tab-list {
    white-space: nowrap;
}

/* Blue underline only for active tab */
.nav-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #085aac;
    border-radius: 2px;
}

/* Mobile Accordion Buttons Bold */
@media (max-width: 767.98px) {
    .accordion-button {
        font-weight: 700;
    }
}

/* Hide scrollbar normally */
.custom-tab-list::-webkit-scrollbar {
    height: 0; 
}

.custom-tab-list {
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

/* Show scrollbar only on hover */
.overflow-auto:hover .custom-tab-list::-webkit-scrollbar {
    height: 6px;
}

.overflow-auto:hover .custom-tab-list {
    scrollbar-width: thin;       
    scrollbar-color: black;
}

.custom-tab-list::-webkit-scrollbar-track {
    background: #e5e5e5;
}

.custom-tab-list::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 10px;
}

.overflow-auto::-webkit-scrollbar {
    height: 0;
}

.overflow-auto {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.custom-tab-list {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
}

/* Header section style */

/* Logo & brand */
.logo-img {
    height: 55px;
}

.brand-text {
    white-space: normal;
    font-size: 0.9rem;
}

.highlight-text {
    color: #085aac;
}

.login-img {
    height: 1.5rem;
    margin-right: 0.25rem !important;
    transition: filter 0.2s ease-in-out;
    filter: brightness(0.1) invert(0.4);
}

.login-mobile .nav-link:hover .login-img {
    filter: brightness(0) invert(0);
}

/* Fixed navbar for desktop only */
@media (min-width: 992px) {
    .custom-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1030;
    }

    body {
        padding-top: 70px;
    }

    .navbar-nav .login-mobile .nav-link {
        padding: 0.5rem 0.8rem !important;
        line-height: 1.3 !important;
        display: flex;
        align-items: center;
    }

    .navbar-nav .login-mobile i {
        font-size: 1.25rem;
        margin-right: 0.4rem;
    }

    .navbar-nav .header-btn {
        padding: 0.45rem 0.8rem !important;
        margin-left: 0.7rem !important;
        line-height: 1.3;
    }

    .navbar-nav.main-menu > li,
    .navbar-nav.main-menu > li.login-mobile,
    .navbar-nav.main-menu > li.d-lg-block {
        margin-left: 0.7rem !important;
    }

    .navbar-nav.main-menu > li:first-child {
        margin-left: 0 !important;
    }
}

/* Tablet and Mobile Navbar */
@media (max-width: 991px) {

    .custom-navbar {
        position: relative !important;
        background: #fff;
        z-index: 1030;
    }

    body {
        padding-top: 0 !important;
    }

    .custom-navbar .container-fluid {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .right-controls {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        flex-shrink: 0;
    }

    .logo-img {
        height: 50px;
    }

    .brand-text {
        font-size: 0.8rem;
    }

    /* Collapsed mobile menu */
    .custom-navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #ddd;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 0.75rem 1rem;
        z-index: 1035;
    }

    /* Menu alignment */
    .navbar-nav.main-menu {
        flex-direction: column;
        align-items: flex-end !important;
        /* text-align: right; */
    }

    .navbar-nav .dropdown {
        position: relative;
    }

    .navbar-nav .dropdown-menu {
        position: static !important;
        width: 100% !important;
        margin-top: 0.5rem;
        border: none;
        box-shadow: none;
        background: transparent;
    }
}

/* Login button */
.navbar-nav .login-mobile .nav-link {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    line-height: 1.2;
    padding: 0.6rem 0;
}

.navbar-nav .login-mobile i {
    font-size: 1.5rem;
    margin-right: 0.35rem;
}

/* header button */
.header-btn {
    background-color: #b50000;
    color: #fff;
    font-weight: bold;
}

.navbar-nav.main-menu > li > a {
    font-size: 1.2rem;
}

/* Product Mega Menu (Box + Items) */
.products-mega-menu {
    position: relative;
    min-width: 350px;
    padding: 1rem;
    margin-top: 10px !important;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    max-height: 250px;
}

/* individual item */
.products-mega-menu .mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: background 0.2s ease-in-out;
}

.products-mega-menu .mega-item:hover {
    background: #f1f7ff;
}

.products-mega-menu .mega-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.products-mega-menu .mega-item h6 {
    margin: 0;
    font-weight: 600;
}

.products-mega-menu .mega-item p {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
}

/* Scrollbar */
.products-mega-menu::-webkit-scrollbar {
    width: 8px;
}
.products-mega-menu::-webkit-scrollbar-thumb {
    background: #c8c8c8;
    border-radius: 10px;
}
.products-mega-menu::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Inner scrollable box */
.products-mega-menu .scroll-area {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}

@media (min-width: 992px) {

    .products-mega-menu {
        position: absolute !important;
        top: 100%;
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: 820px !important;
        max-width: 950px !important;
        margin-left: 80% !important;
    }

    .products-mega-menu .mega-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 16px 24px;
        padding: 8px;
    }

    .products-mega-menu li {
        list-style: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    .products-mega-menu {
        min-width: 520px !important;
        margin-left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important;
    }

    .products-mega-menu .mega-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 20px;
        padding: 8px;
    }
}

@media (max-width: 767px) {

    .products-mega-menu {
        min-width: 100% !important;
        padding: 0.9rem !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
    }

    .products-mega-menu .mega-grid {
        display: block !important;
    }

    .products-mega-menu li {
        width: 100%;
    }

    .products-mega-menu .mega-item img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 991px) {
    .demo-dropdown-menu {
        background: #fff !important;
        border: 1px solid #ddd !important;
        border-radius: 12px !important;
        padding: 0.7rem 0.8rem !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
        margin-top: 10px !important;
    }
}

.demo-dropdown-menu .dropdown-item:hover {
    background: #f1f7ff !important;
    border-radius: 8px !important;
}

/* new css style */
@media (max-width: 991px) {

    /* Hide demo button */
    .navbar-nav.main-menu .free-demo-btn {
        display: none !important;
    }

    /* Login button width */
    .navbar-nav.main-menu .login-link {
        width: 30% !important;
        display: flex !important;
    }

    /* Main menu li styling */
    .navbar-nav.main-menu > li {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        align-items: flex-end !important;
        margin: 0 !important;
        position: relative !important;
    }

    /* Main menu anchor styling */
    .navbar-nav.main-menu > li > a {
        width: 30% !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        display: block !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Dropdown toggle arrow alignment */
    .navbar-nav.main-menu > li > a.dropdown-toggle {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .navbar-nav.main-menu > li > a.dropdown-toggle::after {
        margin-left: 12px !important;
        margin-right: 0 !important;
        position: relative !important;
        right: 0 !important;
    }

    /* Dropdown menu base styles */
    .navbar-nav .dropdown-menu {
        position: static !important;
        width: auto !important;
        margin-top: 6px !important;
        padding-right: 0 !important;
        align-self: flex-end !important;
        background: #fff !important;
        border: 1px solid #ddd !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
        padding: 0.7rem !important;
    }

    /* Dropdown items full width */
    .navbar-nav .dropdown-menu .dropdown-item {
        width: 100% !important;
    }

    /* Mega menu responsive */
    .products-mega-menu {
        width: 100% !important;
        min-width: 100% !important;
        left: auto !important;
        right: 0 !important;
        transform: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-nav.main-menu > li > a {
        width: 20% !important;
    }

    .navbar-nav.main-menu .login-link {
        width: 20% !important;
    }
}

@media (min-width: 375px) and (max-width: 767px) {
    .navbar-nav.main-menu > li > a {
        width: 30% !important;
    }

    .navbar-nav.main-menu .login-link {
        width: 30% !important;
    }
}

@media (max-width: 374px) {
    .navbar-nav.main-menu > li > a {
        width: 40% !important;
    }

    .navbar-nav.main-menu .login-link {
        width: 40% !important;
    }
}

/* testimonial, footer button */
.test-btn,
.footer-btn {
    background-color: #b50000;
    color: #fff;
    font-weight: bold;
}

.test-btn:hover,
.test-btn:focus,
.test-btn:active,
.header-btn:hover,
.header-btn:focus,
.header-btn:active,
.footer-btn:hover,
.footer-btn:focus,
.footer-btn:active {
    background-color: #b50000 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.test-btn {
    margin-bottom: 1.5rem;
}


/* Scroll bar  */
.scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
    color: #fff;
    position: relative;
    background-color: #085aac;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Moving content */
.scroll-content {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: infiniteScroll linear infinite;
}

/* Keyframes: Move from right to left (clockwise appearance) */
@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }

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

/* Individual feature block */
.feature-item {
    display: flex;
    min-width: 180px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.feature-item img {
    height: 55px;
    width: auto;
}

.feature-item p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scroll-content {
        gap: 2rem;
    }

    .feature-item {
        min-width: 150px;
    }

    .feature-item img {
        height: 45px;
    }

    .feature-item p {
        font-size: 1.5rem;
    }
}

/* Trusted section styling */

/* Trusted full-width Image */
.trusted-image-container {
    width: 100%;
}

.trusted-image-wrapper {
    overflow: hidden;
    width: 100%;
    max-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.trusted-full-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.trusted-box {
    border: 1.5px solid #cdd1ec;
    border-radius: 2rem;
    max-width: 900px;
    background-color: #e4e6f4;
    padding: 1rem 1.5rem;
    text-align: center;
}

/* Image styling */
.trusted-img {
    max-width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
    transform: scale(1.5);
    transform-origin: center;
}

/* Heading styling */
.trusted-title {
    color: #1126a1;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

/* Subheading styling */
.trusted-subtitle {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.4;
}

/* Responsive tuning */
@media (max-width: 992px) {
    .trusted-title {
        font-size: 2rem;
    }

    .trusted-subtitle {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .trusted-box {
        padding: 0.75rem 1rem;
    }

    .trusted-img {
        transform: scale(1.3);
    }

    .trusted-title {
        font-size: 1.75rem;
    }

    .trusted-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .trusted-img {
        transform: scale(1.2);
    }

    .trusted-title {
        font-size: 1.5rem;
    }

    .trusted-subtitle {
        font-size: 0.95rem;
    }
}


/* Middle row: images + text */
.middle-row {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
    max-width: 850px;
}

.middle-text-container {
    min-width: 0; 
}

/* Images */
.middle-img {
    max-width: 70px;
    height: auto;
}

/* Text */
.middle-text {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.5;
    font-weight: 400;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .middle-text {
        font-size: 1.15rem;
    }

    .middle-img {
        max-width: 65px;
    }
}

@media (max-width: 768px) {
    .middle-text {
        font-size: 1rem;
    }

    .middle-img {
        max-width: 60px;
    }
}

@media (max-width: 576px) {
    .middle-text {
        font-size: 0.95rem;
    }

    .middle-img {
        max-width: 55px;
    }
}


/* Cards grid container */
.cards-grid {
    margin-bottom: 2rem;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Card images */
.card-img-custom {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* Card titles */
.cards-grid .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Card text */
.cards-grid .card-text {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .card-img-custom {
        max-height: 55px;
    }

    .cards-grid .card-title {
        font-size: 1rem;
    }

    .cards-grid .card-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .card-img-custom {
        max-height: 50px;
    }

    .cards-grid .card-title {
        font-size: 1rem;
    }

    .cards-grid .card-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .card-img-custom {
        max-height: 45px;
    }

    .cards-grid .card-title {
        font-size: 1rem;
    }

    .cards-grid .card-text {
        font-size: 1rem;
    }
}

/* Our Expertise Section */
.expertise-section {
    padding-top: 1rem; 
    padding-bottom: 1rem;
}

.expertise-header {
    margin-bottom: 0.25rem; 
    text-align: center;
}

.expertise-title {
    margin-bottom: 0.5rem; 
    text-transform: uppercase; 
    font-weight: 500;
}

.expertise-subtitle {
    font-size: 1.25rem; 
    margin-bottom: 0; 
    color: #333;
}

.expertise-card {
    display: flex;
    align-items: start;
    padding: 1rem;
    height: 100%;
}

.expertise-image {
    flex-shrink: 0;
    margin-right: 1rem;
}

.expertise-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.expertise-text {
    flex-grow: 1;
    text-align: left;
}

.expertise-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.expertise-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .expertise-card img {
        width: 70px;
        height: 70px;
    }

    .expertise-card h4 {
        font-size: 1.2rem;
    }

    .expertise-card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .expertise-card img {
        width: 60px;
        height: 60px;
    }

    .expertise-card h4 {
        font-size: 1.2rem;
    }

    .expertise-card p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .expertise-card img {
        width: 55px;
        height: 55px;
    }

    .expertise-card h4 {
        font-size: 1.2rem;
    }

    .expertise-card p {
        font-size: 1rem;
    }
}

/* Who we are section */
.who-we-are {
    background-color: #085aac; 
    color: #fff; 
    padding-top: 3rem; 
    padding-bottom: 3rem;
    text-align: center; 
}

.who-we-are-container {
    text-align: center;
}

.who-we-are-heading {
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 500;
}

.who-we-are-text {
    font-size: 1rem; 
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .who-we-are-text {
        font-size: 1.25rem; 
    }
}

/* specialised focus section */
.specialized-focus-section {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.specialized-focus-heading {
    margin-bottom: 1.5rem;  
    text-transform: uppercase;
}

.focus-img {
    max-width: 150px;
}


/* Enterprise Solution section */
.enterprise-section {
    background-color: #f8f9fa; 
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.enterprise-badge {
    background-color: #d6f5d6;
    font-weight: 500;
    font-size: 0.9rem;
}

.enterprise-heading {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.enterprise-divider {
    width: 20%;
    border-width: 2px;
    border-color: #b50000;
    opacity: 1;
}

/* Smooth animated arrow button */
.btn-arrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-arrow::after {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 0.8rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23085aac' stroke-width='2' viewBox='0 0 16 16'%3E%3Cpath d='M4 2l6 6-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
}

/* On hover, move arrow smoothly right */
.btn-arrow:hover::after {
    transform: translateX(5px);
}

.btn-arrow {
    color: #085aac !important;
    border-color: black !important;
}

.btn-arrow:hover {
    color: #085aac !important;
    border-color: #085aac !important;
    background-color: transparent !important;
}

/* Specialize focus */
.cards-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Info section */
.info-section {
    background-color: #085aac; 
    padding-top: 3rem;  
    padding-bottom: 3rem;
    color: #fff; 
}

.info-divider {
    width: 20%;
    margin: 0 auto;
    border-color: #fff;
    opacity: 1;
}

/* Info section text styles */
#infoSection h4 {
    font-size: 4rem;
}

#infoSection p {
    font-size: 1.5rem;
}

/* Testimonial section */
.testimonial-section {
    padding-top: 3rem;
    padding-bottom: 1rem; 
    text-align: center;
}

.testimonial-heading {
    margin-bottom: 1rem;
}

.testimonial-rating-text {
    color: #198754; 
    margin-bottom: 0.25rem; 
    font-size: 1rem; 
}

.testimonial-stars {
    margin-bottom: 0.5rem;
    color: #ffc107;
}

.testimonial-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* Testimonial Section arrow styles */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: transparent;
    filter: invert(0) brightness(0);
}

#testimonialCarousel {
    --bs-carousel-interval: 5000ms; 
}

#testimonialCarousel .carousel-item {
    transition: transform 1.2s ease-in-out !important;
}

 /* Image Caoursel Section */
.home .carousel-item{
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
	background-position: center;
	position: relative;
    background-repeat: no-repeat;
	z-index: 1;
}

.home .carousel-item:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.home .carousel-item .container{
	position: absolute;
	left: 50%;
	top:50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.home .carousel-controls{
	position: absolute;
	left: 50%;
	bottom: 10px;
	z-index: 10;
	transform: translate(-50%);
}

.home .carousel-indicators {
    position: relative;
    gap: 1px;
    margin: 5px;
    list-style: none;
}

.home .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;   
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home .carousel-control-next img,
.home .carousel-control-prev img{
	width: 25px;
}

.home .carousel-control-next{
	right: -50px;
}

.home .carousel-control-prev{
	left: -50px;
}

.home .carousel-indicators li.active{
	border-color:#fff;
	transform: scale(1.2);
}

.home .carousel-control-next,
.home .carousel-control-prev{
	width: 35px;
	height: 35px;
	opacity: 1;
	z-index: 3;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.home .carousel-control-next:hover,
.home .carousel-control-prev:hover{
	box-shadow: 0 0 5px #fff;
}

.home .carousel-control-playpause{
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
}

.home .carousel-control-playpause i{
    font-size: 25px;
    color: #fff;
    transition: all 0.3s ease;
}

.home .carousel-control-playpause:hover{
    box-shadow: 0 0 5px #fff;
    border-radius: 50%;
}

@keyframes fadeInLeft{
	0%{
		opacity: 0;
		transform: translateX(-30px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}

@keyframes fadeInRight{
	0%{
		opacity: 0;
		transform: translateX(30px);
	}
	100%{
		opacity: 1;
		transform: translateX(0px);
	}
}

@media(min-width: 992px){
    .scroll-wrapper {
        height: 80px; 
    }
    .home .carousel-item {
       height: calc(100vh - 70px - 80px);
    }
}

@media(max-width: 767px){
    .home .carousel-control-next{
        right: -40px;
    }
    .home .carousel-control-prev{
        left: -40px;
    }
    .home .carousel-control-playpause{
        left: -80px;
    }
}

/* Caption container */
.custom-caption {
    position: absolute;
    right: 20px;
    bottom: 12px;
    transform: none;
    text-align: center;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Caption button */
.custom-caption .caption-btn {
    background: #b50000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-weight: bold;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.2rem;
    text-wrap: nowrap;
}

.home .custom-caption .caption-btn {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .custom-caption {
        bottom: 10px;
    }
    .home .custom-caption .caption-btn {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (max-width: 576px) {
    .custom-caption {
        right: 12px;
        bottom: 7px;
    }

    .custom-caption .caption-btn {
        font-size: 0.6rem;
        padding: 3px 3px;
    }
}

/* Product List Section */
.products-section {
    background-color: #f9fafc;
    padding: 3rem 0;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.image-wrapper {
    width: 100%;
    height: 260px;
}

.image-wrapper img {
    display: block;           
    width: 100%;
    height: 100%;
    object-fit: cover;       
    object-position: center;  
}

.product-content {
    background-color: #EBF5FF;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    padding: 1rem;
    height: 100%;
}

.product-title {
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.product-subtitle {
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.product-divider {
    width: 20%;
    border-width: 2px;
    border-color: #fa0b0b;
    opacity: 1;
    margin-bottom: 0.5rem;
}

.product-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: justify;
}

.btn-arrow1 {
    margin-top: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 6px;
    background-color: #085aac !important;
    color: white !important;
    transition: all 0.3s ease;
    font-weight: bold;
    justify-self: start;
}

.btn-arrow1::after {
    content: "";
    width: 0.85rem;
    height: 0.85rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23ffffff' stroke-width='2' viewBox='0 0 16 16'%3E%3Cpath d='M4 2l6 6-6 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.btn-arrow1:hover {
    background-color: #ffffff !important;
    border-color: black !important;
    color: #085aac !important;
}

.btn-arrow1:hover::after {
    transform: translateX(5px);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23085aac' stroke-width='2' viewBox='0 0 16 16'%3E%3Cpath d='M4 2l6 6-6 6'/%3E%3C/svg%3E");
}

@media (max-width: 992px) {
    .image-wrapper {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .product-card {
        margin: 0;
    }
    .image-wrapper {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .product-card {
        margin: 0;
    }
    .image-wrapper {
        height: 200px;
    }
}

.login-section {
    min-height: 100vh;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("{{ asset('images/login_background.jpg') }}"); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.login-container {
    background: #fff;
    padding: 40px 40px;
    border-radius: 25px;
    max-width: 600px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.login-card {
    background: #fff;
    padding: 30px 30px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.user-icon {
    margin-right: 1rem !important;
}

.user-icon i {
    font-size: 70px;
    color: #000;
}

.login-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    text-align: start;
}

.login-heading {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.login-paragraph {
    font-size: 1rem;
    margin-bottom: 0;
}

.login-input {
    height: 50px;
    border-radius: 10px;
    font-size: 16px;
}

.forgot-link,
.register-link {
    font-size: 16px;
    text-decoration: none;
    color: #000;
}

.register-link {
    font-weight: bold;
}

.login-btn {
    height: 48px;
    border-radius: 10px;
    color: #fff !important;
    font-size: 16px;
    font-weight: bold;
    background-color: #085aac !important;
    border: none;
}

@media (max-width: 768px) {

    .login-container {
        padding: 30px 30px;
    }

    .login-card {
        padding: 25px 25px;
    }
}

@media (max-width: 576px) {

    .user-icon {
        margin-right: 0.5rem !important;
    }

    .login-container {
        padding: 15px 15px;
    }

    .login-card {
        padding: 10px 10px;
    }

    .user-icon i {
        font-size: 50px; 
    }
}

.error {
    background: #fde2e2;
    color: #b00020;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

.login-section--modal {
    min-height: auto;
    padding: 40px;
    background-image: url("../images/login_background.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
}

.modal .login-section {
    min-height: auto;
}

.modal .login-container {
    max-width: 600px;
    width: 100%;
    padding: 40px;
}

.modal-content {
    border-radius: 24px;
    overflow: hidden;
}

.modal-header {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 10;
    background: transparent;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 18px;
}

.password-toggle:hover {
    color: #212529;
}

@media (max-width: 576px) {
    .modal .login-container {
        padding: 20px;
    }
}