/*******************************/
/********* General CSS *********/
/*******************************/

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #666666;
}

/* Global section spacing (outer template foundation) */
section {
    padding: 80px 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #030f27;
    font-weight: 600;
}

/* Paragraphs */
p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #030f27;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #fdbe33;
    outline: none;
    text-decoration: none;
}

/* Buttons – base style */
.btn {
    transition: .3s;
    border-radius: 4px;
}

.btn:focus {
    box-shadow: none;
}

/* Optional wrapper (use only if needed) */
.wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    background: #ffffff;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: #fdbe33;
    color: #030f27;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 999;
}

.back-to-top:hover {
    color: #fdbe33;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}


/**********************************/
/*********** Top Bar CSS **********/
/**********************************/
.top-header {
    background: #030f27;   /* dark strip */
    color: #ffffff;
    font-size: 13px;
}

.top-header a {
    color: #ffffff;
    margin-right: 12px;
    text-decoration: none;
}

.top-header a:hover {
    color: #fdbe33;
}

.top-header .container {
    min-height: 40px;
}

.top-header-left i,
.top-header-right i {
    margin-right: 5px;
}

.top-header-right a {
    margin-left: 12px;
}

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    
/* Mobile safety */
img {
    max-width: 100%;
    height: auto;
}

button,
.btn {
    min-height: 44px; /* finger-friendly */
}

}



/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/

/* DEFAULT STATE – page load (transparent, not sticky) */
.nav-bar {
    position: relative;              /* important */
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55); /* transparent black */
}


/* Navbar inner spacing */
.navbar {
    padding: 12px 20px;
}

/* Brand */
.navbar-brand {
    color: #ffffff;
}

.navbar-brand img {
    margin-right: 8px;
}

/* Menu links */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fdbe33;
}

/* CTA button */
.nav-bar .btn {
    background: #fdbe33;
    color: #030f27;
    padding: 8px 18px;
    border-radius: 4px;
}

/* STICKY STATE – after scroll */
.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    background: #000000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

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

    .navbar-brand img {
        height: 45px;
    }
}





/*******************************/
/******** Carousel CSS *********/
/*******************************/
/* MAIN CAROUSEL WRAPPER */
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}

/* SLIDE CONTAINER */
.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

/* IMAGE */
.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

/* ðŸ”¥ PREMIUM GRADIENT OVERLAY */
.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;

    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0.25) 65%,
        rgba(0, 0, 0, 0.10) 100%
    );
}

/* CAPTION CONTAINER */
.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    padding-top: 90px;
    height: 100vh;
    min-height: 400px;
}

/* SMALL TOP LINE */
.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* MAIN HEADLINE */
.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

/* SUB HEADLINE */
.carousel .carousel-caption h2 {
    color: #f2f2f2;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 35px;
    line-height: 1.3;
}

/* ðŸ”¥ PREMIUM CTA BUTTON */
.carousel .carousel-caption .btn {
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #000;
    background: #f4b400;
    border: none;
    border-radius: 4px;

    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.carousel .carousel-caption .btn:hover {
    background: #d89f00;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* TABLET */
@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 42px;
    }

    .carousel .carousel-caption h2 {
        font-size: 22px;
    }

    .carousel .carousel-caption p {
        font-size: 14px;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}


/* TRUST BADGES CONTAINER */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* EACH BADGE */
.trust-badges span {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);

    transition: all 0.3s ease;
}

/* HOVER EFFECT (OPTIONAL PREMIUM) */
.trust-badges span:hover {
    background: #f4b400;
    color: #000;
    border-color: #f4b400;
}


/* MOBILE */
@media (max-width: 767.98px) {
    .trust-badges span {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 32px;
        font-weight: 700;
    }

    .carousel .carousel-caption h2 {
        font-size: 20px;
    }

    .carousel .carousel-caption p {
        font-size: 13px;
    }


/*******************************/
/******* TRUST BADGES CONTAINER  CSS *******/
/*******************************/

/* TRUST BADGES CONTAINER */
.trust-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* EACH BADGE */
.trust-badges span {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);

    transition: all 0.3s ease;
}

/* HOVER EFFECT (OPTIONAL PREMIUM) */
.trust-badges span:hover {
    background: #f4b400;
    color: #000;
    border-color: #f4b400;
}

@media (max-width: 767.98px) {
    .trust-badges span {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/**********************************/
/*********** About Section ********/
/**********************************/
.about-section {
    background-size: cover;
    background-image: url("../img/aboutuss.jpg");
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #ffffff;
}


/* Overlay (separate div – safer than ::before) */
.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Content */
.about-section .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

/* Heading */
.about-section h2 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Intro text */
.about-intro {
    color: #f1f1f1;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Main paragraph */
.about-text {
    color: #e6e6e6;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* 🔥 PREMIUM CTA BUTTON */
.about-btn {
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #000;
    background: linear-gradient(135deg, #f4b400, #ffcc33);
    border: none;
    border-radius: 4px;

    transition: transform 0.3s ease,
                box-shadow 0.3s ease,
                background 0.3s ease;
}

/* HOVER EFFECT */
.about-btn:hover {
    background: linear-gradient(135deg, #d89f00, #f4b400);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* KEYBOARD FOCUS (IMPORTANT) */
.about-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,180,0,0.5);
}

/**********************************/
/******** ISO Standards ***********/
/**********************************/

.iso-section {
    background: linear-gradient(135deg, #0b1c6d, #1f2fa1);
}

/* Card */
.iso-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px 24px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.iso-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Icon */
.iso-icon {
    width: 56px;
    height: 56px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.iso-icon i {
    font-size: 24px;
    color: #0b1c6d;
}

/* Headings */
.iso-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.iso-card h5 {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    margin-bottom: 15px;
}

/* Text */
.iso-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Read more link */
.iso-link {
    font-weight: 600;
    color: #ff5722;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.iso-link span {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.iso-link:hover span {
    transform: translateX(5px);
}












