@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
        overflow-x: hidden !important;
    }
}

@font-face {
    font-family: "bootstrap-icons";
    src: url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2"),
        url("../bootstrap-icons-1.11.3/font/fonts/bootstrap-icons.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

@media (min-width: 1200px) and (max-width: 1350px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1250px;
    }
}

/* @media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1250px;
    }
} */

/* .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
} */

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
    font-size: 14px;
    padding: 12px 22px !important;
    font-weight: 500;
    background: #A5A5A5;

}


/*** Navbar ***/
.navbar {
    background-color: #ffffff;
    padding: 18px 0;
}

.navbar-brand img {
    height: 42px;
}



.nav-link:hover,
.nav-link.active {
    color: #BB1616 !important;
}

.contact-btn {
    background-color: #BB1616;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    font-weight: 500;
}

.contact-btn:hover {
    background-color: #02194F;
    color: #fff;
}

/*** Mega Menu ***/
.mega-menu {
    background-color: #ffffff;
    color: #000000;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.mega-menu h3 {
    color: #BB1616;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mega-menu a.dropdown-item {
    color: #000000;
    padding: 4px 0;
    font-size: 15px;
    font-weight: 500;
    white-space: break-spaces;
    background: none !important;
}

.mega-menu a.dropdown-item:hover {
    color: #BB1616;
}

.mega-menu img {
    max-height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.mega-menu .promo-column {
    text-align: center;
    background-color: #f1f5f6;
    padding: 15px;
    border-radius: 5px;
}

.mega-menu .promo-heading {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: Inter, sans-serif;
}

.mega-menu .promo-subheading {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: Inter, sans-serif;
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.5em;
    vertical-align: middle;
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    border: none;
}

/* Remove focus, border, and background from navbar toggler */
.navbar-toggler {
    border: none !important;
    /* Remove border */
    background: transparent !important;
    /* Remove background */
    padding: 0.5rem;
}

.navbar-toggler:focus {
    outline: none !important;
    /* Remove focus outline */
    box-shadow: none !important;
    /* Remove Bootstrap focus box-shadow */
    background: transparent !important;
    /* Ensure no background on focus */
}

.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(0, 0, 0, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    /* Custom toggler icon color */
}

/*** Responsive Styles ***/
@media (min-width: 991px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        justify-content: flex-end;
    }

    .nav-link {
        color: #333333 !important;
        font-size: 14px;
        font-weight: 500;
        padding: 10px 12px !important;
        margin-right: 13px;
    }
}

@media (min-width: 991.98px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: 0.5s;
        opacity: 0;
        position: absolute;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }

    .mega-dropdown {
        position: static !important;
    }

    .mega-menu {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
        /* max-width: 1400px !important; */
    }
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .mega-dropdown {
        position: relative !important;
    }

    .mega-menu {
        width: 100% !important;
        position: static;
        max-width: none;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
    }

    .mega-menu .col-6 {
        margin-bottom: 15px;
    }

    .mega-menu .d-none {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 10px !important;
        color: #000;
    }

    .contact-btn {
        margin: 10px;
        padding: 6px 15px;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {
    .mega-menu {
        max-width: 90% !important;
        padding: 15px;
    }

    .mega-menu h3 {
        font-size: 12px;
    }

    .mega-menu a.dropdown-item {
        font-size: 11px;
    }

    .mega-menu img {
        max-height: 120px;
    }
}

/* Carousel container */
.main-carousel {
    position: relative;
    /* top: 70px; */
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    background-color: #000;
    /* Fallback background color if image fails to load */
}

/* Individual slide */
.main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.main-slide.active {
    display: block;
    opacity: 1;
}

/* Background image with Ken Burns effect */
.main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* filter: grayscale(100%); */
    /* Commented out as per original */
    animation: kenburns-top-right 10s infinite alternate;
    z-index: 1;
}

/* Content wrapper */
.main-content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

/* Container for content */
.main-container {
    max-width: 1200px;
    width: 100%;
    /* padding: 0 15px; */
    margin: 0 auto;
}

/* Slider content */
.main-content {
    color: var(--bs-white, #fff);
    /* Fallback to white if variable undefined */
    max-width: 700px;
    margin-top: 80px;
    position: relative;
    /* Ensure progress bar positioning is relative to this */
}

/* Caption styles */
.main-caption.big {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Button group */
.main-btn-group {
    margin-top: 20px;
    margin-bottom: 10px;
    /* Space for the progress bar below */
}

/* Contact Us button */
.main-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--bs-white, #fff);
    /* Fallback to white */
    border: 1px solid var(--bs-white, #fff);
    border-radius: 0px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.main-btn:hover {
    background: var(--bs-white, #fff);
    color: var(--bs-dark, #000);
    /* Fallback to black */
}

/* Text alignment classes */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.text-right {
    text-align: right;
    margin-left: auto;
}

/* Progress bar */
.main-pbar {
    display: none;
    /* Hidden by default */
    width: 200px;
    height: 4px;
    margin-top: 100px;
    position: relative;
    /* Ensure proper positioning */
    z-index: 10;
    /* Ensure it’s not obscured */
    background: transparent;
    /* Remove background to rely on canvas */
    /* box-shadow: 0 0 5px rgba(255, 255, 255, 0.5); Glow effect */
}

.text-left .main-pbar {
    margin-left: 0;
}

.text-center .main-pbar {
    margin-left: auto;
    margin-right: auto;
}

.text-right .main-pbar {
    margin-left: auto;
}

.main-slide.active .main-pbar {
    display: block;
    /* Visible when slide is active */
}

/* Animation keyframes */
@keyframes kenburns-top-right {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(10%, -10%);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes fade-in-top {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes fade-in-bottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

/* Apply animations to elements */
[data-animation] {
    opacity: 0;
}

/* Responsive styles */
@media (max-width: 991px) {
    .main-caption.big {
        font-size: 43px;
    }

    .main-content-wrap {
        padding-top: 45px;
    }
}

@media (max-width: 767px) {
    .main-caption.big {
        font-size: 32px;
    }

    .main-carousel {
        height: 300px;
        top: 15px;
    }

    .main-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .main-pbar {
        width: 150px;
        /* Smaller width on mobile */
        height: 3px;
    }
}











/*-------------------------------------
 About Us 
 -------------------------------------*/
.about-us {
    background-color: #EFEFEF;
    /* margin-top: 50px; */
}

.about-content {
    max-width: 550px;
}

.intro-text {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.intro-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
}

.goals-section {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.goals-section .nav-tabs {
    border-bottom: 2px solid #ddd;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}

.goals-section .nav-link {
    font-weight: bold;
    color: #333;
    padding: 0.5rem 1rem;
    border: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.goals-section .nav-link:hover {
    border-bottom: 2px solid #20282D;
    color: #20282D;
}

.goals-section .nav-link.active {
    border-bottom: 2px solid #20282D;
    color: #20282D;
    background-color: transparent;
}

.goals-section .tab-content {
    padding: 1rem 0;
}

.goals-section .tab-pane p {
    margin: 0;
}

.info-box {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.info-box:hover {
    background-color: #bb1616;
    transform: translateY(-5px);
}

.info-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    transition: filter 0.3s ease;
}

.info-box:hover img {
    filter: brightness(0) invert(1);
}

.info-box h5 {
    transition: color 0.3s ease;
}

.info-box p {
    color: #666;
    font-size: 0.9rem;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.info-box:hover h5,
.info-box:hover p {
    color: #fff;
}

.info-box a {
    color: #20282D;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-box:hover a {
    color: #fff;
    transform: translateX(5px);
}

.info-box a:hover {
    /* text-decoration: underline; */
}

.details-link {
    border: 1px solid #333;
    color: #333;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.details-link:hover {
    background-color: #20282D;
    color: #fff;
    transform: translateY(-2px);
}

.details-link::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.details-link:hover::after {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.animate-text {
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-tab {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

.animate-tab-content {
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.4s;
}

.animate-card {
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

.animate-link {
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .intro-text {
        font-size: 32px;
    }

    .goals-section .nav-tabs {
        /* flex-direction: column; */
        gap: 0.5rem;
    }

    .goals-section .nav-link {
        width: 100%;
        text-align: left;
    }
    .data-description {
    font-size: 10px;
}
}




/* Company Statics */

.business-section {
    /* background-color: #f8f9fa; */
    /* border-radius: 10px; */
    overflow: hidden;
}

.business-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.data-section {
    padding: 2rem;
}

.data-title {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.primary-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 2rem;
}

.data-item {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.data-icon {
    /* width: 40px;
    height: 40px; */
    margin-bottom: 0.5rem;
}

.data-number {
    font-size: 32px;
    font-weight: 500;
    color: #343a40;
}

.data-label {
    font-size: 18px;
    color: #000000;
}
.data-description{
    font-size:14px;
    
}
 .data-icon {
        font-size: 20px;
        color: #BB1616; /* Bootstrap primary color */
        background-color: #f8f9fa; /* Light background for contrast */
        border-radius: 10%; /* Circular shape */
        padding: 15px;
        margin-bottom: 1rem;
        display: inline-block;
        transition: all 0.3s ease; /* Smooth transition for hover effects */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    }
 
@media (max-width: 768px) {

    .data-item  {
        display: flex;
        padding: 15px;
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .primary-title {
        font-size: 1.8rem;
    }

    .data-number {
        font-size: 1.2rem;
    }

    .data-label {
        font-size: 0.8rem;
    }

    .data-section {
        padding: 1.5rem;
    }
     .data-description {
    font-size: 10px;
}
}

@media (max-width: 576px) {
    .primary-title {
        font-size: 1.5rem;
    }

    .data-number {
        font-size: 1rem;
    }

    .data-label {
        font-size: 14px;
    }

    .data-section {
        padding: 1rem;
    }
}




/* Banner Section */

.connections-banner {
    position: relative;
    background: url('../img/banner@2x.png') no-repeat center center/cover;
    color: white;
    padding: 60px 0;
    min-height: 450px;
    display: flex;
    align-items: center;
}

/* Dark overlay for background image */
/* .connections-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 1;
    } */

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.banner-content .header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.banner-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.banner-content h1 span {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 5px;
}

.banner-content p.subheading {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Explore Button */
.explore-link {
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.explore-link:hover {
    background-color: white;
    color: black;
}

/* Horizontal Line Above Features */
.features-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

/* Feature Icons and Text Side by Side */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}


.icon-circle img {
    width: 100px;
    height: 100px;
}

.feature-description {
    text-align: left;
}

.feature-description h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.feature-description p {
    font-size: 0.85rem;
    color: #fefefe;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .connections-banner {
        padding: 40px 0;
        min-height: 400px;
    }

    .banner-content .header-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content h1 span {
        font-size: 1.2rem;
    }

    .explore-link {
        margin-top: 15px;
        padding: 6px 15px;
        font-size: 0.9rem;
    }

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

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

    .feature-item {
        gap: 20px;
    }

    .feature-description h5 {
        font-size: 1rem;
    }

    .feature-description p {
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .connections-banner {
        padding: 50px 0;
        min-height: 420px;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .banner-content h1 span {
        font-size: 1.5rem;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle img {
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 992px) {
    .connections-banner {
        padding: 60px 0;
    }

    .banner-content h1 {
        font-size: 3.2rem;
    }

    .banner-content h1 span {
        font-size: 1.8rem;
    }
}





/*----------------------------------------
Process Section
------------------------------------------*/

.process-section {
    text-align: center;
    background-color: #fff;
}

.process-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 40px;
    line-height: 1.2;
}

.process-section h2 span {
    font-size: 16px;
    font-weight: 400;
    color: #7A7A7A;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.steps-wrapper {
    border: 1px solid #E5E5E5;
    padding: 20px;

}

.step-item {
    border: none;
    padding: 40px 20px;
    text-align: left;
    background-color: transparent;

}

.step-item:not(:last-child) {
    border-right: 1px solid #E5E5E5;
}

.step-item h3 {
    font-size: 42px;
    font-weight: 400;
    color: #BB1616;
    margin-bottom: 30px;
    line-height: 1;
}

.step-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2E2E2E;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 16px;
    font-weight: 400;
    color: #7A7A7A;
    margin: 0;
    line-height: 1.5;
}



@media (max-width: 992px) {
    .process-section h2 {
        font-size: 36px;
    }

    .process-section h2 span {
        font-size: 14px;
    }

    .step-item {
        padding: 30px 15px;
    }

    .step-item h3 {
        font-size: 48px;
    }

    .step-item h4 {
        font-size: 18px;
    }

    .step-item p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 40px 0;
    }

    .process-section h2 {
        font-size: 28px;
    }

    .process-section h2 span {
        font-size: 12px;
    }

    .steps-wrapper {
        border: none;
        padding: 0;
    }

    .step-item {
        border: 1px solid #E5E5E5 !important;
        border-radius: 10px;
        padding: 20px 15px;
        margin-bottom: 20px;
    }

    .step-item:not(:last-child) {
        border-right: none;
    }

    .step-item h3 {
        font-size: 40px;
    }

    .step-item h4 {
        font-size: 16px;
    }

    .step-item p {
        font-size: 13px;
    }
}


/*----------------------------------------
case Study Section
------------------------------------------*/

.case-stories-section {
    padding: 50px 0;
    text-align: center;
    background: #EFEFEF;
}

.case-stories-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 40px;
}

.case-stories-section p {
    font-size: 1rem;
    color: #7f8c8d;

}

.story-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
    background-position: center;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Define heights for cards */
.story-card.short {
    height: 337px;
    /* Shorter height for cards 1 and 3 */
}

.story-card.tall {
    height: 371px;
}

.story-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.story-overlay h3 {

    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.story-overlay p {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .story-card.short {
        height: 250px;
    }

    .story-card.tall {
        height: 300px;
    }

    .case-stories-section h2 {
        font-size: 2rem;
    }

    .story-overlay h3 {
        font-size: 1rem;
    }

    .story-overlay p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .story-card.short {
        height: 200px;
    }

    .story-card.tall {
        height: 250px;
    }

    .case-stories-section h2 {
        font-size: 1.8rem;
    }
}

/*------------------------------------------------
 Tech Overview 
--------------------------------------------------*/

.tech-overview h2 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.tech-overview p {
    color: #6c757d;
    margin: 20px 0;
}

.explore-tech {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #02194F;
    color: #02194F;
    text-decoration: none;
    font-weight: bold;
}

.explore-tech:hover {
    background-color: #02194F;
    color: #fff;
}

.tech-solutions {
    display: flex;
    justify-content: center;
    /* Center the tech-grid within the column */
}

.tech-solutions .tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: end;
    /* Center modules within their grid cells */
    max-width: 415px;
    /* 2 * 200px (module width) + 15px (gap) */
}

.tech-solutions .tech-module {
    background-color: #02194F;
    color: #fff;
    padding: 20px;
    /* position: relative; */
    height: 160px;
    width: 160px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.tech-solutions .tech-module h4 {
    margin: 0;
    font-size: 18px;
    color: #fff;
}

.tech-solutions .tech-module .expand-icon {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 1.5rem;
}

.tech-solutions .tech-module .tech-details {
    display: none;
    margin-top: 20px;
    color: #d1d1d1;
    font-size: 14px;
}

.tech-solutions .tech-module .tech-link {
    display: none;
    margin-top: 20px;
    color: #fff;
    border: 2px solid #fff;
    padding: 5px 15px;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
}

/* Hover effects with directional adjustments */
.tech-solutions .tech-module.top-left:hover {
    width: 300px;
    height: 280px;
    left: -25px;
    /* Shift left to expand toward top-left */
    top: -20px;
    /* Shift up to expand toward top-left */
    z-index: 1;
}

.tech-solutions .tech-module.top-right:hover {
    width: 300px;
    height: 280px;
    right: -25px;
    /* Shift right to expand toward top-right */
    top: -20px;
    /* Shift up to expand toward top-right */
    z-index: 1;
}

.tech-solutions .tech-module.bottom-left:hover {
    width: 300px;
    height: 280px;
    left: -25px;
    /* Shift left to expand toward bottom-left */
    bottom: -20px;
    /* Shift down to expand toward bottom-left */
    z-index: 1;
}

.tech-solutions .tech-module.bottom-right:hover {
    width: 300px;
    height: 280px;
    right: -25px;
    /* Shift right to expand toward bottom-right */
    bottom: -4px;
    /* Shift down to expand toward bottom-right */
    z-index: 1;
}

.tech-solutions .tech-module:hover .tech-details,
.tech-solutions .tech-module:hover .tech-link {
    display: block;
}

/* Active state for Databases */
.tech-solutions .tech-module.bottom-left.active {
    width: 300px;
    height: 280px;
    left: -25px;
    /* Match hover state for bottom-left */
    bottom: -2px;
    /* Match hover state for bottom-left */
}

.tech-solutions .tech-module.active .tech-details,
.tech-solutions .tech-module.active .tech-link {
    display: block;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tech-solutions {
        display: flex;
        justify-content: flex-start;
    }

    .tech-solutions .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        max-width: 150px;
        /* Single column, normal module width */
    }

    .tech-solutions .tech-module {
        width: 100%;
        max-width: 200px;
        height: 140px;
    }

    .tech-solutions .tech-module:hover,
    .tech-solutions .tech-module.active {
        width: 100%;
        max-width: 300px;
        height: 280px;
        left: 0;
        /* Reset positional shifts for smaller screens */
        right: 0;
        top: 0;
        bottom: 0;
    }

    .tech-overview h2 {
        font-size: 1.8rem;
    }

    .tech-solutions .tech-module:hover,
    .tech-solutions .tech-module.active {
        width: 100%;
        max-width: 300px;
        height: 280px;
        left: 0;
        /* Reset positional shifts for smaller screens */
        right: 0;
        top: 0;
        bottom: 0;
    }
    .tech-link {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .tech-overview h2 {
        font-size: 1.5rem;
    }

    .tech-solutions .tech-grid {
        max-width: 135px;
    }

    .tech-solutions .tech-module {
        padding: 15px;
    }

    .tech-solutions .tech-module h4 {
        font-size: 1rem;
    }

    .tech-solutions .tech-module .expand-icon {
        font-size: 1.2rem;
    }

    .tech-solutions .tech-module:hover,
    .tech-solutions .tech-module.active {
        width: 100%;
        max-width: 170px;
        height: 300px;
        left: 0;
        /* Reset positional shifts for smaller screens */
        right: 0;
        top: 0;
        bottom: 0;
    }
}


/* --------------------------------
News and Blogs
---------------------------------------------*/

.news-section {
    padding: 30px 0;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.news-header small {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

.news-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #343a40;
    margin: 0;
    line-height: 1.2;
}

.news-header .view-more-btn {
    border: 1px solid #20282D;
    padding: 8px 20px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #20282D;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}


.news-header .view-more-btn:hover {
    background: #20282D;
    color: #ffffff;
}

.blog-card {
    border: 1px solid #e0e0e0;
    border-radius: 1px;
    padding: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.blog-card img {
    width: 100%;
    height: 283px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-card .date-box {
    position: absolute;
    top: 250px;
    right: 20px;
    background-color: #02194F;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: 50px;
}

.blog-card .date-box .day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
}

.blog-card .date-box .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.blog-card .meta-info {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.blog-card .meta-info img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.blog-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card .view-more-link {
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.activate-windows {
    text-align: right;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 15px;
}

.activate-windows a {
    color: #6c757d;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .news-header h1 {
        font-size: 1.75rem;
    }

    .news-header .view-more-btn {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .blog-card img {
        height: 150px;
    }

    .blog-card .date-box {
        top: 120px;
        right: 15px;
        width: 40px;
    }

    .blog-card .date-box .day {
        font-size: 1rem;
    }

    .blog-card .date-box .month {
        font-size: 0.65rem;
    }

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

    .blog-card .card-body {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-header .view-more-btn {
        align-self: flex-end;
    }

    .activate-windows {
        text-align: left;
    }
}











/*------------------------------------------------
 Footer 
 -------------------------------------------------*/

.footer {
    background-color: #02194F;
    color: #B0BEC5;
    /* padding: 40px 0; */
    font-family: Arial, sans-serif;
}

.footer h5 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #B0BEC5;
    text-decoration: none;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #FFFFFF;
}

.newsletter-box {
    background-color: #FFFFFF;
    padding: 35px 30px;
    border-radius: 1px;
}

.newsletter-box h5 {
    color: #02194F;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: #02194F;
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-box .input-group {
    max-width: 100%;
    margin: 25px 0px;
}

.newsletter-box .form-control {
    border: 1px solid #CED4DA;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.newsletter-box .btn {
    background-color: #02194F;
    color: #FFFFFF;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
}

.newsletter-box input {
    padding: 10px;
}

.social-icons a {
    color: #02194F;
    font-size: 20px;
    margin: 0 15px;
    text-decoration: none;
}
.social-icons img{
    width: 20px;
    height: 20px;
}

.social-icons a:hover {
    color: #555;
}

.footer-logo {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.copyright {
    border-top: 1px solid #455A64;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 13px;
    color: #B0BEC5;
}

.copyright a {
    color: #B0BEC5;
    text-decoration: none;
}

.copyright a:hover {
    color: #FFFFFF;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer h5 {
        margin-top: 20px;
    }

    .newsletter-box {
        margin: 0 auto;
        max-width: 90%;
    }

    .footer-logo {
        text-align: center;
    }

    .copyright {
        text-align: center;
    }

    .copyright .text-end {
        text-align: center !important;
        margin-top: 10px;
    }
}









/* -----------------------------------------
Clients
--------------------------------------------*/
.trusted-partners-container {
    padding: 30px 0;
    background-color: #f1f3f5;
}

.trusted-partners-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.trusted-partners-header small {
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

.trusted-partners-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #343a40;
    margin: 0;
    line-height: 1.2;
}

.trusted-partners-header .view-more-link {
    border: 1px solid #20282D;
    border-radius: 1px;
    padding: 10px 22px;
    font-size: 14px;
    text-decoration: none;
    color: #20282D;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trusted-partners-header .view-more-link:hover {
    background: #20282D;
    border-radius: 1px;
    padding: 10px 22px;
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.partner-logo-card {
    border: 1px solid #e0e0e0;
    border-radius: 1px;
    background-color: #fff;
    padding: 10px 20px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
    /* Space between cards in the slider */
}

.partner-logo-card img {
    max-width: 231px;
    max-height: 125px
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-nav button {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-nav button span {
    font-size: 20px;
    color: #fff;
    line-height: 1;
}

.owl-nav .owl-prev {
    margin-left: 10px;
}

.owl-nav .owl-next {
    margin-right: 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .trusted-partners-header h1 {
        font-size: 2rem;
    }

    .trusted-partners-header .view-more-link {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .partner-logo-card {
        height: 100px;
        margin: 0 8px;
    }
}

@media (max-width: 767px) {
    .trusted-partners-header h1 {
        font-size: 1.75rem;
    }

    .partner-logo-card {
        height: 90px;
        margin: 0 6px;
    }
}

@media (max-width: 576px) {
    .trusted-partners-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .trusted-partners-header .view-more-link {
        align-self: flex-end;
    }

    .partner-logo-card {
        height: 80px;
        margin: 0 5px;
    }
}




/* Call to Action Section */
.call-to-action {
    position: relative;
    height: 470px;
    background: url('../img/banner2@2x.png') no-repeat center center;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}



.content-wrapper {
    text-align: center;
}



.action-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: white;
    color: black;
}

.stats-img {
    position: absolute;
    bottom: 50px;
    right: 300px;
    width: 150px;
    height: 150px;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

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

/* Responsive Design */
@media (max-width: 1024px) {
    .call-to-action {
        height: 400px;
    }

    .main-title {
        font-size: 2.5rem;
        max-width: 400px;
    }

    .stats-img {
        right: 50px;
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .call-to-action {
        height: 350px;
    }

    .main-title {
        font-size: 2rem;
        max-width: 90%;
    }

    .action-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .stats-img {
        bottom: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .call-to-action {
        height: 300px;
        flex-direction: column;
        text-align: center;
    }

    .main-title {
        font-size: 1.5rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .action-btn {
        position: static;
        margin: 0 auto;
        font-size: 0.8rem;
    }

    .stats-img {
        position: static;
        width: 80px;
        height: 80px;
        margin: 1rem auto;
    }
}

/*-----------------------------
         Our Products 
        ------------------------------*/
.concept-design-section {
    background-color: #02194F;
    color: #D3D3D3;
}

.concept-subheading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #A9A9A9;
}

.concept-main-heading {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #D3D3D3;
}

.concept-description {
    font-size: 1rem;
    color: #A9A9A9;
    margin-bottom: 20px;
}

.concept-card {
    background-color: #2A3536;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.concept-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0.8;
}

.concept-card-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: white;
}

.concept-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.concept-card-link {
    font-size: 0.9rem;
    color: #A9A9A9;
    text-decoration: none;
}

.concept-card-link:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .concept-main-heading {
        font-size: 2.5rem;
    }

    .concept-subheading {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .concept-description {
        font-size: 0.9rem;
    }

    .concept-card img {
        aspect-ratio: 16 / 9;
        max-height: 150px;
    }

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

    .concept-card-link {
        font-size: 0.8rem;
    }

    /* Disable animations on mobile */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    [data-aos][data-aos-delay] {
        transition-delay: 0s !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


.sub-title {
    font-size: 15px;
    font-weight: 600;
    color: #BB1616;
    margin-bottom: 10px;
}

.main-title {
    font-size: 42px;
    font-weight: 500 !important;
    color: #20282D;
    margin-bottom: 20px;
}

/* Medium screens (tablets) */
@media (max-width: 991.98px) {
    .main-title {
        font-size: 32px;
    }

    .sub-title {
        font-size: 14px;
    }

    .about-us {
        margin-top: 0px;
    }
}

/* Small screens (phones) */
@media (max-width: 767.98px) {
    .main-title {
        font-size: 26px;
    }

    .sub-title {
        font-size: 13px;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .main-title {
        font-size: 22px;
    }

    .sub-title {
        font-size: 12px;
    }
}







/* -------------------------------------
Breadcrumb
----------------------------------------*/
.breadcrumb-section {
    background-image: url('../img/breadcrumb2x.png');
    /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    height: 350px;
}

/* .breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-section h2 {
    font-size: 32px;
    text-align: center;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
}

.breadcrumb-section .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: #ddd;
}

.breadcrumb-section .breadcrumb-item.active {
    color: #ccc;
}

.breadcrumb-section .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    content: ">>";
}

/*------------------------------------
    Mission Vison Values
--------------------------------------------------*/
.mission-image, .vision-image, .values-image {
    width: 75px;
    height: 75px;
    margin-bottom: 15px;
}

.mission-title, .vision-title, .values-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.mission-description, .vision-description, .values-description {
    font-size: 1rem;
    color: #6c757d;
}

.mission-vision-wrapper {
    padding: 50px 0;
}


/* -------------------------------------------------------------
Our Services
----------------------------------------------------------------*/
.services-section {
    padding: 20px;
    background-color: #f5f5f5;
}

.service-box {
    background-color: #fff;
    padding: 12px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px 20px 0;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 70px;
    margin-right: 10px;
    object-fit: contain;
}

.service-heading {
    font-size: 21px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.service-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.service-btn {
    display: flex;
    gap: 20px;
    width: fit-content;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    border: 1px solid #000;
    padding: 8px 15px;
    margin: 0 20px 20px;
    box-sizing: border-box;
}

.arrow {
    font-size: 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-header {
        padding: 15px 15px 0;
    }

    .service-text {
        margin: 0 15px 15px;
    }

    .service-btn {
        margin: 0 15px 15px;
    }

    .service-heading {
        font-size: 1.1rem;
    }

    .service-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 10px;
    }

    .service-header {
        padding: 15px 15px 0;
    }

    .service-text {
        margin: 0 15px 15px;
    }

    .service-btn {
        margin: 0 15px 15px;
    }

    .service-icon {
        width: 35px;
        height: 35px;
    }

    .service-heading {
        font-size: 1rem;
    }

    .service-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .service-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 5px;
    }

    .service-header {
        padding: 10px 10px 0;
    }

    .service-text {
        margin: 0 10px 10px;
    }

    .service-btn {
        margin: 0 10px 10px;
    }

    .service-icon {
        width: 30px;
        height: 30px;
        margin-right: 8px;
    }

    .service-heading {
        font-size: 0.95rem;
    }

    .service-text {
        font-size: 0.75rem;
    }

    .service-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}


/*---------------------------------
  Service- Details Pages
  -------------------------------------*/
.service-detail {
    padding: 50px 0;
}

.service-detail h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a1a1a;
}

.service-detail h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 20px;
}

.service-detail p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.service-detail .highlight {
    color: #BB1616;
    font-weight: bold;
    font-size: 1rem;
}

.service-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}



/*  */


.benefit-card {
    background-color: #f5f5f5;
    border: 1px solid #dee2e6;
    padding: 20px;
    height: 100%;
    position: relative;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}



/* ---------------------------
Products
-------------------------------*/
.header {
    color: #20282D;
    font-size: 37px;
    font-weight: 600;
    margin-bottom: 10px;
}

.description {
    color: #20282D;
    font-size: 14px;
    margin-bottom: 2rem;
}

.module-card {
    border-radius: 10px;
    padding: 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: center;
    height: 256px;
}

.card-bg-blue {
    background-color: #02194F;
}

.card-bg-red {
    background-color: #BB1616;
}

.module-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
    /* Applies white filter to images */
}

.module-card p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

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

    .module-card img {
        width: 24px;
        height: 24px;
    }

    .module-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .header {
        font-size: 2rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .module-card {
        height: 200px;
    }

    .module-card img {
        width: 40px;
        height: 40px;
    }

    .module-card p {
        font-size: 0.8rem;
    }
}

.aftergrad {
    background-color: #F5F5F5;
}

.aftergrad-container {
    /* background-color: #EFEFEF; */
    /* border-radius: 10px; */
    overflow: hidden;
}

.mission-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aftergrad-logo {
    font-size: 37px;
    font-weight: 600;
    color: #20282D;
    margin-bottom: 1.5rem;
}

.mission-label {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.mission-info {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}



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

    .aftergrad-logo {
        font-size: 2rem;
    }

    .mission-label {
        font-size: 1.1rem;
    }

    .mission-info {
        font-size: 0.9rem;
    }

    /* .aftergrad-image {
        min-height: 300px;
    } */
}

@media (max-width: 576px) {
    .mission-content {
        padding: 1.5rem;
    }

    .aftergrad-logo {
        font-size: 1.75rem;
    }

    .mission-label {
        font-size: 1rem;
    }

    .mission-info {
        font-size: 0.85rem;
    }

    .aftergrad-image {
        min-height: 250px;
    }
}


/* ----------------------------------------
What We Do
-------------------------------------------*/
.what-we-do-section {
    padding: 50px 0;
}

.what-we-do-card {
    border: none;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 350px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

.what-we-do-card.web-services {
    background-image: url('../img/w1@2x.png');
}

.what-we-do-card.enterprise-planning {
    background-image: url('../img/w2@2x.png');
}

.what-we-do-card.databases {
    background-image: url('../img/w3@2x.png');
}

.what-we-do-card.bigdata {
    background-image: url('../img/w4@2x.png');
}

.what-we-do-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.9);
    padding: 15px 20px;
    transition: all 0.3s ease;
    height: 20%;
    /* Fits the title in normal state */
}

.what-we-do-overlay:hover {
    height: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.what-we-do-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.what-we-do-text {
    flex: 1;
}

.what-we-do-title {
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    transition: transform 0.3s ease;
}

.what-we-do-overlay:hover .what-we-do-title {
    transform: translateY(-10px);
}

.what-we-do-description {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
    height: 150px;
}

.what-we-do-overlay:hover .what-we-do-description {
    opacity: 1;
    /* Visible on hover */
}

.what-we-do-arrow {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 15px;
    transform: rotate(90deg);
    /* Downwards by default */
    transition: transform 0.3s ease;
    margin-top: -180px;
}

.what-we-do-overlay:hover .what-we-do-arrow {
    transform: rotate(-90deg);
    /* Upwards on hover */

    /* Upward arrow on hover */
}


/* -----------------------------------------
Industries
--------------------------------------------*/
.industries-section {
    padding: 50px 0px;
    background-color: #f5f5f5;
}

.industries-card {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 20px;
    height: 250px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.industries-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.8);
    padding: 15px 20px;
    transition: all 0.3s ease;
    height: 0;
    opacity: 0;
    z-index: 1;
}

.industries-card:hover .industries-overlay {
    height: 100%;
    opacity: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.industries-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.industries-text {
    flex: 1;
}

.industries-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    transition: transform 0.3s ease;
}

.industries-card:hover .industries-title {
    transform: translateY(-10px);
}

.industries-description {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 150px;
}

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

.industries-arrow {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 15px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    margin-top: -180px;
}

.industries-card:hover .industries-arrow {
    transform: rotate(90deg);
}

.normal-title {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0px;
    padding: 15px 20px;
    text-transform: capitalize;
    transition: opacity 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    z-index: 2;
    position: relative;
}

.industries-card:hover .normal-title {
    opacity: 0;
}

.normal-arrow {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 24px;
    color: #000000;
    transition: opacity 0.3s ease;
    /* background: rgba(255, 255, 255, 0.8); */
    z-index: 4;
}

.industries-card:hover .normal-arrow {
    opacity: 0;
}

/* ------------------------------------
Insights
---------------------------------------*/
.insights-section {
    position: relative;
    height: 300px;
    background: url('../img/insights@2x.png') no-repeat center center;
    background-size: cover;
    filter: grayscale(100%);
}

.insights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    padding: 30px;
}

.insights-content {
    max-width: 600px;
}

.insights-title {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.insights-link {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.insights-link:hover {
    color: #ddd;
}

.insights-link .arrow {
    margin-left: 10px;
    font-size: 24px;
}


/* -----------------------------------
Careers Page
--------------------------------------*/
/* Careers Page */
.careers-container {
    padding: 50px 0;
}

.careers-card {
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    padding: 20px;
    background-color: #fff;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.careers-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.careers-location {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.careers-location::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="currentColor" class="bi bi-geo-alt" viewBox="0 0 16 16"><path d="M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A31.493 31.493 0 0 1 8 14.58a31.481 31.481 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.305 1.867-.834 2.94zM8 16s6-5.686 6-10 A6 6 0 0 0 2 6c0 4.314 6 10 6 10z"/><path d="M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"/></svg>');
    margin-right: 5px;
}

.careers-positions {
    margin-left: 15px;
    /* Adding gap between location and positions */
}

.careers-description-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.careers-description {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
}

.careers-apply-btn {
    background-color: #BB1616;
    color: #fff;
    font-weight: 600;
    padding: 8px 20px;
    border: none;
    border-radius: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    width: fit-content;
}

.careers-apply-btn:hover {
    background-color: #c82333;
}

/* Modern Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f9f9f9);
}

.modal-header {
    border-bottom: none;
    padding: 20px 30px;
    background-color: #f8f9fa;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

.btn-close {
    filter: opacity(0.6);
    transition: filter 0.3s ease;
}

.btn-close:hover {
    filter: opacity(1);
}

.modal-body {
    padding: 30px;
}

.modal-body label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #34495e;
    margin-bottom: 8px;
    display: block;
}

.modal-body input,
.modal-body textarea {
    font-size: 0.95rem;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
    padding: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-body input:focus,
.modal-body textarea:focus {
    border-color: #dc3545;
    box-shadow: 0 0 8px rgba(220, 53, 69, 0.2);
    outline: none;
}

.modal-body textarea {
    resize: none;
}

.modal-footer {
    border-top: none;
    padding: 20px 30px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.modal-footer .btn-secondary {
    background-color: #ecf0f1;
    color: #7f8c8d;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.modal-footer .btn-secondary:hover {
    background-color: #dfe6e9;
}

.modal-footer .btn-primary {
    background-color: #dc3545;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.modal-footer .btn-primary:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}












/* Contact Us Page */
.contact-wrapper {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    /* box-shadow: 0 0 20px rgba(0,0,0,0.05); */
}

.title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 25px;
}

.info-panel {
    background-color: #fff;
    padding: 20px 50px;
    position: absolute;

}

.info-panel .detail-item {
    margin-bottom: 25px;
    font-size: 22px;
    color: #222;
}

.contact-circle img {
    width: 70px;
    height: 70px;
}

.detail-item p {
    font-size: 16px;
    font-weight: 400;
}

.detail-item h4 {
    font-size: 22px;
    font-weight: 600;
}


.info-panel a {
    color: #222;
    text-decoration: none;
    font-size: 16px;
}

.form-panel {
    background-color: #f5f5f5;
    padding: 0px 30px;
    height: 100%;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
    background-color: #fff;
}

.submit-button {
    background-color: #BB1616;
    border: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.submit-button:hover {
    background-color: #a81414;
}

/* Decorative bottom left triangle */
.red-accent {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border-left: 201px solid #BB1616;
    /* Increase width here */
    border-top: 221px solid transparent;
    /* Increase height here */
}

.form-label {
    font-size: 16px;
    color: #292929;
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 20px;
    }

    .info-panel,
    .form-panel {
        padding: 20px;
        position: relative;
    }

    .red-accent {
        display: none;
    }
    .contact-circle img {
    width: 50px;
    height: 50px;
}
}



/* --------------------------------
OUR APPROACH
-------------------------------------*/
.image-panel {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.grid-item {
    position: relative;
    overflow: hidden;
}

.text-panel {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 18px 20px;
    border-radius: 1px;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 400px;
    /* Fixed width to ensure arrow fits */
}

.arrow-icon {
    font-size: 24px;
    color: #000000;
    margin-left: 10px;
    /* Space between text and arrow */
}

/* .blog-details-content{
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 1px 1px 2px 0px;
   
    width: 100%;
    position: absolute;

} */
.blog-details-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}



/* Our Approach Page */
.item-text p {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
    margin: 5px 0;
}



/* About Products */
.abt-products{
    background: #02194F;

}
.abt-products {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.service-card {
    border: none;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    height: 350px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

.service-card.web-services {
    background-image: url('../img/w1@2x.png');
}

.service-card.enterprise-planning {
    background-image: url('../img/w2@2x.png');
}

.service-card.databases {
    background-image: url('../img/w3@2x.png');
}

.service-card.bigdata {
    background-image: url('../img/w4@2x.png');
}

.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background:rgb(0 0 0 / 45%);
    padding: 15px 20px;
    transition: all 0.3s ease;
    height: 20%;
}

.service-overlay:hover {
    height: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-text {
    flex: 1;
}

.service-title {
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
    transition: transform 0.3s ease;
}

.service-overlay:hover .service-title {
    transform: translateY(-10px);
}

.service-description {
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 150px;
}

.service-overlay:hover .service-description {
    opacity: 1;
}

.service-arrow {
    color: #fff;
    font-size: 1.5rem;
    margin-left: 15px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    margin-top: -180px;
}

.service-overlay:hover .service-arrow {
    transform: rotate(-90deg);
}
.products-heading {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: capitalize;
}


.viewmorebtn {
    border: 1px solid #ffffff;
    padding: 8px 20px;
    font-size: 0.9rem;
    text-decoration: none;
    color: #20282D;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
}