/*====================================================
                GOOGLE FONT
=====================================================*/
/* --no-filter --brutal */
/* https://www.avalontec.com/en-in/ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*====================================================
                CSS VARIABLES
=====================================================*/
:root{

    --primary:#0B1F3A;
    --secondary:#2563EB;
    --accent:#FF6B00;

    --white:#ffffff;
    --light:#F8FAFC;
    --text:#4B5563;
    --heading:#111827;

    --shadow:0 15px 40px rgba(0,0,0,.12);

    --transition:.4s ease;

    --radius:14px;

}
body{

    font-family:'Poppins',sans-serif;

}


h1,h2,h3,h4,h5,h6{

    font-family:'Outfit',sans-serif;

}
html{
    scroll-behavior:smooth;
}
/*====================================================
                RESET
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

section{

    position:relative;

}


/*====================================================
                COMMON
=====================================================*/

.container-lg{

    max-width:1320px;

}

.btn{

    border-radius:50px;
    padding:14px 34px;
    font-weight:600;
    transition:var(--transition);

}


/*====================================================
                NAVBAR
=====================================================*/

.custom-navbar1{
padding:15px 0;
    /* padding:18px 0; */
    transition:.4s;
    z-index:9999;

}
.custom-navbar{

    height:90px;

    background:#06182F;

    padding:0;

    display:flex;

    align-items:center;

    z-index:9999;

}



.custom-navbar.scrolled{

    background:rgba(11,31,58,.95);

    backdrop-filter:blur(14px);

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    padding:12px 0;

}

.navbar-brand img{

    /* height:55px; */
    /* height:105px; */
    /* height:84px; */
    height:50px;
 
}

.navbar-brand img{
    transition:.4s;
}

.navbar-brand:hover img{
    transform:scale(1.05);
}
.navbar-toggler i{
    font-size:32px;
    color:white;
}
.navbar-nav{

    gap:35px;

}

.nav-link{

    color:#fff;
    /* font-size:16px; */
    /* font-weight:500; */
    position:relative;
    transition:.3s;
    /* transition:var(--transition); */


  font-size:  15px;
font-weight:600;
letter-spacing:.3px;

}   

.nav-link:hover{

    color:var(--accent);

}

.nav-link.active{
color: #ff5600 !important;
    /* color:var(--accent); */

}

/* .nav-link::after{

    content:"";
    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:var(--accent);

    transition:.3s;

} */


.nav-link::after{

    content:"";
    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:var(--accent);

    transition:.3s;
    left:50%;
    transform:translateX(-50%);
    transition:var(--transition);
    width:0;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.nav-link:hover::after{

    width:100%;

}


/*====================================================
                GET QUOTE BUTTON
=====================================================*/

.btn-getquote{

    background:var(--accent);
    color:#fff;

    padding:12px 30px;

    border-radius:40px;

    transition:.3s;

}

.btn-getquote:hover{

    background:#ff5600;
    color:#fff;

    transform:translateY(-3px);
      box-shadow:0 12px 25px rgba(255,107,0,.35);

}


/*====================================================
                HERO SECTION
=====================================================*/
.a1{
    background-image:url("../images/i1.jpg");
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 
}


.hero2{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
        90deg,
        rgba(5,15,35,.92) 0%,
        rgba(5,15,35,.75) 28%,
        rgba(5,15,35,.45) 45%,
        rgba(5,15,35,.10) 65%,
        rgba(5,15,35,0) 100%
    ),
    url("../images/bgimage.png");





     /* background:
    url("../images/bgimage.png"); */

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

}


.hero1{

    min-height:100vh;

    background:url("../images/hero-bg.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    position:relative;
/* * ADD THIS LINE RIGHT HERE  */
    overflow: hidden;
}


.hero{

    position:relative;

    overflow:hidden;

    background:#06182F;
    padding-top: 80px;

}

.hero-bg{

    width:100%;

    height:auto;

    display:block;

}

.hero .container-lg{

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:100%;
    height:100%;

}

.hero-content{

    width:48%;
    /* width:42%; */

    /* padding-top:170px; */
    padding-top:140px;

}



.hero-content1{

    width:52%;

    padding-top:90px;

    position:relative;

    z-index:2;

}
/* .hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    90deg,
    rgba(11,31,58,.95),
    rgba(11,31,58,.75),
    rgba(11,31,58,.45)
    );

} */

.hero1 .container-lg{

    position:relative;
    z-index:10;

}

.hero-tag{

    display:inline-block;

    color:var(--accent);

    background:rgba(255,255,255,.08);

    padding:12px 22px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,.1);

    letter-spacing:1px;

    font-size:14px;

}
.hero-title{

    font-size:3rem;

    font-weight:700;

    line-height:1.1;

}
.hero-title{

    /* font-size:62px; */
 /* font-size:2.5rem; */
    /* font-weight:700; */

    color:#fff;

    /* line-height:1.15; */

    margin-top:25px;

}

.hero-title span{

    color:var(--accent);

}

.hero-text{

    color:#d6d6d6;

    /* font-size:18px; */
    /* font-size:17px; */
    font-size:16px;

    line-height:32px;

    max-width:620px;

    margin-top:30px;

}   

/*====================================================
                HERO FEATURES
=====================================================*/

.hero-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:40px;
    max-width:500px;

}

.hero-features div{

    display:flex;
    align-items:center;
    color:#ffffff;
    font-size:16px;
    font-weight:500;

}

.hero-features i{

    color:var(--accent);
    font-size:18px;
    margin-right:12px;

}


/*====================================================
                HERO BUTTONS
=====================================================*/

.hero-buttons{

    display:flex;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;

}

.btn-primary-custom{

    background:var(--accent);
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);
    box-shadow:0 15px 35px rgba(255,107,0,.30);

}

.btn-primary-custom:hover{

    background:#ff5600;
    color:#fff;
    transform:translateY(-5px);

}

.btn-outline-custom{

    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    padding:16px 36px;
    border-radius:50px;
    transition:var(--transition);
    backdrop-filter:blur(10px);

}

.btn-outline-custom:hover{

    background:#fff;
    color:var(--primary);
    border-color:#fff;
    transform:translateY(-5px);

}


/*====================================================
                HERO IMAGE
=====================================================*/

.hero-image{

    max-width:580px;
    margin:auto;
    animation:floatImage 4s ease-in-out infinite;
    filter:drop-shadow(0 30px 50px rgba(0,0,0,.35));

}


/*====================================================
                FLOAT ANIMATION
=====================================================*/

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}


/*====================================================
                SECTION TITLE
=====================================================*/

.section-subtitle{

    color:var(--accent);
    font-weight:600;
  
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;

}

.section-title{
  font-size: 2rem;
    /* font-size:46px; */
    font-weight:700;
    color:var(--heading);
    margin-bottom:25px;

}

.section-text{

    color:var(--text);
    line-height:30px;
    /* font-size:17px; */
    font-size:16px;


}


/*====================================================
                SECTION SPACING
=====================================================*/

.section-padding{

    padding:110px 0;

}


/*====================================================
                CARD
=====================================================*/

.custom-card{

    background:#fff;
    border-radius:20px;
    padding:40px;
    transition:.35s;
    box-shadow:0 12px 40px rgba(0,0,0,.08);

}

.custom-card:hover{

    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);

}


/*====================================================
                SCROLLBAR
=====================================================*/

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--accent);
    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff5600;

}



/*====================================================
                HERO DASHBOARD
=====================================================*/

.hero-dashboard{
    position:relative;
    width:100%;
    max-width:520px;
    margin:auto;
    height:500px;
}

.main-card{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:360px;
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:25px;
    padding:30px;
    color:#fff;
    box-shadow:0 30px 60px rgba(0,0,0,.35);
}

.card-header-custom{
    display:flex;
    gap:10px;
    margin-bottom:25px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{background:#ff5f57;}
.yellow{background:#ffbd2e;}
.green{background:#28c840;}

.chart-bars{
    display:flex;
    align-items:flex-end;
    gap:12px;
    height:140px;
    margin:30px 0;
}

.chart-bars span{
    flex:1;
    background:linear-gradient(to top,#ff6b00,#ffb067);
    border-radius:20px;
    animation:bars 2s infinite alternate;
}

.chart-bars span:nth-child(1){height:60%;}
.chart-bars span:nth-child(2){height:90%;}
.chart-bars span:nth-child(3){height:45%;}
.chart-bars span:nth-child(4){height:100%;}
.chart-bars span:nth-child(5){height:75%;}

@keyframes bars{
    from{opacity:.6;}
    to{opacity:1;}
}

.status-row{
    display:flex;
    justify-content:space-between;
    margin-top:20px;
}

.status-row h3{
    color:#fff;
    font-weight:700;
}

.status-row small{
    color:#d8d8d8;
}

.floating-card{
    position:absolute;
    background:#fff;
    border-radius:18px;
    padding:18px 25px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    animation:floatCard 4s ease-in-out infinite;
}

.floating-card i{
    font-size:30px;
    color:#FF6B00;
    display:block;
    margin-bottom:10px;
}

.floating-card h6{
    margin:0;
    color:#0B1F3A;
    font-weight:600;
}

.card-one{
    top:10px;
    left:-20px;
}

.card-two{
    top:70px;
    right:-30px;
    animation-delay:1s;
}

.card-three{
    bottom:10px;
    left:20px;
    animation-delay:2s;
}

@keyframes floatCard{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}




/* about */


/*====================================================
                    ABOUT
====================================================*/

.about{

    background:#fff;

}

.about-image{

    position:relative;

    height:520px;

}

.image-card{

    position:absolute;

    width:430px;

    height:420px;

    background:linear-gradient(145deg,#0B1F3A,#17365D);

    border-radius:25px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    color:#fff;

    box-shadow:0 25px 50px rgba(0,0,0,.15);

}

.image-card i{

    font-size:80px;

    color:#FF6B00;

    margin-bottom:25px;

}

.image-card h5{

    font-size:28px;

    font-weight:700;

}

.image-card p{

    color:#d5d5d5;

}

.experience-box{

    position:absolute;

    right:20px;

    bottom:30px;

    width:180px;

    height:180px;

    background:#FF6B00;

    border-radius:25px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    z-index:5;

    box-shadow:0 20px 40px rgba(255,107,0,.4);

}

.experience-box h2{

    font-size:52px;

    font-weight:700;

}

.about-list{

    margin-top:35px;

}

.about-list div{

    margin-bottom:20px;

    /* font-size:17px; */
    font-size:16px;

    display:flex;

    align-items:center;

}

.about-list i{

    color:#FF6B00;

    margin-right:15px;

    font-size:22px;

}






/*==================================
        SERVICES
==================================*/

.services{

    background:#F8FAFC;

}

.service-card{

    background:#fff;

    border-radius:22px;

    padding:40px 30px;

    transition:.4s;

    height:100%;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#FF6B00;

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.service-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:#0B1F3A;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.service-icon i{

    color:#fff;

    font-size:34px;

}

.service-card h4{

    font-weight:700;

    margin-bottom:18px;

}

.service-card p{

    line-height:30px;

}


/*====================================================
                HERO DECORATION
=====================================================*/

.hero::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(255,107,0,.08);
    top:-150px;
    right:-120px;
    filter:blur(40px);
}

.hero::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(37,99,235,.08);
    bottom:-100px;
    left:-100px;
    filter:blur(40px);
}


/*====================================================
                HERO DASHBOARD
=====================================================*/

.hero-dashboard{
    position:relative;
    width:100%;
    max-width:520px;
    height:520px;
    margin:auto;
}

.main-card{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:380px;

    padding:30px;

    border-radius:24px;

    background:rgba(255,255,255,.10);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    box-shadow:0 20px 60px rgba(0,0,0,.30);

}

.card-header-custom{

    display:flex;

    gap:10px;

    margin-bottom:30px;

}

.dot{

    width:12px;
    height:12px;
    border-radius:50%;

}

.red{
    background:#ff5f57;
}

.yellow{
    background:#ffbd2e;
}

.green{
    background:#28c840;
}

.main-card h5{

    color:#fff;

    font-size:24px;

    font-weight:700;

}


/*====================================================
                CHART
=====================================================*/

.chart-bars{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    height:160px;

    margin:40px 0;

}

.chart-bars span{

    width:40px;

    border-radius:40px;

    background:linear-gradient(to top,#FF6B00,#FFB066);

    animation:bars 2s infinite alternate;

}

.chart-bars span:nth-child(1){

    height:65%;

}

.chart-bars span:nth-child(2){

    height:90%;

}

.chart-bars span:nth-child(3){

    height:45%;

}

.chart-bars span:nth-child(4){

    height:100%;

}

.chart-bars span:nth-child(5){

    height:70%;

}

@keyframes bars{

    from{

        opacity:.65;

    }

    to{

        opacity:1;

    }

}


/*====================================================
                STATUS
=====================================================*/

.status-row{

    display:flex;

    justify-content:space-between;

    margin-top:20px;

}

.status-row h3{

    color:#fff;

    font-weight:700;

    font-size:30px;

}

.status-row small{

    color:#d8d8d8;

}


/*====================================================
                FLOATING CARDS
=====================================================*/

.floating-card{

    position:absolute;

    background:#fff;

    padding:18px 25px;

    border-radius:18px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    animation:floatingCard 4s ease-in-out infinite;

}

.floating-card i{

    font-size:32px;

    color:#FF6B00;

    margin-bottom:12px;

    display:block;

}

.floating-card h6{

    margin:0;

    color:#0B1F3A;

    font-weight:600;

}

.card-one{

    top:15px;

    left:-25px;

}

.card-two{

    right:-30px;

    top:90px;

    animation-delay:1s;

}

.card-three{

    left:25px;

    bottom:10px;

    animation-delay:2s;

}

@keyframes floatingCard{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0px);

    }

}


/*====================================================
                BUTTON RIPPLE
=====================================================*/

.btn-primary-custom,
.btn-getquote{

    position:relative;

    overflow:hidden;

}

.btn-primary-custom::before,
.btn-getquote::before{

    content:'';

    position:absolute;

    width:0;

    height:100%;

    left:0;

    top:0;

    background:rgba(255,255,255,.15);

    transition:.5s;

}

.btn-primary-custom:hover::before,
.btn-getquote:hover::before{

    width:100%;

}


/*====================================================
                SECTION SPACING
=====================================================*/

.section-padding{

    padding:110px 0;

}


/*====================================================
                TEXT SELECTION
=====================================================*/

::selection{

    background:#FF6B00;

    color:#fff;

}   




/*==================================
        STATS
===================================*/

.stats-section{

    background:#081C3A;

    padding:90px 0;

}

.stat-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border-radius:20px;

    padding:40px 20px;

    text-align:center;

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-12px);

    background:#FF6B00;

}

.stat-card i{

    color:#fff;

    font-size:45px;

    margin-bottom:20px;

}

.stat-card h2{

    color:#fff;

    /* font-size:52px; */
    font-size:40px;
    font-weight:700;
    /* font-weight:700; */

}

.stat-card p{

    color:#ddd;

    margin:0;

    font-size:18px;

}





/*==================================
        PROCESS SECTION
==================================*/

.process-section{

    background:#F8FAFC;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:22px;

    padding:35px 30px;

    text-align:center;

    height:100%;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.process-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.process-number{

    position:absolute;

    right:20px;

    top:20px;

    font-size:42px;

    font-weight:700;

    color:#f0f0f0;

}

.process-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,#081C3A,#2563EB);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.process-icon i{

    color:#fff;

    font-size:38px;

}

.process-card h4{

    font-weight:700;

    margin-bottom:18px;

}

.process-card p{

    line-height:28px;

    margin:0;

}




/*==================================
        SOLUTIONS
==================================*/

.solutions{

    background:#fff;

}

.solution-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    height:100%;

    text-align:center;

    transition:.4s;

    border:1px solid #eee;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.solution-card:hover{

    transform:translateY(-12px);

    border-color:#FF7A00;

}

.solution-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#081C3A;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.solution-icon i{

    color:#fff;

    font-size:38px;

}

.solution-card h4{

    font-weight:700;

    margin-bottom:20px;

}


/*==================================
        PROJECTS
==================================*/

.projects{

    background:#F8FAFC;

}

.project-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.project-card:hover{

    transform:translateY(-12px);

}

.project-card img{

    height:240px;

    width:100%;

    object-fit:cover;

}

.project-content{

    padding:30px;

}

.project-content span{

    color:#FF7A00;

    font-weight:600;

}

.project-content h4{

    margin:15px 0;

    font-weight:700;

}

.project-content p{

    line-height:30px;

}




/*==================================
        TECHNOLOGIES
==================================*/

/* 
.technology-section1{

    background:#081C3A;

}


.technology-section1 .section-title{

    color:#fff;

}


.technology-section1 .section-text{

    color:#d1d5db;

}



.tech-card{

    height:180px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    transition:.4s;

    backdrop-filter:blur(10px);

}



.tech-card i{

    font-size:45px;

    color:#FF7A00;

    margin-bottom:20px;

}



.tech-card h5{

    color:#fff;

    
    font-size:16px;

    text-align:center;

}



.tech-card:hover{

    transform:translateY(-12px);

    background:#FF7A00;

}



.tech-card:hover i{

    color:#fff;

}
 */






/*==================================
        INDUSTRIES
==================================*/


.industries-section{

    background:#fff;

}



.industry-card{

    background:#F8FAFC;

    padding:40px 30px;

    border-radius:22px;

    height:100%;

    transition:.4s;

    border:1px solid transparent;

}



.industry-card:hover{

    background:#081C3A;

    transform:translateY(-10px);

}



.industry-icon{

    width:80px;

    height:80px;

    border-radius:20px;

    background:#FF7A00;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}



.industry-icon i{

    color:#fff;

    font-size:35px;

}



.industry-card h4{

    font-weight:700;

    margin-bottom:15px;

}



.industry-card p{

    line-height:28px;

}



.industry-card:hover h4{

    color:#fff;

}



.industry-card:hover p{

    color:#ddd;

}










/*==================================
        WHY SECTION
==================================*/


.why-section{

    background:#F8FAFC;

}



.why-list{

    margin-top:35px;

}



.why-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}



.why-icon{

    min-width:65px;

    height:65px;

    background:#081C3A;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

}



.why-icon i{

    color:#FF7A00;

    font-size:30px;

}



.why-item h5{

    font-weight:700;

    margin-bottom:8px;

}



.why-item p{

    margin:0;

}



.why-image{

    height:450px;

    position:relative;

}



.why-main-box{

    width:360px;

    height:360px;

    border-radius:30px;

    background:linear-gradient(
        145deg,
        #081C3A,
        #2563EB
    );

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-direction:column;

    text-align:center;

    color:white;

    box-shadow:0 30px 60px rgba(0,0,0,.2);

}



.why-main-box i{

    font-size:75px;

    color:#FF7A00;

    margin-bottom:20px;

}



.why-main-box h3{

    font-weight:700;

}



.floating-tech{

    position:absolute;

    background:#fff;

    padding:15px 25px;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    font-weight:700;

    color:#081C3A;

    animation:floatingCard 4s infinite;

}



.tech-one{

    top:50px;

    left:20px;

}



.tech-two{

    right:20px;

    top:120px;

    animation-delay:1s;

}



.tech-three{

    bottom:60px;

    left:80px;

    animation-delay:2s;

}





/*==================================
        CLIENTS
==================================*/


.clients-section{

    background:#fff;

}



.client-logo{

    height:120px;

    background:#F8FAFC;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:25px;

    transition:.4s;

}



.client-logo img{

    max-width:150px;

    max-height:70px;

    object-fit:contain;

    filter:grayscale(100%);

    opacity:.7;

    transition:.4s;

}



.client-logo:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.1);

}



.client-logo:hover img{

    filter:grayscale(0);

    opacity:1;

}





/*==================================
        TESTIMONIALS
==================================*/


.testimonial-section{

    background:#F8FAFC;

}



.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    height:100%;

    position:relative;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}



.testimonial-card:hover{

    transform:translateY(-10px);

}



.quote-icon{

    width:60px;

    height:60px;

    background:#081C3A;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}



.quote-icon i{

    color:#FF7A00;

    font-size:30px;

}



.testimonial-card p{

    line-height:30px;

    font-size:16px;

}



.client-info{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:30px;

}



.client-avatar{

    width:55px;

    height:55px;

    background:#FF7A00;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}



.client-info h5{

    margin:0;

    /* font-size:17px; */
    font-size:16px;

}



.client-info span{

    font-size:14px;

    color:#777;

}







/*==================================
        CONTACT
==================================*/


.contact-section{

    background:#F8FAFC;

}



.contact-info-card{

    background:#081C3A;

    color:#fff;

    padding:40px;

    border-radius:25px;

}



.contact-info-card h3{

    font-weight:700;

    margin-bottom:20px;

}



.contact-info-card p{

    color:#d1d5db;

}



.contact-item{

    display:flex;

    gap:20px;

    margin-top:30px;

}



.contact-icon{

    min-width:55px;

    height:55px;

    background:#FF7A00;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

}



.contact-icon i{

    font-size:22px;

}



.contact-item h6{

    margin:0;

}



.contact-item p{

    margin:5px 0 0;

}



.contact-form{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}



.contact-form .form-control{

    height:55px;

    border-radius:12px;

    border:1px solid #ddd;

}



.contact-form textarea{

    height:auto !important;

}



.contact-form .form-control:focus{

    border-color:#FF7A00;

    box-shadow:none;

}











/*==================================
        CONTACT
==================================*/


.contact-section{

    background:#F8FAFC;

}



.contact-info-card{

    background:#081C3A;

    color:#fff;

    padding:40px;

    border-radius:25px;

}



.contact-info-card h3{

    font-weight:700;

    margin-bottom:20px;

}



.contact-info-card p{

    color:#d1d5db;

}



.contact-item{

    display:flex;

    gap:20px;

    margin-top:30px;

}



.contact-icon{

    min-width:55px;

    height:55px;

    background:#FF7A00;

    border-radius:15px;

    display:flex;

    justify-content:center;

    align-items:center;

}



.contact-icon i{

    font-size:22px;

}



.contact-item h6{

    margin:0;

}



.contact-item p{

    margin:5px 0 0;

}



.contact-form{

    background:#fff;

    padding:40px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}



.contact-form .form-control{

    height:55px;

    border-radius:12px;

    border:1px solid #ddd;

}



.contact-form textarea{

    height:auto !important;

}



.contact-form .form-control:focus{

    border-color:#FF7A00;

    box-shadow:none;

}





/*==================================
            MAP
==================================*/

.map-section{
    background:#F8FAFC;
    padding:0 0 100px;
}

.map-wrapper{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

/* Mobile */

@media (max-width:768px){

    .map-wrapper iframe{
        height:300px;
    }

}


/*==================================
            FOOTER
==================================*/


.footer-section{

    background:#081C3A;

    padding:80px 0 25px;

    color:#fff;

}



.footer-brand h2{

    font-size:35px;

    font-weight:800;

}



.footer-brand h2 span{

    color:#FF7A00;

}



.footer-brand p{

    color:#cbd5e1;

    line-height:30px;

    margin-top:20px;

}



.social-links{

    display:flex;

    gap:15px;

    margin-top:25px;

}



.social-links a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    transition:.3s;

}



.social-links a:hover{

    background:#FF7A00;

}



.footer-title{

    font-weight:700;

    margin-bottom:25px;

}



.footer-links{

    list-style:none;

    padding:0;

}



.footer-links li{

    margin-bottom:15px;

    color:#cbd5e1;

}



.footer-links a{

    color:#cbd5e1;

    text-decoration:none;

}



.footer-links a:hover{

    color:#FF7A00;

}



.footer-contact{

    list-style:none;

    padding:0;

}



.footer-contact li{

    display:flex;

    gap:12px;

    margin-bottom:18px;

    color:#cbd5e1;

}



.footer-contact i{

    color:#FF7A00;

}



.footer-section hr{

    margin-top:50px;

    border-color:rgba(255,255,255,.2);

}



.footer-bottom{

    text-align:center;

    color:#cbd5e1;

}





/*==================================
        BACK TO TOP
==================================*/


#backTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border-radius:50%;

    border:none;

    background:#FF7A00;

    color:#fff;

    font-size:22px;

    display:none;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    z-index:999;

    transition:.3s;

}


#backTop:hover{

    background:#081C3A;

}


/*==================================
        LOADER
==================================*/


.loader{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:#081C3A;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:9999;

}


.loader-circle{

    width:60px;

    height:60px;

    border:5px solid rgba(255,255,255,.3);

    border-top-color:#FF7A00;

    border-radius:50%;

    animation:loaderRotate 1s linear infinite;

}



@keyframes loaderRotate{


    from{

        transform:rotate(0);

    }


    to{

        transform:rotate(360deg);

    }

}

.b{
    height: 450px;border-radius: 24px;margin-left:0px; 
}


.custom-navbar.scrolled{

    background:#081C3A;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}



img{

    max-width:100%;

    height:auto;

    display:block;

}


/* deleteafter */
.custom-navbar{

    background:rgba(11,31,58,.30);

    backdrop-filter:blur(10px);

}


.custom-navbar.scrolled{

    background:rgba(11,31,58,.95);

}















@media(max-width:991px){
.navbar-brand img{

    
    height:55px;
padding: 0px;
margin: 0px;
}

.b{
height: auto;
padding-left:0px;
padding-right:0px
}

.hero{

    /* margin-top:80px; */
padding: 0px;
}

.hero .container-lg{

    position:relative;

    left:0;

    top:0;

    transform:none;

    padding:30px 15px;

}

.hero-content{

    width:100%;

    padding-top:0;

    text-align:center;

}

.hero-bg{

    position:relative;

    width:100%;

    height:auto;

}

.hero-title{

    font-size:34px;

    line-height:1.2;

}

.hero-text{

    font-size:16px;

    line-height:28px;

}

.hero-features{

    grid-template-columns:1fr;

    gap:15px;

}

.hero-buttons{

    justify-content:center;

}

}
























/* Subtitle Pill */
.tech-subtitle-badge {
    background-color: #e0f2fe;
    color: #0284c7;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Glassmorphism Wrapper for Tabs */
.tech-tab-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tech-tab-wrapper:hover {
    box-shadow: 0 25px 50px -12px rgba(172, 152, 152, 0.08);
}

/* Custom Nav Pills */
.tech-pills-nav {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 25px;
    gap: 10px;
}

.tech-pills-nav .nav-link {
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.75rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-pills-nav .nav-link:hover {
    color: #0284c7;
    background: #f0f9ff;
    border-color: #bae6fd;
    transform: translateY(-2px);
}

.tech-pills-nav .nav-link.active {
    background-color: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 8px 16px -4px rgba(2, 132, 199, 0.35);
}

/* Tab Badges Grid */
.tech-badge-container {
    padding-top: 10px;
}

.tech-pill-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
    background-color: #f8fafc;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease-in-out;
    cursor: default;
}

.tech-pill-badge i {
    font-size: 1rem;
    color: #0284c7;
}

.tech-pill-badge:hover {
    transform: translateY(-3px) scale(1.03);
    background-color: #ffffff;
    border-color: #0284c7;
    box-shadow: 0 10px 20px -5px rgba(2, 132, 199, 0.15);
}

/* Color Tweaks for Specific Categories */
.tech-pill-badge.badge-green i { color: #16a34a; }
.tech-pill-badge.badge-green:hover {
    border-color: #16a34a;
    box-shadow: 0 10px 20px -5px rgba(22, 163, 74, 0.15);
}

.tech-pill-badge.badge-red i { color: #dc2626; }
.tech-pill-badge.badge-red:hover {
    border-color: #dc2626;
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.15);
}

/* Fade In Animation Enhancement for Tab Change */
.tab-pane.fade {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    transform: translateY(6px);
}

.tab-pane.fade.show {
    transform: translateY(0);
}





/* Section Base with Background Image */
.technology-hero-section1 {
    position: relative;
    /* background-image: url('&fit=https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1920&auto=formatcrop'); */
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1920&auto=formatcrop');
   
    /* background-image: url('../images/a.jpg'); Modern Abstract Circuit/Tech BG */
  
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    overflow: hidden;
}

/* Dark Overlay to make text perfectly readable */
.tech-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
    z-index: 1;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

/* Header Subtitle Pill */
.tech-subtitle-pill {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 50px;
}

/* Main Frosted Glass Block */
.tech-glass-block {
    background: rgba(255, 255, 255, 0.05); /* Ultra subtle translucency */
    backdrop-filter: blur(16px); /* Blur effect behind glass */
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Nav Tabs inside Glass */
.tech-pills-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 25px;
    gap: 12px;
}

.tech-pills-nav .nav-link {
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tech-pills-nav .nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-pills-nav .nav-link.active {
    background: #0284c7;
    color: #ffffff;
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(2, 132, 199, 0.5); /* Glowing Effect */
}

/* Glowing Badges inside Tabs */
.tech-glow-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

.tech-glow-badge:hover {
    transform: translateY(-3px) scale(1.03);
    background: rgba(2, 132, 199, 0.2);
    border-color: #38bdf8;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.tech-glow-badge.badge-green:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: #4ade80;
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.3);
}

.tech-glow-badge.badge-cyan:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: #22d3ee;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
}

/* Tab Transition Smoothness */
.tab-pane.fade {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(8px);
}

.tab-pane.fade.show {
    transform: translateY(0);
}








/* 

.process-section{
    background:#F8FAFC;
    position:relative;
}


@media(min-width:992px){

    .process-section .row{
        position:relative;
    }

    .process-section .row::before{
        content:"";
        position:absolute;
        top:45px;
        left:12%;
        width:76%;
        height:3px;
        background:linear-gradient(
            90deg,
            #2563EB,
            #60A5FA,
            #2563EB
        );
        z-index:0;
        opacity:.15;
    }
}

.process-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    overflow:hidden;
    transition:.5s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:1;
}


.process-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,#081C3A,#2563EB);
    transition:.6s;
}

.process-card:hover::before{
    width:100%;
}

.process-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(37,99,235,.18);
}

.process-number{
    position:absolute;
    right:20px;
    top:20px;
    font-size:42px;
    font-weight:800;
    color:#EEF2FF;
    transition:.4s;
}

.process-card:hover .process-number{
    transform:scale(1.1);
    color:#DBEAFE;
}

.process-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#081C3A,#2563EB);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    position:relative;
}


.process-icon::before{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:2px solid rgba(37,99,235,.15);
    animation:pulseRing 3s infinite;
}

.process-icon i{
    color:#fff;
    font-size:38px;
    transition:.4s;
}

.process-card:hover .process-icon i{
    transform:scale(1.15) rotate(8deg);
}


.process-card{
    animation:floatCard 6s ease-in-out infinite;
}

.process-card:nth-child(2){
    animation-delay:.5s;
}

.process-card:nth-child(3){
    animation-delay:1s;
}

.process-card:nth-child(4){
    animation-delay:1.5s;
}

@keyframes pulseRing{
    0%{
        transform:scale(1);
        opacity:.8;
    }
    70%{
        transform:scale(1.25);
        opacity:0;
    }
    100%{
        transform:scale(1.25);
        opacity:0;
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
} */




.process-section{
    background:#F8FAFC;
    position:relative;
}

/* Connecting Line */
@media(min-width:992px){

    .process-section .row{
        position:relative;
    }

    .process-section .row::before{
        content:"";
        position:absolute;
        top:45px;
        left:12%;
        width:76%;
        height:3px;
        background:linear-gradient(
            90deg,
            #2563EB,
            #60A5FA,
            #2563EB
        );
        z-index:0;
        opacity:.15;
    }
}

.process-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    overflow:hidden;
    transition:.5s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    z-index:1;
}

/* Animated top border */
.process-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,#081C3A,#2563EB);
    transition:.6s;
}

.process-card:hover::before{
    width:100%;
}

.process-card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 70px rgba(37,99,235,.18);
}

.process-number{
    position:absolute;
    right:20px;
    top:20px;
    font-size:42px;
    font-weight:800;
    color:#EEF2FF;
    transition:.4s;
}

.process-card:hover .process-number{
    transform:scale(1.1);
    color:#DBEAFE;
}

.process-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#081C3A,#2563EB);
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
    position:relative;
}

/* Glow Ring */
.process-icon::before{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:50%;
    border:2px solid rgba(37,99,235,.15);
    animation:pulseRing 3s infinite;
}

.process-icon i{
    color:#fff;
    font-size:38px;
    transition:.4s;
}

.process-card:hover .process-icon i{
    transform:scale(1.15) rotate(8deg);
}

/* Floating animation */
.process-card{
    animation:floatCard 6s ease-in-out infinite;
}

.process-card:nth-child(2){
    animation-delay:.5s;
}

.process-card:nth-child(3){
    animation-delay:1s;
}

.process-card:nth-child(4){
    animation-delay:1.5s;
}

@keyframes pulseRing{
    0%{
        transform:scale(1);
        opacity:.8;
    }
    70%{
        transform:scale(1.25);
        opacity:0;
    }
    100%{
        transform:scale(1.25);
        opacity:0;
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}








.process-section {
    background: #F8FAFC;
    position: relative;
    z-index: 1;
}

.process-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    z-index: 1;
}

/* Subtle top border bar reveal on hover */
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #081C3A, #2563EB);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

/* Background glow gradient effect on hover */
.process-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover::after {
    opacity: 1;
}

/* Large Number Styling & Animation */
.process-number {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 46px;
    font-weight: 800;
    color: #e5e7eb;
    transition: transform 0.4s ease, color 0.4s ease;
    user-select: none;
    line-height: 1;
}

.process-card:hover .process-number {
    color: rgba(37, 99, 235, 0.15);
    transform: translateY(-3px) scale(1.05);
}

/* Dynamic Icon Wrapper & Pulse Effect */
.process-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #081C3A, #2563EB);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.process-icon i {
    color: #ffffff;
    font-size: 36px;
    transition: transform 0.4s ease;
}

/* Icon animations on hover */
.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.process-card:hover .process-icon i {
    transform: scale(1.1);
}

/* Typography Enhancements */
.process-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
    transition: color 0.3s ease;
}

.process-card:hover h4 {
    color: #2563EB;
}

.process-card p {
    line-height: 1.6;
    color: #64748b;
    margin: 0;
    font-size: 15px;
}


















.industries-section {
    background: #ffffff;
}

.industry-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.industry-card {
    position: relative;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

/* Background Image & Zoom Effect */
.industry-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.industry-card:hover .industry-card-bg {
    transform: scale(1.08);
}

/* Gradient Overlay */
.industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 28, 58, 0.95) 0%,
        rgba(8, 28, 58, 0.6) 50%,
        rgba(8, 28, 58, 0.25) 100%
    );
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    transition: background 0.4s ease;
}

.industry-card:hover .industry-card-overlay {
    background: linear-gradient(
        to top,
        rgba(8, 28, 58, 0.98) 0%,
        rgba(8, 28, 58, 0.75) 60%,
        rgba(8, 28, 58, 0.4) 100%
    );
}

/* Icon Styling */
.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #FF7A00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.05);
}

.industry-icon i {
    color: #ffffff;
    font-size: 26px;
}

/* Typography */
.industry-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.industry-card p {
    font-size: 14px;
    line-height: 22px;
    color: #e2e8f0;
    margin-bottom: 0;
    font-weight: 300;
    opacity: 0.9;
}








/* ============================================
   LAZY LOAD SECTIONS - ADD THIS TO YOUR CSS
   ============================================ */

.lazy-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
    pointer-events: none;
}

.lazy-section.loaded {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Optional: Subtle stagger delay for child elements inside lazy sections */
.lazy-section.loaded .service-card,
.lazy-section.loaded .industry-card,
.lazy-section.loaded .stat-card,
.lazy-section.loaded .why-item,
.lazy-section.loaded .testimonial-card {
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.lazy-section.loaded .service-card:nth-child(1) { animation-delay: 0.05s; }
.lazy-section.loaded .service-card:nth-child(2) { animation-delay: 0.10s; }
.lazy-section.loaded .service-card:nth-child(3) { animation-delay: 0.15s; }
.lazy-section.loaded .service-card:nth-child(4) { animation-delay: 0.20s; }
.lazy-section.loaded .service-card:nth-child(5) { animation-delay: 0.25s; }
.lazy-section.loaded .service-card:nth-child(6) { animation-delay: 0.30s; }

.lazy-section.loaded .industry-card:nth-child(1) { animation-delay: 0.05s; }
.lazy-section.loaded .industry-card:nth-child(2) { animation-delay: 0.10s; }
.lazy-section.loaded .industry-card:nth-child(3) { animation-delay: 0.15s; }
.lazy-section.loaded .industry-card:nth-child(4) { animation-delay: 0.20s; }
.lazy-section.loaded .industry-card:nth-child(5) { animation-delay: 0.25s; }
.lazy-section.loaded .industry-card:nth-child(6) { animation-delay: 0.30s; }

.lazy-section.loaded .stat-card:nth-child(1) { animation-delay: 0.05s; }
.lazy-section.loaded .stat-card:nth-child(2) { animation-delay: 0.10s; }
.lazy-section.loaded .stat-card:nth-child(3) { animation-delay: 0.15s; }
.lazy-section.loaded .stat-card:nth-child(4) { animation-delay: 0.20s; }

.lazy-section.loaded .why-item:nth-child(1) { animation-delay: 0.05s; }
.lazy-section.loaded .why-item:nth-child(2) { animation-delay: 0.10s; }
.lazy-section.loaded .why-item:nth-child(3) { animation-delay: 0.15s; }

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   OPTIONAL: SMOOTH SCROLL BEHAVIOR
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* ============================================
   OPTIONAL: LOADER (if you want a loading state)
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #081C3A;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, .3);
    border-top-color: #FF7A00;
    border-radius: 50%;
    animation: loaderRotate 1s linear infinite;
}

@keyframes loaderRotate {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}













/*==================================
        CONTACT SECTION
==================================*/

.contact-section {
    background: #F8FAFC;
}

.contact-info-card {
    background: #081C3A;
    color: #ffffff;
    padding: 40px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-description {
    color: #d1d5db;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 25px;
}

.contact-icon {
    min-width: 50px;
    height: 50px;
    background: #FF7A00;
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
}

.contact-item h6 {
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

.contact-item p {
    margin: 4px 0 0;
    font-size: 0.95rem;
}

.contact-item a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-item a:hover {
    color: #FF7A00;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.contact-form .form-control {
    height: 52px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea.form-control {
    height: auto !important;
}

.contact-form .form-control:focus {
    border-color: #FF7A00;
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.15);
    outline: none;
}

/* Custom Primary Button Style */
.btn-primary-custom {
    background-color: #FF7A00;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary-custom:hover {
    background-color: #e06b00;
    color: #ffffff;
    transform: translateY(-2px);

}

/*==================================
this section is also working sectionis small height ok      MAP SECTION
==================================*/
/* 
.map-section {
    background: #F8FAFC;
    padding-bottom: 80px;
}

.map-wrapper {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}


@media (max-width: 768px) {
    .contact-info-card,
    .contact-form {
        padding: 25px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
} */







/*==================================
            MAP
==================================*/

.map-section{
    background:#F8FAFC;
    padding:0 0 100px;
}

.map-wrapper{
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.map-wrapper iframe{
    width:100%;
    height:450px;
    border:0;
    display:block;
}

/* Mobile */

@media (max-width:768px){

    .map-wrapper iframe{
        height:300px;
    }

}











/* 

.map-wrapper {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

.map-wrapper{
    width:100%;
    border-radius:20px;
    overflow:hidden;
}

.map-wrapper iframe{
    width:100%;
    height:350px;
    border:0;
    display:block;
}

@media (max-width:768px){
    .map-wrapper iframe{
        height:280px;
    }
}
 */




.card{
    overflow: hidden;
    border: none;
}

.card img{
    /* transition: transform 0.9s ease; */
    /* transition: transform 0.6s ease; */
transition: transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
 will-change: transform;
}
/* .card img{
    transform-origin: center center;
    transition: transform 0.6s ease;
} */
.card:hover img{
    transform: scale(1.15);
    /* transform: scale(1.3); */

}












/* ==========================================================
   SERVICES SECTION (Siemens/Honeywell Enterprise Style)
   ========================================================== */

:root {
  --navy-primary: #0b1f3a;
  --accent-orange: #ff6b00;
  --accent-cyan: #00a3e0;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
}

.services-section {
  background-color: var(--bg-light);
  padding: 90px 0;
}

/* Subtitle Badge */
.badge-subtitle {
  display: inline-flex;
  align-items: center;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy-primary);
  background: rgba(11, 31, 58, 0.06);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(11, 31, 58, 0.12);
}

.section-title {
  color: var(--navy-primary);
  letter-spacing: -0.5px;
}

.section-lead {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Service Card Core */
.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* Top Accent Line */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 31, 58, 0.15);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.08);
}

/* Icon Style */
.card-header-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--navy-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .card-header-icon {
  background: var(--accent-orange);
  transform: scale(1.05);
}

/* Card Typography */
.card-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tech Tags (Pills) */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  margin-top: auto; /* Push tags & button to bottom */
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
  background-color: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* Action Link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.icon-arrow {
  transition: transform 0.25s ease;
}

.card-link:hover,
.service-card:hover .card-link {
  color: var(--accent-orange);
}

.service-card:hover .icon-arrow {
  transform: translateX(6px);
}








/* ==========================================================
   SIEMENS-LEVEL CLIENT VISUAL STYLE
   ========================================================== */

:root {
  --navy-dark: #0b1f3a;
  --accent-orange: #ff6b00;
  --accent-blue: #00a3e0;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --border-color: #e2e8f0;
}

.services-section {
  background-color: var(--bg-light);
  padding: 100px 0;
}

/* Badge Subtitle */
.badge-subtitle {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--navy-dark);
  background: rgba(11, 31, 58, 0.05);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(11, 31, 58, 0.1);
}

.section-title {
  color: var(--navy-dark);
  letter-spacing: -0.5px;
}

/* Modern Tab Pill Wrapper */
.filter-tab-wrapper {
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  display: inline-flex;
  gap: 6px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.filter-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.filter-btn:hover {
  color: var(--navy-dark);
}

.filter-btn.active {
  background: var(--navy-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(11, 31, 58, 0.3);
}

/* Service Card Design */
.service-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.12);
  border-color: rgba(11, 31, 58, 0.2);
}

/* Card Image Header with Hover Zoom */
.card-image-wrapper {
  position: relative;
  /* height: 180px; */
  min-height: 100px;    
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .card-img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.1) 0%, rgba(11, 31, 58, 0.7) 100%);
}

.card-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Floating Icon */
.card-content {
  padding: 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-icon-floating {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--navy-dark);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: absolute;
  top: -26px;
  left: 26px;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.25);
  transition: all 0.3s ease;
}

.service-card:hover .card-icon-floating {
  background: var(--accent-orange);
  transform: scale(1.1);
}

/* Typography & Content */
.card-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-top: 10px;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Tech Tags */
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
  margin-top: auto;
}

.tag {
  font-size: 0.725rem;
  font-weight: 600;
  color: #475569;
  background-color: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* CTA Arrow Link */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

.icon-arrow {
  transition: transform 0.25s ease;
}

.service-card:hover .card-link {
  color: var(--accent-orange);
}

.service-card:hover .icon-arrow {
  transform: translateX(6px);
}

/* Filtering Animations */
.service-item {
  transition: all 0.4s ease;
}

.service-item.hide-item {
  display: none !important;
}



































.services-section{
    background:#fff;
}

.service-main-title{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#0B1F3A;
    margin:20px 0;
}

.service-main-text{
    font-size:17px;
    line-height:32px;
    color:#64748B;
    max-width:500px;
}

.service-list{
    border-top:1px solid #E2E8F0;
}

.service-row{
    display:flex;
    gap:30px;
    padding:28px 0;
    border-bottom:1px solid #E2E8F0;
    transition:.4s;
    cursor:pointer;
}

.service-row span{
    min-width:70px;
    font-size:38px;
    font-weight:800;
    color:#FF6B00;
    opacity:.4;
    transition:.4s;
}

.service-row h4{
    font-size:24px;
    font-weight:700;
    color:#0B1F3A;
    margin-bottom:8px;
    transition:.4s;
}

.service-row p{
    margin:0;
    color:#64748B;
}

.service-row:hover{
    padding-left:20px;
}

.service-row:hover span{
    opacity:1;
}

.service-row:hover h4{
    color:#FF6B00;
}

@media(max-width:991px){

    .service-main-title{
        font-size:38px;
        margin-bottom:25px;
    }

    .service-row{
        gap:15px;
    }

    .service-row span{
        font-size:28px;
        min-width:50px;
    }

    .service-row h4{
        font-size:20px;
    }

}







/* Devicons & SVG styling inside badges */
.tech-glow-badge i {
  font-size: 1.1rem;
  vertical-align: middle;
}

.tech-icon-svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* Jab hover ho toh icon par slight zoom effect */
.tech-glow-badge:hover i {
  transform: scale(1.15);
  transition: transform 0.2s ease;
}










/* .service-row {
  border-left: 3px solid transparent;
  padding-left: 15px;
  transition: all 0.3s ease;
}

.service-row:hover {
  border-left-color: #FF6B00; 
  background: rgba(255, 107, 0, 0.02); 
  padding-left: 25px;
} */




/* Paragraph text wrapping control */
.hero-text {
  max-width: 520px; /* Text apne aap exact reference image ki tarah wrapped lines mein aayega */
  font-size: 1rem;
  line-height: 1.6;
  color: #a0aec0;
}


.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem); /* Mobile par chota, desktop par 50px auto-scale hoga */
  font-weight: 700;
  line-height: 1.15;
}

.text-orange {
  color: #ff6b00;
}


.hero-subtitle {
  color: #ff6b00;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}


/* Subtitle Tagline Above Heading */
.hero-subtitle {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Fluid Heading Typography */
.hero-title {
    /* font-size: clamp(2rem, 3.5vw, 3.2rem); */
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-accent {
    color: var(--accent);
}

.text-white {
    color: #ffffff;
}

/* Responsive Paragraph Sizing & Wrapping */
.hero-text {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px; /* Reference design jaisi exact line wrapping ke liye */
    margin-bottom: 30px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-text {
        max-width: 100%; /* Mobile par full width flexibility */
        font-size: 0.95rem;
    }
}
























/* Color Palette */
:root {
    --primary-orange: #FF5A00;
    --dark-navy: #0B1F3A;
    --text-dark: #1E293B;
    --text-muted: #64748B;
}

.text-orange {
    color: var(--primary-orange) !important;
}

/* About Section Setup */
.about-section {
    background-color: #F8FAFC;
}

/* Left Image Styling */
.about-img-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: 24px;
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Floating Orange Experience Badge */
.exp-badge {
    bottom: 20px;
    right: 20px;
    width: 170px;
    height: 190px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(255, 90, 0, 0.35);
    border: 3px solid #ffffff;
    padding: 15px;
}

.exp-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-top: 5px;
}

.exp-line {
    width: 35px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
}

/* Subtitle Styling */
.about-subtitle {
    color: var(--primary-orange);
    font-size: 13px;
    letter-spacing: 1.5px;
}

.sub-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-orange);
}

/* Title & Paragraphs */
.about-title {
    color: var(--dark-navy);
    font-size: 38px;
    line-height: 1.2;
}

.about-desc {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.65;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-navy);
}

/* Dark Button */
.btn-dark-custom {
    background-color: var(--dark-navy);
    color: #ffffff;
    border-radius: 10px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-dark-custom:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Bottom Stats Card */
.stats-card-wrapper {
    border: 1px solid #E2E8F0;
}

.stat-number {
    color: var(--dark-navy);
    font-size: 28px;
}

.stat-title {
    font-size: 14px;
}

.stat-desc {
    font-size: 12px;
    line-height: 1.3;
}

/* Responsive Rules for Mobile */
@media (max-width: 767px) {
    .about-main-img {
        height: 320px;
    }

    .exp-badge {
        width: 130px;
        height: 140px;
        right: 10px;
        bottom: 10px;
    }

    .exp-number {
        font-size: 30px;
    }

    .exp-text {
        font-size: 11px;
    }

    .about-title {
        font-size: 28px;
    }

    .border-end-md {
        border-right: none !important;
    }
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #E2E8F0;
    }
}



:root {
  --primary-orange: #FF5A00;
  --dark-navy: #0B1F3A;
  --light-bg: #F8FAFC;
  --text-muted-custom: #64748B;
}

.services-section {
  background-color: var(--light-bg);
  font-family: 'Inter', sans-serif;
}

.text-orange {
  color: var(--primary-orange) !important;
}

.text-navy {
  color: var(--dark-navy) !important;
}

/* Subtitle Lines */
.section-subtitle {
  color: var(--primary-orange);
  font-size: 13px;
  letter-spacing: 1.5px;
}

.sub-line {
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: var(--primary-orange);
}

.heading-line {
  width: 50px;
  height: 3px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.section-title {
  color: var(--dark-navy);
  font-size: 36px;
  line-height: 1.25;
}

/* Checklist Styling */
.checklist-item {
  background-color: #FFFFFF;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
  border: 1px solid #F1F5F9;
}

.fs-7 {
  font-size: 13px;
}

/* Navy Button */
.btn-navy {
  background-color: var(--dark-navy);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
}

.btn-navy:hover {
  background-color: var(--primary-orange);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Images & Orange Floating Badge */
.main-img-container {
  min-height: 420px;
}

.orange-badge {
  background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%);
  max-width: 280px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.side-img-box {
  height: 130px;
}

/* Bottom Service Cards */
.service-card {
  transition: all 0.3s ease;
  border: 1px solid #F1F5F9 !important;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .section-title {
    font-size: 28px;
  }
  
  .main-img-container {
    min-height: 300px;
  }
  
  .side-img-box {
    height: 180px;
  }
  
  .orange-badge {
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 12px !important;
  }
}


















.solutions-section{
    background:#f8fafc;
}

.solutions-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
}

.solutions-col{
    display:flex;
    flex-direction:column;
    gap:25px;
    flex:1;
    min-width:320px;
}

.solution-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.solution-card:hover{
    transform:translateY(-8px);
}

.solution-card i{
    font-size:40px;
    color:#FF6B00;
}

.solution-card h5{
    font-weight:700;
    margin-bottom:8px;
}

.solution-card p{
    margin:0;
    color:#666;
}

.center-circle{
    text-align:center;
    position:relative;
}

.circle-box{
    width:320px;
    height:320px;
    border-radius:50%;
    background:linear-gradient(135deg,#071B36,#0B2C58);
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.circle-box img{
    width:180px;
}

.center-tag{
    margin-top:20px;
    background:#fff;
    display:inline-block;
    padding:15px 35px;
    border-radius:15px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
































/* Custom CSS Variables & Exact Styles */
:root {
    --primary-navy: #002b49;
    --brand-blue: #004b87;
    --brand-orange: #ff5e00;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Base Headings & Badges */
.subtitle-badge {
    display: inline-block;
    position: relative;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--brand-orange);
    margin-bottom: 0.5rem;
}
.subtitle-badge::before,
.subtitle-badge::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 1.5px;
    background-color: var(--brand-orange);
    vertical-align: middle;
    margin: 0 8px;
}

.main-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem auto;
    font-size: 0.925rem;
    line-height: 1.5;
}

.section-solutions, .section-industries, .section-process {
    padding: 4rem 1rem;
}

/* ================= SECTION 1: SOLUTIONS DIAGRAM ================= */
.solutions-diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.diagram-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

/* Solution Cards */
.solution-card {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--card-shadow);
    border: 1px solid #f1f5f9;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.08);
}

.card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #f0f6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-blue);
}

.card-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.card-content p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Card Connector Dots */
.card-connector {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--brand-orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.card-connector.right { right: -4px; }
.card-connector.left { left: -4px; }

/* Central Hub Circle */
.center-col {
    flex: 0 0 280px;
    align-items: center;
    justify-content: center;
}

.central-logo-wrapper {
    position: relative;
    width: 260px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connecting-lines-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.svg-ring-dashed {
    fill: none;
    stroke: #cbd5e1;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
}

.svg-ring-solid {
    fill: none;
    stroke: var(--brand-blue);
    stroke-width: 2;
}

.svg-node {
    fill: var(--brand-blue);
}

.logo-inner-circle {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, #001f3f 0%, #000c1a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
    border: 3px solid #ffffff;
}

.logo-symbol {
    font-size: 2.2rem;
    color: #00d2ff;
    line-height: 1;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin: 4px 0 0 0;
    color: #ffffff;
}

.logo-subtext {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: #38bdf8;
}

.tag-badge {
    position: absolute;
    bottom: -10px;
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-navy);
    box-shadow: var(--card-shadow);
    border: 1px solid #e2e8f0;
    z-index: 3;
}


/* ================= SECTION 2: INDUSTRIES ================= */
.bg-dark-banner {
    background: linear-gradient(180deg, #021526 0%, #03203c 100%);
}

.industry-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-img {
    transform: scale(1.08);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 21, 38, 0.92) 0%, rgba(2, 21, 38, 0.2) 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 0.5rem;
    color: #ffffff;
}

.industry-overlay i {
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.industry-overlay span {
    font-size: 0.825rem;
    font-weight: 700;
    text-align: center;
}


/* ================= SECTION 3: PROVEN PROCESS ================= */
.process-timeline-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 3.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* Horizontal Dashed Line */
.process-timeline-wrapper::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    border-top: 2px dashed #cbd5e1;
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}

.step-num-badge {
    width: 48px;
    height: 48px;
    background: var(--primary-navy);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 0 0 6px #ffffff, 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 1.5rem;
}

/* Small Orange Dot under step badge */
.step-num-badge::after {
    content: "";
    position: absolute;
    bottom: -12px;
    width: 6px;
    height: 6px;
    background: var(--brand-orange);
    border-radius: 50%;
}

.step-icon-box {
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.35rem;
}

.step-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.35;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .solutions-diagram-container {
        flex-direction: column;
    }
    .diagram-col {
        width: 100%;
    }
    .process-timeline-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
    }
    .process-timeline-wrapper::before {
        display: none;
    }
    .process-step {
        flex: 1 0 40%;
    }
}

































   
        /* SECTION SUBTITLES & TITLES */
        .section-subtitle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .section-subtitle .text {
            font-size: 13px;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: 1.5px;
        }

        .section-subtitle .line {
            height: 2px;
            width: 28px;
            background-color: var(--orange);
        }

        .section-title {
            text-align: center;
            font-size: 32px;
            font-weight: 800;
            color: var(--navy-dark);
            margin-bottom: 12px;
        }

        .section-title.light {
            color: #ffffff;
        }

        .section-desc {
            text-align: center;
            font-size: 14px;
            color: var(--text-muted);
            max-width: 650px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
        }



        /*=============================
 SERVICES PORTFOLIO SECTION
=============================*/

        .solutions-section {
            padding: 100px 0;
            background: #f8fafc;
            overflow: hidden;
        }

        .solution-desc {
            max-width: 700px;
            margin: auto;
            color: #6b7280;
            font-size: 16px;
            line-height: 1.8;
        }

        .portfolio-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            position: relative;
        }

        .portfolio-left,
        .portfolio-right {
            width: 32%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .solution-card {
            background: #fff;
            border-radius: 18px;
            padding: 25px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
            transition: .4s;
            min-height: 140px;
        }

        .solution-card:hover {
            transform: translateY(-8px);
        }

        .solution-icon {
            min-width: 70px;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .solution-icon i {
            font-size: 32px;
            color: #FF6B00;
        }

        .solution-card h5 {
            font-size: 20px;
            font-weight: 700;
            color: #0B1F3A;
            margin-bottom: 10px;
        }

        .solution-card p {
            font-size: 15px;
            line-height: 1.7;
            color: #667085;
            margin: 0;
        }

        /* CENTER */

        .portfolio-center {
            width: 30%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .center-circle {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: linear-gradient(145deg, #0B1F3A, #17365D);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 0 0 12px #fff,
                0 0 0 14px #d9dee7,
                0 20px 50px rgba(0, 0, 0, .18);
        }

        .center-circle img {
            width: 220px;
        }

        .center-tag {
            margin-top: 25px;
            background: #fff;
            padding: 14px 35px;
            border-radius: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #0B1F3A;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        }

        /* CONNECTOR LINES */

        .portfolio-wrapper::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 600px;
            height: 2px;
            background: #d9dee7;
            z-index: 0;
        }

        /* MOBILE */

        @media(max-width:991px) {

            .portfolio-wrapper {
                flex-direction: column;
            }

            .portfolio-left,
            .portfolio-right,
            .portfolio-center {
                width: 100%;
            }

            .center-circle {
                width: 260px;
                height: 260px;
            }

            .center-circle img {
                width: 180px;
            }

            .portfolio-wrapper::before {
                display: none;
            }

        }

        @media(max-width:576px) {

            .solution-card {
                padding: 18px;
            }

            .solution-icon {
                width: 55px;
                height: 55px;
                min-width: 55px;
            }

            .solution-icon i {
                font-size: 24px;
            }

            .solution-card h5 {
                font-size: 17px;
            }

            .center-circle {
                width: 220px;
                height: 220px;
            }

            .center-circle img {
                width: 150px;
            }

            .center-tag {
                font-size: 13px;
                padding: 12px 20px;
            }

        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
         
        :root {
            --navy-dark: #07152b;
            --navy-main: #0a1e3f;
            --navy-light: #002855;
            --orange: #f26522;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --card-bg: #ffffff;
            --border-radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #ffffff;
            color: var(--text-dark);
        }


        /* ================= SECTION 3: PROCESS ================= */
        .process-section {
            padding: 70px 0;
            background-color: #ffffff;
        }

        .process-flow {
            position: relative;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            margin-top: 50px;
        }

        .process-line {
            position: absolute;
            top: 24px;
            left: 8%;
            right: 8%;
            height: 2px;
            border-top: 2px dashed #cbd5e1;
            z-index: 1;
        }

        .process-step {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .step-number-wrapper {
            position: relative;
            margin-bottom: 25px;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background-color: var(--navy-dark);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            border: 4px solid #ffffff;
            box-shadow: 0 0 0 1px #cbd5e1;
        }

        .step-dot {
            position: absolute;
            bottom: -4px;
            right: -2px;
            width: 10px;
            height: 10px;
            background-color: var(--orange);
            border-radius: 50%;
            border: 2px solid #ffffff;
        }

        .step-icon {
            font-size: 28px;
            color: var(--navy-dark);
            margin-bottom: 12px;
        }

        .process-step h3 {
            font-size: 14px;
            font-weight: 700;
            color: var(--navy-dark);
            margin-bottom: 6px;
        }

        .process-step p {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.4;
            padding: 0 4px;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .industries-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .process-flow {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }

            .process-line {
                display: none;
            }

            .hub-container {
                flex-direction: column;
                gap: 30px;
            }

            .connecting-lines {
                display: none;
            }
        }

        @media (max-width: 600px) {
            .industries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-flow {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
    
    
        /* ==========================================================================
   EXACT REPLICA STYLESHEET
   ========================================================================== */

        :root {
            --navy-dark: #031b33;
            --navy-main: #0a2540;
            --blue-accent: #0284c7;
            --orange-primary: #ff5e00;
            --gray-bg: #f8fafc;
            --card-border: #e2e8f0;
            --text-dark: #0f172a;
            --text-muted: #64748b;
        }

        body {
            background-color: #f1f5f9;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-dark);
        }

        .infographic-section {
            background: #ffffff;
            max-width: 1320px;
            margin: 2rem auto;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
            border-radius: 16px;
            overflow: hidden;
        }

        /* SECTION HEADINGS & BADGES */
        .badge-subtitle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 0.5rem;
        }

        .badge-subtitle .text {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 2px;
            color: var(--orange-primary);
        }

        .badge-subtitle .line {
            width: 24px;
            height: 2px;
            background-color: var(--orange-primary);
        }

        .main-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--navy-dark);
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }

        .subtitle-text {
            color: var(--text-muted);
            font-size: 0.925rem;
            line-height: 1.5;
            margin-bottom: 3.5rem;
        }

        /* ================= 1. PORTFOLIO DIAGRAM ================= */
        .portfolio-block {
            padding: 4rem 2rem;
            background: #ffffff;
        }

        .diagram-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .diagram-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Solution Cards */
        .card-item {
            position: relative;
            background: #ffffff;
            border-radius: 12px;
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.25rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #edf2f7;
            text-align: left;
            transition: all 0.25s ease;
        }

        .card-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .card-icon-wrapper {
            width: 52px;
            height: 52px;
            min-width: 52px;
            background: #f0f7ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .custom-svg-icon {
            width: 36px;
            height: 36px;
        }

        .card-body-text h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--navy-dark);
            margin: 0 0 0.3rem 0;
        }

        .card-body-text p {
            font-size: 0.78rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.4;
        }

        /* Orange Connector Dots on Cards */
        .connector-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: var(--orange-primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .right-dot {
            right: -4px;
        }

        .left-dot {
            left: -4px;
        }

        /* Diagram Center Hub */
        .diagram-center {
            position: relative;
            width: 320px;
            height: 320px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .center-lines-svg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .ring-dashed {
            fill: none;
            stroke: #cbd5e1;
            stroke-width: 1.5;
            stroke-dasharray: 4 4;
        }

        .ring-solid {
            fill: none;
            stroke: #1e3a8a;
            stroke-width: 2.5;
        }

        .branch-line {
            stroke: #cbd5e1;
            stroke-width: 1.5;
        }

        .node-dot {
            fill: #1e3a8a;
        }

        /* Central Hub Sphere */
        .hub-circle {
            width: 210px;
            height: 210px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #003366 0%, #000b18 100%);
            border: 3px solid #ffffff;
            box-shadow: 0 10px 30px rgba(2, 21, 38, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }


        .hub-logo img {
            width: 180px;
        }

        .hub-logo {
            text-align: center;
            color: #ffffff;
        }

        .logo-graphic {
            width: 50px;
            height: 30px;
            margin-bottom: 2px;
        }

        .logo-name {
            font-size: 1.15rem;
            font-weight: 900;
            letter-spacing: 2px;
            margin: 0;
            color: #ffffff;
        }

        .logo-sub {
            font-size: 0.55rem;
            letter-spacing: 2.5px;
            color: #00d2ff;
            display: block;
            margin-top: 2px;
        }

        /* Floating Bottom Tag */
        .hub-bottom-tag {
            position: absolute;
            bottom: 5px;
            background: #ffffff;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--navy-dark);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ================= 2. INDUSTRIES BANNER ================= */
        .industries-banner {
            background: linear-gradient(180deg, #021222 0%, #042240 100%);
            padding: 3.5rem 2rem;
        }

        .industry-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            margin-top: 2.5rem;
        }

        .industry-tile {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 190px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .industry-tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .industry-tile:hover img {
            transform: scale(1.08);
        }

        .tile-caption {
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(2, 18, 34, 0.95) 0%, rgba(2, 18, 34, 0.1) 65%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 1rem 0.5rem;
            color: #ffffff;
        }

        .tile-caption i {
            font-size: 1.35rem;
            margin-bottom: 0.4rem;
        }

        .tile-caption span {
            font-size: 0.825rem;
            font-weight: 700;
        }

        /* ================= 3. OUR PROVEN PROCESS ================= */
        .process-block {
            padding: 4rem 2rem;
            background: #ffffff;
        }

        .timeline-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-top: 3.5rem;
            max-width: 1150px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Dashed Timeline Bar */
        .connecting-dashed-line {
            position: absolute;
            top: 24px;
            left: 50px;
            right: 50px;
            height: 2px;
            border-top: 2px dashed #cbd5e1;
            z-index: 1;
        }

        .step-card {
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 0.5rem;
        }

        .step-number-circle {
            width: 48px;
            height: 48px;
            background: var(--navy-dark);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 0.95rem;
            box-shadow: 0 0 0 6px #ffffff, 0 4px 10px rgba(0, 0, 0, 0.08);
            position: relative;
            margin-bottom: 1.5rem;
        }

        .orange-dot {
            position: absolute;
            bottom: -10px;
            width: 6px;
            height: 6px;
            background: var(--orange-primary);
            border-radius: 50%;
        }

        .step-icon {
            margin-bottom: 0.75rem;
            height: 48px;
            display: flex;
            align-items: center;
        }

        .step-heading {
            font-size: 0.9rem;
            font-weight: 800;
            color: var(--navy-dark);
            margin-bottom: 0.35rem;
        }

        .step-text {
            font-size: 0.75rem;
            color: var(--text-muted);
            line-height: 1.35;
            margin: 0;
        }

        /* RESPONSIVE LAYOUT BREAKPOINTS */
        @media (max-width: 992px) {
            .diagram-wrapper {
                flex-direction: column;
            }

            .diagram-side {
                width: 100%;
            }

            .industry-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .timeline-container {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .connecting-dashed-line {
                display: none;
            }

            .step-card {
                flex: 1 0 30%;
            }
        }

        @media (max-width: 576px) {
            .industry-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .step-card {
                flex: 1 0 100%;
            }
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        .solutions-section {
            padding: 100px 0;
            background: #f8fafc;
        }

        .solution-desc {
            max-width: 700px;
            margin: auto;
            color: #64748b;
        }

        .solutions-layout {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            position: relative;
        }

        .solutions-column {
            width: 32%;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .service-box {
            background: #fff;
            border-radius: 18px;
            padding: 25px;
            display: flex;
            align-items: flex-start;
            gap: 18px;
            min-height: 140px;
            box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
            transition: .4s;
        }

        .service-box:hover {
            transform: translateY(-8px);
        }

        .service-icon {
            width: 65px;
            height: 65px;
            min-width: 65px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon i {
            font-size: 28px;
            color: #FF6B00;
        }

        .service-box h5 {
            font-weight: 700;
            color: #0B1F3A;
            margin-bottom: 10px;
        }

        .service-box p {
            color: #667085;
            margin: 0;
            line-height: 1.7;
        }

        .center-hub {
            width: 30%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .main-circle {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: linear-gradient(145deg, #071B36, #17365D);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow:
                0 0 0 12px #fff,
                0 0 0 15px #dbe3ee,
                0 25px 50px rgba(0, 0, 0, .15);
        }

        .main-circle img {
            width: 220px;
        }

        .hub-tag {
            margin-top: 25px;
            background: #fff;
            padding: 14px 35px;
            border-radius: 14px;
            font-weight: 700;
            color: #0B1F3A;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
        }

        @media(max-width:991px) {

            .solutions-layout {
                flex-direction: column;
            }

            .solutions-column {
                width: 100%;
            }

            .center-hub {
                width: 100%;
                margin: 30px 0;
            }

            .main-circle {
                width: 260px;
                height: 260px;
            }

            .main-circle img {
                width: 170px;
            }
        }

        @media(max-width:576px) {

            .main-circle {
                width: 220px;
                height: 220px;
            }

            .main-circle img {
                width: 140px;
            }

            .service-box {
                padding: 20px;
            }
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
    
        .tech-card {
            /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
            box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        }

        .tech-card:hover {
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

            /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
            /* border: 2px solid red; */
            /* box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px; */
        }

        /* Card Outer Box */
        .tech-section-wrapper {
            padding: 40px 20px;
            display: flex;
            justify-content: center;
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Roboto, sans-serif;
        }

        .tech-card {
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e9ecef;
            padding: 40px 30px;
            width: 100%;
            max-width: 1100px;
            text-align: center;
        }

        .tech-title {
            font-size: 32px;
            font-weight: 700;
            color: #111111;
            margin-bottom: 40px;
        }

        /* Tab Header Navigation */
        .tech-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
            border-bottom: 1px solid #e2e8f0;
        }

        .tab-item {
            font-size: 18px;
            font-weight: 500;
            color: #222222;
            cursor: pointer;
            padding-bottom: 15px;
            position: relative;
            transition: color 0.2s ease;
        }

        .tab-item:hover {
            color: #0b5ed7;
        }

        /* Active Tab Blue Line Indicator (Exact as screenshot) */
        .tab-item.active {
            color: #0056b3;
            font-weight: 600;
        }

        .tab-item.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: -10px;
            right: -10px;
            height: 3px;
            background-color: #0056b3;
            border-radius: 2px;
        }

        /* Tab Content Display Logic */
        .tech-tab-content {
            display: none;
            padding-top: 40px;
        }

        .tech-tab-content.active {
            display: block;
        }

        /* Horizontal Grid Layout for Icons */
        .tech-grid {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            flex-wrap: wrap;
            gap: 40px 50px;
        }

        .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 110px;
            padding: 10px;
        }

        .tech-item img {
            max-width: 60px;
            max-height: 60px;
            height: auto;
            margin-bottom: 15px;
            object-fit: contain;
        }

        .tech-item span {
            font-size: 14px;
            font-weight: 600;
            color: #222222;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .tech-tabs {
                gap: 15px;
            }

            .tab-item {
                font-size: 15px;
            }

            .tech-grid {
                gap: 25px 20px;
            }
        }


        .tech-item:hover {
            background: #ffffff;
            /* background:red; */
            /* padding: 10px; */
            box-shadow: 0 2px 5px 0 rgb(17 121 239 / 15%);
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* ====================================================
   SERVICES SECTION V2 - MODERN GRID
==================================================== */
        .services-section {
            background: #F8FAFC;
            padding: 80px 0;
        }

        .sub-title-badge {
            color: #FF7A00;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: inline-block;
        }

        .section-title {
            font-size: 2.3rem;
            font-weight: 800;
            color: #0F172A;
            margin-bottom: 12px;
        }

        .section-description {
            color: #64748B;
            max-width: 650px;
            margin: 0 auto;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Service Card Style */
        .service-card-v2 {
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 18px;
            padding: 32px 24px;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
        }

        .service-card-v2:hover {
            transform: translateY(-6px);
            border-color: rgba(255, 122, 0, 0.4);
            box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.08);
        }

        /* Featured Card Accent */
        .service-card-v2.featured-card {
            border-top: 4px solid #FF7A00;
        }

        /* Icon Styling */
        .service-card-v2 .icon-box {
            width: 54px;
            height: 54px;
            background: rgba(255, 122, 0, 0.08);
            color: #FF7A00;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card-v2:hover .icon-box {
            background: #FF7A00;
            color: #FFFFFF;
        }

        .service-card-v2 h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 10px;
        }

        .service-card-v2 p {
            color: #64748B;
            font-size: 0.92rem;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 20px;
        }

        /* Pill Tags at Bottom */
        .tech-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tech-tags span {
            background: #F1F5F9;
            color: #475569;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
    
        .industries-section {
            background: #081C3A;
            /* Dark blue background like Avalon site */
            padding: 80px 0;
        }

        .industry-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .industry-card {
            position: relative;
            height: 380px;
            border-radius: 20px;
            /* Rounded corners as seen in screenshot */
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .industry-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
        }

        /* Background Image Styling */
        .industry-card-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }

        .industry-card:hover .industry-card-bg {
            transform: scale(1.06);
        }

        /* Dark Gradient Overlay for Text Visibility */
        .industry-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.45) 0%,
                    rgba(0, 0, 0, 0.2) 40%,
                    rgba(0, 0, 0, 0.85) 100%);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            /* Top title, bottom paragraph */
            color: #ffffff;
            transition: background 0.3s ease;
        }

        .industry-card:hover .industry-card-overlay {
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.55) 0%,
                    rgba(0, 0, 0, 0.3) 40%,
                    rgba(0, 0, 0, 0.95) 100%);
        }

        /* Card Heading (Top Aligned) */
        .industry-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
            line-height: 1.25;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        /* Card Description (Bottom Aligned) */
        .industry-card-desc {
            font-size: 13.5px;
            line-height: 1.55;
            color: #e0e6ed;
            margin: 0;
            font-weight: 300;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
    
        /* 3D Flip Card Container */
        .flip-card-container {
            background-color: transparent;
            width: 100%;
            aspect-ratio: 1 / 1;
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: left;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            border-radius: 16px;
        }

        .flip-card-container:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front,
        .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }


        .flip-card-front {
            background-color: #0f2027;
        }

        .flip-card-front .card-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
        }

        .flip-card-front .front-content {
            position: absolute;
            bottom: 0;
            left: 0;
            padding: 24px;
            background: linear-gradient(to top, rgba(15, 32, 39, 0.95), transparent);
            width: 100%;
        }


        .flip-card-back {
            background: #111827;
            color: white;
            transform: rotateY(180deg);
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border: 1px solid #ff6b00;
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
    
        .glass-curtain-card {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            /* Fixed Square */
            border-radius: 18px;
            overflow: hidden;
            background-color: #0f2027;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            cursor: pointer;
        }

        .glass-curtain-card .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .glass-curtain-card:hover .card-img {
            transform: scale(1.1);
        }

        .glass-curtain-card .card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(255, 107, 0, 0.9);
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            z-index: 2;
        }

        /* Default Front Glass Title Bar */
        .glass-curtain-card .glass-title-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 24px;
            background: rgba(15, 32, 39, 0.75);
            backdrop-filter: blur(8px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .glass-curtain-card:hover .glass-title-bar {
            opacity: 0;
        }

        .glass-title-bar .card-icon-floating {
            width: 40px;
            height: 40px;
            background: #ff6b00;
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .glass-title-bar .card-heading {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }

        /* Curtain Reveal Overlay */
        .glass-curtain-card .curtain-overlay {
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.94);
            backdrop-filter: blur(12px);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 3;
            clip-path: circle(0% at 100% 100%);
            transition: clip-path 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-curtain-card:hover .curtain-overlay {
            clip-path: circle(141.4% at 100% 100%);
        }

        .curtain-overlay .overlay-heading {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .curtain-overlay .card-desc {
            color: #cbd5e1;
            font-size: 0.85rem;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .curtain-overlay .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 18px;
        }

        .curtain-overlay .tag {
            background: rgba(255, 255, 255, 0.1);
            color: #ffaa66;
            font-size: 0.72rem;
            font-weight: 600;
            padding: 3px 8px;
            border-radius: 4px;
        }

        .curtain-overlay .card-link {
            color: #ff6b00;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
    
        
        
        
        
        
        
        
        
        

        .cyber-card {
            position: relative;
            width: 100%;
            aspect-ratio: 1 / 1;
            /* Fixed Square */
            border-radius: 18px;
            overflow: hidden;
            background: #0b0f19;
            border: 1px solid rgba(255, 107, 0, 0.2);
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
        }

        .cyber-card .card-bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.7;
            transition: opacity 0.4s ease, transform 0.5s ease;
        }

        .cyber-card:hover {
            border-color: #ff6b00;
            box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
        }

        .cyber-card:hover .card-bg-img {
            opacity: 0.3;
            transform: scale(1.08);
        }

        .cyber-card .card-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(15, 23, 42, 0.85);
            border: 1px solid rgba(255, 107, 0, 0.4);
            color: #ff6b00;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 20px;
            z-index: 2;
        }

        .cyber-card .cyber-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 24px;
            background: linear-gradient(to top, rgba(11, 15, 25, 0.98) 50%, rgba(11, 15, 25, 0.2));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            z-index: 2;
        }

        .cyber-card .card-icon-floating {
            width: 42px;
            height: 42px;
            background: #ff6b00;
            color: #fff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .cyber-card .card-heading {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0;
        }

        /* Expandable Drawer Effect */
        .cyber-card .card-desc-hidden {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
        }

        .cyber-card:hover .card-desc-hidden {
            max-height: 180px;
            opacity: 1;
            margin-top: 12px;
        }

        .cyber-card .card-desc {
            color: #94a3b8;
            font-size: 0.825rem;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .cyber-card .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 14px;
        }

        .cyber-card .tag {
            background: rgba(255, 107, 0, 0.15);
            color: #ffaa66;
            font-size: 0.7rem;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 4px;
        }

        .cyber-card .card-link {
            color: #ff6b00;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
    
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* Custom Variable Definitions */
        :root {
            --primary-navy: #0B192C;
            --accent-orange: #FF6B00;
            --accent-blue: #0075FF;
            --card-bg: #F8FAFC;
            --text-muted: #64748B;
            --border-light: #E2E8F0;
        }

        /* Base Styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .how-we-work-section {
            padding: 80px 20px;
            background-color: #FFFFFF;
        }

        .container {
            max-width: 1240px;
            margin: 0 auto;
        }

        /* Header Styling */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .badge-tag {
            display: inline-block;
            padding: 6px 18px;
            background-color: rgba(255, 107, 0, 0.08);
            color: var(--accent-orange);
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            border-radius: 50px;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 38px;
            font-weight: 800;
            color: var(--primary-navy);
            letter-spacing: -0.5px;
        }

        /* Process Card Container (d5 Style) */
        .process-card-wrapper {
            position: relative;
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: 24px;
            padding: 60px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        /* Horizontal Timeline Line */
        .timeline-line {
            position: absolute;
            top: 102px;
            /* Centered with step-number spheres */
            left: 8%;
            right: 8%;
            height: 2px;
            background: repeating-linear-gradient(90deg,
                    #CBD5E1 0,
                    #CBD5E1 6px,
                    transparent 6px,
                    transparent 12px);
            z-index: 1;
        }

        .timeline-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--accent-orange);
            transition: width 0.4s ease-in-out;
        }

        /* Process Grid */
        .process-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            z-index: 2;
        }

        /* Individual Step Item */
        .process-step {
            text-align: center;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-8px);
        }

        /* Number Circle */
        .step-number-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 25px;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background-color: var(--primary-navy);
            color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 4px 10px rgba(11, 25, 44, 0.2);
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number,
        .process-step.active .step-number {
            background-color: var(--accent-orange);
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
        }

        .step-dot {
            width: 6px;
            height: 6px;
            background-color: var(--accent-orange);
            border-radius: 50%;
            margin-top: 8px;
        }

        /* Icons */
        .step-icon {
            width: 42px;
            height: 42px;
            margin: 0 auto 16px auto;
            color: var(--primary-navy);
            transition: all 0.3s ease;
        }

        .step-icon svg {
            width: 100%;
            height: 100%;
        }

        .step-icon .accent-stroke {
            stroke: var(--accent-orange);
        }

        .process-step:hover .step-icon {
            color: var(--accent-blue);
            transform: scale(1.12);
        }

        /* Typography */
        .step-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-navy);
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Responsive Design for Mobile / Tablets */
        @media (max-width: 992px) {
            .process-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px 20px;
            }

            .timeline-line {
                display: none;
                /* Hide horizontal timeline line on tablet/mobile view */
            }
        }

        @media (max-width: 600px) {
            .process-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .process-card-wrapper {
                padding: 40px 20px;
            }

            .section-title {
                font-size: 28px;
            }
        }
    