:root {
    --blue-dark: #010f1f;
    --blue-mid: #06264c;
    --blue-gradient: linear-gradient(90deg, #010f1f 0%, #002d60 100%);
    --accent: #007bff;
    --white: #fff;
    --text: #f0f0f0;
    --font-main: "Open Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background: var(--blue-gradient);
    color: var(--text);
    font-family: "Open Sans", sans-serif;
    overflow-x: hidden;
    padding-top: 80px;
}

a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

/* Navbar */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 4rem;
    background: #01152b45;
    backdrop-filter: blur(8px);
}
.navbar.scrolled {
    background: #003865 !important;
}

.logo img {
    height: 48px;
}

.navbar-nav .nav-link {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 16px;
    margin-right: 1rem;
    font-family: 'Epilogue', sans-serif;
}

/* Button */
.connect-btn {
    display: flex;
    align-items: center;
    background: var(--accent);
    color: var(--white);
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    gap: 0.5rem;
}

.connect-btn img {
    width: 26px;
}
@media (max-width: 576px) {
    .navbar{
        padding-bottom: 0 !important;
        padding-top: 0 !important;
        background-color: #003865;
    }
}

/* Hero Section ----------------------------------*/
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: calc(100vh - 11vh);
    padding: 0rem 2rem 0rem;
}
@media (min-height: 576px) {
    .hero {
        max-height: none;
    }
}
@media (min-width: 992px) {
    .hero {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero .hero-content,
    .hero .hero-image-wrapper {
        flex: 1;
    }

    .hero .hero-content {
        padding-right: 2rem;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 992px) {
    .hero-content {
        text-align: left;
        padding: 0;
    }
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 0.5rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}

.hero h1 span {
    color: #2196f3;
}

.hero-description {
    margin-top: 2rem;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

/* CTA Button */
.cta-btn {
    margin-top: 2rem;
    background: var(--accent, #2196f3);
    color: #fff;
    padding: 0.9rem 1rem;
    width: 50px;
    height: 50px;
    font-size: 16px;
    border: none;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-btn:hover {
    transform: translateY(-2px);
}
.cta-btn img {
    width: 16px;
}

.button-content {
    margin-left: 0.7rem;
    margin-top: 1.75rem;
}

/* Responsive CTA layout */
@media (max-width: 767px) {
    .d-flex.flex-row.justify-content-start.mt-5 {
        flex-direction: column !important;
        align-items: center;
    }

    .button-content {
        margin-top: 1rem;
        margin-left: 0;
    }
}

/* Carousel Indicator */
.carousel-number-btn {
    cursor: pointer;
    font-size: 16px;
    color: white;
    transition: opacity 0.3s;
}

.carousel-number-btn:hover {
    opacity: 0.7;
}

.progress-bar {
    height: 4px;
    background-color: #ddd;
    width: 150px;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background-color: #007bff;
    animation: fillProgress 5s linear forwards;
}

@keyframes fillProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


/* Hero Image */
.hero-image-wrapper {
    text-align: center;
}

.hero-image {
    width: 90%;
    max-width: 600px;
    height: auto;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .hero-image {
        width: 80%;
        margin-top: 0;
    }
}
/*carousal*/
.carousel-indicator {
    position: absolute;
    bottom: 30px;
    left: 1%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: bold;
    z-index: 10;
}
@media (max-width: 576px) {
    .carousel-indicator{
        width: 30%;
        left: 15%;
        display: none;
    }
}

.carousel-btn {
    position: relative;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-btn .progress-bar-fill {
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: white;
    transition: width 0s;
}

.carousel-btn.active .progress-bar-fill {
    animation: fillBar 5s linear forwards;
}
.progress-bar {
    height: 4px;
    background-color: #ddd;
    width: 150px;
    overflow: hidden;
    border-radius: 2px;
}

.progress-bar-fill {
    height: 100%;
    width: 100%;
    background-color: #007bff;
    animation: fillProgress 5s linear forwards;
    animation-play-state: running;
}

@keyframes fillProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* section 1 end    ------------------------------------------------------------------------------------*/

/*    section 2 - why    -------------------------------------------*/
.why-section {
    background-color: #f6f9fc;
    color: #000;
}

.section-title {
    font-size: 2rem;
    font-weight: 590;
}

.section-title {
    position: relative;
}

.highlight {
    content: '';
    width: 20%;
    height: 24%;
    position: absolute;
    left: 39%;
    bottom: 38%;
    z-index: -1;
}
@media (min-width: 992px) {
    .highlight {
        background: url("assets/Line 28.png");
    }
}

.section-subtitle {
    font-size: 30px;
    font-weight: 510;
}
.section-subtitle-color{
    color: #1A6098;
}

.why-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.plus-icon {
    font-weight: bold;
    color: #007bff;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.circular-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
}

.circular-image {
    width: 100%;
    height: auto;
}
/*    section 2 - why Ends -------------------------------------------*/

/*      Section - 3 - how we work     */
@media (max-width: 576px) {
    .step-image-wrapper img {
        filter: unset!important;
    }
}
.how-we-work-section {
    background: linear-gradient(to bottom right, #f5faff, #e6f2ff);
    color: #000;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
}

.section-description {
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.step-card {
    background: #fff;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}
/* Base card style */
.step-card {
    transform: translateY(0);
    transition: transform 0.4s ease;
}

/* Image filter before animation */
.step-image-wrapper img {
    filter: grayscale(100%) brightness(0.8);
    transform: scale(1);
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Animation class added via JS */
.step-card.animate-step {
    transform: translateY(-5px);
}

.step-card.animate-step img {
    filter: none;
    transform: scale(1.05);
    transition: transform 3s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.6s ease;
    will-change: transform, filter;
}

.step-image-wrapper {
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
}

.step-text {
    font-size: 0.95rem;
    color: #666;
}
/*      Section - 3 - how we work Ends    */

/*      Section - 4 - what we do     */
.what-we-do-section{
    background: #ffffff;
    color: #000;
}
.accordion{
    padding-left: 3rem;
    padding-right: 3rem;
}
.accordion-body{
    text-align: justify;
    padding-left: 3.7rem;
    padding-right: 3.7rem;
    padding-top: 0;
    background-color: #E5F4FF !important;
}
.accordion-button{
    font-size: 1.25rem;
    font-weight: 500;
    background-color: #E5F4FF !important;
}
.accordion-button:not(.collapsed) {
    box-shadow: none;
}
@media (max-width: 576px) {
    .accordion-button{
        font-size: 16px;
    }
    .mobile-accordian-footer{
        flex-direction: column!important;
    }
    .mobile-accordian-footer p{
        font-size: 13px;
    }
    p img{
        margin-right: 2px;
    }
}
.icon-margin-3px{
    margin-top: -3px;
}
/*      Section - 4 - what we do Ends    */

/*      Section - 5 - Industries We Serve     */
@media (max-width: 576px) {
    .industry-left{
        display: none;
    }
    .industry-right{
        display: none;
    }
    .industry-desc{

    }
    .mobile-industry-item{
        padding: 1rem 2rem;
        width: 90%;
        margin: auto auto 1rem;
    }
    .mobile-industry-title{
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 5px;
    }
    .mobile-industry-desc{
        font-size: 0.9rem;
        margin-bottom: inherit;
    }
}
.industries-section {
    padding: 60px 0;
    background: linear-gradient(to right, #f9fbfc, #eef6fb);
}

.industries-heading {
    text-align: center;
    margin-bottom: 40px;
}

.industries-heading h2 {
    font-weight: 700;
}

.industries-heading p {
    font-size: 1.1rem;
}

.industry-wrapper {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.industry-left,
.industry-right {
    min-width: 28rem;
}
.industry-left{
    background: #00467f;
    opacity: 0.7;
    padding-left: 5rem;
}

.industry-left img {
    width: 40rem;
    height: 8rem;
    object-fit: cover;
    opacity: 0.85;
}

.industry-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #00477c;
    color: #fff;
    padding: 20px 30px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.4s ease;
    height: 8rem;
}
.industry-item-color{
    background-color: #013968;
}

.industry-item:hover {
    background-color: #caa568;
    color: #000;
}
.industry-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 20px solid #caa568;
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
.industry-item:hover::after {
    opacity: 1;
}

.industry-desc {
    position: absolute;
    top: 50%;
    right: -360px;
    transform: translateY(-50%);
    width: 358px;
    height: 8rem;
    background: #f4f4f4;
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    border-radius: 0 8px 8px 0;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1);
}

.industry-item:hover .industry-desc {
    opacity: 1;
    visibility: visible;
}

.industry-title {
    margin: auto;
    font-size: 1.4rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .industry-wrapper {
        flex-direction: column;
    }
    .industry-desc {
        display: none !important;
    }
}
/*      Section - 5 - Industries We Serve Ends   */

/*    Section - 6 - Let’s Build the Future of Your Business    */
.connect-section {
    background-color: #003865; /* fallback */
    background-image: url('assets/Background Map.webp');
    padding: 120px 20px;
    position: relative;
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background-image 0.6s ease-in-out;
}

.connect-section.lazy-loaded {
    background-image: url('assets/Background Map.webp');
}

.overlay-box {
    max-width: 80rem;
    height: 28rem;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.15);
    padding: inherit;
    border-radius: 100px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.connect-btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.connect-btn:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.arrow {
    margin-left: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    background: white;
    color: #007bff;
    border-radius: 25px;
    padding-left: 3px;
    padding-right: 3px;
}
@media (max-width: 576px) {
    .overlay-box{
        height: 31rem;
    }
    .connect-section{
        padding: 45px 20px;
    }
}
/*    Section - 6 - Let’s Build the Future of Your Business  Ends  */

/*      Section - 7 - Contact        */
@media (max-width: 576px) {
    .contact-cta {
        padding: 50px 20px!important;
        height: auto!important;
    }
    .left-text .arrow{
        display: none;
    }
}
.contact-cta {
    padding: 100px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    height: 75vh;
}

.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 30px;
}

.left-text {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: right;
    line-height: 1.3;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.left-text .arrow {
    color: #f9ae40;
    font-size: 1.5rem;
}

.main-heading h2 {
    font-size: 4rem;
    font-weight: 600;
    position: relative;
    margin: 0;
    color: #000;
}

.main-heading h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 5px;
    background: #f9ae40;
    border-radius: 3px;
}

.circle-btn a {
    background-color: #175d96;
    color: #fff;
    font-size: 1.8rem;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.circle-btn a:hover {
    transform: scale(1.1) rotate(15deg);
}
/* contact form in contact section */
.contact-form-wrapper {
    display: none;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s ease;
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
}

.contact-form-wrapper.visible {
    display: block;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.contact-form-wrapper.hidden {
    display: none;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    color: #175d96;
}

.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-wrapper .form-row {
    display: flex;
    gap: 10px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-form-wrapper textarea {
    resize: vertical;
}

.privacy-note {
    font-size: 0.85rem;
    color: #175d96;
    margin-top: 10px;
}

.contact-form-wrapper button {
    align-self: flex-start;
    padding: 10px 24px;
    background-color: #0c3c65;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form-wrapper button:hover {
    background-color: #0a2f4e;
}

/*      Section - 7 - Contact Ends     */

/*      Section - 8 - footer      */
@media (max-width: 576px) {
    .footer-column {
        flex: 1 1 80px!important;
    }
}
.footer {
    background-color: #003865;
    color: #ffffff;
    padding: 60px 30px 20px 30px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 10px;
}

.tagline {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 0.08rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #d8e9f0;
}

.footer-column .address {
    font-size: 0.95rem;
    color: #d8e9f0;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-column .phone {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
}

.mt-3 {
    margin-top: 30px;
}

.rotate-icon {
    transform: rotate(90deg);
    transition: transform 0.4s ease-in-out;
    color: #ffffff;
}
/*      Section - 8 - footer Ends     */


/*      Media queries   */
@media (max-width:576px){
    .hero-content{padding:1rem;text-align:center}
    .main-heading h1{font-size:2rem}
    .hero-subtitle{font-size:1rem}
    .hero-buttons{flex-direction:column;gap:10px}
    .contact-cta-inner,.industry-wrapper{flex-direction:column;align-items:center}
    .main-heading h2{font-size:2.2rem;text-align:center}
    .left-text{justify-content:center;text-align:center}
    .contact-form-wrapper{width:100%;margin-top:2rem}
    .footer-container{flex-direction:column;gap:2rem;text-align:center}
    .accordion,.accordion-body{padding:1rem!important}
    .industry-left{padding:1rem;text-align:center}
    .industry-left img{width:100%;height:auto}
    .industry-title{font-size:1.1rem}
}
@media (min-width:577px) and (max-width:768px){
    .main-heading h1{font-size:2.5rem}
    .main-heading h2{font-size:3rem}
    .hero-buttons{flex-direction:column;gap:12px}
    .accordion{padding:1.5rem}
    .accordion-body{padding:1.5rem}
    .industry-left img{width:100%;height:auto}
    .industry-title{font-size:1.2rem}
    .contact-cta-inner{flex-direction:column;text-align:center}
    .contact-form-wrapper{width:100%}
    .footer-container{flex-wrap:wrap;justify-content:center;gap:40px}
}
@media (min-width:769px) and (max-width:1199px){
    .main-heading h1{font-size:3rem}
    .main-heading h2{font-size:3.5rem}
    .accordion{padding:2rem}
    .accordion-body{padding:2.5rem}
    .industry-title{font-size:1.3rem}
    .industry-left img{width:100%;height:auto}
    .contact-form-wrapper{width:100%}
    .footer-container{gap:50px}
}
@media (min-width:1200px){
    .main-heading h1{font-size:4rem}
    .main-heading h2{font-size:4rem}
    .contact-cta-inner{gap:60px}
    .accordion{padding-left:3rem;padding-right:3rem}
    .accordion-body{padding-left:3.7rem;padding-right:3.7rem}
    .footer-container{gap:60px}
}


.copyrights{
    font-size: 14px;
    color: grey;
}
