/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #00D0FC;
    --secondary-color: #4484F7;
    --link-color: #4484F7;
    --dark-color: #202124;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --purple: #b291f2;
    --white: #ffffff;
    --cream: #E2E5F1;
    --black: #000000;
    --light-green: #36F165;
    --card-background-color: #132739;

    /* Typography */
    --font-family: 'Inter', sans-serif;
    --title-font-size: 90px;
    --sm-title-font-size: 40px;
    --small-text: 16px;
    --title-font-weight: 700;
    --subtitle-font-size: 36px;
    --subtitle-font-weight: 700;
    --h3-font: 24px;
    --body-font-size: 18px;
    --body-font-weight: regular;
    --button-font-size: 18px;
}

/* Typography */


/* Buttons */
.btn {
    font-size: var(--button-font-size);
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 20px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: darken(var(--primary-color), 10%);
}


.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Icons */
.icon {
    width: 30px;
    height: 30px;
}

/* Animations */
.animated {
    transition: all 0.3s ease-in-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-dark {
    color: var(--dark-color);
}

.text-gray {
    color: var(--gray);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.bg-light {
    background-color: var(--light-gray);
}
.navbar-brand img {
    width: 200px;
}

.navbar-brand {
    padding: 0;
}
.navbar-light .navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: var(--dark-color);
}
.navbar-nav .nav-link.nav-button {
    background: var(--link-color);
    color: var(--white);
    padding: 9px 20px;
    border-radius: 10px;
}
.txt-light-green {
    color: var(--light-green);
}
/* typography */
p,li {
    font-size: var(--body-font-size);
    font-weight: var(--body-font-weight);
    line-height: normal;
}
h2 {
    font-family: var(--font-family);
    font-size: var(--subtitle-font-size);
    font-weight: var(--subtitle-font-weight);
}
h3 {
    font-family: var(--font-family);
    font-size: var(--h3-font);
    font-weight: var(--subtitle-font-weight);
}
/* hero section */
section.section-hero {
    margin-top: 80px;
}
.section-hero {
    background: url('../images/hero/bg-hero.jpg') no-repeat center center/cover;
}
.hero-container {
    color: var(--white);
    padding-top: 202px;
    padding-bottom: 112px;
    text-align: center;
}
.hero-inner-container {
    position: relative;
}
.chunkimg {
    position: absolute;
}
.chunkimg.chunk-1 {
    top: -20%;
    left: -10%;
}
.chunkimg.chunk-2 {
    top: -20%;
    right: -10%;
}
.chunkimg.chunk-3 {
    bottom: 0;
    left: 0;
}
.chunkimg.chunk-4 {
    bottom: 0;
    right: 0;
}
.hero-container h1 {
    font-family: var(--font-family);
    font-size: var(--title-font-size);
    font-weight: var(--title-font-weight);
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero-container p{
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--cream);
}
.hero-container .btn {
    background-color: var(--primary-color);
}
/* section-1 */
section.section-2 {
    background: url(../images/bg-section-2.svg) no-repeat;
    background-size: cover;
}
section.section-2 p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-2-inner-container {
    color: var(--white);
    padding: 80px 0px;
}
/* For responsive carousel */
.clients .client-item {
    padding: 10px;
}

.img-client {
    max-width: 100%;
    height: auto;
}
/* section-3 */
img.img-bg {
    width: 100%;
}
/* section-4 */
section.section-4 {
    background: url(../images/bg-section-4.svg) no-repeat;
    background-size: cover;
}
.section-4-inner-container {
    color: var(--white);
    padding: 80px 0px;
}

.section-4-inner-container p {
    text-align: center;
    max-width: 565px;
    margin-left: auto;
    margin-right: auto;
}
.section-4-inner-container h2 {
    text-align: center;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.service-item img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service-image-container {
    width: 100%; /* Set a fixed width */
    overflow: hidden;
    display: inline-block;
  }
  
  .service-image-container img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }
  
  .service-image-container:hover img {
    transform: scale(1.2); /* Zoom effect */
  }
  

.service-item {
    background: var(--card-background-color);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.service-caption {
    padding: 40px 36px;
}

ul.service-list {
    list-style-type: none;
    padding-left: 20px;
}
ul.service-list li {
    margin-bottom: 15px;
}

ul.service-list li::before {
    content: '';
    background: url('../images/icons/star.svg') no-repeat center center;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 10px;
}

/* section-5 */

.img-industry {
    width: 100%;
}

.industry-item {
    max-width: 290px;
    margin-top: 40px;
}

section.section-5 {
    background: url(../images/bg-section-5.svg) no-repeat;
    background-size: cover;
    padding: 80px 0px;
    text-align: center;
}

button.btn.btn-see-more {
    height: 36px;
    font-size: var(--small-text);
    padding: 4px 24px;
    line-height: normal;
    background: var(--white);

}

/* section-6 */
section.section-6 {
    background: url(../images/bg-section-6.svg) no-repeat;
    background-size: cover;
    padding: 80px 0px;
    text-align: center;
}
.seamless-items {
    display: flex;
    gap: 10px;
}

.section-6-inner-container {
    color: #fff;
    text-align: left;
}

.section-6-inner-container h2 {
    padding-top: 95px;
}

/* section-7 */
.section-7-inner-container {
    padding: 80px 0px 40px;
}

.address-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.address-main-item {
    text-align: center;
}

.address-main-item .icon {
    width: 62px;
    height: 62px;
    margin-bottom: 30px;
}

.address-main-item p {
    font-size: var(--small-text);
    margin-bottom: 0px;
}
form.contact-form h3 {
    margin-bottom: 27px;
}

.section-7-inner-container .form-control {
    background: #EEF4FA;
}

section.section-8 {
    background: url(../images/bg-section-2.svg) no-repeat;
    background-size: cover;
    padding: 80px 0px;
}
.section-8-inner-container {
    background: var(--white);
}
.subscribe-content {
    padding: 70px;
}
p.small-text {
    font-size: var(--small-text);
}
.subscribe {
    display: flex;
    gap: 18px;
}

.footer-container {
    background: #000C3F;
    color: #fff;
    padding: 80px 0px;
}

img.footer-logo {
    margin-bottom: 20px;
}

.footer-container p, .footer-container li {
    font-size: var(--small-text);
}

.footer-copyright {
    background: #4484F7;
}

.footer-copyright-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-copyright-container p {
    margin-bottom: 0px;
    color: var(--white);
    font-size: var(--small-text);
}

.footer-copyright {
    padding: 12px 0px;
}

.social-icons img {
    margin-right: 15px;
}
hr.foothr {
    border-image: linear-gradient(to right, #FFC806 0%, #00000000 50%) 1;
    border-width: 2px;
}


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

.industry-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.industry-item .overlay-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;  /* Prevents text from wrapping */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.industry-item:hover::before,
.industry-item:hover .overlay-button {
    opacity: 1;
}

section.inner-page-breadcrumb {
    margin-top: 80px;
    background-image: url(../images/inner-page-bg.jpg);
    padding: 171px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.inner-container {
    background: #1F1F4C99;
    max-width: 491px;
    margin: auto;
    border-radius: 10px;
}
section.inner-page-breadcrumb h2 {
    color: #fff;
    font-family: var(--font-family);
    font-size: var(--subtitle-font-size);
    font-weight: var(--title-font-weight);
    padding: 15px 0;
}
section.section-consulting-2, .section-consulting-3 {
    margin: 60px 0px;
}
section.section-consulting-2 p {
    font-size: var(--small-text);
}
img.img-full {
    width: 100%;
}
section.section-dev-2 {
    margin-top: -120px;
}



.carditem {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}
.carditem-image {
    flex: 4;
}


.carditem-image img {
    border-radius: 10px;
    max-width: 100%;
}

.carditem-content {
    background: #132739;
    padding: 0 50px;
    flex: 8;
}

.carditem.reverse {
    flex-direction: row-reverse;
}

section.section-dev-3 {
    color: #fff;
    padding: 60px 0;
    background-image: linear-gradient(to right, #124F98, #53D8FF);
}

.outer-content {
    text-align: center;
    max-width: 694px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.carditem-content {
    display: flex;
    align-items: center;
}

.section-consulting-5 {
    background: linear-gradient(90deg, #b28df9 0%, #44c2f0 50%, #003b8f 100%);
    padding: 60px 0;
    color: #fff;

}
.section-consulting-5 img{
    border-radius: 10px;
}

section.section-consulting-6 {
    padding: 60px 0;
}

section.section-consulting-7 {
    background: url("../images/vendor/section7-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
section.section-consulting-8 {
    padding: 60px 0;
}


.sec7-inner {
    max-width: 523px;
    padding: 222px 0;
}

/* Responsive Grid */

@media (max-width: 1140.98px) {
    .hero-container {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-6-inner-container {
        max-width: 800px;
    }
}
@media (max-width: 991.98px) {
    .hero-container {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    .chunkimg.chunk-1 {
        left: 0;
    }
    .chunkimg.chunk-2 {
        right: 0;
    }
}
@media (max-width: 767.98px) {
    .hero-container h1 {
        font-size: var(--sm-title-font-size);
    }
    .chunkimg.chunk-1 {
        top: -40%;
    }
    
    .chunkimg.chunk-2 {
        top: -30%;
    }
    
    .chunkimg.chunk-3 {
        bottom: -20%;
    }
    
    .chunkimg.chunk-4 {
        bottom: -25%;
    }
    img.img.img-seamless {
        max-width: 108px;
    }
    .slick-next {
        right: 0;
    }
    .slick-prev {
        left: 0;
    }
    img.img.img-client {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .subscribe-content {
        padding: 15px;
    }
    .footer-copyright-container {
        flex-direction: column;
        gap: 20px;
    }
}


.chunkimg {
    animation: rotateImage 5s linear infinite;
}

@keyframes rotateImage {
    0% {
        transform: rotate(0deg);
    }   
    100% {
        transform: rotate(360deg);
    }
}
