* { margin: 0; padding: 0; box-sizing: border-box;
/*font-family: Podkova !important;*/
    
}
body {
   /*font-family: Podkova;*/
    overflow-x: hidden; /* Prevent horizontal scroll due to floating elements */
}

/* ===== Consent Bar ===== */
.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    color: black;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.25);
    font-size: 15px;
}
.consent-bar .btn-outline-light:hover {
    background: #ffffff;
    color: #0b3d4f;
}
.consent-bar a {
    color: #00c2cb;
    text-decoration: underline;
}

.consent-bar a:hover {
    color: #ffffff;
}

.consent-bar .btn {
    white-space: nowrap;
}
.btn-main {
    display: inline-block;
    padding: 10px 30px;
    background: #111827;
    border: 1px solid #C2CEDA;
    color: #C2CEDA;
    border-radius: 0;
    font-size: 14px;
    transition: 0.35s ease;
    text-decoration: none;
    font-weight: 500;
}

/* Hover Effect */
.btn-main:hover {
    background: #06b6d4;
    border-color: #06b6d4;
    color: #0F172A;
}
/* SECTION BACKGROUND */
.hero-section {
    background: linear-gradient(90deg, #03213B, #18003B);
    padding: 60px 60px 90px 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* LEFT SIDE TEXT */
.hero-title {
    color: #00E0FF;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 2px;
    font-family: Podkova;
}

.hero-desc {
    font-size: 16px;
    margin-top: 25px;
    margin-bottom: 40px;
    line-height: 1.8;
    color: #d6d6d6;
}

.hero-btn {
    border: 1.5px solid #00C4FF;
    padding: 12px 32px;
    color: #00C4FF;
    font-size: 15px;
    border-radius: 0;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #00C4FF;
    color: #03213B;
}

/* RIGHT IMAGES */
.hero-right {
    margin-top: 30px;
    position: relative;
}

.circle-graphic {
    width: 500px;
    z-index: 1;
}

.desk-graphic {
    width: 360px;
    position: absolute;
    bottom: -65px;
    right: 160px;
    z-index: 2;
}


/* ------------------ RESPONSIVE BREAKPOINTS ------------------ */

/* Tablets - 991px */
@media (max-width: 991.98px) {

    .hero-section {
        padding: 70px 25px 120px 25px;
        text-align: center;
    }

    .hero-left {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 1px;
    }

    .hero-desc {
        font-size: 15px;
        width: 100%;
    }

    .circle-graphic {
        width: 360px;
        margin: auto;
    }

    .desk-graphic {
        width: 300px;
        bottom: -30px;
        right: 50%;
        transform: translateX(50%);
    }
}


/* Mobile - 768px */
@media (max-width: 767.98px) {

    .hero-title {
        font-size: 35px;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .circle-graphic {
        width: 300px;
    }

    .desk-graphic {
        width: 240px;
        bottom: -20px;
    }
}


/* Small Mobile - 576px */
@media (max-width: 576.98px) {

    .hero-section {
        padding: 40px 20px 120px 20px;
    }
    .hero-btn{
        padding: 9px 24px;
        font-size: 14px;
    }
    .hero-title {
        font-size: 30px;
    letter-spacing: 0.5px;
    line-height: 30px;
    }

    .circle-graphic {
        width: 250px;
    }

    .desk-graphic {
        width: 200px;
        bottom: -10px;
    }
}

/* ============================
   ABOUT SECTION 
============================= */

.about-section {
    position: relative;
    min-height: 100vh;
    padding: 90px 20px;
    background: #ffffff;  /* TOP HALF PURE WHITE */
    overflow: visible;
    z-index: 1;
}

/* Bottom Half Gradient */
.about-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    background: linear-gradient(120deg, #9333ea 0%, #06b6d4 100%);
    z-index: -3;
}

/* Waves ONLY on bottom half */
.about-section .waves-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: repeating-radial-gradient(
        circle at 0% 50%,
        transparent 0,
        transparent 40px,
        rgba(255,255,255,0.08) 41px,
        transparent 42px
    );
    z-index: -2;
    pointer-events: none;
}

/* ============================
   DARK CARD & CONTENT
============================= */

.about-section .about-card {
    background-color: #131720;
    border-radius: 40px;
    padding: 35px 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    z-index: 5;
}

/* LEFT TEXT */
.about-section .text-content {
    width: 55%;
    padding-right: 30px;
}

.about-section .cyan-line {
    width: 45px;
    height: 4px;
    background-color: #06b6d4;
    margin-bottom: 20px;
}

.about-section .title {
    font-family: 'Merriweather', serif;
    font-size: 30px;
    color: #06b6d4;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-section .subtitle {
    font-size: 15px;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 40px;
}

.about-section .desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.about-section .highlight { 
    color: #06b6d4;
    font-weight: 600;
}

.about-section .btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 8px 15px;
    border: 1px solid #06b6d4;
    color: #06b6d4;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.about-section .btn-primary:hover {
    background: #06b6d4;
    color: #0f172a;
}

/* ============================
   RIGHT IMAGES
============================= */

.about-section .image-area {
    width: 40%;
    position: relative;
    min-height: 400px;
}

.about-section .img-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.about-section .inner-img img,
.about-section .floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section .inner-img {
    width: 60%;
    height: 380px;
    position: relative;
    z-index: 1;
}

.about-section .floating-img {
    position: absolute;
    width: 211px;
    height: 350px;
    top: -120px;
    right: -103px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-radius: 25px;
}

/* ============================
   RESPONSIVE
============================= */

@media (max-width: 1200px) {
    .about-section .about-card {
        padding: 30px 40px;
    }
    .about-section .inner-img {
        width: 70%;
        height: 350px;
    }
    .about-section .floating-img {
        right: -70px;
        top: -110px;
    }
}

/* Tablets Landscape */
@media (max-width: 992px) {

    .about-section {
        padding: 70px 20px;
    }

    .about-section .container {
        padding: 0px 25px !important;
    }

    .about-section .about-card {
        flex-direction: column;
        padding: 30px 25px;
        margin-top: 30px;
    }

    .about-section .text-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        text-align: left;
    }

    .about-section .image-area {
        width: 100%;
        min-height: auto;
    }

    .about-section .inner-img {
        width: 70%;
        height: 300px;
        margin-bottom: 30px;
    }

    .about-section .floating-img {
        width: 200px;
        height: 260px;
        top: -40px;
        right: 20px;
    }
}

/* Tablets Portrait */
@media (max-width: 768px) {

    .about-section {
        padding: 40px 10px;
    }

    .about-section .about-card {
        padding: 20px 15px;
        border-radius: 30px;
    }

    .about-section .title {
        font-size: 26px;
    }

    .about-section .subtitle {
        font-size: 14px;
    }

    .about-section .desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-section .inner-img {
        width: 80%;
        height: 250px;
    }

    .about-section .floating-img {
        display: none; /* perfect for mobile */
    }
}

/* Small Devices */
@media (max-width: 480px) {

    .about-section {
        padding: 30px 8px;
    }

    .about-section .about-card {
        padding: 20px 12px;
    }

    .about-section .title {
        font-size: 22px;
    }

    .about-section .subtitle {
        font-size: 13px;
    }

    .about-section .desc {
        font-size: 12px;
    }

    .about-section .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }

    .about-section .inner-img {
        width: 100%;
        height: 220px;
    }
}

/* VERY Small Devices (iPhone SE) */
@media (max-width: 360px) {
    .about-section .title {
        font-size: 20px;
    }
    .about-section .desc {
        font-size: 11px;
    }
}



/* ============================
   Services  Sections
============================= */
.expertise-section {
    padding: 80px 0;
    text-align: center;
}

/* TITLE */
.expertise-title-area {
    margin-bottom: 40px;
}

.expertise-line {
    width: 40px;
    height: 3px;
    background: #06b6d4;
    margin: 0 auto 12px;
}

.expertise-title {
    font-size: 30px;
    color: #24124C;
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

/* ============================
   GRID
============================= */
.expertise-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: stretch;
}

/* ============================
   CARD BOX
============================= */
.expertise-card {
    position: relative;
    height: 100%;
    border-radius: 0;
}

.expertise-card::after {
    content: "";
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    background: #048AAA;
    z-index: 1;
    transition: 0.35s ease;
}

.expertise-card-inner {
    background: #161D2B;
    border: 1px solid #1F2937;
    padding: 30px;
    display: flex;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: 0.35s ease;
    transform: translateY(0);
}

/* ============================
   HOVER EFFECTS
============================= */

.expertise-card:hover .expertise-card-inner {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.35);
}

.expertise-card:hover::after {
    transform: translate(5px, 5px);
}

.expertise-card:hover .expertise-icon {
    background: #09c9e4;
}

.expertise-card:hover h3 {
    color: #0ee0ff;
}

/* ============================
   ICON, FRAME & TEXT
============================= */

.expertise-icon {
    width: 70px;
    height: 70px;
    background: #048AAA;
    border-radius: 8px 8px 25px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-frame {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-frame i {
    font-size: 30px;
    color: #0F172A;
    line-height: 1;
    -webkit-text-stroke: 1px #0F172A;
}

.expertise-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expertise-text h3 {
    font-size: 18px;
    font-family: 'Merriweather', serif;
    color: #06b6d4;
    margin-bottom: 10px;
    font-weight: 700;
}

.expertise-sep {
    width: 60%;
    height: 2px;
    background: #1F4254;
    margin-bottom: 12px;
}

.expertise-text p {
    color: #C2CEDA;
    font-size: 14px;
    line-height: 1.7;
}

/* BUTTON */
.expertise-btn-area {
    margin-top: 40px;
}

.expertise-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #111827;
    border: 1px solid #C2CEDA;
    color: #C2CEDA;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

.expertise-btn:hover {
    background: #06b6d4;
    border-color: #06b6d4;
    color: #0F172A;
}

/* ============================
   RESPONSIVE BREAKPOINTS
============================= */
@media (max-width: 1199px) {
    .expertise-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        width: 95%;
    }

    .expertise-card-inner {
        padding: 25px;
    }

    .expertise-icon {
        width: 60px;
        height: 60px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .expertise-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .expertise-title {
        font-size: 26px;
    }

    .expertise-icon {
        width: 55px;
        height: 55px;
    }

    .expertise-card-inner {
        padding: 22px;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .expertise-container {
        grid-template-columns: repeat(1, 1fr);
        width: 90%;
        gap: 22px;
    }

    .expertise-card-inner {
        padding: 20px;
        flex-direction: row;
        text-align: left;
    }

    .expertise-icon {
        margin-right: 15px;
        width: 50px;
        height: 50px;
    }

    .expertise-text h3 {
        font-size: 16px;
    }

    .expertise-sep {
        width: 50%;
    }
}

/* Small Mobile */
@media (max-width: 576px) {

    .expertise-section {
        padding: 20px 0;
    }

    .expertise-title {
        font-size: 22px;
    }

    .expertise-container {
       width: 85%;
    gap: 25px;
    }

    .expertise-card-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }

    .expertise-icon {
        margin: 0 0 15px 0;
        width: 60px;
        height: 60px;
    }

    .expertise-sep {
        margin: 10px auto;
        width: 60%;
    }

    .expertise-text p {
        text-align: center;
    }
}


/**********************************
   INDUSTRY SECTION 
**********************************/
.industry-section {
    position: relative;
   padding: 30px 0 45px;
    overflow: hidden;
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.industry-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    inset: 0;
    z-index: -2;
    filter: none;
}

.industry-section::before{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(90deg, #091C44CC 80%, #240944E5 90%);
    z-index:-1;
}

.industry-title-area {
    text-align: center;
    margin-bottom: 60px;
    color: #cfe9f2;
}
.industry-line {
    width: 45px;
    height: 3px;
    background: #06b6d4;
    margin: 0 auto 12px;
}
.industry-title {
    font-size: 36px;
    color: #00d5ff;
    font-family: 'Merriweather', serif;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}
.industry-subtitle {
    color: rgba(220,230,240,0.75);
    font-size: 16px;
    font-style: italic;
}

.industry-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 46px 100px;
    align-items: start;
}

.industry-card {
    position: relative;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .45s;
    will-change: transform;
   
}

.industry-card:nth-child(3n+1){ transform: rotate(-2deg); }
.industry-card:nth-child(3n+2){ transform: rotate(1deg); }
.industry-card:nth-child(3n){   transform: rotate(-1deg); }

.industry-card:hover{
    transform: translateY(-14px) rotate(0deg) !important;
    box-shadow: 0 35px 60px rgba(2,8,18,0.65);
}

.industry-img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
    filter: brightness(.55) contrast(.95);
    transition: filter .28s ease, transform .28s ease;
    border-radius: 0;
    box-shadow: 0 18px 35px rgba(2,8,18,0.6);
}

.industry-card:hover .industry-img{
    filter: brightness(.9) contrast(1);
    transform: scale(1.01);
}

.industry-pin{
    position:absolute;
    top:-12px;
    left:50%;
    transform: translateX(-50%) rotate(-15deg);
    width:30px;
    height:auto;
    z-index:12;
    filter: drop-shadow(0 6px 8px rgba(0,0,0,0.45));
    transition: transform .28s ease;
}

.industry-card:nth-child(3n+1) .industry-pin { transform: translateX(-50%) rotate(-12deg); left:98%;top:-8%; }
.industry-card:nth-child(3n+2) .industry-pin { transform: translateX(-50%) rotate(-18deg); left:98%;top:-8%; }
.industry-card:nth-child(3n)   .industry-pin { transform: translateX(-50%) rotate(-14deg); left:98%;top:-8%; }

.industry-card:hover .industry-pin{
    transform: translateX(-50%) rotate(0deg) scale(1.02);
}

.industry-content{
    position:absolute;
    left:22px;
    bottom:18px;
    z-index:11;
    max-width:68%;
    color:#fff;
    text-shadow: 0 6px 18px rgba(2,8,18,0.7);
}

.industry-content h3{
    margin:0 0 8px 0;
    font-size:30px;
    line-height:1.02;
    color:#ffffff;
    font-weight:700;
    letter-spacing: .2px;
}

.industry-link{
    color:#00e6ff;
    font-size:14px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:6px;
}

@media (max-width:1200px){
    .industry-container{ grid-template-columns: repeat(2, 1fr); gap:38px; width:94%; }
    .industry-img{ height:230px; }
    .industry-content h3{ font-size:24px; }
    .industry-pin{ width:40px; top:-10px; }
}
@media (max-width:768px){
    .industry-container{ grid-template-columns: 1fr; gap:28px; width:92%; padding-bottom:40px; }
    .industry-img{ height:220px; }
    .industry-content{ left:18px; bottom:16px; max-width:70%; }
    .industry-content h3{ font-size:22px; }
    .industry-title{ font-size:30px; }
}
@media (max-width:420px){
    .industry-img{ height:180px; border-radius:6px; }
    .industry-content h3{ font-size:18px; line-height:1.1; }
    .industry-content{ max-width:78%; left:12px; bottom:14px; }
    .industry-pin{ width:36px; top:-8px; }
}

.industry-section, .industry-container, .industry-card { -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }


/**********************************
    WHY SECTION
**********************************/
.why-section {
    padding: 80px 0;
}

.why-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT IMAGE */
.why-left {
    width: 50%;
}

.why-img {
    width: 100%;
    height: auto;
}

/* RIGHT TEXT AREA */
.why-right {
    width: 50%;
}

.why-title {
    font-size: 30px;
    font-weight: 700;
   color: #091C44;
    margin-bottom: 35px;
    position: relative;
}

.why-title::before {
    content: "";
    width: 70px;
    height: 2px;
    background: #091C44;
    position: absolute;
    top: -15px;
    left: 32%;
}


.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    background: linear-gradient(90deg,#9250EF, #0999BC);
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    margin-bottom: 18px;
    font-size: 16px;
   font-family: "Inter", sans-serif !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
     transition: 0.3s ease;
}


.why-list img {
    width: 20px;
    font-weight: bold;
     transition: 0.4s ease;
}

/*.why-list li:hover {*/
/*    transform: translateX(10px);*/
/*    box-shadow: 0 10px 25px rgba(0,0,0,0.2);*/
/*}*/

.why-list li:hover img {
    transform: translateX(6px);
}


@media (max-width: 1024px) {
    .why-container {
        flex-direction: column;
        text-align: center;
    }

    .why-left, .why-right {
        width: 100%;
    }

    .why-title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .why-list li {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .why-title {
        font-size: 26px;
    }

    .why-list li {
        font-size: 14px;
        padding: 10 18px;
        margin-bottom: 10px;
    }
}

/* PARTNER SECTION */
.partner-section {
    position: relative;
    padding: 35px 0 30px;
    overflow: hidden;
}

.partner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.6);
    z-index: 0;
}

.partner-bg::after {
    content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient( circle at center, #097F9C 0%, #2ECFF6 20%, #097F9C 98% );
  z-index: 1;
  pointer-events: none;
  opacity: 0.7;
}

.partner-title-area {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
}

.partner-line {
    width: 45px;
    height: 3px;
    background: #06b6d4;
    margin: 0 auto 12px;
}

.partner-title {
    font-size: 32px;
    font-family: Podkova;
    color: #0f172a;
    margin: 0;
}

.partner-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 5; 
}


.partner-arrow {
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.partner-arrow:hover { transform: scale(1.04); }
.partner-arrow[disabled] { cursor: default; filter: grayscale(.2); opacity:.5; }

.partner-window {
    width: 80%;
    max-width: 1100px;
    overflow: hidden;
    position: relative;
}


.partner-track {
    display: flex;
    gap: 30px; 
    align-items: center;
    transition: transform .45s cubic-bezier(.2,.9,.2,1);
   padding: 20px 35px;
}


.partner-card {
    position: relative;
    width: 230px;
    height: 160px;
    flex-shrink: 0;
}


.shape-purple {
    position: absolute;
    width: 180px;
  height: 110px;
    background: linear-gradient(135deg, #7b2ff7 0%, #5d00ff 100%);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}


.shape-front {
    position: absolute;
   width: 180px;
  height: 110px;
    background: white;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 22px 45px rgba(0,0,0,0.28);
}

.shape-front img {
    width: 45%;
}


@media (max-width: 1200px){
    .partner-window { width: 88%; }
    .partner-card { width: 200px; height: 140px; }
   .shape-purple, .shape-front { width: 200px; height: 140px; }
}

@media (max-width: 992px){
    .partner-window { width: 92%; }
    .partner-card { width: 170px; height: 120px; }
    .shape-purple, .shape-front { width: 170px; height: 120px; }
    .partner-track { gap: 40px; }
}

@media (max-width: 640px){
    .partner-window { width: 95%; }
    .partner-card { width: 140px; height: 100px; }
    .shape-purple, .shape-front { width: 140px; height: 100px; }
    .partner-track { gap: 28px; padding: 12px 6px; }
    .partner-arrow {width: 44px; height: 35px; }
    .partner-slider{gap: 0;}
}





 /* Testimonials Section */
 
 
 
 
        .testimonials-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            color: #fff;
            padding-top: 40px;
            padding-bottom: 120px;
            min-height: 600px; 
            font-family: 'Inter', sans-serif;
        }
.testimonials-section::after{
     content: '';
            position: absolute;
            inset: 0;
          background: linear-gradient(110deg, #091C44 0%, #240944 50%, #000000 100%);
         clip-path: polygon(-35% 93%, 100% 113%, 101% 100%, 228% -22%);
}
        .testimonials-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 90px; 
            margin-bottom: 50px;
            z-index: 5;
            padding: 0 15px; 
        }

        .testi-icon-item {
            text-align: center;
            color: #b2b2b2; 
            font-size: 15px; 
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .testi-icon-item img {
            width: 45px;
            height: 45px;
            filter: brightness(0) invert(0.7);
            margin-bottom: 8px;
        }

       
        .testimonials-left-shape {
           position: absolute;
  left: 0;
  top: 120px;
  height: 484px;
  width: 700px;
  z-index: 2;
        }

              .testimonials-left-shape img {
             width: 100%;
             height: 100%;
             object-fit: cover;
             opacity: 1;
        }

        .testimonials-person {
            position: absolute;
            width: 420px;
            left: 140px;
            top: 196px;
            z-index: 3;
        }
        
        .testimonials-person img {
            width: 100%;
            height: auto;
        }

        .testimonials-content {
           position: absolute;
  right: 15%;
  top: 77%;
  transform: translateY(-50%);
  z-index: 4;
  max-width: 450px;
  text-align: left;
        }

        .testimonials-title {
            font-size: 40px;
            color: #38c4ff;
            font-weight: 500;
            line-height: 1.2;
        }

        .testimonials-sub {
            margin-top: 12px;
            font-size: 20px;
            opacity: 0.9;
            color: #cfd6ff;
        }

     
        .testimonials-bg-logo {
           position: absolute;
  width: 110px;
  right: 50px;
  bottom: 50px;
  opacity: 0.15;
  z-index: 0;
        }
        .testimonials-bg-logo img {
            width: 100%;
            height: auto;
        }

       @media (max-width: 767.98px) {

    .testimonials-icons {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 25px !important;
        padding: 10px 10px !important;
        scrollbar-width: none;
    }

    .testimonials-icons::-webkit-scrollbar {
        display: none;
    }

    .testi-icon-item {
        min-width: 35px;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: inline-block !important;
    }

    .testimonials-person {
        max-width: 218px;
        
    }

    .testimonials-content {
      max-width: 314px;
    margin-top: 43px;
    right: 90px;
    top: 20%;
    }
}
.top-line-testimonials{
   width: 60px;
  height: 4px;
  background: #008db3;
  left: 48%;
  position: absolute;
}
@media (max-width: 575.98px) {

    .testimonials-title {
      display: none;
    }

    .testimonials-sub {
        display: none;
    }
.testimonials-content .btn-main{
    padding: 5px 8px;
    border-radius: 0px;
    border: none;
    background: linear-gradient(90deg, #002654, #6e1bce) !important;
    color: white !important;
}
    .testimonials-person {
        max-width: 240px;
    }
}

/* ================================
   GET IN TOUCH SECTION
================================ */
.get-in-touch {
    padding: 50px 0 0px;
}

.gt-form-box {
    background: linear-gradient(135deg, #9c2cf3, #3b82f6);
    padding: 35px 50px;
    border-radius: 0px 35px 0px 0px;
    color: #fff;
}

.gt-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.gt-subtext {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.gt-form input,
.gt-form textarea {
    width: 100%;
    padding: 8px 15px;
    margin-bottom: 18px;
    border: none;
}

.gt-form textarea {
    height: 100px;
}

.gt-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #260e63, #0a0422);
    color: #fff;
    border-radius: 6px;
    border: none;
}

.gt-center-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
}

.gt-block ul {
    list-style: none;
    padding: 0;
}

.gt-block h4 {
    text-align: end;
    font-size: 18px;
    margin: 18px 0 8px;
    font-weight: 700;
    color: #1a003d;
}

.gt-block ul li {
    text-align-last: end;
    margin-bottom: 6px;
    font-size: 14px;
}

.gt-block img {
    width: 16px;
}

.gt-info-section {
    position: relative;
}

.gt-icons-line {
    position: absolute;
    right: -90px;
    top: 35px;
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.gt-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #9c2cf3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.gt-icon i {
    font-size: 30px;
}

.gt-girl {
    width: 100%;
    max-width: 396px;
    position: absolute;
    right: 0;
    top: -20px;
}

@media(max-width: 1199px) {
    .gt-icons-line {
        right: -60px;
    }
}

@media(max-width: 991px) {
    .gt-icons-line {
        position: relative;
        right: 0;
        top: 0;
        flex-direction: row;
        justify-content: center;
        margin: 25px 0;
    }

    .gt-girl {
        position: relative !important;
        right: 0 !important;
        margin: 20px auto 0;
        display: block;
        top: 0 !important;
    }

    .gt-block h4,
    .gt-block ul li {
        text-align: center;
        text-align-last: center;
    }
}

@media(max-width: 576px) {
    .gt-form-box {
        padding: 30px 20px;
        border-radius: 20px;
    }
}




/* ================================
   FOOTER
================================ */
.home-footer {
    background: #130661;
    padding: 80px 0 0;
}

.home-footer-container {
    background: #fff;
    width: 90%;
    margin: auto;
    padding: 10px 60px 0;
    border-radius: 40px 40px 0 0;
}

.home-footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 0.7fr;
    gap: 50px;
}

.home-footer-logo {
    width: 186px;
    height: 75px;
}

.home-footer-text {
    font-size: 14px;
    color: #333;
    line-height: 28px;
    margin-bottom: 12px;
    font-family: Montserrat, sans-serif !important;
}

.home-footer-title {
    font-size: 20px;
    font-weight: 500;
    color: #130661;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #130661;
}

.home-footer-links-list {
    display: flex;
    justify-content: space-between;
}

.home-footer-links-list ul li {
    list-style: none;
    margin-bottom: 10px;
}

.home-footer-links-list ul li a {
    color: #333;
    font-size: 15px;
    text-decoration: none;
    font-family: Montserrat, sans-serif !important;
}

.home-footer-social-icons {
    text-align: center;
}

.home-footer-social-icons a {
    font-size: 25px;
    margin-right: 15px;
    text-decoration: none;
    color: #222;
}

.home-footer-bottom {
    background: #130661;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    padding: 15px 0;
    font-size: 13px;
    border-radius: 20px 20px 0 0;
    width: 88%;
    margin-left: auto;
    margin-right: auto;
    font-family: Montserrat, sans-serif !important;
}

@media(max-width: 920px) {
    .home-footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .home-footer-links-list {
        justify-content: center;
        gap: 50px;
    }

    .home-footer-social-icons a {
        margin: 0 10px;
    }
}

@media(max-width: 576px) {
    .home-footer-container {
        padding: 20px 20px 0;
        width: 95%;
    }
}
/* ================================
   COMMON FOOTER
================================ */
.common-footer {
    background: #d9eef5;
    width: 100%;
}
.common-footer-top{
    background: #fff;
    width: 90%;
    margin: auto;
    padding: 10px 60px 0;
    border-radius: 40px 40px 0 0;
        box-shadow: 0px -8px 16px gray;
}
.common-footer-top-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.common-footer-logo {
    width: 160px;
}

.common-footer-menu {
    display: flex;
    gap: 45px;
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: Montserrat, sans-serif !important;
}

.common-footer-menu li a {
    font-size: 14px;
    text-decoration: none;
    color: #272727;
    transition: 0.2s;
    font-family: Montserrat, sans-serif !important;
}

.common-footer-social a {
    font-size: 25px;
    color: #272727;
    margin-left: 10px;
    text-decoration: none;
    transition: .2s;
}

.common-footer-social a:hover {
    color: #06b6d4;
}

.common-footer-bottom {
   background: linear-gradient(90deg, #120b3d, #1f0d50, #050224);
    padding: 15px 0;
    text-align: center;
    color: #fff;
    border-radius: 20px 20px 0 0;
    font-size: 13px;
    font-family: Montserrat, sans-serif !important;
}

@media (max-width: 992px) {
    .common-footer-top-area {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .common-footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .common-footer-social {
        text-align: center;
    }

    .common-footer-social a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .common-footer-top {
        width: 95%;
        padding: 10px 15px 0;
        border-radius: 30px 30px 0 0;
    }

    .common-footer-logo {
        width: 135px;
        margin: 0 auto;
    }

    .common-footer-menu {
        gap: 12px;
        font-size: 13px;
    }
}




/* ================================
   ABOUT US PAGE 
================================ */

.about-us-page {
    position: relative;
    height: 470px;
    overflow: hidden;
    background-size: 100% 100%;
}

.about-us-bg {
    position: absolute;
    inset: 0;
}


.about-us-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

.about-us-left {
    max-width: 450px;
    color: #fff;
}

.about-us-line {
    width: 45px;
    height: 3px;
    background: #1cc9f6;
    margin-bottom: 15px;
}

.about-us-title {
    font-size: 42px;
    font-weight: 700;
    font-family: Merriweather;
    margin-bottom: 10px;
}

.about-us-tagline {
    color: #58d5ff;
    font-size: 18px;
    font-family: Montserrat, sans-serif !important;
}


/* RESPONSIVE */
@media(max-width: 992px) {
    .about-us-page {
        height: auto;
        padding: 70px 20px;
    }

    .about-us-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

}

@media(max-width: 576px) {
    .about-us-title {
        font-size: 25px;
    }
    .about-us-tagline {
        font-size: 15px;
    }
}

.about-us-overview-section {
  position: relative;
  padding: 100px 0 0;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
}


.about-us-overview-top-line {
    width: 60px;
    height: 3px;
    background: #0aa5d8;
    margin: 0 auto 18px;
}

.about-us-overview-title {
   font-size: 32px;
  font-weight: 500;
  color: #048AAA;
  margin-bottom: 6px;
}

.about-us-overview-subtitle {
   font-size: 16px;
  font-style: italic;
  color: #272727;
}

.about-us-overview-content {
   max-width: 900px;
  margin: auto;
  padding: 45px 50px;
  line-height: 28px;
  font-size: 16px;
  color: #272727;
  letter-spacing: 2%;
}

.about-us-overview-content p {
    margin-bottom: 25px;
    font-family: Montserrat, sans-serif !important;
}

@media(max-width: 768px) {
    .about-us-overview-content {
        padding: 26px;
    font-size: 13px;
    line-height: 20px;
    }
    .about-us-overview-title {
        font-size: 18px;
    }
    about-us-overview-subtitle {
  font-size: 15px;
        
    }
    .about-us-overview-section {
  padding: 10px 0;
  background-size: cover;
    }
}


.about-us-vision-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}



.about-us-vision-content {
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 100%;
    align-content: flex-end;
    flex-wrap: wrap;
}
.about-us-vision-content::before {
     content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0000001A, #000000D4);
  pointer-events: none;
  opacity: 0.7;
  
   
}
.about-us-vision-box {
      border: 1px solid rgb(242 242 242 / 74%);
    padding: 20px 10px 20px 45px;
    width: 50%;
    background: #0000001c;
    position: relative;
        backdrop-filter: blur(5px);
}


.about-us-vision-title {
    font-size: 28px;
    position: relative;
    color: #0bd3e8;
    margin-bottom: 18px;
}

.about-us-vision-text {
       color: #fff;
    line-height: 24px;
    font-family: Montserrat, sans-serif !important;
    font-size: 14px;
    position: relative;
}

.about-us-vision-list {
    padding-left: 0px;
}

.about-us-vision-list li {
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    list-style: none;
    position: relative;
}



.about-us-vision-icon {
    position: absolute;
    width: 72px;
}

.list_bullet {
    height: 14px;
    width: 14px;
    margin-right: 10px;
}
.vision-icon-1 { top: 0px; left: -6%;  }
.vision-icon-2 { top: 0px; left: -6%;  }
.vision-icon-3 { top: 0px; left: -6%; }

@media(max-width: 991px) {
    .about-us-vision-section {
        grid-template-columns: 1fr;
    }
    .about-us-vision-left-img {
        height: 380px;
    }
    .about-us-vision-content {
        padding: 40px 25px;
    }
    .about-us-vision-box{
        width: 80%;
    }
}
@media(max-width: 500px) {
    .about-us-vision-box{
        width: 100%;
        padding: 5px 10px 20px 30px;
    }
    .about-us-vision-title{
        font-size: 22px;
    }
    .vision-icon-1, .vision-icon-2, .vision-icon-3{
        width: 45px;
    left: -7%;
    }
    .about-us-vision-list li{
        font-size: 13px;
  line-height: 20px;
    }
}

.our-testimonials {
    background: #d9eef5;
    padding: 60px 0 80px;
}

.our-testimonials-heading {
    text-align: center;
    margin-bottom: 40px;
}

.our-testimonials-heading h2 {
    font-size: 32px;
    font-weight: 600;
    color: #004b63;
}

.our-testimonials-heading p {
    font-size: 16px;
    color: #1a232a;
    opacity: 0.7;
}

.our-testimonials-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.our-testimonials-arrow {
    background: none;
    border: none;
    font-size: 32px;
    color: #00425f;
    cursor: pointer;
}

.our-testimonials-slider {
    display: flex;
    gap: 60px;
    overflow: hidden;
    padding: 0px 50px;
}

.our-testimonials-item {
    background: linear-gradient(90deg, #005a73, #00a4c6);
    width: 400px;
    padding: 25px 25px 25px 80px;
    border-radius: 15px 100px 100px 15px;
    position: relative;
    color: #fff;
}

.our-testimonials-user {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #082a57;
}

.our-testimonials-user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-testimonials-quote {
   position: absolute;
    top: 0px;
    width: 40px;
    left: 10%;
}

.our-testimonials-quote img {
    width: 100%;
}

.our-testimonials-content p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.our-testimonials-content span {
    display: block;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #0bd3e8;
}

.our-testimonials-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 8px;
}

.our-testimonials-dots span {
    width: 10px;
    height: 10px;
    background: #9abcc7;
    border-radius: 50%;
}

.our-testimonials-dots span.active {
    background: #003b5a;
}

@media(max-width: 992px) {
    .our-testimonials-item {
        width: 360px;
        padding: 25px 25px 25px 80px;
    }

    .our-testimonials-user {
        left: -30px;
        width: 95px;
        height: 95px;
    }
}

@media(max-width: 576px) {
    .our-testimonials-wrapper {
        gap: 10px;
    }

    .our-testimonials-slider {
        gap: 15px;
    }

    .our-testimonials-item {
        width: 300px;
        padding: 25px 22px 25px 65px;
        border-radius: 40px;
    }

    .our-testimonials-user {
        width: 75px;
        height: 75px;
        left: -25px;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none !important;
    font-size: 32px;
    color: #00425f;
}

.carousel-control-prev-icon::after {
    content: "\f12f"; /* bi-chevron-left */
    font-family: "bootstrap-icons";
}

.carousel-control-next-icon::after {
    content: "\f138"; /* bi-chevron-right */
    font-family: "bootstrap-icons";
}

/* Indicators match your design */
.carousel-indicators [data-bs-target] {
    width: 20px;
    height: 0;
    background: #9abcc7;
    border-radius: 50%;
}
.carousel-indicators{
    top: 90%;
}
.carousel-indicators .active {
    background: #003b5a;
}

/* ================================
   SERVICES PAGE 
================================ */
.services-page-banner {
    height: 500px;
    position: relative;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}



.services-page-right {
    width: 80%;
    padding: 200px 80px;
    position: relative;
}

.services-page-line {
    width: 55px;
    height: 3px;
    background: #0091b7;
    margin-bottom: 12px;
    position: absolute;
   right: 24%;
    top: 40%;
}

.services-page-title {
    font-size: 38px;
    color: #0091b7;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: end;
}

.services-page-tagline {
    font-size: 18px;
    color: #000000;
    opacity: 0.7;
    text-align: end;
    font-style: italic;
}


@media(max-width: 992px) {
    .services-page-banner {
        flex-direction: column;
        text-align: center;
    }

    .services-page-left {
        width: 100%;
    }

   
    .services-page-banner::after {
        width: 100%;
        height: 60px;
        transform: skewX(-6deg);
    }
}

@media(max-width: 576px) {
    .services-page-title {
        font-size: 22px;
        margin: 0;
    }
    .services-page-line {
  width: 40px;
  height: 2px;
  right: 38%;
  top: 38%;
}
.services-page-banner{
    height: auto;
    padding: 27px 5px;
}
    .services-page-tagline {
       font-size: 12px;
    margin: 0;
    padding: 0;
    width: 65%;
    float: inline-end;
    }
    .services-page-right{
    width: 100%;
    padding: 60px 50px;
}
    .services-page-left {
        width: 100%;
    }

}

.services-page {
    padding: 60px 0;
}

.services-page__row {
   display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 60px 0;
    width: 72%;
    margin: auto;
}

.services-page__row--reverse {
    flex-direction: row-reverse;
}

.services-page__image img {
    width: 420px;
    max-width: 100%;
}

.services-page__content {
    max-width: 600px;
}

.services-page__title {
    font-size: 24px;
    font-weight: 500;
    color: #048AAA;
    margin-bottom: 20px;
     font-family: Montserrat, sans-serif !important;
}

.services-page__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-page__list-item {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: #272727;
    line-height: 24px;
    letter-spacing: 2%;
    font-family: Montserrat, sans-serif !important;
}

.services-page__divider {
   width: 60%;
    height: 2px;
    background: #A7D0DA;
    margin: auto;
}

@media(max-width: 991px) {
    .services-page__row {
        flex-direction: column;
        text-align: center;
    }
    .services-page__row--reverse {
        flex-direction: column;
    }
    .services-page__content {
        max-width: 90%;
    }
}
@media(max-width: 576px) {
    .services-page__title {
        font-size: 19px;
  margin-bottom: 5px;
    }
   .services-page__list-item{
       font-size: 12px;
  margin-bottom: 0px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: start;
   }
   .services-page__row{
       width: 95%;
       padding: 30px 0;
   }
}


/* ================================
   INDUSTRIES PAGE 
================================ */

.industries-header {
    height: 520px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
}

.industries-header-content {
    padding-left: 70px;
    padding-top: 80px;
    width: 55%;
}

.industries-header-line {
    width: 65px;
    height: 3px;
    background:#56BCFD;
    margin-bottom: 18px;
}

.industries-header-title {
    font-size: 38px;
    font-weight: 500;
    color: #56BCFD;
    margin-bottom: 10px;
}

.industries-header-tagline {
    font-size: 18px;
    font-style: italic;
    color: #ffffff;
    opacity: 0.9;
}


/* ============= RESPONSIVE ============= */

@media(max-width: 992px) {

    .industries-header {
        height: 420px;
        background-size: cover;
        background-position: center;
    }

    .industries-header-content {
        width: 100%;
        padding-left: 40px;
        padding-top: 100px;
    }

    .industries-header-title {
        font-size: 32px;
    }
}

@media(max-width: 576px) {

    .industries-header {
        height: auto;
        padding: 60px 0;
    }

    .industries-header-content {
        width: 100%;
        padding: 0 30px;
        text-align: start;
    }

    .industries-header-line {
        margin: 0 auto 15px auto;
        width: 45px;
    }

    .industries-header-title {
        font-size: 25px;
    }

    .industries-header-tagline {
        font-size: 13px;
        width: 90%;
        margin: auto;
    }
}

/* =============================
   INDUSTRIES CONTENT SECTION
============================= */
.industries-section {
    padding: 70px 0 0;
    background: #d6eaee;
}

.industries-box {
    width: 90%;
    margin: 0 auto 90px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.industries-box.reverse {
    /*flex-direction: row-reverse;*/
}

.industries-img {
    width: 45%;
}

.industries-img img {
    width: 100%;
}

.industries-content {
    width: 50%;
}

.industries-title {
    background: #048AAA;
    color: #FFFFFF;
    font-size: 18px;
    padding: 10px 15px;
    margin-bottom: 18px;
    font-weight: 500;
    font-family: Montserrat, sans-serif !important;
}

.industries-text {
    font-size: 14px;
    line-height: 34px;
    color: #272727;
    margin-bottom: 12px;
    font-family: Montserrat, sans-serif !important;
}


/* ========= RESPONSIVE ========= */

@media(max-width: 992px) {

    .industries-box,
    .industries-box.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .industries-img,
    .industries-content {
        width: 100%;
    }

    .industries-title {
        margin: 0 auto 15px;
        width: fit-content;
    }
}

@media(max-width: 576px) {

    .industries-section {
        padding: 50px 0 0;
    }

    .industries-title {
        font-size: 16px;
    }

    .industries-text {
        font-size: 12px;
    line-height: 20px;
    }
}


/* ================================
   CONTACT PAGE 
================================ */
.contact-page {
    width: 100%;
    background: #fff;
}

/* ================================
   BANNER SECTION
================================ */
.contact-page-banner {
   position: relative;
   height: 500px;
   background-size: contain;
}
.contact-page-banner-form{
    position: absolute;
    top: 15%;
    right: 4%;
    width: 45%;
}

.contact-page-line {
    width: 55px;
    height: 3px;
    background: #008db3;
    margin-bottom: 10px;
}

.contact-page-title {
    font-size: 34px;
    color: #008db3;
    font-weight: 500;
}

.contact-page-subtitle {
    font-size: 16px;
    opacity: .7;
    margin-bottom: 20px;
    font-style: italic;
}

/* FORM BOX */
.contact-page-form-box {
    background: #008db3;
    padding: 40px;
    color: #fff;
    width: 100%;
}

.contact-page-form-title {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: Montserrat, sans-serif !important;
}

.contact-page-form-subtitle {
    font-size: 14px;
    opacity: .9;
    margin-bottom: 20px;
    font-family: Montserrat, sans-serif !important;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    margin-bottom: 12px;
    font-size: 14px;
    font-family: Montserrat, sans-serif !important;
}

.contact-page-form textarea {
    height: 140px;
    resize: none;
}

.contact-page-form button {
    width: 100%;
    background: #003a55;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 15px;
    cursor: pointer;
    margin-top: 5px;
    font-family: Montserrat, sans-serif !important;
}

.contact-page-info {
    padding: 20px 0 0;
    width: 51%;
}

.contact-page-info-grid {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact-page-info-block {
    width: 50%;
}

.contact-page-info-icon-title {
   display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid #008db3;
  padding-bottom: 5px;
  margin-bottom: 15px;
  color: #048AAA;
  font-size: 16px;
}

.contact-page-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page-info-block ul li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.contact-page-info-block ul li img {
    width: 22px;
    margin-right: 10px;
}

/* Bottom Row */
.contact-page-bottom-row {
    width: 80%;
    margin: 20px auto 0;
    display: flex;
    justify-content: space-between;
}

.contact-page-bottom-item {
    border-bottom: 2px solid #008db3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
}
.contact-page-bottom-item .infoIcon ,.contact-page-info-icon-title .infoIcon{
    width: 24px;
    height: 24px;
}

.contact-page-bottom-item h4 ,.contact-page-info-icon-title h4{
    margin: 0;
}

.contact-page-bottom-item h4 {
    margin: 0;
    font-size: 16px;
    color: #048AAA;
     font-family: Montserrat, sans-serif !important;
}


/* RESPONSIVE */
@media (max-width: 992px) {

    .contact-page-banner-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .contact-page-banner-right {
        width: 100%;
    }

    .contact-page-info-grid {
        flex-direction: column;
        text-align: center;
    }

    .contact-page-info-block {
        width: 100%;
    }

    .contact-page-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
.contact-page-banner-form{
    width: 100%;
    right: 0;
    top: 110%;
}
.contact-page-info{
    padding: 50px 0 0;
    width: 100%;
    margin-top: 500px;
}
.contact-page-info-block ul li{
    font-size: 12px;
  margin-bottom: 0px;
}
.contact-page-info-icon-title{
    margin-bottom: 5px;
}
.contact-page-info-icon-title h4{
    font-size: 14px;
}
.contact-page-form button{
    padding: 8px;
  font-size: 13px;
}

    .contact-page-form-box {
        padding: 25px;
        width: 90%;
    margin: auto;
    }
    .contact-page-title{
        font-size: 25px;
        text-align: center;
        margin: 0;
    }
    .contact-page-subtitle{
        font-size: 12px;
  margin-bottom: 0;
  text-align: center;
  padding: 0px 0 20px;
    }
    .contact-page-line{
        display: none;
    }
    .contact-page-form-title{
     font-size: 18px;   
    }
    .contact-page-form-subtitle{
        font-size: 12px;
    }
    .contact-page-form input{
        font-size: 12px;
        padding: 8px;
    }
    .contact-page-form textarea{
        height: 80px;
    }
    .contact-page-banner{
        background-repeat: no-repeat;
    }
    .contact-page-info-grid {
        flex-direction: column;
        text-align: center;
    }

    .contact-page-info-block {
        width: 100%;
    }

    .contact-page-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

.terms_policy {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.terms_policy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0,64,83,0.85),
        rgba(0,64,83,0.45)
    );
}

.terms_policy-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
    color: #fff;
}

.terms_policy-line {
    width: 60px;
    height: 4px;
    background: #00c2cb;
    margin-bottom: 15px;
    border-radius: 10px;
}

.terms_policy-title {
    font-size: 44px;
    font-weight: 700;
}

.terms_policy-tagline {
    font-size: 18px;
    opacity: .9;
}

.terms-page {
    max-width: 75%;
    margin: 60px auto;
    background: #ffffff;
    padding: 50px 55px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    border-radius: 6px;

    font-family: 'Merriweather', serif;
    line-height: 1.9;
    color: #2b2b2b;
}

.terms-page h1,
.terms-page h2,
.terms-page h3 {
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.terms-page p {
    font-size: 17px;
    margin-bottom: 18px;
}

.terms-page ul {
    margin: 15px 0 25px 25px;
}

.terms-page ul li {
    font-size: 17px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .terms_policy-content { padding-left: 30px; }
    .terms_policy-title { font-size: 34px; }
}

@media (max-width: 576px) {
    .terms_policy { min-height: 260px; }
    .terms_policy-title { font-size: 28px; }
    .terms-page {
        max-width: 95%;
        padding: 30px 22px;
    }
    .terms-page p,
    .terms-page ul li {
        font-size: 16px;
    }
}

.privacy_policy {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.privacy_policy::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(0,64,83,0.85),
        rgba(0,64,83,0.45)
    );
}

.privacy_policy-content {
    position: relative;
    z-index: 2;
    padding-left: 80px;
    color: #fff;
}

.privacy_policy-line {
    width: 60px;
    height: 4px;
    background: #00c2cb;
    margin-bottom: 15px;
    border-radius: 10px;
}

.privacy_policy-title {
    font-size: 44px;
    font-weight: 700;
}

.privacy_policy-tagline {
    font-size: 18px;
    opacity: .9;
}

.privacy-page {
    max-width: 75%;
    margin: 60px auto;
    background: #ffffff;
    padding: 50px 55px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    border-radius: 6px;

    font-family: 'Merriweather', serif;
    line-height: 1.9;
    color: #2b2b2b;
}

.privacy-page h1,
.privacy-page h2,
.privacy-page h3 {
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
    page-break-after: avoid;
}

.privacy-page p {
    font-size: 17px;
    margin-bottom: 18px;
}

.privacy-page ul {
    margin: 15px 0 25px 25px;
}

.privacy-page ul li {
    font-size: 17px;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .privacy_policy-content { padding-left: 30px; }
    .privacy_policy-title { font-size: 34px; }
}

@media (max-width: 576px) {
    .privacy_policy { min-height: 260px; }
    .privacy_policy-title { font-size: 28px; }
    .privacy-page {
        max-width: 95%;
        padding: 30px 22px;
    }
    .privacy-page p,
    .privacy-page ul li {
        font-size: 16px;
    }
}


@media (max-width: 576.98px) {

   .about-section .container{
       padding: 0px 5px !important;
   }
    .about-section {
    padding: 5px 0px;
    min-height: 80vh;
        
    }
    .about-section .subtitle{
        margin-bottom: 0;
    }
    .about-section .desc{
        margin-bottom: 0;
    }
    .about-section .btn-primary {
        margin-top: 0;
    }
    .about-section::after {
        height: 80%;
    }
    .why-section{
        padding: 32px 0;
    }
    .why-img{
        width: 75%;
    } 
    .partner-title{  
        font-size: 26px;
    }
    .testimonials-left-shape{
       height: 170px;
    width: 247px;
    display: block !important;
    bottom: 0;
    }
    .testimonials-person img{
        width: 75%;
    }
    .testimonials-person{
       top: auto;
    left: 50px;
    }
    
    .testimonials-section::after {
       clip-path: polygon(0% 100%, 100% 126%, 106% 107%, 228% -44%);
    height: 100%;
    }
    .testi-icon-item img{
        width: 35px;
  height: 35px;
    }
    .testimonials-section{ 
        padding-top: 15px;
        min-height: 290px;
    }
    .testi-icon-item span{
        display: none;
    }
    .gt-girl{
        max-width: 210px;
    }
    .gt-center-heading{
        margin-bottom: 0;
    }
    .gt-form-box-parent{
        padding: 0 10px !important;
    }
    .gt-block h4{
        color: #fff;
  background: #0d052a;
 
    }
    .gt-block h4, .gt-block ul li {
    text-align: center;
    text-align-last: left;
    padding: 0px 10px;}
    
    .gt-icons-line{
        flex-direction: column;
        position: absolute;
        right: 15px;
        display: none;
    }
   .gt-h1{
       width: 95%;
   }
   .gt-h2{
       width: 70%;
   }
   .gt-h3{
       width: 45%;
   }
   .gt-h4{
       width: 25%;
   }
   .home-footer-text{
       line-height: 20px;
   }
   .home-footer-links-list{
       gap: 35px;
   }
   .home-footer-title{
       margin-bottom: 5px;
   }
   .home-footer-top{
       gap: 0px;
  
   }
   .home-footer-bottom {
       margin-top: 15px;
       width: 100%;
   }
   .about-us-page{
       padding: 35px 15px;
   }
   .about-us-content{
       text-align: start;
       padding: 0 0px;
       align-items: start;
   }
   .about-us-left{
       max-width: 200px;
   }
   .about-us-overview-title{
       font-size: 25px;
   }
   .our-testimonials-heading h2 {
       font-size: 25px;
   }
   .common-footer-top-area{
       gap: 10px;
   }
   .industries-header-title{
       color: white;
   }
   .industries-box.reverse{
       flex-direction: column-reverse;
   }
   .industries-box, .industries-box.reverse{
       gap: 10px;
       border-bottom: 0.5px solid black;
       margin: 0 auto 20px auto;
   }
   .common-footer-bottom{
       padding: 15px 20px;
   }
   .contact-page-banner{
       height: 220px;
  background-size: cover;
   }
   .contact-page{
       padding: 0 0 45px;
   }
  
}


/*Services..............*/
/* ===============================
   IT INFRASTRUCTURE PAGE (iitf-)
=================================*/

.iitf-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* HERO */
.iitf-hero{
    background:linear-gradient(135deg,#002654,#6e1bce);
    padding:100px 0;
    color:#fff;
    text-align:center;
}

.iitf-title{
    font-size:42px;
    margin-bottom:20px;
}

.iitf-subtitle{
    font-size:18px;
    max-width:700px;
    margin:0 auto 30px;
}

.iitf-btn{
    display:inline-block;
    padding:12px 28px;
    background:#fff;
    color:#002654;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.iitf-btn:hover{
    background:#f2f2f2;
}

.iitf-btn-dark{
    background:linear-gradient(90deg,#002654,#6e1bce);
    color:#fff;
}

/* SECTION */
.iitf-section{
    padding:90px 0;
}

.iitf-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.iitf-heading{
    font-size:28px;
    margin-bottom:20px;
}

.iitf-list{
    margin-bottom:20px;
    padding-left:18px;
}

.iitf-list li{
    margin-bottom:10px;
    font-size:15px;
}

.iitf-text{
    font-size:15px;
    line-height:1.6;
}

.iitf-image{
    width:100%;
    max-width:450px;
}

/* FEATURES */
.iitf-features{
    background:#f8f9fb;
    padding:80px 0;
}

.iitf-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.iitf-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    text-align:center;
}

/* CTA */
.iitf-cta{
    padding:80px 0;
    text-align:center;
}

.iitf-cta-title{
    margin-bottom:25px;
    font-size:28px;
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:992px){

    .iitf-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .iitf-feature-grid{
        grid-template-columns:1fr;
    }

    .iitf-title{
        font-size:30px;
    }

    .iitf-subtitle{
        font-size:15px;
    }

}
/* ===============================
   CLOUD SOLUTIONS PAGE (clds-)
=================================*/

.clds-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* HERO */
.clds-hero{
    background:linear-gradient(135deg,#002654,#6e1bce);
    padding:100px 0;
    color:#fff;
    text-align:center;
}

.clds-title{
    font-size:42px;
    margin-bottom:20px;
}

.clds-subtitle{
    font-size:18px;
    max-width:700px;
    margin:0 auto 30px;
}

.clds-btn{
    display:inline-block;
    padding:12px 28px;
    background:#fff;
    color:#002654;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.clds-btn:hover{
    background:#f2f2f2;
}

.clds-btn-dark{
    background:linear-gradient(90deg,#002654,#6e1bce);
    color:#fff;
}

/* OVERVIEW */
.clds-overview{
    padding:90px 0;
}

.clds-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.clds-list{
    margin-top:20px;
    padding-left:18px;
}

.clds-list li{
    margin-bottom:10px;
}

/* PROCESS */
.clds-process{
    background:#f8f9fb;
    padding:80px 0;
}

.clds-process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.clds-step{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* WHY */
.clds-why{
    padding:80px 0;
}

.clds-why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.clds-why-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

/* CTA */
.clds-cta{
    padding:80px 0;
    text-align:center;
}

/* RESPONSIVE */
@media(max-width:992px){

    .clds-grid{
        grid-template-columns:1fr;
    }
.clds-image-box img{
    width: 100%;
}
    .clds-process-grid{
        grid-template-columns:1fr;
    }

    .clds-why-grid{
        grid-template-columns:1fr;
    }

    .clds-title{
        font-size:30px;
    }

}

/* ===================================
   CONSULTING PAGE (cdx-)
====================================*/

.cdx-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* HERO */
.cdx-hero{
    background:linear-gradient(135deg,#002654,#6e1bce);
    padding:110px 0;
    color:#fff;
    text-align:center;
}

.cdx-line{
    width:60px;
    height:3px;
    background:#06b6d4;
    margin:0 auto 20px;
}

.cdx-title{
    font-size:40px;
    margin-bottom:15px;
}

.cdx-subtitle{
    max-width:700px;
    margin:0 auto 30px;
    font-size:18px;
    opacity:.9;
}

.cdx-btn{
    display:inline-block;
    padding:12px 30px;
    background:#fff;
    color:#002654;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.cdx-btn:hover{
    background:#06b6d4;
    color:#002654;
}

/* OVERVIEW */
.cdx-overview{
    padding:90px 0;
}

.cdx-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.cdx-heading{
    font-size:26px;
    margin-bottom:20px;
    color:#048AAA;
}

.cdx-list{
    margin-top:20px;
    padding-left:20px;
}

.cdx-list li{
    margin-bottom:10px;
}

/* CARDS */
.cdx-services{
    background:#f8f9fb;
    padding:90px 0;
}

.cdx-section-head{
    text-align:center;
    margin-bottom:50px;
}

.cdx-card-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.cdx-card{
    background:#fff;
    padding:35px;
    border-left:4px solid #06b6d4;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.cdx-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* APPROACH */
.cdx-approach{
    padding:100px 0;
}

.cdx-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:40px;
}

.cdx-step{
    padding:25px;
    background:#fff;
    border-top:3px solid #6e1bce;
    text-align:center;
    transition:.3s ease;
}

.cdx-step:hover{
    background:#f4f6fb;
    transform:translateY(-6px);
}

.cdx-step span{
    font-size:22px;
    font-weight:bold;
    color:#6e1bce;
}

/* CTA */
.cdx-cta{
    background:linear-gradient(135deg,#6e1bce,#002654);
    padding:90px 0;
    text-align:center;
    color:#fff;
    margin: 68px;
}

.cdx-btn-light{
    background:#fff;
    color:#002654;
}

.cdx-btn-light:hover{
    background:#06b6d4;
}

/* RESPONSIVE */
@media(max-width:992px){
.cdx-image img{
    width: 100%;
}
    .cdx-grid{
        grid-template-columns:1fr;
    }

    .cdx-card-grid{
        grid-template-columns:1fr;
    }

    .cdx-steps{
        grid-template-columns:1fr;
    }
.cdx-cta {
   
  padding: 15px 0;
  
  margin: 15px;
}
    .cdx-title{
        font-size:28px;
    }
}

/* HERO */
.cyb-hero{
    position:relative;
    height:420px;
    background:linear-gradient(120deg,#091C44,#240944);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    overflow:hidden;
}

.cyb-hero-overlay{
    position:absolute;
    inset:0;
    background:radial-gradient(circle at center,rgba(255,255,255,0.1),transparent 70%);
}

.cyb-hero-content{
    position:relative;
    max-width:700px;
    padding:0 20px;
}

.cyb-hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.cyb-hero p{
    font-size:18px;
    opacity:.9;
}

/* STRATEGY */
.cyb-strategy{
    padding:90px 0;
    background:#ffffff;
}

.cyb-container{
    width:85%;
    margin:auto;
}

.cyb-strategy .cyb-container{
    display:flex;
    align-items:center;
    gap:60px;
}

.cyb-strategy-left{
    width:55%;
}

.cyb-strategy-right{
    width:45%;
}

.cyb-strategy-right img{
    width:100%;
}

/* MODULES */
.cyb-modules{
    padding:90px 0;
    background:#f4f8fb;
}

.cyb-section-title{
    text-align:center;
    font-size:28px;
    margin-bottom:50px;
    color:#048AAA;
}

.cyb-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.cyb-card{
    background:#ffffff;
    padding:35px;
    border-left:5px solid #048AAA;
    transition:all .35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.cyb-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
    border-left:5px solid #240944;
}

/* PROCESS */
.cyb-process{
    padding:100px 0;
    background:#ffffff;
}

.cyb-process-line{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.cyb-step{
    text-align:center;
    flex:1;
    padding:20px;
    transition:.3s;
}

.cyb-step span{
    display:inline-block;
    font-size:30px;
    font-weight:700;
    color:#048AAA;
    margin-bottom:10px;
}

.cyb-step:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .cyb-strategy .cyb-container{
        flex-direction:column;
        text-align:center;
    }

    .cyb-strategy-left,
    .cyb-strategy-right{
        width:100%;
    }

    .cyb-grid{
        grid-template-columns:1fr;
    }

    .cyb-process-line{
        flex-direction:column;
    }

    .cyb-hero h1{
        font-size:28px;
    }

}
/* HERO */
.dev-hero{
    padding:120px 0;
    background:linear-gradient(135deg,#002654,#048AAA);
    clip-path:polygon(0 0,100% 0,100% 85%,0 100%);
    text-align:center;
    color:#fff;
}

.dev-hero-content{
    max-width:700px;
    margin:auto;
}

.dev-hero h1{
    font-size:42px;
    margin-bottom:20px;
}

.dev-hero p{
    font-size:18px;
}

/* STACK */
.dev-stack{
    /*background:#091C44;*/
    padding:25px 0;
}

.dev-stack-row{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.dev-stack-row span{
    color:#ffffff;
    font-size:14px;
    padding:8px 18px;
    border:1px solid rgba(255,255,255,.3);
    transition:.3s;
    background: #01416b;
}

.dev-stack-row span:hover{
    background:#048AAA;
    border-color:#048AAA;
}

/* SERVICES */
.dev-services{
    padding:100px 0;
}

.dev-container{
    width:85%;
    margin:auto;
}

.dev-block{
    display:flex;
    align-items:center;
    gap:60px;
    margin-bottom:80px;
}

.dev-block.reverse{
    flex-direction:row-reverse;
}

.dev-text{
    width:55%;
}

.dev-image{
    width:45%;
}

.dev-image img{
    width:100%;
    transition:.4s;
}

.dev-image img:hover{
    transform:scale(1.05);
}

/* FEATURE GRID */
.dev-feature{
    background:#f4f8fb;
    padding:100px 0;
}

.dev-title{
    text-align:center;
    margin-bottom:60px;
    color:#048AAA;
}

.dev-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.dev-card{
    background:#ffffff;
    padding:35px;
    border:2px solid transparent;
    transition:.4s;
    position:relative;
}

.dev-card::before{
    content:"";
    position:absolute;
    inset:0;
    border:2px solid #048AAA;
    opacity:0;
    transition:.4s;
}

.dev-card:hover::before{
    opacity:1;
}

.dev-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.1);
}

/* RESPONSIVE */
@media(max-width:991px){

    .dev-block,
    .dev-block.reverse{
        flex-direction:column;
        text-align:center;
    }

    .dev-text,
    .dev-image{
        width:100%;
    }

    .dev-grid{
        grid-template-columns:1fr;
    }

    .dev-hero h1{
        font-size:28px;
    }

}
/* HERO */
.mit-hero-light{
    padding:100px 0 70px;
    text-align:center;
    background:linear-gradient(135deg,#002654,#6e1bce);
}

.mit-hero-light h1{
    font-size:38px;
    color:#fff;
    margin-bottom:15px;
}

.mit-hero-light p{
    max-width:650px;
    margin:auto;
    font-size:15px;
      color:#fff;
    opacity:.7;
}

/* CONTAINER */
.mit-container{
    width:85%;
    margin:auto;
}

/* DASHBOARD STRIP */
.mit-dashboard-strip{
    padding:60px 0;
}

.mit-dashboard-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mit-dash-box{
    background:#ffffff;
    padding:30px;
    border:1px solid #d0e6ec;
    position:relative;
    transition:.3s;
}

.mit-dash-box:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border-color:#048AAA;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    position:absolute;
    top:20px;
    right:20px;
}

.green{ background:#22c55e; }
.blue{ background:#3b82f6; }
.orange{ background:#f97316; }
.red{ background:#ef4444; }

/* INFRA */
.mit-infra{
    padding:90px 0;
    background:#ffffff;
}

.mit-flex{
    display:flex;
    align-items:center;
    gap:60px;
}

.mit-left{
    width:55%;
}

.mit-right{
    width:45%;
}

.mit-right img{
    width:100%;
    transition:.3s;
}

.mit-right img:hover{
    transform:scale(1.05);
}

/* CAPABILITIES */
.mit-capabilities{
    padding:100px 0;
}

.mit-section-title{
    text-align:center;
    margin-bottom:60px;
    color:#048AAA;
}

.mit-cap-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.mit-cap-card{
    background:#ffffff;
    padding:35px;
    border-left:4px solid #048AAA;
    transition:.3s;
}

.mit-cap-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* RESPONSIVE */
@media(max-width:991px){

    .mit-dashboard-grid,
    .mit-cap-grid{
        grid-template-columns:1fr;
    }

    .mit-flex{
        flex-direction:column;
        text-align:center;
    }

    .mit-left,
    .mit-right{
        width:100%;
    }

    .mit-hero-light h1{
        font-size:26px;
    }

}

/*Industries ............*/


/* ===============================
   EDUCATION PAGE STYLES
=================================*/

.edu-banner{
    height:450px;
    background:linear-gradient(120deg,#002654,#6e1bce);
    display:flex;
    align-items:center;
    padding-left:80px;
    color:#fff;
}

.edu-banner-content h1{
    font-size:42px;
    margin-bottom:10px;
}

.edu-banner-content p{
    font-size:18px;
    opacity:.9;
}

/* OVERVIEW */
.edu-overview{
    padding:90px 0;
    background:#f8f9fb;
}

.edu-container{
    width:85%;
    margin:auto;
}

.edu-flex{
    display:flex;
    align-items:center;
    gap:60px;
}

.edu-text{
    width:55%;
}

.edu-text h2{
    font-size:28px;
    color:#6e1bce;
    margin-bottom:20px;
}

.edu-text p{
    font-size:15px;
    line-height:1.7;
    margin-bottom:15px;
}

.edu-image{
    width:45%;
}

.edu-image img{
    width:100%;
    transition:.4s;
}

.edu-image img:hover{
    transform:scale(1.05);
}

/* SOLUTIONS GRID */
.edu-solutions{
    padding:100px 0;
}

.edu-solutions h2{
    text-align:center;
    margin-bottom:60px;
    color:#002654;
}

.edu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.edu-card{
    background:#fff;
    padding:30px;
    border-radius:8px;
    border:1px solid #eee;
    transition:.4s;
    position:relative;
}

.edu-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    border-bottom:4px solid #6e1bce;
}

.edu-card h3{
    font-size:18px;
    margin-bottom:12px;
    color:#002654;
}

.edu-card p{
    font-size:14px;
    line-height:1.6;
}

/* BENEFITS SECTION */
.edu-benefits{
    background:#002654;
    padding:100px 0;
    color:#fff;
}

.edu-benefits h2{
    text-align:center;
    margin-bottom:50px;
}

.edu-benefits-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.edu-benefit-box{
    background:rgba(255,255,255,.08);
    padding:25px;
    border-left:4px solid #6e1bce;
    transition:.4s;
}

.edu-benefit-box:hover{
    background:rgba(255,255,255,.15);
    transform:translateX(8px);
}

/* CTA */
.edu-cta{
    padding:90px 0;
    text-align:center;
    background:#f8f9fb;
}

.edu-cta h2{
    margin-bottom:20px;
    color:#002654;
}

.edu-btn{
    display:inline-block;
    padding:12px 30px;
    background:linear-gradient(90deg,#002654,#6e1bce);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.edu-btn:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .edu-flex{
        flex-direction:column;
        text-align:center;
    }

    .edu-text,
    .edu-image{
        width:100%;
    }

    .edu-grid{
        grid-template-columns:1fr;
    }

    .edu-benefits-grid{
        grid-template-columns:1fr;
    }

    .edu-banner{
        padding-left:30px;
        height:300px;
    }

    .edu-banner-content h1{
        font-size:26px;
    }

}

/* ===============================
   ENTERPRISE PAGE STYLES
=================================*/

/* HERO */
.ent-banner{
    height:450px;
    background:linear-gradient(120deg,#091C44,#002654);
    display:flex;
    align-items:center;
    padding-left:80px;
    color:#fff;
}

.ent-banner-content h1{
    font-size:42px;
    margin-bottom:10px;
}

.ent-banner-content p{
    font-size:18px;
    opacity:.9;
}

/* OVERVIEW */
.ent-overview{
    padding:100px 0;
    background:#f8f9fb;
}

.ent-container{
    width:85%;
    margin:auto;
}

.ent-flex{
    display:flex;
    align-items:center;
    gap:60px;
}

.ent-text{
    width:55%;
}

.ent-text h2{
    font-size:28px;
    margin-bottom:20px;
    color:#048AAA;
}

.ent-text p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:15px;
}

.ent-image{
    width:45%;
}

.ent-image img{
    width:100%;
    transition:.4s;
}

.ent-image img:hover{
    transform:scale(1.05);
}

/* CAPABILITIES */
.ent-capabilities{
    padding:100px 0;
    background:#ffffff;
}

.ent-capabilities h2{
    text-align:center;
    margin-bottom:60px;
    color:#091C44;
}

.ent-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.ent-card{
    background:#fff;
    padding:35px;
    border:1px solid #e2e8f0;
    position:relative;
    transition:.4s;
    overflow:hidden;
}

/* PREMIUM BORDER ANIMATION */
.ent-card::before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    height:4px;
    width:0%;
    background:#048AAA;
    transition:.4s;
}

.ent-card:hover::before{
    width:100%;
}

.ent-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.12);
}

.ent-card h3{
    font-size:18px;
    margin-bottom:12px;
    color:#002654;
}

.ent-card p{
    font-size:14px;
    line-height:1.6;
}

/* ENTERPRISE BENEFITS (DARK SECTION) */
.ent-benefits{
    background:#091C44;
    padding:100px 0;
    color:#fff;
}

.ent-benefits h2{
    text-align:center;
    margin-bottom:50px;
}

.ent-benefit-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.ent-benefit-box{
    padding:25px;
    border-left:4px solid #048AAA;
    background:rgba(255,255,255,.05);
    transition:.4s;
}

.ent-benefit-box:hover{
    background:rgba(255,255,255,.12);
    transform:translateX(10px);
}

/* CTA */
.ent-cta{
    padding:100px 0;
    text-align:center;
    background:#f8f9fb;
}

.ent-cta h2{
    margin-bottom:25px;
    color:#091C44;
}

.ent-btn{
    display:inline-block;
    padding:12px 30px;
    background:linear-gradient(90deg,#002654,#048AAA);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.ent-btn:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .ent-flex{
        flex-direction:column;
        text-align:center;
    }

    .ent-text,
    .ent-image{
        width:100%;
    }

    .ent-grid{
        grid-template-columns:1fr;
    }

    .ent-benefit-grid{
        grid-template-columns:1fr;
    }

    .ent-banner{
        padding-left:30px;
        height:300px;
    }

    .ent-banner-content h1{
        font-size:26px;
    }

}
/* ===============================
   FINANCE PAGE STYLES
=================================*/

.fin-banner{
    height:450px;
    background:linear-gradient(120deg,#002654,#048AAA);
    display:flex;
    align-items:center;
    padding-left:80px;
    color:#fff;
}

.fin-banner-content h1{
    font-size:42px;
}

.fin-banner-content p{
    font-size:18px;
    opacity:.9;
}

/* INTRO */
.fin-intro{
    padding:90px 0;
    background:#f8f9fb;
}

.fin-container{
    width:85%;
    margin:auto;
}

.fin-intro-text{
    max-width:800px;
    margin-bottom:60px;
}

.fin-intro-text h2{
    color:#002654;
    margin-bottom:20px;
}

.fin-stats{
    display:flex;
    gap:40px;
}

.fin-stat-box{
    background:#fff;
    padding:30px;
    flex:1;
    text-align:center;
    border-top:4px solid #048AAA;
    transition:.4s;
}

.fin-stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* TIMELINE */
.fin-solutions{
    padding:100px 0;
    background:#ffffff;
}

.fin-section-title{
    text-align:center;
    margin-bottom:60px;
    color:#002654;
}

.fin-timeline{
    position:relative;
    border-left:3px solid #048AAA;
    padding-left:40px;
}

.fin-timeline-item{
    margin-bottom:50px;
    position:relative;
}

.fin-circle{
    width:18px;
    height:18px;
    background:#048AAA;
    border-radius:50%;
    position:absolute;
    left:-49px;
    top:5px;
}

.fin-content h3{
    margin-bottom:10px;
}

/* FLIP CARDS */
.fin-features{
    padding:100px 0;
    background:#f8f9fb;
}

.fin-feature-grid{
    display:flex;
    gap:40px;
}

.fin-flip-card{
    width:100%;
    height:200px;
    perspective:1000px;
}

.fin-flip-inner{
    width:100%;
    height:100%;
    position:relative;
    transition:transform .6s;
    transform-style:preserve-3d;
}

.fin-flip-card:hover .fin-flip-inner{
    transform:rotateY(180deg);
}

.fin-front,
.fin-back{
    position:absolute;
    width:100%;
    height:100%;
    backface-visibility:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    text-align:center;
    background:#fff;
    border:1px solid #eee;
}

.fin-back{
    transform:rotateY(180deg);
    background:#002654;
    color:#fff;
}

/* CTA */
.fin-cta{
    padding:100px 0;
    text-align:center;
}

.fin-btn{
    display:inline-block; 
    padding:12px 30px;
    background:linear-gradient(90deg,#002654,#048AAA);
    color:#fff;
    text-decoration:none;
    transition:.3s; 
}

.fin-btn:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .fin-stats{
        flex-direction:column;
    }

    .fin-feature-grid{
        flex-direction:column;
    }

    .fin-banner{
        padding-left:30px;
        height:300px;
    }

    .fin-banner-content h1{
        font-size:26px;
    }
}
/* ===============================
   HEALTHCARE PAGE STYLES
=================================*/

.hc-banner{
    height:450px;
    background:linear-gradient(120deg,#002654,#048AAA);
    display:flex;
    align-items:center;
    padding-left:80px;
    color:#fff;
}

.hc-banner-content h1{
    font-size:42px;
}

.hc-banner-content p{
    font-size:18px;
    opacity:.9;
}

/* OVERVIEW */
.hc-overview{
    padding:100px 0;
    background:#f4fbff;
}

.hc-container{
    width:85%;
    margin:auto;
}

.hc-overview-grid{
    display:flex;
    align-items:center;
    gap:60px;
}

.hc-image{
    width:45%;
}

.hc-image img{
    width:100%;
    border-radius:20px;
    transition:.4s;
}

.hc-image img:hover{
    transform:scale(1.05);
}

.hc-text{
    width:55%;
}

.hc-text h2{
    margin-bottom:20px;
    color:#048AAA;
}

.hc-text p{
    margin-bottom:15px;
    line-height:1.8;
}

.hc-btn{
    display:inline-block;
    padding:12px 28px;
    background:#048AAA;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.hc-btn:hover{
    box-shadow:0 0 20px rgba(4,138,170,.6);
}

/* SOLUTIONS */
.hc-solutions{
    padding:100px 0;
    background:#ffffff;
}

.hc-section-title{
    text-align:center;
    margin-bottom:60px;
    color:#002654;
}

.hc-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.hc-card{
    padding:30px;
    border-radius:20px;
    background:#f4fbff;
    transition:.4s;
    border:1px solid #e6f4f9;
}

.hc-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 40px rgba(0,0,0,.08);
}

/* BENEFITS */
.hc-benefits{
    background:#002654;
    padding:100px 0;
    color:#fff;
}

.hc-benefit-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.hc-benefit-box{
    padding:25px;
    border-left:4px solid #048AAA;
    background:rgba(255,255,255,.05);
    transition:.4s;
}

.hc-benefit-box:hover{
    transform:translateX(10px);
    background:rgba(255,255,255,.1);
}

/* CTA */
.hc-cta{
    padding:100px 0;
    text-align:center;
    background:#f4fbff;
}

.hc-btn-dark{
    display:inline-block;
    padding:12px 28px;
    background:linear-gradient(90deg,#002654,#048AAA);
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    transition:.3s;
}

.hc-btn-dark:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .hc-overview-grid{
        flex-direction:column;
        text-align:center;
    }

    .hc-text,
    .hc-image{
        width:100%;
    }

    .hc-grid{
        grid-template-columns:1fr;
    }

    .hc-benefit-grid{
        grid-template-columns:1fr;
    }

    .hc-banner{
        padding-left:30px;
        height:300px;
    }

    .hc-banner-content h1{
        font-size:26px;
    }

}

/* ===============================
   LEGAL & CONSULTING STYLES
=================================*/

.legal-banner{
    height:450px;
    background:linear-gradient(120deg,#002654,#6e1bce);
    display:flex;
    align-items:center;
    padding-left:80px;
    color:#fff;
}

.legal-banner-content h1{
    font-size:42px;
}

.legal-banner-content p{
    font-size:18px;
    opacity:.9;
}

/* OVERVIEW */
.legal-overview{
    padding:100px 0;
    background:#f8f9fb;
}

.legal-container{
    width:85%;
    margin:auto;
}

.legal-flex{
    display:flex;
    align-items:center;
    gap:60px;
}

.legal-text{
    width:55%;
}

.legal-text h2{
    margin-bottom:20px;
    color:#6e1bce;
}

.legal-text p{
    margin-bottom:15px;
    line-height:1.8;
}

.legal-image{
    width:45%;
}

.legal-image img{
    width:100%;
    transition:.4s;
}

.legal-image img:hover{
    transform:scale(1.05);
}

.legal-btn{
    display:inline-block;
    padding:12px 30px;
    background:#6e1bce;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.legal-btn:hover{
    transform:scale(1.05);
}

/* CHALLENGES */
.legal-challenges{
    padding:100px 0;
    background:#ffffff;
}

.legal-section-title{
    text-align:center;
    margin-bottom:60px;
    color:#002654;
}

.legal-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.legal-card{
    padding:30px;
    border:1px solid #eee;
    transition:.4s;
    position:relative;
}

/* PREMIUM LEFT BORDER EFFECT */
.legal-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    height:100%;
    width:0;
    background:#6e1bce;
    transition:.4s;
}

.legal-card:hover::before{
    width:5px;
}

.legal-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.1);
}

/* SOLUTIONS */
.legal-solutions{
    padding:100px 0;
    background:#f8f9fb;
}

.legal-solutions-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.legal-solution-box{
    padding:20px;
    background:#ffffff;
    border-left:4px solid #6e1bce;
    transition:.4s;
}

.legal-solution-box:hover{
    background:#6e1bce;
    color:#fff;
}

/* CTA */
.legal-cta{
    padding: 100px 0;
  text-align: center;
  background: #fff;
  color: #221e1e;
}

.legal-btn-dark{
    display:inline-block;
    padding:12px 30px;
    background:#6e1bce;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.legal-btn-dark:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .legal-flex{
        flex-direction:column;
        text-align:center;
    }

    .legal-text,
    .legal-image{
        width:100%;
    }

    .legal-grid{
        grid-template-columns:1fr;
    }

    .legal-solutions-list{
        grid-template-columns:1fr;
    }

    .legal-banner{
        padding-left:30px;
        height:300px;
    }

    .legal-banner-content h1{
        font-size:26px;
    }

}

/* ===============================
   RETAIL & HOSPITALITY STYLES
=================================*/

.ret-banner{
    height:450px;
    background:linear-gradient(120deg,#002654,#6e1bce);
    display:flex;
    align-items:center;
    padding-left:80px;
    color:#fff;
}

.ret-banner-content h1{
    font-size:42px;
}

.ret-banner-content p{
    font-size:18px;
    opacity:.9;
}

/* INTRO */
.ret-intro{
    padding:100px 0;
    background:#f8f9fb;
}

.ret-container{
    width:85%;
    margin:auto;
}

.ret-intro-grid{
    display:flex;
    align-items:center;
    gap:60px;
}

.ret-intro-image{
    position:relative;
    width:45%;
    overflow:hidden;
    border-radius:20px;
}

.ret-intro-image img{
    width:100%;
    transition:.4s;
}

.ret-intro-image:hover img{
    transform:scale(1.08);
}

.ret-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top,rgba(0,0,0,.7),transparent);
    color:#fff;
    text-align:center;
    font-weight:600;
}

.ret-intro-text{
    width:55%;
}

.ret-intro-text h2{
    margin-bottom:20px;
    color:#6e1bce;
}

.ret-intro-text p{
    margin-bottom:15px;
    line-height:1.8;
}

.ret-btn{
    display:inline-block;
    padding:12px 30px;
    background:#6e1bce;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.ret-btn:hover{
    transform:scale(1.05);
}

/* SERVICES GRID */
.ret-services{
    padding:100px 0;
    background:#ffffff;
}

.ret-section-title{
    text-align:center;
    margin-bottom:60px;
    color:#002654;
}

.ret-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.ret-card{
    position:relative;
    padding:40px;
    background:#f4f4f4;
    overflow:hidden;
    transition:.4s;
}

.ret-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg,#002654,#6e1bce);
    transform:translateY(100%);
    transition:.4s;
    z-index:0;
}

.ret-card:hover::before{
    transform:translateY(0);
}

.ret-card-content{
    position:relative;
    z-index:1;
    transition:.4s;
}

.ret-card:hover{
    color:#fff;
}

/* BENEFITS */
.ret-benefits{
    padding:100px 0;
    background:#002654;
    color:#fff;
}

.ret-benefit-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.ret-benefit-box{
    padding:25px;
    border-left:4px solid #6e1bce;
    background:rgba(255,255,255,.05);
    transition:.4s;
}

.ret-benefit-box:hover{
    transform:translateX(10px);
    background:rgba(255,255,255,.12);
}

/* CTA */
.ret-cta{
    padding:100px 0;
    text-align:center;
    background:#f8f9fb;
}

.ret-btn-dark{
    display:inline-block;
    padding:12px 30px;
    background:linear-gradient(90deg,#002654,#6e1bce);
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.ret-btn-dark:hover{
    transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:991px){

    .ret-intro-grid{
        flex-direction:column;
        text-align:center;
    }

    .ret-intro-text,
    .ret-intro-image{
        width:100%;
    }

    .ret-grid{
        grid-template-columns:1fr;
    }

    .ret-benefit-grid{
        grid-template-columns:1fr;
    }

    .ret-banner{
        padding-left:30px;
        height:300px;
    }

    .ret-banner-content h1{
        font-size:26px;
    }

}