/********** Template CSS **********/

:root{
    --bs-primary:#1e4fa0;
    --primary:#1e4fa0;
}

/* top header full width */
.top-header{
    background: linear-gradient(120deg,#020b18 0%, #06254a 45%, #041325 100%);
}

/* custom inner width */
.header-inner{
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* brand */
.brand-wrap{
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 340px;
}

.site-logo{
    height: 70px;
    width: auto;
    object-fit: contain;
}

.brand-title{
    font-size:2.8rem;
    font-weight:800;
    color:#fdfdfd;
    letter-spacing:0.02em;
    text-transform:uppercase;
    line-height:1.1;
    margin:0;
}

.brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.brand-tagline{
    font-size:0.9rem;
    font-weight:500;
    letter-spacing:0.2em;
    text-transform:uppercase;
    color:#f4c766;
    margin-top:0;
	text-align: center;
}

/* right info */
.header-info-wrap{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.header-info-box{
    display:flex;
    align-items:center;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:10px;
    padding:5px 10px;
    min-width:180px;
    backdrop-filter: blur(6px);
}

.header-icon{
    width:40px;
    height:40px;
    min-width:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.25);
    color:#FFFFFF;
    font-size:1.1rem;
    margin-right:14px;
}

.header-info-text span{
    display:block;
    font-size:0.8rem;
    color:#C7CDD3;
    margin-bottom:2px;
}

.header-info-text h6{
    margin:0;
    font-size:1rem;
    color:#FFFFFF;
    font-weight:600;
}

.site-logo{
    height:75px;
    width:auto;
    object-fit:contain;
    filter:none;
}

/* full width navbar */
/* NAVBAR WHITE THEME */
<style>
@media (max-width: 768px) {
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .top-header .header-info-wrap,
    .top-header .header-info-box,
    .top-header .email-box {
        display: none !important;
    }

    .top-header .header-inner,
    .top-header .brand-wrap {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .top-header .site-logo {
        height: 46px !important;
        max-width: 100% !important;
    }

    .top-header .brand-title {
        font-size: clamp(1.35rem, 7vw, 2rem) !important;
        line-height: 1.15 !important;
    }

    .top-header .brand-tagline {
        font-size: clamp(0.62rem, 2.8vw, 0.85rem) !important;
        letter-spacing: 0.08em !important;
    }

    .premium-navbar .nav-inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .premium-navbar .navbar {
        justify-content: center !important;
    }

    .premium-navbar .navbar-toggler {
        display: none !important;
    }

    .premium-navbar .navbar-collapse {
        display: block !important;
        width: 100% !important;
    }

    .premium-navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
    }
}
</style>

.premium-navbar{
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-inner{
    width: 100%;
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 42px;
}

/* keep menu left aligned */
.premium-navbar .navbar{
    width: 100%;
}

.premium-navbar .navbar-collapse{
    justify-content: flex-start;
}

.premium-navbar .navbar-nav{
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-navbar .nav-link{
    color:#0B2A4A !important;
    font-weight:600;
}

.premium-navbar .nav-link:hover{
    color:#081F3F !important;
}

.premium-navbar .nav-link.active{
    color:#0B2A4A !important;
}

.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-link.active::after{
    width: calc(100% - 28px);
}

/* Navbar Links */
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 6px;
    transition: all 0.3s ease;
}

/* Underline base (hidden by default) */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #00c6ff); /* Change to your theme color */
    transition: width 0.3s ease;
}

/* Hover Effect */
.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Active Page Underline */
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Optional: Make active link slightly bold */
.navbar-nav .nav-link.active {
    font-weight: 600;
}

//*** Header Carousel ***/
#header-carousel {
    position: relative;
}

#header-carousel .carousel-item {
    position: relative;
    min-height: 720px;
}

#header-carousel .carousel-item img {
    width: 100%;
    height: 720px;
    object-fit: cover;
}

/* Premium overlay for readability, but keep image visible */
#header-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(0,0,0,0.15), transparent 55%),
                linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.10));
    z-index: 1;
}

#header-carousel .carousel-caption {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0 8%;
    background: transparent;
    opacity: 1; /* ensure full visibility */
}



/* Hero text block */
.hero-content-box {
    max-width: 780px;
    background: rgba(3, 12, 28, 0.55);
    padding: 32px 44px;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.10);
}

.hero-tagline {
    color: #e5edf8;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
}

.hero-main-title {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-shadow: 0 8px 26px rgba(0,0,0,0.55);
    margin-bottom: 0.25rem;
}

.hero-sub-title {
    color: #f4c766;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 6px 18px rgba(0,0,0,0.55);
}

/* Controls */
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 8%;
    z-index: 3;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    background-size: 55% 55%;
    transition: all 0.3s ease;
}

#header-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
#header-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(77, 168, 255, 0.28);
}

/* Indicators */
#header-carousel .carousel-indicators {
    margin-bottom: 28px;
    gap: 12px;
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 64px;
    height: 64px;
    text-indent: 0;
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#header-carousel .carousel-indicators .active {
    opacity: 1;
    transform: scale(1.08);
    border-color: #4da8ff;
    box-shadow: 0 0 0 4px rgba(77, 168, 255, 0.18);
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile */
@media (max-width: 991.98px) {
    #header-carousel .carousel-item,
    #header-carousel .carousel-item img {
        height: 600px;
        min-height: 600px;
    }

    .hero-main-title {
        font-size: 42px;
    }

    .hero-sub-title {
        font-size: 20px;
    }

    #header-carousel .carousel-caption {
        padding: 0 7%;
    }
}

@media (max-width: 767.98px) {
    #header-carousel .carousel-item,
    #header-carousel .carousel-item img {
        height: 520px;
        min-height: 520px;
    }

    #header-carousel .carousel-caption {
        justify-content: center;
        text-align: center;
        padding: 0 20px;
    }

    .hero-content-box{
    opacity: 0.85;
}

    .hero-tagline {
        font-size: 13px;
        letter-spacing: 2px;
        padding-left: 0;
    }

    .hero-tagline::before {
        display: none;
    }

    .hero-main-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-sub-title {
        font-size: 20px;
        line-height: 1.5;
    }

    #header-carousel .carousel-indicators [data-bs-target] {
        width: 48px;
        height: 48px;
    }
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


.feature-section{
    background:#f7f9fc;
}

/* Section Title */
.section-title{
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Progress bar styling */
.progress{
    height:6px;
    background:#e5e9ef;
    border-radius:5px;
}

.progress-bar{
    border-radius:5px;
}

/* Image frame style */
.feature-img-wrapper{
    position:relative;
    display:inline-block;
}

.feature-img-wrapper img{
    max-width:100%;
    border-radius:10px;
}

/* Responsive */
@media (max-width:991px){
    .feature-section{
        text-align:center;
    }
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

:root{
  --svc-primary:#142B52;
  --svc-accent:#0d6efd;
  --svc-border: rgba(20, 43, 82, 0.18);
  --svc-shadow: 0 16px 40px rgba(0,0,0,.10);
  --svc-shadow-hover: 0 22px 60px rgba(20, 43, 82, .18);
}

.service-card{
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--svc-border);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card:hover{
  transform: translateY(-10px);
  box-shadow: var(--svc-shadow-hover);
  border-color: rgba(20, 43, 82, .35);
}

/* Image area */
.service-img{
  position: relative;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.service-img img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transition: transform .55s ease, filter .55s ease;
}

.service-card:hover .service-img img{
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
}

/* Body */
.service-body{
  position: relative;
  padding: 26px 22px 22px;
  text-align: center;
}

/* ✅ Icon tile: high contrast + always visible */

.service-icon{
  width: 44px;        /* reduced from 64px */
  height: 44px;
  margin: -30px auto 10px;
  border-radius: 12px;
  background: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(13,110,253,.30);
  border: 2px solid #fff;
  position: relative;
  z-index: 5;
}

.service-icon i{
  color: #fff;
  font-size: 18px;   /* smaller icon */
}



/* Title / text */
.service-title{
  display: inline-block;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color .25s ease;
}

.service-card:hover .service-title{
  color: var(--svc-primary);
}

.service-text{
  margin: 0;
  color: #5b6575;
  line-height:  1.35;
}

/* Mobile tweaks */
@media (max-width: 575.98px){
  .service-img img{ height: 190px; }
  .service-icon{ width: 58px; height: 58px; margin-top: -50px; }
  .service-icon i{ font-size: 24px; }
}

/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project Section ***/
.project-section{
    background:#f8fbff;
}

/* Heading */

.project-heading{
    font-weight:800;
    color:#0f172a;
}

.project-subtitle{
    color:#64748b;
    font-size:16px;
    line-height:1.8;
}

/* Card */

.project-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:30px;
    height:100%;
    position:relative;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(13,110,253,0.15);
    border-color:#0d6efd;
}

/* Badge */

.project-badge{
    font-size:11px;
    font-weight:700;
    text-transform:uppercase;
    background:#eef4ff;
    color:#0d6efd;
    padding:6px 12px;
    border-radius:30px;
    display:inline-block;
    margin-bottom:12px;
}

/* Number */

.project-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:34px;
    font-weight:800;
    color:#e5e7eb;
}

/* Title */

.project-card h5{
    font-size:18px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;
}

/* Description */

.project-card p{
    font-size:14px;
    color:#64748b;
    line-height:1.8;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Premium Testimonial Section ***/
/*** Premium Testimonial Section ***/
.testimonial-section{
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

/* Section title with bars */
.testimonial-section .section-title{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    background: transparent !important;
}

/* Left bars */
.testimonial-section .section-title::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -70px;
    width: 50px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
    box-shadow: -12px 0 0 var(--primary);
}

/* Right bars */
.testimonial-section .section-title::after{
    content: "";
    position: absolute;
    top: 50%;
    right: -70px;
    width: 50px;
    height: 2px;
    background: var(--primary);
    transform: translateY(-50%);
    box-shadow: 12px 0 0 var(--primary);
}

.testimonial-subtitle{
    color: #6c757d;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Carousel spacing */
.testimonial-carousel{
    padding-top: 10px;
}

.testimonial-carousel .owl-stage{
    display: flex;
    align-items: stretch;
}

.testimonial-carousel .owl-item{
    padding: 15px 10px 25px;
}

/* Card */
.testimonial-item{
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 30px rgba(8, 31, 63, 0.08);
    border: 1px solid rgba(8, 31, 63, 0.06);
    transition: all 0.4s ease;
}

.testimonial-item:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(8, 31, 63, 0.14);
}

/* Quote icon */
.testimonial-quote{
    position: absolute;
    top: 22px;
    right: 25px;
    font-size: 30px;
    color: rgba(8, 31, 63, 0.10);
    transition: all 0.4s ease;
}

/* Avatar */
.testimonial-avatar{
    width: 72px !important;
    height: 72px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eef3f8;
    padding: 3px;
    background: #fff;
    flex-shrink: 0;
}

/* Name */
.testimonial-item h5{
    font-size: 20px;
    font-weight: 700;
    color: #081f3f;
    margin-bottom: 6px;
    line-height: 1.35;
}

/* Tag */
.client-tag{
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(13, 110, 253, 0.08);
    padding: 6px 12px;
    border-radius: 30px;
    line-height: 1;
}

/* Text */
.testimonial-item p{
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
    margin-top: 10px;
}

/* Center active card */
.testimonial-carousel .owl-item.center .testimonial-item{
    background: linear-gradient(135deg, #0b2a4a 0%, #1f57b2 100%);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(11, 42, 74, 0.25);
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p,
.testimonial-carousel .owl-item.center .testimonial-item .client-tag{
    color: #ffffff !important;
}

.testimonial-carousel .owl-item.center .testimonial-item .client-tag{
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-carousel .owl-item.center .testimonial-item .testimonial-quote{
    color: rgba(255,255,255,0.20);
}

.testimonial-carousel .owl-item.center .testimonial-avatar{
    border-color: rgba(255,255,255,0.35);
}

/* Nav buttons */
.testimonial-carousel .owl-nav{
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #d9e1ea !important;
    background: #ffffff !important;
    color: #081f3f !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(8, 31, 63, 0.06);
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover{
    background: var(--primary) !important;
    color: #ffffff !important;
    border-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.22);
}

/* Dots */
.testimonial-carousel .owl-dots{
    margin-top: 20px;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span{
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #cfd8e3;
    border-radius: 50%;
    display: block;
    transition: 0.3s;
}

.testimonial-carousel .owl-dots .owl-dot.active span{
    width: 28px;
    border-radius: 20px;
    background: var(--primary);
}

/* Responsive */
@media (max-width: 991.98px){

    .testimonial-item{
        padding: 28px 22px;
    }

    .testimonial-item h5{
        font-size: 18px;
    }

    .testimonial-item p{
        font-size: 16px;
        line-height: 1.8;
    }

}

@media (max-width: 767.98px){

    .testimonial-carousel{
        padding: 10px 5px 20px;
    }

    .testimonial-carousel .owl-item{
        padding: 10px 5px 20px;
    }

    .testimonial-item{
        padding: 25px 20px;
        border-radius: 15px;
    }

    .testimonial-section .section-title::before{
        left: -45px;
        width: 35px;
    }

    .testimonial-section .section-title::after{
        right: -45px;
        width: 35px;
    }

    .testimonial-avatar{
        width: 62px !important;
        height: 62px !important;
    }

    .testimonial-item h5{
        font-size: 18px;
    }

    .testimonial-item p{
        font-size: 15px;
        line-height: 1.7;
    }

    .testimonial-carousel .owl-nav{
        margin-top: 20px;
        gap: 10px;
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next{
        width: 44px;
        height: 44px;
        font-size: 16px !important;
    }

    .testimonial-quote{
        top: 15px;
        right: 18px;
        font-size: 24px;
    }

}
/* Section Styling */
.clients-section {
    background: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

/* Home hero visibility controls: show on home page only */
.home-hero { display: block; }
body:not(.home) .home-hero { display: none; }

/* Ensure logo on header is consistent with home page */
.site-logo { height: 90px; width: auto; }

.clients-kicker {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 10px;
}

.clients-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}

.clients-subtitle {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Marquee Container */
.marquee {
    position: relative;
    overflow: hidden;
}

/* Fade edges */
.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* Track */
.marquee__track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-left 25s linear infinite;
}

/* Reverse direction */
.marquee--reverse .marquee__track {
    animation: scroll-right 30s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee__track {
    animation-play-state: paused;
}

/* Client Pills */
.client-pill {
    background: #f3f5f8;
    padding: 15px 25px;
    border-radius: 14px;
    white-space: nowrap;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    min-width: 220px;
    text-align: center;
}

/* Animation */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .client-pill {
        min-width: 180px;
        padding: 12px 18px;
    }
}

/* ---- Force TESTIMONIAL style for OUR CLIENTS ---- */
.section-title-testimonial{
  position: relative !important;
  display: inline-block !important;      /* critical */
  width: auto !important;                /* prevents underline effect */
  background: transparent !important;
  padding: 0 18px !important;
  line-height: 1.2;
  letter-spacing: 2px;
  font-weight: 700;
}

/* left + right small lines (NOT underline) */
.section-title-testimonial::before,
.section-title-testimonial::after{
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 2px;
  background: var(--primary);
}

/* positions */
.section-title-testimonial::before{ left: -74px; }
.section-title-testimonial::after{ right: -74px; }

/* remove any theme underline if your template adds it */
.section-title-testimonial span,
.section-title-testimonial{
  border: 0 !important;
  text-decoration: none !important;
}

/* responsive */
@media (max-width: 576px){
  .section-title-testimonial::before,
  .section-title-testimonial::after{
    width: 34px;
  }
  .section-title-testimonial::before{ left: -48px; }
  .section-title-testimonial::after{ right: -48px; }
}



/*** OUR CLIENTS ***/

.CLIENTS-carousel .owl-item .CLIENTS-item img {
    width: 60px;
    height: 60px;
}

.CLIENTS-carousel .owl-item .CLIENTS-item,
.CLIENTS-carousel .owl-item .CLIENTS-item * {
    transition: .5s;
}

.CLIENTS-carousel .owl-item.center .CLIENTS-item {
    background: var(--primary) !important;
}

.CLIENTS-carousel .owl-item.center .CLIENTS-item * {
    color: #FFFFFF !important;
}

.CLIENTS-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.CLIENTS-carousel .owl-nav .owl-prev,
.CLIENTS-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.CLIENTS-carousel .owl-nav .owl-prev:hover,
.CLIENTS-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}

.clients-section 
{
    margin-bottom: 150px;
}

/* ===== Get In Touch: Premium Cards ===== */
:root{
  --brand-navy: #142B52;
  --brand-blue: #0D6EFD;   /* bootstrap primary */
  --brand-warn: #FFC107;   /* bootstrap warning */
}

/* Section background depth */
.get-touch-wrap{
  position: relative;
  overflow: hidden;
}

/* Soft blobs (visual appeal) */
.get-touch-wrap::before,
.get-touch-wrap::after{
  content:"";
  position:absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .18;
  z-index: 0;
}
.get-touch-wrap::before{
  top: -120px;
  left: -120px;
  background: var(--brand-blue);
}
.get-touch-wrap::after{
  bottom: -140px;
  right: -140px;
  background: var(--brand-warn);
}

/* Ensure content above blobs */
.get-touch-wrap .container{ position: relative; z-index: 1; }

/* Card base */
.contact-card{
  position: relative;
  border: 1px solid rgba(255,193,7,.55) !important; /* keep your warning border but softer */
  border-radius: 18px !important;
  background: rgba(255,255,255,.98);
  box-shadow: 0 14px 34px rgba(17,17,17,0.08) !important;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
}

/* Top accent line (premium) */
.contact-card::before{
  content:"";
  position:absolute;
  left:0; top:0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-warn));
  opacity: .9;
}

/* Subtle inner shine */
.contact-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 10%, rgba(13,110,253,.10), transparent 40%),
              radial-gradient(circle at 80% 0%, rgba(255,193,7,.10), transparent 45%);
  pointer-events:none;
}

/* Hover interaction */
.contact-card:hover{
  transform: translateY(-8px);
  border-color: rgba(13,110,253,.35) !important;
  box-shadow: 0 22px 55px rgba(13,110,253,0.14) !important;
}

/* Icon wrapper: gradient ring + pulse */
.contact-icon{
  position: relative;
  background: var(--brand-navy) !important;  /* replace grey with brand navy */
  box-shadow: 0 12px 26px rgba(20,43,82,.22);
}

/* Ring */
.contact-icon::before{
  content:"";
  position:absolute;
  inset: -7px;
  border-radius: 999px;
  background: conic-gradient(from 180deg, var(--brand-blue), var(--brand-warn), var(--brand-blue));
  z-index: -1;
  opacity: .85;
}

/* Pulse */
.contact-icon::after{
  content:"";
  position:absolute;
  inset: -10px;
  border-radius: 999px;
  border: 2px solid rgba(13,110,253,.35);
  animation: pulseRing 2.2s ease-in-out infinite;
  opacity: .7;
}

@keyframes pulseRing{
  0%   { transform: scale(0.92); opacity: .55; }
  60%  { transform: scale(1.08); opacity: .12; }
  100% { transform: scale(0.92); opacity: .55; }
}

/* Title + link polish */
.contact-card h5{
  font-weight: 800;
  letter-spacing: .2px;
}

.contact-card a{
  transition: color .2s ease, text-decoration-color .2s ease;
}

.contact-card a:hover{
  color: var(--brand-blue) !important;
  text-decoration: underline;
  text-decoration-color: rgba(13,110,253,.55);
}

/* Staggered appear animation on load (CSS only) */
.contact-card{
  animation: cardEnter .7s ease both;
  animation-delay: var(--d, 0ms);
}

@keyframes cardEnter{
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile tweaks */
@media (max-width: 576px){
  .contact-card{ border-radius: 16px !important; }
}

/* ===== END Get In Touch: Premium Cards ===== */

:root{
  --navy:#142B52;
  --blue:#0D6EFD;
  --blue2:#2B8CFF;
  --soft:#F6F8FB;
  --stroke: rgba(20,43,82,.12);
}

/* Section background depth */
.connect-section{
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
  overflow: hidden;
}

/* subtle blobs */
.connect-section::before,
.connect-section::after{
  content:"";
  position:absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .16;
  z-index: 0;
}
.connect-section::before{
  top: -140px;
  left: -140px;
  backgro


/* ===============================
   CONNECT SECTION PREMIUM DESIGN
================================= */

.connect-section{
    background: linear-gradient(135deg, #f6f8fc, #eef2f9);
    position: relative;
    overflow: hidden;
}

/* Soft animated background glow */
.connect-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background: radial-gradient(circle, rgba(20,43,82,0.12), transparent 70%);
    top:-200px;
    left:-150px;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow{
    0%,100%{ transform: translateY(0px); }
    50%{ transform: translateY(20px); }
}

/* ===============================
   LEFT CARD
================================= */

.connect-card{
    background:#ffffff;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    border-radius:20px;
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease forwards;
}

.connect-card:hover{
    transform: translateY(-8px);
    box-shadow:0 30px 80px rgba(20,43,82,0.15);
}

.connect-left h2{
    font-size:30px;
    letter-spacing:0.5px;
}

.connect-left ul li{
    transition: all 0.3s ease;
}

.connect-left ul li:hover{
    transform: translateX(6px);
    color:#142B52;
}

/* Animate check icons */
.connect-left .fa-check-circle{
    transition: transform 0.3s ease;
}

.connect-left ul li:hover .fa-check-circle{
    transform: scale(1.2);
}

/* ===============================
   FORM CARD
================================= */

.connect-section .bg-white{
    border-radius:22px !important;
    box-shadow:0 25px 70px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    animation: fadeUp 1s ease forwards;
}

.connect-section .bg-white:hover{
    transform: translateY(-5px);
}

/* ===============================
   INPUT STYLING
================================= */

.form-control{
    border-radius:12px !important;
    border:1px solid #e5e7eb !important;
    transition: all 0.3s ease;
    font-size:15px;
}

.form-control:focus{
    border-color:#142B52 !important;
    box-shadow:0 0 0 4px rgba(20,43,82,0.15) !important;
    transform: translateY(-2px);
}

/* Select arrow enhancement */
select.form-control{
    appearance:none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23142B52' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 15px center;
    background-size:18px;
}

/* ===============================
   BUTTON ENHANCEMENT
================================= */

.btn-primary{
    background: linear-gradient(135deg,#142B52,#1e4fa0) !important;
    border:none !important;
    font-weight:600;
    letter-spacing:0.5px;
    box-shadow:0 15px 35px rgba(20,43,82,0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover{
    transform: translateY(-4px);
    box-shadow:0 25px 50px rgba(20,43,82,0.4);
}

/* Shine effect on hover */
.btn-primary::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition:0.6s;
}

.btn-primary:hover::after{
    left:100%;
}


/* ===============================
   CONNECT SECTION – MODERN MOTION
================================= */

.connect-section{
    position: relative;
    background: linear-gradient(135deg, #f9fbff, #eef3ff);
    overflow: hidden;
}

/* Floating gradient blobs */
.connect-section::before,
.connect-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    filter: blur(120px);
    z-index:0;
}

.connect-section::before{
    background: #142B52;
    top:-120px;
    left:-150px;
    opacity:0.15;
    animation: float1 10s ease-in-out infinite;
}

.connect-section::after{
    background: #1e4fa0;
    bottom:-150px;
    right:-120px;
    opacity:0.15;
    animation: float2 12s ease-in-out infinite;
}

@keyframes float1{
    0%,100%{transform: translateY(0);}
    50%{transform: translateY(30px);}
}

@keyframes float2{
    0%,100%{transform: translateY(0);}
    50%{transform: translateY(-30px);}
}

/* ===============================
   LEFT CARD – SLIDE IN LEFT
================================= */

.connect-left{
    animation: slideLeft 1s ease forwards;
    position: relative;
    z-index:1;
}

@keyframes slideLeft{
    from{
        opacity:0;
        transform: translateX(-60px);
    }
    to{
        opacity:1;
        transform: translateX(0);
    }
}

/* Glass effect */
.connect-card{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.connect-card:hover{
    transform: translateY(-10px) scale(1.02);
}

/* ===============================
   RIGHT FORM – SLIDE IN RIGHT
================================= */

.connect-section .bg-white{
    animation: slideRight 1s ease forwards;
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: blur(20px);
    border-radius:22px !important;
    position: relative;
    z-index:1;
}

@keyframes slideRight{
    from{
        opacity:0;
        transform: translateX(60px);
    }
    to{
        opacity:1;
        transform: translateX(0);
    }
}

/* ===============================
   INPUT – SOFT FLOAT EFFECT
================================= */

.form-control{
    border-radius:14px !important;
    transition: all 0.3s ease;
}

.form-control:focus{
    transform: translateY(-3px);
    box-shadow:0 15px 35px rgba(20,43,82,0.15) !important;
    border-color:#142B52 !important;
}

/* ===============================
   BUTTON – FLOAT + GLOW
================================= */

.btn-primary{
    background: linear-gradient(135deg,#142B52,#1e4fa0) !important;
    border:none !important;
    position:relative;
    overflow:hidden;
    transition: all 0.3s ease;
}

.btn-primary:hover{
    transform: translateY(-6px);
    box-shadow:0 25px 60px rgba(20,43,82,0.35);
}

/* Glowing ring animation */
.btn-primary::before{
    content:"";
    position:absolute;
    inset:-4px;
    border-radius:50px;
    background: linear-gradient(45deg,#142B52,#1e4fa0,#4c7df0);
    z-index:-1;
    filter: blur(12px);
    opacity:0;
    transition:0.4s;
}

.btn-primary:hover::before{
    opacity:0.7;
}

/* ===============================
   CHECK ICON PULSE ANIMATION
================================= */

.connect-left .fa-check-circle{
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse{
    0%,100%{transform: scale(1);}
    50%{transform: scale(1.2);}
}




/* ===========================
   Bottom Bar
=========================== */


/***** FINAL HEADER COLOR COMBINATION - LOGO MATCH *****/

:root{
    --primary-navy:#0B2A4A;
    --deep-navy:#06172C;
    --navy-hover:#123B66;
    --metal-silver:#C7CDD3;
    --soft-silver:#D9E2EC;
    --white:#FFFFFF;
    --text-light:#EAF1F7;
}

/* ===== LOGO ===== */
.site-logo{
    height:52px;
    width:auto;
    object-fit:contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.18));
}

.brand-name{
    font-size:28px;
    font-weight:700;
    color:var(--white);
    letter-spacing:1px;
}

/* ===== BRAND & CONTACT SECTION ===== */
.top-bar{
    background: linear-gradient(90deg, #0B2A4A 0%, #123B66 100%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar .navbar-brand{
    text-decoration:none;
}

.top-bar p{
    margin-bottom:4px !important;
    color:rgba(255,255,255,0.72);
    font-size:14px;
    font-weight:500;
}

.top-bar h6{
    color:#FFFFFF;
    font-weight:600;
    font-size:18px;
}

/* ===== TEAM SECTION ===== */
/* Section background */
.container-xxl.py-5 {
    background: #eef2f7;
}

/* Card redesign */
.card {
    background: #f4f6fb;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Avatar base */
.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    border: 4px solid #e0e7ff;
}

/* Gradient styles */
.avatar-blue {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

.avatar-teal {
    background: linear-gradient(135deg, #065f46, #14b8a6);
}

.avatar-orange {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.avatar-purple {
    background: linear-gradient(135deg, #5b21b6, #8b5cf6);
}

/* Text styling */
.card h6 {
    font-size: 16px;
    font-weight: 700;
}

.card .text-primary {
    font-size: 14px;
    font-weight: 600;
}

.card .text-muted {
    font-size: 14px;
    color: #6b7280 !important;
}




/* contact icon circle */
.top-bar .btn-lg-square{
    width:52px;
    height:52px;
    border-radius:50%;
    border:1px solid rgba(199,205,211,0.45) !important;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(4px);
}

/* icon color */
.top-bar .btn-lg-square i{
    color:var(--white) !important;
    font-size:18px;
}

/* spacing */
.top-bar .ps-3{
    padding-left:14px !important;
}

/* ===== NAVBAR ===== */
.custom-navbar{
    background: linear-gradient(90deg, #06172C 0%, #08203A 100%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* navbar links */
.custom-navbar .navbar-nav .nav-link{
    position:relative;
    color:#FFFFFF !important;
    font-weight:600;
    padding:22px 0 !important;
    margin-right:30px;
    transition:all .3s ease;
}

/* hover */
.custom-navbar .navbar-nav .nav-link:hover{
    color:var(--metal-silver) !important;
}

/* active */
.custom-navbar .navbar-nav .nav-link.active{
    color:#FFFFFF !important;
}

/* premium underline */
.custom-navbar .navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:14px;
    width:0;
    height:2px;
    background:linear-gradient(90deg, var(--metal-silver), #ffffff);
    transition:width .3s ease;
    border-radius:10px;
}

.custom-navbar .navbar-nav .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-link.active::after{
    width:100%;
}

/* mobile brand inside navbar */
.custom-navbar .navbar-brand{
    color:#FFFFFF !important;
    font-weight:700;
}

/* toggler */
.custom-navbar .navbar-toggler{
    border:1px solid rgba(255,255,255,0.20);
    border-radius:8px;
}

.custom-navbar .navbar-toggler:focus{
    box-shadow:none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px){

    .site-logo{
        height:46px;
    }

    .brand-name{
        font-size:24px;
    }

    .top-bar{
        padding:10px 0;
    }

    .custom-navbar .navbar-nav .nav-link{
        margin-right:0;
        padding:10px 0 !important;
    }

    .custom-navbar .navbar-nav .nav-link::after{
        display:none;
    }
}

@media (max-width:768px){
    .site-logo{
        height:40px;
    }
}


.footer-box-custom .row {
    align-items: flex-start; /* Align all columns properly */
}

/* Equal column height + spacing */
.footer-box-custom .col-lg-4 {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Fix text alignment consistency */
.footer-title-custom,
.footer-brand-custom {
    text-align: left;
}

/* Fix paragraph width */
.footer-about-custom {
    max-width: 100%;
}

/* Quick links alignment */
.footer-links-custom {
    margin-top: 5px;
}

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

/* Contact section alignment fix */
.footer-contact-item-custom {
    align-items: flex-start;
}

/* Fix icon vertical alignment */
.footer-icon-custom {
    min-width: 22px;
}

/* Ensure text wraps cleanly */
.footer-contact-item-custom span,
.footer-contact-item-custom a {
    display: block;
}

/* Improve spacing between sections */
@media (min-width: 992px) {
    .footer-box-custom .col-lg-4 {
        padding-right: 25px;
    }

    .footer-box-custom .col-lg-4:last-child {
        padding-right: 0;
    }
}

/* ================= FOOTER ================= */

footer {
    margin-bottom: 0;
}
.footer-box{
    background: linear-gradient(135deg, #142B52 0%, #0D6EFD 100%);
    color: #fff;
    padding: 60px 35px 20px;
}

/* Align columns properly */
.footer-box .row{
    align-items: flex-start;
}

.footer-box .col-lg-4{
    display: flex;
    flex-direction: column;
}

/* Brand */
.footer-brand{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

/* About text */
.footer-about{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.92);
}

/* Slogan */
.footer-slogan{
    color: #FFC107;
    font-style: italic;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Section titles */
.footer-title{
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 18px;
}

/* Links */
.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li{
    margin-bottom: 10px;
	margin-left: 50px;
}
.footer-section .row > div {
    padding-right: 25px;
}

.footer-links a{
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover{
    color: #ffffff;
}

/* Contact section */
.footer-contact-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
}

.footer-icon{
    min-width: 20px;
    margin-top: 3px;
}

.footer-icon i{
    color: #FFC107;
    font-size: 18px;
}

/* Ensure text wraps properly */
.footer-contact-item span,
.footer-contact-item a{
    display: block;
}

/* Social icons */
.footer-social{
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a{
    color: #00a2ff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-social a:hover{
    color: #ffffff;
}

/* Bottom bar */
.footer-bottom{
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p{
    font-size: 14px;
    margin: 0;
    color: rgba(255,255,255,0.85);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991.98px){
    .footer-box{
        padding: 45px 25px 20px;
    }

    .footer-brand,
    .footer-title{
        font-size: 1.6rem;
    }
}

@media (max-width: 575.98px){
    .footer-box{
        padding: 35px 20px 20px;
    }

    .footer-brand,
    .footer-title{
        font-size: 1.4rem;
    }

    .footer-about,
    .footer-links a,
    .footer-contact-item{
        font-size: 14px;
    }
}

/* Footer */
.footer-section{
    background: linear-gradient(135deg, #142B52 0%, #0D6EFD 100%);
    color: #fff;
    padding:50px 0 10px;
}

.footer-box .row{
    align-items: flex-start;
}

.footer-brand{
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-about{
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.footer-slogan{
    color: #FFC107;
    margin: 15px 0;
    font-weight: 600;
}

.footer-title{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

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

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

.footer-links a{
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #fff;
}

.footer-contact-item{
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-icon i{
    color: #FFC107;
}

.footer-social{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-social a{
    font-size: 22px;
    color: #00a2ff;
}

.footer-social a:hover{
    color: #fff;
}

.footer-bottom{
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    font-size: 14px;
}


.footerheader {
    color: #ffc107;
}




  /* ══════════════════════════════════════
     LEADERSHIP SECTION
  ══════════════════════════════════════ */
  /* ══════════════════════════════════════
   LEADERSHIP SECTION
══════════════════════════════════════ */
.leadership-section {
  background: linear-gradient(135deg, #0a1628 0%, #0d2247 55%, #0a3060 100%);
  padding: 90px 20px;
  position: relative;
  overflow: hidden;
}

.leadership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(0, 140, 255, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(0, 200, 255, 0.09) 0%, transparent 50%);
  pointer-events: none;
}

.leadership-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(79, 195, 247, 0.07);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section badge */
.section-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.section-badge span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: #4fc3f7;
  text-transform: uppercase;
}

.section-badge::before,
.section-badge::after {
  content: '';
  width: 44px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #4fc3f7);
}

.section-badge::after {
  transform: scaleX(-1);
}

.team-item {
    text-align: center;
}

.team-item img {
    display: block;
    margin-bottom: 15px;
}

.team-title h5 {
    margin-bottom: 5px;
}

.team-title span {
    display: block;
}
  /* ══════════════════════════════════════
     CORE TEAM SECTION
  ══════════════════════════════════════ */
  .core-team-section {
    background: #f4f7fb;
    padding: 90px 20px 100px;
    position: relative;
    overflow: hidden;
  }

  /* Subtle dot-grid background texture */
  .core-team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(21,101,192,0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
  }

  /* Core badge */
  .core-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
  }
  .core-badge span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #1565c0;
    text-transform: uppercase;
  }
  .core-badge::before,
  .core-badge::after {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1565c0);
  }
  .core-badge::after { transform: scaleX(-1); }

  .core-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 42px);
    color: #0d1b2e;
    text-align: center;
    font-weight: 800;
    line-height: 1.25;
    max-width: 580px;
    margin: 0 auto 64px;
  }

  /* Grid */
  .team-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  /* Card */
  .team-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 38px 26px 32px;
    text-align: center;
    width: 230px;
    box-shadow: 0 4px 24px rgba(13, 27, 46, 0.07);
    border: 1px solid rgba(21, 101, 192, 0.09);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 18%; right: 18%;
    height: 3px;
    background: linear-gradient(90deg, #1565c0, #4fc3f7);
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity 0.35s, left 0.35s, right 0.35s;
  }
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 56px rgba(13, 27, 46, 0.14);
  }
  .team-card:hover::after {
    opacity: 1;
    left: 10%; right: 10%;
  }

  /* Avatar */
  .team-img-wrap {
    width: 100px; height: 100px;
    margin: 0 auto 22px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #1565c0, #4fc3f7);
  }
  .team-img-wrap img,
  .team-img-wrap .avatar-placeholder {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
  }

  .team-name {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #0d1b2e;
    margin-bottom: 7px;
  }
  .team-role {
    display: inline-block;
    font-size: 12px;
    color: #1565c0;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 13px;
    line-height: 1.45;
  }
  .team-desc {
    font-size: 13.5px;
    color: #5a6a7e;
    line-height: 1.65;
    font-weight: 300;
  }

  /* ── Avatar color helpers ── */
  .av-navy   { background: linear-gradient(135deg, #0d1b2e, #1565c0); }
  .av-rose   { background: linear-gradient(135deg, #880e4f, #ec407a); }
  .av-blue   { background: linear-gradient(135deg, #1565c0, #42a5f5); }
  .av-teal   { background: linear-gradient(135deg, #00695c, #26c6da); }
  .av-amber  { background: linear-gradient(135deg, #e65100, #ffa726); }
  .av-purple { background: linear-gradient(135deg, #4527a0, #7e57c2); }

  /* ── Responsive ── */
  @media (max-width: 520px) {
    .leader-card,
    .team-card { width: 155px; padding: 26px 14px; }
    .leader-img-wrap { width: 88px; height: 88px; }
    .team-img-wrap   { width: 80px; height: 80px; }
    .avatar-placeholder { font-size: 22px; }
  }

/* =========================================
   Responsive Enhancements (Desktop-safe)
========================================= */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly default buttons */
.btn,
button,
.navbar-toggler {
    min-height: 44px;
}

/* Keep fixed/inline elements from causing overflow */
.header-inner,
.nav-inner,
.hero-content-box,
.connect-form-wrap,
.connect-card,
.project-card,
.service-card {
    max-width: 100%;
}

/* Mobile menu animation and behavior */
@media (max-width: 991.98px) {
    .top-header {
        padding: 8px 0;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 14px;
    }

    .brand-wrap {
        min-width: 0;
        width: 100%;
    }

    .brand-title {
        font-size: clamp(1.45rem, 5vw, 2.1rem);
        line-height: 1.15;
    }

    .brand-tagline {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
        text-align: left;
    }

    .header-info-wrap {
        width: 100%;
        justify-content: flex-start;
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
    }

    .header-info-box {
        flex: 1 1 100%;
        min-width: 0;
        width: 100%;
    }

    .header-info-text h6 {
        font-size: 0.9rem;
        overflow-wrap: anywhere;
    }

    .nav-inner {
        padding: 0 14px;
    }

    .premium-navbar .navbar {
        align-items: center;
    }

    .premium-navbar .navbar-toggler {
        border: 1px solid rgba(20, 43, 82, 0.18);
        border-radius: 10px;
        padding: 8px 10px;
    }

    .premium-navbar .navbar-collapse {
        display: block;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.35s ease, opacity 0.3s ease;
        width: 100%;
    }

    .premium-navbar .navbar-collapse.mobile-open {
        max-height: 420px;
        opacity: 1;
    }

    .premium-navbar .navbar-nav {
        gap: 0;
        width: 100%;
        padding: 8px 0 12px;
    }

    .premium-navbar .navbar-nav .nav-link {
        display: block;
        padding: 12px 8px;
        line-height: 1.4;
    }

    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 12%;
    }

    .hero-content-box {
        padding: 20px;
        border-radius: 12px;
    }

    .section-title,
    .section-title-testimonial {
        font-size: 0.9rem;
        letter-spacing: 1.2px;
    }
}

/* Small laptops */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-inner {
        padding: 0 22px;
    }

    .premium-navbar .navbar-nav {
        gap: 2px;
    }

    .premium-navbar .navbar-nav .nav-link {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .hero-main-title {
        font-size: clamp(2rem, 4vw, 2.45rem);
    }

    .hero-sub-title {
        font-size: clamp(1rem, 2vw, 1.2rem);
        line-height: 1.45;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    body {
        font-size: 15px;
        line-height: 1.6;
    }

    .site-logo {
        height: 58px;
    }

    .brand-title {
        font-size: 1.8rem;
    }

    .premium-navbar .navbar-nav .nav-link {
        font-size: 0.98rem;
    }

    #header-carousel .carousel-item,
    #header-carousel .carousel-item img {
        height: 500px;
        min-height: 500px;
    }

    #header-carousel .carousel-caption {
        justify-content: center;
        text-align: center;
        padding: 0 18px 34px;
        align-items: flex-end;
    }

    .hero-content-box {
        width: 100%;
        max-width: 100%;
    }

    .hero-main-title {
        font-size: 1.95rem;
    }

    .hero-sub-title {
        font-size: 1.02rem;
        line-height: 1.5;
    }

    .connect-title {
        font-size: 2rem;
    }
}

/* Mobile phones */
@media (min-width: 320px) and (max-width: 480px) {
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        font-size: 14px;
        line-height: 1.65;
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    html {
        width: 100%;
        max-width: 100%;
        overflow-x: clip;
    }

    body * {
        max-width: 100%;
    }

    .top-header,
    .premium-navbar,
    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item,
    .owl-carousel,
    .owl-stage-outer,
    .container,
    .container-fluid,
    .container-xxl {
        overflow-x: clip;
    }

    .container,
    .container-xxl {
        padding-left: 12px;
        padding-right: 12px;
    }

    .container-fluid.p-0,
    .container-fluid.px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }

    .top-header {
        padding: 6px 0;
    }

    .header-inner {
        align-items: center;
        padding: 8px 10px;
        gap: 8px;
        justify-content: center;
    }

    .brand-wrap {
        width: 100%;
        min-width: 0;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

    .site-logo {
        height: 48px;
        max-width: 100%;
    }

    .brand-title {
        font-size: 1.45rem;
    }

    .brand-tagline {
        font-size: 0.65rem;
        letter-spacing: 0.08em;
        text-align: center;
    }

    .header-info-wrap {
        display: none !important;
    }

    .header-info-box {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        padding: 6px 8px;
    }

    .header-info-text {
        text-align: left;
        min-width: 0;
    }

    .header-info-text h6 {
        font-size: 0.82rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .header-info-box.email-box .header-info-text h6 {
        word-break: break-all;
    }

    .premium-navbar {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .nav-inner {
        padding: 0 10px;
    }

    .premium-navbar .navbar {
        justify-content: flex-end;
    }

    .premium-navbar .navbar-toggler {
        margin-right: 0 !important;
        margin-left: auto !important;
    }

    .premium-navbar .navbar-collapse {
        margin-top: 8px;
        padding: 2px 10px 8px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 26px rgba(16, 36, 68, 0.12);
        width: 100%;
    }

    .premium-navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .header-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
        margin-right: 10px;
    }

    #header-carousel .carousel-item,
    #header-carousel .carousel-item img {
        height: 440px;
        min-height: 440px;
        width: 100%;
    }

    #header-carousel .carousel-item img {
        display: block;
        object-position: center center;
    }

    #header-carousel .carousel-indicators [data-bs-target] {
        width: 40px;
        height: 40px;
    }

    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 10%;
    }

    #header-carousel .carousel-caption {
        justify-content: center;
        align-items: flex-end;
        text-align: center;
        padding: 0 12px 34px;
        left: 0;
        right: 0;
    }

    #header-carousel .carousel-indicators {
        gap: 8px;
        margin-bottom: 18px;
    }

    .hero-content-box {
        padding: 14px;
        width: 100%;
        max-width: 100%;
    }

    .hero-main-title {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .hero-sub-title {
        font-size: 0.9rem;
        line-height: 1.45;
        letter-spacing: 0.04em;
    }

    .display-6,
    h1 {
        line-height: 1.25;
    }

    .service-body {
        padding: 20px 16px 18px;
    }

    .btn-connect,
    .btn {
        min-height: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .map-wrap iframe {
        min-height: 300px;
    }

    /* Prevent decorative horizontal lines from expanding layout on mobile */
    .section-title::before,
    .section-title::after,
    .section-title-testimonial::before,
    .section-title-testimonial::after {
        display: none !important;
    }
}

@media (max-width: 360px) {
    .header-info-box.email-box {
        display: none;
    }

    .header-info-box {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-header .header-info-wrap {
        display: none !important;
    }

    .top-header .header-inner,
    .top-header .brand-wrap {
        width: 100%;
        min-width: 0;
        justify-content: center;
    }

    .container-fluid.p-0,
    .container-fluid.px-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item,
    #header-carousel .carousel-item img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Show Call/Email only on laptop/desktop */
@media (min-width: 769px) {
    .top-header .header-info-wrap {
        display: flex !important;
    }
}

/* Final hard mobile alignment fix */
@media (max-width: 768px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    body {
        position: relative;
    }

    .top-header .header-info-wrap,
    .top-header .header-info-box,
    .top-header .email-box {
        display: none !important;
        visibility: hidden !important;
    }

    .top-header .header-inner {
        width: 100% !important;
        max-width: 100% !important;
        padding: 8px 12px !important;
        justify-content: center !important;
    }

    .top-header .brand-wrap {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: center !important;
    }

    .top-header .brand-text {
        min-width: 0 !important;
    }

    .top-header .brand-title {
        font-size: clamp(1.4rem, 7vw, 2.1rem) !important;
        line-height: 1.15 !important;
    }

    .top-header .brand-tagline {
        font-size: clamp(0.62rem, 2.8vw, 0.88rem) !important;
        letter-spacing: 0.1em !important;
    }

    .container-fluid,
    .container-xxl,
    .container {
        max-width: 100% !important;
    }

    #header-carousel,
    #header-carousel .carousel-inner,
    #header-carousel .carousel-item,
    #header-carousel .carousel-item img {
        width: 100% !important;
        max-width: 100% !important;
    }

    #header-carousel .carousel-inner {
        overflow: hidden !important;
    }

    #header-carousel .carousel-caption {
        left: 0 !important;
        right: 0 !important;
        padding: 0 12px 28px !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: flex-end !important;
    }

    .hero-content-box {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .owl-carousel,
    .owl-stage-outer,
    .owl-stage {
        max-width: 100% !important;
        overflow: hidden !important;
    }
}

/* Global mobile horizontal menu for all pages */
@media (max-width: 768px) {
    .premium-navbar {
        position: sticky;
        top: 0;
        z-index: 1055;
        background: #ffffff;
        border-top: 1px solid rgba(20, 43, 82, 0.08);
        border-bottom: 1px solid rgba(20, 43, 82, 0.08);
    }

    .premium-navbar .navbar-toggler {
        display: none !important;
    }

    .premium-navbar .navbar-collapse {
        display: block !important;
        width: 100% !important;
        max-height: none !important;
        opacity: 1 !important;
        overflow: hidden !important;
    }

    .premium-navbar .navbar-nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 4px !important;
        padding: 6px 4px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .premium-navbar .navbar-nav::-webkit-scrollbar {
        display: none;
    }

    .premium-navbar .navbar-nav .nav-link {
        display: inline-flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 38px !important;
        padding: 7px 8px !important;
        font-size: clamp(0.8rem, 2.7vw, 0.9rem) !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
        text-overflow: clip !important;
        overflow: visible !important;
    }
}
