* {
    font-family: "Manrope", serif;
}
html{
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

:root {
    --blue: rgb(8, 47, 123);
    --org: #fa854f;
        --brand-main: #082F7B;     /* main color */
    --brand-accent: #FA854F;   /* secondary color */
    --brand-white: #FFFFFF;    /* titles / backgrounds */
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

.navbar-toggler {
    background-color: transparent; /* Dark background */
    border: 1px solid #fff; /* Slightly lighter border */
    padding: 6px 8px;
    border-radius: 5px;
}

.navbar-toggler-icon {
    filter: invert(1); /* Makes the default Bootstrap icon white */
}

.navbar .container-fluid {
    padding-left: 80px;
    padding-right: 80px;
    min-height:80px;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

.navbar {
    background-color: var(--blue);
}

.navbar-brand {
    display: flex;
    flex-direction: row;
    align-items:center;
}

.navbar-brand .logo {
    width: 120px;
    max-width: 100%;
}

.navbar-brand .brand-name {
    font-weight: bold;
    color: #fff;
}
.navbar-nav li a {
    font-weight: 600;
    margin: 0 24px;
    color: #fff;
}

.navbar-nav li a.active {
    color: var(--org) !important;
    font-weight: 700;
}

.navbar-nav li a:hover {
    color: var(--org);
}
.hero-section {
    position: relative;
    background: url("../assets/background.png") no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--brand-white);
    padding: 20px;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width:70%;
}
.hero-content h1 {
    font-size: 48px;
    font-weight: 600;
	
}

.btn-holder {
    margin-top: 34px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.btn-custom {
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    padding: 10px 34px;
    border-radius: 24px;
}
.btn-blog-new {
    border: 1px solid #082F7B;
    color: #082F7B;
    padding: 10px 34px;
    border-radius: 24px;
}
.btn-custom.active,
.btn-custom:hover {
    background-color: #082F7B;
    color: white;
    border: 1px solid #082F7B;
    border-radius: 24px;
}

.btn-custom.active:hover {
    color: #ffffff;
    background-color: transparent;
}

.cardss {
    position: relative;
    padding-bottom: 90px;
}

.cardss:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    bottom: 50%;
    background-color: #e3e8bf;
}

.stats-section {
    padding-left: 60px;
    padding-right: 60px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    position: relative;
}

.stat-box {
    position: relative;
    width: 33%;
    height: 490px;
    display: flex;
    align-items: flex-start;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
}

.stat-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.stat-box span {
    position: absolute;
    left: 10px;
    font-size: 34px;
    z-index: 2;
    padding: 10px;
    border-radius: 5px;
}

.stat-box._2 {
    margin-top: 60px;
}
.stat-box._3 span {
    left: auto;
    right: 10px;
}

.info-section {
    background-color: #002366;
    padding: 64px 0;
    color: white;
    text-align: center;
}
.info-section h2 {
    margin-bottom: 2rem;
    color: #fa854f;
}
.info-section h3 {
    font-size: 1.8rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}
.info-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.info-card {
    background: white;
    color: black;
    padding: 34px 20px 48px;
    border-radius: 10px;
    width: 22%;
    text-align: center;
}

.info-card i {
    font-size: 28px;
    margin-bottom: 16px;
}

.info-card h4 {
    font-weight: bold;
    margin-bottom: 24px;
}

.info-section {
    background-color: var(--blue);
    padding: 64px 0;
    color: white;
    text-align: center;
}

.t-bg {
    background-image: url("../assets/cards-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-section {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 64px 0;
    text-align: center;
}

.testimonial-card {
    background-color: #ffffffba;
    color: black;
    padding: 24px;
    border-radius: 24px;
    text-align: center;
    width: 33%;
}

.testimonial-card i {
    font-size: 24px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-style: italic;
}

.contact {
    background-color: var(--blue);
}

.contact-section {
    padding: 64px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact-section .text {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section h2 {
    color: var(--org);
    margin-bottom: 2rem;
}

.contact-section h3 {
    font-weight: 700;
    font-size: 3rem;
}

.contact-form {
    width: 100%;
    max-width: 100%;
    background: white;
    padding: 28px 24px;
    border-radius: 12px;
}

.contact-form._2 {
    width: 100%;
}

.contact-form label {
    font-size: 14px;
}

.contact-form input {
    border-radius: 0;
    color: #000;
}

.contact-form .btn {
    display: block;
    width: 100%;
    border-radius: 0;
    background-color: #fa854f;
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 8px;
}

.contact-form .btn:hover {
    background-color: #eb692c;
}

.stats-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.stats-card {
    color: black;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.stats-card img {
    width: 100%;
    border-radius: 10px;
}

footer {
    padding: 64px 0;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .brand {
    font-size: 24px;
    font-weight: 500;
    margin: 16px 0;
}

.logo-f img {
    width: 56px;
    max-width: 100%;
}

footer ul.links {
    list-style: none;
    text-align: center;
    padding-left: 0;
    display:flex;
    align-items:center;
    justify-content: space-between;

}

footer ul.links a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.75;
}

footer ul.links a:hover {
    text-decoration: underline;
}

footer .copyrights {
    display: block;
    text-align: center;
    border-top: 1px solid #000;
    padding-top: 16px;
}

.sec-page .hero {
    padding: 64px 34px;
    position: relative;
}

.sec-page .hero {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.sec-page .hero .content {
    width: 40%;
}

.sec-page .hero.contact-page .content {
    width: 100%;
}

.sec-page .hero.services .content {
    width: 50%;
    height: 90vh;
}

.sec-page .hero.services .content .our-services {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    gap: 24px;
    height: 50vh;
}

.sec-page .hero.services .content .our-services .service {
    width: 46%;
}
.sec-page .hero.services .content .our-services .service h5 {
    font-weight: bold;
}

.sec-page .hero.services h2 {
    line-height: 2;
    margin-bottom: 24px;
    border-bottom: 2px solid #000;
}

.sec-page .hero.contact-page {
    margin: 0 auto;
    width: 680px;
    max-width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.sec-page .hero.contact-page .contact-form {
    background-color: rgb(231, 231, 231);
    padding: 24px;
    border-radius: 24px;
}

.sec-page .hero.contact-page .contact-form h3 {
    font-weight: 600;
}

.sec-page .hero.services {
    padding-bottom: 0;
}

.sec-page .hero .content h2,
.sec-page .hero .content p {
    margin-bottom: 2rem;
}

.sec-page .hero .img-bg {
    display: block;
    width: 50%;
    height: 40vh;
    margin-right: -34px;
    border-top-left-radius: 34px;
    border-bottom-left-radius: 34px;
}

.sec-page .hero .img-bg.about {
    background-image: url("../images/about-bg.avif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sec-page .hero .img-bg.services {
    background-image: url("../images/bg-services.avif");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 0;
    height: 90vh;
    margin-top: -128px;
}

.small-devices {
    display: none;
}

@media (max-width: 1200px) {
    .navbar .container-fluid {
        padding: 0 48px;
    }
    h2 {
        font-size: 2.4rem;
    }
    .sec-page .hero .content h2 {
        margin-bottom: 1rem;
    }
    .sec-page .hero.contact-page .content {
        padding-bottom: 16px;
    }
    .navbar-brand .logo {
        width: 90px;
    }
    .hero-content h1 {
        font-size: 3.4rem;
    }
    .hero-section {
        height: 70vh;
    }
    .info-section h2 {
        font-size: 2.6rem;
    }
    .info-section h3 {
        font-size: 1.24rem;
        line-height: 1.2;
    }
    .info-card h4 {
        font-size: 1rem;
    }
    .stats-section {
        padding: 0;
        gap: 48px;
    }
    .stat-box {
        height: 360px;
    }
    .stat-box span {
        font-size: 28px;
        line-height: 1.3;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar .container-fluid {
        padding: 0 34px;
    }
    .hero-section {
        height: auto;
        padding: 72px 0;
    }
    .hero-content {
        position: inherit;
        left: auto;
        top: auto;
        transform: none;
    }
    .info-section h2 {
        font-size: 2rem;
    }
    .info-card {
        width: 45%;
    }
    .stats-section {
        padding: 0;
        gap: 34px;
    }
    .stat-box {
        height: 260px;
    }
    .stat-box span {
        font-size: 24px;
        line-height: 1.3;
    }
    .testimonial-card p {
        font-size: 15px;
        line-height: 1.34;
    }
    .sec-page .hero {
        flex-direction: column;
    }
    .sec-page .hero .content {
        width: 100%;
        text-align: center;
        padding-bottom: 34px;
    }

    .about .small-devices img {
        border-radius: 16px;
    }
    .small-devices {
        display: block;
    }
    .sec-page .hero .img-bg.about,
    .sec-page .hero .img-bg.services {
        display: none;
    }
    .sec-page .hero .img-bg {
        width: 100%;
    }
    .sec-page .hero.services .content {
        width: 100%;
        height: auto;
    }
    .sec-page .hero.services .small-devices img {
        width: 120%;
        margin-left: -34px;
        margin-bottom: 34px;
    }
    .sec-page .hero.services .content h2 {
        text-align: left;
    }
    .sec-page .hero.services .content .our-services {
        height: auto;
    }
    .contact-section h2 {
        font-size: 1.8rem;
    }
    .contact-section h3 {
        font-size: 2.4rem;
        margin-right: 24px;
    }
}
@media (max-width: 767px) {
    .navbar-toggler {
        padding: 4px 6px;
    }
    .navbar-toggler-icon {
        width: 20px;
        height: 24px;
    }
    .navbar .container-fluid {
        padding: 0 16px;
    }
    .navbar-brand .logo {
        width: 72px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .info-card {
        width: 100%;
    }
    .cardss .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .testimonial-section {
        flex-direction: column;
    }
    .testimonial-card {
        width: 100%;
    }
    .contact {
        background-color: #fff;
    }
    .contact-section {
        padding-bottom: 0;
    }
    .contact-section .text {
        display: none;
    }
    .sec-page .hero.services .content .our-services .service {
        width: 100%;
        text-align: left;
    }
    .sec-page .hero.services .content {
        padding-bottom: 0;
    }
    .cardss {
        padding-bottom: 34px;
    }
    .stats-section {
        gap: 16px;
    }
    .stat-box span {
        color: #fff;
        text-shadow: rgba(44, 44, 44, 0.603) 1px 0 10px;
    }
}

@media (max-width: 567px) {
}
/* video slider section */
/* ===== Layout & Section Spacing ===== */
.py-section{
  padding-top: 80px;   /* requested spacing */
  padding-bottom: 80px;
  background: var(--brand-white);
}

/* ===== Slider ===== */
.video-slider-wrapper{
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 420ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* Each slide */
.video-slide{
  position: relative;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.video-slide.active{
  opacity: 1;
  pointer-events: auto;
}

/* Keep videos nicely framed at full width using 16:9 */
.video-frame{
  width: 100%;
  aspect-ratio: 16/9;
  background: #00000013;
}

.video-el{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Controls (arrows under) ===== */
.video-controls{
  user-select: none;
}

.nav-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 2px solid var(--brand-main);
  background: transparent;
  color: var(--brand-main);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.nav-btn:hover{
  background: var(--brand-main);
  color: var(--brand-white);
  transform: translateY(-1px);
}

.nav-btn:active{
  transform: translateY(0);
}

.nav-btn:focus-visible{
  outline: 3px solid var(--brand-accent);
  outline-offset: 2px;
}

/* Small touch of accent when focusing via keyboard */
.prev-btn:focus-visible,
.next-btn:focus-visible{
  border-color: var(--brand-accent);
}

/* ===== Responsive niceties ===== */
@media (max-width: 576px){
  .nav-btn{
    width: 46px;
    height: 46px;
  }
}