/*******************************/
/********* General CSS *********/
/*******************************/


body {
    /* color: #666666; */
    background: #f8f8f8;
    color: #333;
    overflow-x: hidden;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #030f27;
}

a {
    color: #666666;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #fdbe33;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

/* .wrapper {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #1d2a35;
    color: white;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: white;
    background: #121518;
}

.back-to-top i {
    padding-top: 10px;
}

.btn {
    transition: .3s;
} */


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
/* .top-bar {
    position: relative;
    height: 90px;
    background: #fff;
} */

/* .top-bar .logo {
    
    text-align: left;
    overflow: hidden;
}

.top-bar .logo h1 {
    margin: 0;
    color: #030f27;
    font-size: 60px;
    line-height: 60px;
    font-weight: 700;
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 100px;
} */

/* .top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar .top-bar-icon [class^="flaticon-"]::before {
    margin: 0;
    color: #030f27;
    font-size: 40px;
}

.top-bar .top-bar-text {
    padding-left: 15px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    color: #030f27;
    font-size: 16px;
    font-weight: 400;
}

.top-bar .top-bar-text p {
    margin: 0;
    color: #030f27;
    font-size: 13px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}

@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
} */


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.nav-bar {
    position: relative;
    transition: .3s;
}

.nav-bar .container-fluid {
    padding: 0;
}

.nav-bar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 1366px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

/* Gradient Navbar Background */
.nav-bar .navbar {
    height: 100%;
    /* background: 
        linear-gradient(135deg, #205b91 0%, #359ac6 60%, #6cb7e8 90%, #9eddff 100%), 
        linear-gradient(70deg, rgba(255,255,255,0.13) 0 60%, transparent 100%);        */
    /* border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px; */
    box-shadow: 0 3px 14px 0 rgba(32,91,145,0.07);
    position: relative;
    z-index: 10;
    color: white;
}

.nav-bar .navbar {
    height: 100%;
    background: url('../img/navbar-bg.jpeg') no-repeat center center;
    background-size: cover;
    color: white;
}


.navbar-nav .nav-link {
    position: relative;
    color: black;
    transition: color 0.3s ease;
    text-decoration: none;
    padding: 0 20px;
}


/* Nav link default color white */
.navbar-dark .navbar-nav .nav-link {
    color: white; /* text white by default */
    position: relative;
    padding: 7px 13px;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.4s ease-in-out;
}

/* Hover + Active State: background white, text blue */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #359ac6; /* blue text on hover */
    transform: translateY(-2px) scale(1.05);
    text-shadow: none; /* remove text shadow if you want */
}

/* Remove glowing blue background on hover and replace with white background */
.navbar-dark .navbar-nav .nav-link::before {
    background: white; /* white background on hover */
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease;
    z-index: -1;
    position: absolute;
    inset: 0;
    border-radius: 10px;
    content: "";
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

/* Dropdown Menu Animation */
.navbar-dark .navbar-nav .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 10px;
    animation: fadeIn 0.4s ease;
}

.navbar-dark .navbar-nav .dropdown-item {
    color: #359ac6;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-item .active {
    background-color: #c1d3e5 !important;
}

.navbar-dark .navbar-nav .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #359ac6;
}

/* Dropdown fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .nav-link:hover {
    color: #fff;
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn {
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 0;
}

.nav-bar .btn:hover {
    color: #030f27;
    background: #fdbe33;
    border-color: #fdbe33;
}

@media (min-width: 992px) {
    .nav-bar.nav-sticky {
        padding: 0;
    }
    .nav-bar .navbar {
        /* padding: 20px; */
    }
    .nav-bar .navbar-brand {
        display: none;
    }
    .nav-bar a.nav-link {
        padding: 8px 15px;
        font-size: 15px;
        /* text-transform: uppercase; */
    }
}

@media (max-width: 991.98px) {
    .nav-bar .navbar {
        padding: 15px;
    }
    .nav-bar a.nav-link {
        padding: 5px;
    }
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    .nav-bar .btn {
        display: none;
    }
}

.navbar-brand img {
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand span {
    font-weight: 600;
    color: white;
    font-size: 18px;
}




/*******************************/
/******** Carousel CSS *********/
/*******************************/
/* .carousel {
    position: relative;
    width: 75%;
    height: calc(100vh - 170px);
    min-height: 520px;

    text-align: center;
    overflow: hidden;
    margin-top: 1px;
}

.carousel .carousel-inner,
.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

.carousel .carousel-caption {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: calc(100vh - 170px);
    min-height: 400px;
}

.carousel .carousel-caption p {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.carousel .carousel-caption h1 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 25px;
}

.carousel .carousel-caption .btn {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 10px;
    transition: .3s;
}

.carousel .carousel-caption .btn:hover {
    color: black;
    background: #359ac6;
    border-color: #359ac6;
}

@media (max-width: 767.98px) {
    .carousel .carousel-caption h1 {
        font-size: 40px;
        font-weight: 700;
    }

    .carousel .carousel-caption p {
        font-size: 20px;
    }

    .carousel .carousel-caption .btn {
        padding: 12px 30px;
        font-size: 18px;
        font-weight: 500;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-caption h1 {
        font-size: 30px;
        font-weight: 500;
    }

    .carousel .carousel-caption p {
        font-size: 16px;
    }

    .carousel .carousel-caption .btn {
        padding: 10px 25px;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
    }
}

.carousel .animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.carousel-item {
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.carousel-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    z-index: 2;
} */


/* =======================
   Layout Container
======================= */
.carousel-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    height: 80vh;
    /* Full screen height */
    overflow: hidden;
}

/* =======================
   Left Side - Carousel
======================= */
.carousel-container {
    width: 75%;
    position: relative;
}

.carousel {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* Each slide item fills screen properly */
.carousel-item {
    position: relative;
    width: 100%;
    height: 80vh;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* maintains aspect ratio, fills screen */
    object-position: center;
    /* centers important part */
}

/* Overlay */
.carousel-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Caption */
.carousel-caption {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
    padding: 0 10px;
}

.carousel-caption h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.carousel-caption p {
    color: #eee;
    font-size: 20px;
    line-height: 30px;
}

/* =======================
   Right Side - Audit Box
======================= */
.audit-box {
    width: 25%;
    background: #f8f8f8;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    border-left: 5px solid #359ac6;
}

.audit-heading {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;

}

.audit-desc {
    font-size: 16px;
    line-height: 26px;
    color: #444;
    margin-bottom: 30px;

}

.audit-blue {
    color: #007bff;
    font-weight: 600;
}

.audit-red {
    color: #e63946;
    font-weight: 600;
}

.audit-green {
    color: #2a9d8f;
    font-weight: 600;
}

/* =======================
   Carousel Controls
======================= */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 60%;
}

/* =======================
   Responsive Design
======================= */
@media (max-width: 1200px) {
    .carousel-caption h1 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .carousel-section {
        flex-direction: column;
        height: auto;
    }

    .carousel-container,
    .audit-box {
        width: 100%;
        height: auto;
    }

    .carousel {
        height: 70vh;
    }

    .carousel-item {
        height: 70vh;
    }

    .carousel-caption h1 {
        font-size: 34px;
    }

    .carousel-caption p {
        font-size: 16px;
    }

    .audit-box {
        padding: 30px 20px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .carousel {
        height: 60vh;
    }

    .carousel-item {
        height: 60vh;
    }

    .carousel-caption h1 {
        font-size: 26px;
    }

    .carousel-caption p {
        font-size: 14px;
    }

    .audit-box {
        padding: 20px 15px;
    }
}


/*******************************/
/******* Page Header CSS *******/
/*******************************/
/* .page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 90px 0;
    text-align: center;
    background: #1d2a35;
}

.page-header h2 {
    position: relative;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fff;
}

.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 22px;
    color: #ffffff;
}

.page-header a:hover {
    color: #ffffff;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 60px 0;
    }

    .page-header h2 {
        font-size: 45px;
    }

    .page-header a {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 45px 0;
    }

    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
} */


/* 🌄 Page Header Section
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 120px 0;
    text-align: center;

    background-image:url('img/blog-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    color: #fff;
    overflow: hidden;
}


.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}


.page-header .container {
    position: relative;
    z-index: 2;
}


.page-header h2 {
    position: relative;
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fff;
}


.page-header a {
    position: relative;
    padding: 0 12px;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-header a:hover {
    color: #e54d42;
}

.page-header a::after {
    position: absolute;
    content: "/";
    right: -7px;
    color: #ffffff;
}

.page-header a:last-child::after {
    display: none;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.8s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 2.2s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 991.98px) {
    .page-header {
        padding: 90px 0;
        background-attachment: scroll;

    }

    .page-header h2 {
        font-size: 35px;
    }

    .page-header a {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 70px 0;
    }

    .page-header h2 {
        font-size: 30px;
    }

    .page-header a {
        font-size: 16px;
    }
} */
/* 🌄 Page Header */
.page-header {
    position: relative;
    margin-bottom: 45px;
    padding: 130px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
    animation: bgZoom 2.5s ease-in-out forwards;
}

/* 🌀 Background Zoom Effect */
@keyframes bgZoom {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 🌙 Gradient Overlay */
.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.6), rgba(30, 30, 30, 0.8));
    z-index: 0;
}

/* 🔤 Text Layer */
.page-header .container {
    position: relative;
    z-index: 2;
}

/* ✨ Glowing Heading Animation */
.glow-text {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    display: inline-block;
    position: relative;
    opacity: 0;
    animation: fadeUp 1.8s ease forwards;
}

.glow-text::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 3px;
    background: #f5c542;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 10px #f5c542, 0 0 20px #f5c542;
}

/* 🌟 Glow effect pulse */
@keyframes glowPulse {

    0%,
    100% {
        text-shadow: 0 0 10px #f5c542, 0 0 20px #f5c542, 0 0 30px #f5c542;
    }

    50% {
        text-shadow: 0 0 15px #fff, 0 0 25px #f5c542, 0 0 40px #f5c542;
    }
}

/* 🪶 Smooth Fade-in Animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔗 Breadcrumb Links */
.breadcrumb-links {
    margin-top: 15px;
}

.fade-link {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    opacity: 0;
    text-decoration: none;
    animation: fadeUp 2s ease forwards;
    transition: color 0.3s ease;
}

.fade-link.delay {
    animation-delay: 0.5s;
}

.fade-link:hover {
    color: #f5c542;
}

.fade-link::after {
    content: "/";
    position: absolute;
    right: -10px;
    color: #fff;
}

.fade-link:last-child::after {
    display: none;
}

/* 📱 Responsive */
@media (max-width: 991.98px) {
    .page-header {
        padding: 90px 0;
        background-attachment: scroll;
    }

    .glow-text {
        font-size: 38px;
    }

    .fade-link {
        font-size: 18px;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    /* margin-bottom: 45px; */
}

.section-header p {
    color: #0d0e0e;
    font-size: 3rem;
    font-weight: 600;
    /* margin-bottom: 5px; */
    margin-bottom: 30px;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    /* border: 1px solid yellow; */
    padding: 15px;
    background: #359ac6;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    margin-bottom: 45px;
}

.feature .col-md-12 {
    background: #359ac6;
}

.feature .col-md-12:nth-child(2n) {
    color: #030f27;
    background: #1d2a35;
}

.feature .feature-item {
    min-height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature .feature-icon {
    position: relative;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature .feature-icon::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -20px;
    left: -10px;
    border: 2px dotted #ffffff;
    border-radius: 60px;
    z-index: 1;
}

.feature .feature-icon::after {
    position: absolute;
    content: "";
    width: 79px;
    height: 79px;
    top: -18px;
    left: -9px;
    background: #359ac6;
    border-radius: 60px;
    z-index: 2;
}

.feature .col-md-12:nth-child(2n) .feature-icon::after {
    background: #1d2a35;
}

.feature .feature-icon [class^="flaticon-"]::before {
    position: relative;
    margin: 0;
    color: black;
    font-size: 60px;
    line-height: 60px;
    z-index: 3;
}

.feature .feature-text {
    padding-left: 30px;
}

.feature .feature-text h3 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.feature .feature-text p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.feature .col-md-12:nth-child(2n) [class^="flaticon-"]::before,
.feature .col-md-12:nth-child(2n) h3,
.feature .col-md-12:nth-child(2n) p {
    color: white;
}


/*******************************/
/********** About CSS **********/
/*******************************/
/* .about {
    position: relative;
    width: 100%;
    padding: 50px 0;
}


.about .section-header {
    
}

.about .section-header h3{
    color: orange;
    font-size: 30px;
    font-weight: bold;
}

.about .about-img {
    position: relative;
    height: 500px;
}

.about .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.about .about-text p {
    margin-top: 20px;
    font-size: 17px;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 10px;
    background: #1d2a35;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #000000;
    background: #359ac6;
}

.company-name {
    font-weight: 700;
 
    font-size: 30px;
   
    color: black;

    letter-spacing: 1px;
 
    display: inline-block;
    position: relative;
    animation: fadeUp 1.5s ease-in-out;
   
}


.company-name::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    border-radius: 2px;
    animation: underlineGrow 1.5s ease forwards 0.5s;
}


@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes underlineGrow {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}


@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
    }
}

    h1,
    h2 {
      color: #111;
    }

    .about-container {
      max-width: 1300px;
      margin: 80px auto;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      animation: fadeIn 1.5s ease-in-out;
    }

    /* ---------- Header Section ---------- */
.about-header {
    text-align: center;
    padding: 60px 30px 40px;
    animation: slideDown 1.5s ease;
}

.pre-heading {
    font-size: 0.85rem;
    color: #e54d42;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-header p {
    color: #666;
    font-size: 1rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- Image Section ---------- */
.about-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    animation: fadeIn 2s ease;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 18px 26px;
    border-radius: 10px;
    animation: slideUp 2s ease;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Vision & Mission ---------- */
.vision-mission-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 60px 40px;
    animation: fadeInUp 2s ease;
}

.card {
    flex: 1 1 45%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 25px 20px;
    transition: all 0.5s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.vision-card {
    border-left: 5px solid #505252;
}

.mission-card {
    background: #f7f7f7;
    border-left: 5px solid #505252;
}

.card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.card li {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
}

.mission-card ul li::before {
    content: '✔';
    color: #0fd1d1;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.85rem;
}

/* ---------- Description Section ---------- */
.about-description {
    padding: 40px 50px 60px;
    text-align: center;
    animation: fadeIn 2s ease;
}

.about-description p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-description ul {
    list-style: none;
    margin: 25px auto;
    padding: 0;
    max-width: 600px;
    text-align: left;
}

.about-description ul li {
    padding-left: 22px;
    margin-bottom: 10px;
    position: relative;
    color: #444;
}

.about-description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e54d42;
    font-weight: bold;
}

/* Hidden part (Read More) */
.hidden-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.hidden-content.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1.2s ease;
    margin-top: 50px;
}

/* ---------- Button ---------- */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: 25px;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #0077b6;
    color: #0077b6;
    background: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.5s ease, transform 0.4s ease;
    opacity: 0;
    animation: fadeInButton 1.8s ease-out 1.4s forwards, glowPulse 3s ease-in-out infinite alternate;
    z-index: 1;
}

/* 🌈 Gradient Background */
.read-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #00b4d8, #48cae4);
    transition: all 0.6s ease;
    z-index: 0;
}

/* 🖱️ Hover Effect */
.read-more-btn:hover::before {
    left: 0;
    ;
}

.read-more-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* 🔘 CLICK (Active) State Fix */
.read-more-btn:active {
    color: #fff !important;
    transform: scale(0.97);
}

.read-more-btn:active::before {
    left: 0;
    filter: brightness(0.9);
}

/* ✨ Text Layer Always on Top */
.read-more-btn span,
.read-more-btn i {
    position: relative;
    z-index: 2;
}

.read-more-btn i {
    transition: transform 0.4s ease;
}

.read-more-btn:hover i {
    transform: translateX(6px);
}

/* 🔥 Animations */
@keyframes fadeInButton {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 8px #0077b6, 0 0 16px #00b4d8;
        color: white;
    }

    50% {
        box-shadow: 0 0 14px #48cae4, 0 0 28px #0077b6;
        color: white;
    }
}


/* ---------- Animations ---------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .vision-mission-container {
        flex-direction: column;
    }

    .card {
        flex: 1 1 100%;
    }

    .about-image {
        height: 250px;
    }

    .about-header h1 {
        font-size: 1.6rem;
    }
}


.about-heading {
    color: #b08a40;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.company-title {
    font-weight: bold;
    font-size: 2.1rem;
    line-height: 1.1;
    color: #000000;
}

.btn-outline-gold {
    border-color: #b08a40;
    color: #b08a40;
}

.btn-outline-gold:hover {
    background: #b08a40;
    color: #fff;
    border-color: #b08a40;
}

*/

/* Container setup */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= ABOUT SECTION ================= */
.about {
    position: relative;
    width: 100%;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 70%, #e6f4f8);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* ================= BACKGROUND DECOR ================= */
.about::before,
.about::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    opacity: 0.15;
    z-index: 0;
}

.about::before {
    top: -70px;
    left: -70px;
    background: radial-gradient(circle, #0077b6 15%, transparent 70%);
    animation: float 8s ease-in-out infinite alternate;
}

.about::after {
    bottom: -90px;
    right: -80px;
    background: radial-gradient(circle, #00b4d8 15%, transparent 70%);
    animation: float 9s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(25px);
    }
}

/* ================= FLEX LAYOUT ================= */
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ================= TEXT SECTION ================= */
.about .about-text {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    opacity: 0;
    transform: translateX(-80px);
    animation: textReveal 1.2s ease-out forwards;
    animation-delay: 0.3s;
    position: relative;
}

.about .about-text::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #0077b6, #00b4d8);
    border-radius: 3px;
    animation: borderGrow 1.4s ease-out 0.6s forwards;
}

@keyframes borderGrow {
    from {
        height: 0;
    }

    to {
        height: 80%;
    }
}

.company-title {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.4;
    color: #023e8a;
    margin-bottom: 20px;
    position: relative;
}

.company-title span {
    color: #00b4d8;
}

.company-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 4px;
    background: #00b4d8;
    border-radius: 2px;
    animation: underlineGrow 1.2s ease-out 1s forwards;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }

    to {
        width: 150px;
    }
}

/* Paragraphs */
.about .about-text p {
    margin-top: 15px;
    font-size: 16.5px;
    line-height: 1.8;
    color: #333;
    opacity: 0;
    animation: fadeInText 1.6s ease-out 1.2s forwards;
}

@keyframes fadeInText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= BUTTON STYLING ================= */
.about .about-text a.btn {
    display: inline-block;
    text-decoration: none;
    margin-top: 35px;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #0077b6;
    color: #0077b6;
    background: transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.5s ease, transform 0.4s ease;
    opacity: 0;
    animation: fadeInButton 1.8s ease-out 1.4s forwards, glowPulse 3s ease-in-out infinite alternate;
}

.about .about-text a.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0077b6, #00b4d8, #48cae4);
    transition: all 0.6s ease;
    z-index: 0;
}

.about .about-text a.btn:hover::before {
    left: 0;
}

.about .about-text a.btn span {
    position: relative;
    z-index: 1;
    transition: color 0.6s ease;
}

.about .about-text a.btn:hover span {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
}

.about .about-text a.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 150, 199, 0.3);
}

@keyframes fadeInButton {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    from {
        box-shadow: 0 0 0 rgba(0, 150, 199, 0);
    }

    to {
        box-shadow: 0 0 15px rgba(0, 150, 199, 0.4);
    }
}

/* ================= IMAGE SECTION ================= */
.about .about-img {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(80px);
    animation: imgSlide 1.4s ease-out 0.6s forwards;
}

.about .about-img img {
    width: 80%;
    height: 550px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(5, 5, 5, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about .about-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 45px rgba(0, 150, 199, 0.45);
}

/* ================= ANIMATIONS ================= */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes imgSlide {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .company-title {
        font-size: 2rem;
    }

    .about .about-text {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        /* text-align: center; */
    }

    .about {
        padding: 60px 0;
    }

    .about .about-text,
    .about .about-img {
        transform: none;
        opacity: 1;
        animation: fadeUp 1.2s ease-out forwards;
        padding: 25px;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(60px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .about .about-img img {
        width: 90%;
        margin-top: 25px;
    }

    .about .about-text::before {
        display: none;
    }

    .company-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .company-title {
        font-size: 1.7rem;
    }

    .about .about-text p {
        font-size: 15.5px;
    }

    .about .about-text a.btn {
        padding: 10px 28px;
        font-size: 15px;
    }
}

/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #39f462);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, );
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.fact .fact-left {
    color: #fdbe33;
    background: #359ac6;
}

.fact .fact-right {
    color: #fff;
    background: #1d2a35;
}

.fact .fact-left h2 {
    color: white;
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.service .service-img {
    position: relative;
    overflow: hidden;
}

.service .service-img img {
    width: 100%;
}

.service .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    /* ✅ Add this line to make text appear line by line */
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, 0.7);
    transition: 0.5s;
    opacity: 0;
    text-align: center;
    /* Optional - to center align text */
}

.service .service-item:hover .service-overlay {
    opacity: 1;
}

.service .service-overlay p {
    color: #ffffff;
    margin: 5px 0;
    /* ✅ Add spacing between lines */
    font-size: 16px;
    /* Optional - adjust as needed */
}


/* ✅ Automatically add ✔ symbol before each paragraph */
.service .service-overlay p::before {
    content: "✔";
    position: absolute;
    left: 15px;
    color: #fdbe33;
    font-weight: bold;
}

/* ✅ First paragraph without ✔ symbol */
.service .service-overlay p:first-child::before {
    content: "";
}

.service .service-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #359ac6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service .service-item a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: white;
    background: #1d2a35;
    border-radius: 0;
    transition: .3s;
}

.service .service-item:hover a.btn {
    color: rgb(38, 251, 233);
}


/*******************************/
/********** Video CSS **********/
/*******************************/
.video {
    position: relative;
    margin: 45px 0;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(3, 15, 39, .9), rgba(3, 15, 39, .9)), url(../img/carousel-1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: #fdbe33;
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play:hover:after {
    background-color: darken(#fdbe33, 10%);
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid #030f27;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: relative;
    padding: 25px 15px;
    text-align: center;
    /* background: #359ac6; */
    background: #2473f5;
    transition: .5s;
    height: 200px;
    border-radius: 5px;
}

.team .team-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1d2a35;
    transition: .5s;
}

.team .team-text p {
    margin: 0;
    color: white;
}

.team .team-item:hover .team-text {
    background: #1d2a35;
}

.team .team-item:hover .team-text h2 {
    color: white;
    letter-spacing: 1px;
}

.team .team-social {
    position: absolute;
    width: 100px;
    top: 0;
    left: -50px;
    display: flex;
    flex-direction: column;
    font-size: 0;
}

.team .team-social a {
    position: relative;
    left: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.team .team-item:hover .team-social a:first-child {
    background: #00acee;
    left: 50px;
    transition: .3s 0s;
}

.team .team-item:hover .team-social a:nth-child(2) {
    background: #3b5998;
    left: 50px;
    transition: .3s .1s;
}

.team .team-item:hover .team-social a:nth-child(3) {
    background: #0e76a8;
    left: 50px;
    transition: .3s .2s;
}

.team .team-item:hover .team-social a:nth-child(4) {
    background: #3f729b;
    left: 50px;
    transition: .3s .3s;
}


/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .row {
    position: relative;
}

.faqs .row::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: calc(50% - .5px);
    background: #fdbe33;
}

.faqs #accordion-1 {
    padding-right: 15px;
}

.faqs #accordion-2 {
    padding-left: 15px;
}

@media(max-width: 767.98px) {
    .faqs .row::after {
        display: none;
    }

    .faqs #accordion-1,
    .faqs #accordion-2 {
        padding: 0;
    }

    .faqs #accordion-2 {
        padding-top: 15px;
    }
}

.service .service-overlay {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

.service .service-overlay:last-child {
    margin-bottom: 0;
}

.service .service-overlay-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.service .service-overlay-header a {
    display: block;
    padding: 10px 25px;
    width: 100%;
    color: #121518;
    font-size: 16px;
    line-height: 40px;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .5s;
}

.service .service-overlay-header [data-toggle="collapse"][aria-expanded="true"] {
    background: #fdbe33;
}

.service .service-overlay-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #fdbe33;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.service .service-overlay-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #030f27;
    font-size: 12px;
    font-weight: 900;
    transition: .5s;
}

.service .service-overlay-body {
    padding: 20px 25px;
    font-size: 16px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-top: none;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    margin: 45px 0;
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(rgba(37, 158, 210, 0.8), rgba(29, 42, 53, 0.8)), url("../img/carousel-1.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial .container {
    max-width: 760px;
}

.about-page .testimonial {
    padding-bottom: 90px;
}

.testimonial .testimonial-slider-nav {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .5s;
}

.testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.3);
}

.testimonial .testimonial-slider-nav .slick-center {
    transform: scale(1.8);
    z-index: 1;
}

.testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 37px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

.testimonial .testimonial-slider {
    position: relative;
    margin-top: 15px;
    padding-top: 50px;
}

.testimonial .testimonial-slider::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    top: 0;
    left: calc(50% - 30px);
    background: url(../img/quote.png) top center no-repeat;
}

.testimonial .testimonial-slider h3 {
    color: #fdbe33;
    font-size: 22px;
    font-weight: 700;
}

.testimonial .testimonial-slider h4 {
    font-size: 14px;
    font-weight: 300;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial .testimonial-slider p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    margin: 0;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
/* .blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.blog .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-img img {
    width: 360px;
    height: 400px;
    border: 5px;

}

.blog .blog-title {
    display: flex;
    align-items: center;
    height: 60px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.blog .blog-title h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 18px;
    font-weight: 700;
    color: black;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
 .blog .blog-title a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #fff;
    background: #1d2a35;
    border-radius: 0;
    transition: .3s;
} 

.blog .blog-item:hover a.btn {
    color: #ffffff;
}

.blog .blog-meta {
    position: relative;
    padding: 25px 0 10px 0;
    background: #f3f6ff;
}

.blog .blog-meta::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #fdbe33;
}

.blog .blog-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #666666;
}

.blog .blog-meta p a {
    margin-left: 5px;
    font-style: normal;
}

.blog .blog-text {
    padding: 10px 25px 25px 25px;
    background: #f3f6ff;
}

.blog .blog-text p {
    margin: 0;
    font-size: 16px;
}

.blog .pagination .page-link {
    color: #030f27;
    border-radius: 0;
    border-color: #fdbe33;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #fdbe33;
    background: #030f27;
}

.blog .pagination .disabled .page-link {
    color: #999999;
} */
.card:hover .fixed-img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(253, 190, 51, 0.13) 0%, rgba(0, 0, 0, 0.19) 100%);
    border-radius: 0.25rem 0.25rem 0 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    /* Elegant serif Google font */
    font-weight: 700;
    font-size: 2.5rem;
    color: #1d2a35;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 8px rgba(16, 80, 80, 0.4);
}


.blog .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1d2a35;
    letter-spacing: 1.5px;
}

.blog .section-tag {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fdbe33;
}

.card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #222;
    text-align: left;
}

.card-img-top {
    height: 230px;
    object-fit: cover;
    border-radius: 0.25rem 0.25rem 0 0;
}

.blog {
    background: #f7fafd;
    border-radius: 0.25rem;
}

.card-body {
    padding: 10px 12px;
    min-height: 36px;
}

.animated-title {
    animation-duration: 1s;
}

.animated-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    animation: fadeInUp 0.8s;
}

.animated-card {
    transition: transform 0.4s, box-shadow 0.4s;
}

.animated-card:hover {
    transform: scale(1.05) translateY(-7px);
    box-shadow: 0 8px 32px 0 rgba(80, 80, 120, 0.2);
}

.fixed-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.25rem 0.25rem 0 0;
}

/*******************************/
/******* Single Post CSS *******/
/*******************************/
.single {
    position: relative;
    padding: 45px 0;
}

.single .single-content {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.single .single-content img {
    margin-bottom: 20px;
    width: 100%;
}

.single .single-tags {
    margin: -5px -5px 41px -5px;
    font-size: 0;
}

.single .single-tags a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .single-tags a:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-bio {
    margin-bottom: 45px;
    padding: 30px;
    background: #f3f6ff;
    display: flex;
}

.single .single-bio-img {
    width: 100%;
    max-width: 100px;
}

.single .single-bio-img img {
    width: 100%;
}

.single .single-bio-text {
    padding-left: 30px;
}

.single .single-bio-text h3 {
    font-size: 20px;
    font-weight: 700;
}

.single .single-bio-text p {
    margin: 0;
}

.single .single-related {
    margin-bottom: 45px;
}

.single .single-related h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .related-slider {
    position: relative;
    margin: 0 -15px;
    width: calc(100% + 30px);
}

.single .related-slider .post-item {
    margin: 0 15px;
}

.single .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.single .post-item .post-img {
    width: 100%;
    max-width: 80px;
}

.single .post-item .post-img img {
    width: 100%;
}

.single .post-item .post-text {
    padding-left: 15px;
}

.single .post-item .post-text a {
    font-size: 16px;
    font-weight: 400;
}

.single .post-item .post-meta {
    display: flex;
    margin-top: 8px;
}

.single .post-item .post-meta p {
    display: inline-block;
    margin: 0;
    padding: 0 3px;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
}

.single .post-item .post-meta p a {
    margin-left: 5px;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
}

.single .related-slider .owl-nav {
    position: absolute;
    width: 90px;
    top: -55px;
    right: 15px;
    display: flex;
}

.single .related-slider .owl-nav .owl-prev,
.single .related-slider .owl-nav .owl-next {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #030f27;
    background: #fdbe33;
    font-size: 16px;
    transition: .3s;
}

.single .related-slider .owl-nav .owl-prev:hover,
.single .related-slider .owl-nav .owl-next:hover {
    color: #fdbe33;
    background: #030f27;
}

.single .single-comment {
    position: relative;
    margin-bottom: 45px;
}

.single .single-comment h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-list {
    list-style: none;
    padding: 0;
}

.single .comment-child {
    list-style: none;
}

.single .comment-body {
    display: flex;
    margin-bottom: 30px;
}

.single .comment-img {
    width: 60px;
}

.single .comment-img img {
    width: 100%;
}

.single .comment-text {
    padding-left: 15px;
    width: calc(100% - 60px);
}

.single .comment-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
}

.single .comment-text span {
    display: block;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.single .comment-text .btn {
    padding: 3px 10px;
    font-size: 14px;
    color: #030f27;
    background: #dddddd;
    border-radius: 0;
}

.single .comment-text .btn:hover {
    background: #fdbe33;
}

.single .comment-form {
    position: relative;
}

.single .comment-form h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
}

.single .comment-form form {
    padding: 30px;
    background: #f3f6ff;
}

.single .comment-form form .form-group:last-child {
    margin: 0;
}

.single .comment-form input,
.single .comment-form textarea {
    border-radius: 0;
}

.single .comment-form .btn {
    padding: 15px 30px;
    color: #030f27;
    background: #fdbe33;
}

.single .comment-form .btn:hover {
    color: #fdbe33;
    background: #030f27;
}


/**********************************/
/*********** Sidebar CSS **********/
/**********************************/
.sidebar {
    position: relative;
    width: 100%;
}

@media(max-width: 991.98px) {
    .sidebar {
        margin-top: 45px;
    }
}

.sidebar .sidebar-widget {
    position: relative;
    margin-bottom: 45px;
}

.sidebar .sidebar-widget .widget-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 5px;
    font-size: 30px;
    font-weight: 700;
}

.sidebar .sidebar-widget .widget-title::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #fdbe33;
}

.sidebar .sidebar-widget .search-widget {
    position: relative;
}

.sidebar .search-widget input {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 0;
}

.sidebar .search-widget input:focus {
    box-shadow: none;
}

.sidebar .search-widget .btn {
    position: absolute;
    top: 6px;
    right: 15px;
    height: 40px;
    padding: 0;
    font-size: 25px;
    color: #fdbe33;
    background: none;
    border-radius: 0;
    border: none;
    transition: .3s;
}

.sidebar .search-widget .btn:hover {
    color: #030f27;
}

.sidebar .sidebar-widget .recent-post {
    position: relative;
}

.sidebar .sidebar-widget .tab-post {
    position: relative;
}

.sidebar .tab-post .nav.nav-pills .nav-link {
    color: #fdbe33;
    background: #030f27;
    border-radius: 0;
}

.sidebar .tab-post .nav.nav-pills .nav-link:hover,
.sidebar .tab-post .nav.nav-pills .nav-link.active {
    color: #030f27;
    background: #fdbe33;
}

.sidebar .tab-post .tab-content {
    padding: 15px 0 0 0;
    background: transparent;
}

.sidebar .tab-post .tab-content .container {
    padding: 0;
}

.sidebar .sidebar-widget .category-widget {
    position: relative;
}

.sidebar .category-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar .category-widget ul li {
    margin: 0 0 12px 22px;
}

.sidebar .category-widget ul li:last-child {
    margin-bottom: 0;
}

.sidebar .category-widget ul li a {
    display: inline-block;
    line-height: 23px;
}

.sidebar .category-widget ul li::before {
    position: absolute;
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #fdbe33;
    left: 1px;
}

.sidebar .category-widget ul li span {
    display: inline-block;
    float: right;
}

.sidebar .sidebar-widget .tag-widget {
    position: relative;
    margin: -5px -5px;
}

.single .tag-widget a {
    margin: 5px;
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    border: 1px solid #dddddd;
}

.single .tag-widget a:hover {
    color: #fdbe33;
    background: #030f27;
}

.sidebar .image-widget {
    display: block;
    width: 100%;
    overflow: hidden;
}

.sidebar .image-widget img {
    max-width: 100%;
    transition: .3s;
}

.sidebar .image-widget img:hover {
    transform: scale(1.1);
}


/*******************************/
/******** Portfolio CSS ********/
/*******************************/
.img-gallery-fixed {
  width: 240px;         /* Adjust size as needed */
  height: 240px;
  object-fit: cover;    /* Crops nicely, keeps image centered */
  border-radius: 8px;   /* Optional: Rounded corners */
  box-shadow: 0 2px 8px rgba(0,0,0,0.09); /* Optional: subtle shadow */
}


.portfolio {
    position: relative;
    padding: 45px 0;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: -15px 0 25px 0;
    list-style: none;
    font-size: 0;
    text-align: center;
}

.portfolio #portfolio-flters li,
.portfolio .load-more .btn {
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    background: #359ac6;
    border-radius: 10px;
    border: none;
    transition: .3s;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #1d2a35;
    color: #ffffff;
}

.portfolio .load-more {
    text-align: center;
}

.portfolio .load-more .btn {
    padding: 15px 35px;
    font-size: 16px;
    transition: .3s;
}

.portfolio .load-more .btn:hover {
    color: #fdbe33;
    background: #030f27;
}

.portfolio .portfolio-warp {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.portfolio .portfolio-img {
    position: relative;
    overflow: hidden;
}

.portfolio .portfolio-img {
    width: 100%;
    max-width: 400px;
    /* optional, box max size */
    height: 300px;
    overflow: hidden;
    border-radius: 2px;
    /* optional, for rounded corners */
}

.portfolio .portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This ensures image fills the box without distortion */
    transition: transform 0.3s;
}

.portfolio .portfolio-img:hover img {
    transform: scale(1.05);
    /* optional zoom effect on hover */
}


.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio .portfolio-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 15, 39, .7);
    transition: .5s;
    opacity: 0;
}

.portfolio .portfolio-warp:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio .portfolio-overlay p {
    margin: 0;
    color: #ffffff;
}

.portfolio .portfolio-text {
    display: flex;
    align-items: center;
    height: 60px;
    background: #359ac6;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-text h3 {
    margin: 0;
    padding: 0 15px 0 25px;
    width: calc(100% - 60px);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.portfolio .portfolio-warp a.btn {
    width: 60px;
    height: 60px;
    padding: 3px 0 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    line-height: 60px;
    font-weight: 100;
    color: #ffffff;
    background: #1d2a35;
    border-radius: 0;
    transition: .3s;
}

.portfolio .portfolio-warp:hover a.btn {
    color: #ffffff;
    background: gray;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .col-md-6 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.contact .col-md-6:first-child {
    /* background: #359ac6; */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.64);
}

.contact .col-md-6:last-child {
    background: #1d2a35;
    border-radius: 0 10px 10px 0;
}

.contact .contact-info {
    position: relative;
    width: 100%;
    padding: 0 15px;
}



.contact .contact-item {
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    border: 1px solid rgba(89, 88, 88, 0.585);
    border-radius: 10px;
}

.contact .contact-item [class^="flaticon-"]::before {
    margin: 0;
    color: #000000;
    font-size: 40px;
}

.contact .contact-text {
    position: relative;
    width: auto;
    padding-left: 20px;
}

.contact .contact-text h2 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}

.contact .contact-text p {
    margin: 0;
    color: #000;
    font-size: 16px;
}

.contact .contact-item:last-child {
    margin-bottom: 0;
}

.contact .contact-form {
    position: relative;
    padding: 0 15px;
}

.contact .contact-form input {
    color: #ffffff;
    height: 40px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form textarea {
    color: #ffffff;
    height: 185px;
    border-radius: 0;
    border-width: 1px;
    border-color: rgba(256, 256, 256, .4);
    background: transparent;
}

.contact .contact-form input:focus,
.contact .contact-form textarea {
    box-shadow: none;
}

.contact .contact-form .form-control::placeholder {
    color: #ffffff;
    opacity: 1;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .form-control::-ms-input-placeholder {
    color: #ffffff;
}

.contact .contact-form .btn {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background: #fff;
    border: none;
    border-radius: 10px;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #ffff;
    background: #000000;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
/* .footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #359ac6;
    color: #ffffff;
}

.footer .footer-contact,
.footer .footer-link,
.footer .newsletter {
    position: relative;
    margin-bottom: 45px;
}

.footer h2 {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: black;
}

.footer h2::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #000000;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #000000;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 7px 0;
    text-align: center;
    border: 1px solid rgba(256, 256, 256, .3);
    border-radius: 60px;
    transition: .3s;
}

.footer .footer-social a i {
    font-size: 15px;
    color: #ffffff;
}

.footer .footer-social a:hover {
    background: #fdbe33;
    border-color: #fdbe33;
}

.footer .footer-social a:hover i {
    color: #030f27;
}

.footer .newsletter .form {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.footer .newsletter input {
    height: 50px;
    border: 1px solid #121518;
    border-radius: 5px;
}

.footer .newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background: #121518;
    border-radius: 5px;
    border: 1px solid #0a0a0a;
    transition: .3s;
}

.footer .newsletter .btn:hover {
    color: #fff;
    background: #3a3a3a;
}

.footer .footer-menu .f-menu {
    position: relative;
    padding: 15px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(256, 256, 256, .1);
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu a:hover {
    color: #fdbe33;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #fdbe33;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {

    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

 */


 


/* -------------------- FOOTER BASE -------------------- */
.footer {
    position: relative;
    background: #ffffff;
    color: #1a1a1a;
    padding: 20px 0 10px;
    overflow: hidden;

    /* 💠 Box Shadow Effect (Main Footer) */
    /* box-shadow: 0px -6px 20px rgba(0, 0, 0, 0.863),
        inset 0px 2px 8px rgba(0, 118, 182, 0.953); */
    /* border-top-left-radius: 15px;
    border-top-right-radius: 15px; */
}

.footer .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 20px;
    /* margin: 30px; */
}

.footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer .col {
    flex: 1 1 250px;
    /* margin: 20px; */
    min-width: 230px;
    height: 440px;
    animation: fadeInUp 1s ease both;
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 10px;
    padding: 10px;
    /* box-shadow: 0px 4px 10px rgba(0, 119, 182, 0.08); */
    transition: all 0.4s ease;
    font-size: 17px;
}

.footer .col:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 119, 182, 0.15);
}

/* -------------------- HEADINGS -------------------- */
.footer h2 {
    position: relative;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}

.footer h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: white;
}

/* -------------------- LINKS -------------------- */
.footer .footer-link a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 17px;
    transition: all 0.3s ease;
}

.footer .footer-link a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 10px;
    color: white;
    transition: 0.3s;
}

.footer .footer-link a:hover {
    color: white;
    transform: translateX(5px);
}

/* -------------------- CONTACT -------------------- */
.footer .footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    line-height: 1.6;
    font-size: 17px;
}

.footer .footer-contact i {
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.footer .footer-contact i:hover {
    transform: scale(1.2);
}

/* -------------------- SOCIAL ICONS -------------------- */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    border: 1px solid white;
    border-radius: 50%;
    margin-right: 10px;
    color: #0077b6;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #0077b6;
    color: #fff;
    transform: scale(1.1);
}

/* -------------------- NEWSLETTER -------------------- */
.footer .newsletter p {
    margin-bottom: 15px;
    color: white;
}

.footer .newsletter input {
    width: 58%;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.3s;
}

.footer .newsletter input:focus {
    border-color: #0077b6;
}

.footer .newsletter button {
    background: #0077b6;
    color: #fff;
    border: none;
    padding: 10px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.footer .newsletter button:hover {
    background: #005f8f;
}

/* -------------------- COPYRIGHT -------------------- */
.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 15px;
    letter-spacing: 0.5px;
    animation: fadeIn 1.5s ease both;
}

/* -------------------- ANIMATIONS -------------------- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        align-items: flex-start;
    }

    /* .footer .col {
        margin: 15px 0;
      } */

    .footer h2 {
        font-size: 18px;
    }
}


.map-section {
    text-align: center;
    margin-top: 50px;
}

.map-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #023e8a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.map-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Hover animation */
.map-container:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}















.project-heading h3 {
    color: #1b3556;
    font-weight: 700;
    letter-spacing: 1px;
    padding-left: 14px;
    border-left: 4px solid #18a9c4;
}

.project-accent {
    color: #18a9c4;
}

.project-list {
    list-style: none;
    counter-reset: project-steps;
    margin: 0;
}

.project-list li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 40px;
    min-height: 32px;
    font-size: 1.13rem;
    color: #333f5a;
    line-height: 1.5;
    border-left: 2px solid #e3e9f1;
    background: transparent;
    transition: background 0.2s;
}

.project-list li:last-child {
    margin-bottom: 0;
}

.project-list li::before {
    counter-increment: project-steps;
    content: counter(project-steps);
    position: absolute;
    left: -9px;
    top: 0;
    color: #fff;
    background: #18a9c4;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(24, 169, 196, 0.11);
}

.project-list li:hover {
    background: #f6fbfd;
}

.accent-blue {
    color: #18a9c4;
    font-weight: 600;
}

.accent-orange {
    color: #ff9800;
    font-weight: 600;
}

.accent-green {
    color: #19b66b;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .project-list li {
        font-size: 1rem;
        padding-left: 40px; /* Keep this value same as the default */
    }
    .project-list li::before {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: .99rem;
    }
}


/* @media (max-width: 767.98px) {
    .project-heading h3 {
        font-size: 1.13rem;
    }

    .project-list li {
        font-size: 1rem;
        padding-left: 34px;
    }

    .project-list li::before {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: .99rem;
    }
} */

/*******************************/
/*********** Product CSS **********/
/*******************************/

/* General CSS */
.container {
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Section Title Style */
.section-title {
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
    font-size: 2rem; /* Slightly smaller for the compact view */
    color: #1d2a35;
    letter-spacing: 1.5px;
    background: linear-gradient(45deg, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 4px rgba(16, 80, 80, 0.2);
}

/* Image Styling */
.fixed-img {
    width: 100%;
    /* Set a consistent height for images in the compact 3-column layout */
    height: 150px; 
    object-fit: cover;
    border-radius: 0.25rem 0.25rem 0 0;
}

/* Card Body and Title Styles */
.card-body {
    padding: 8px 10px; 
    min-height: 45px; /* Ensures space for the title */
}
.animated-card-title {
    font-size: 0.95rem; /* Slightly smaller title font */
    font-weight: 700;
    color: #333;
    text-align: center;
}

/* Card Hover Animation */
.animated-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.animated-card:hover {
    transform: translateY(-5px); /* Lift the card slightly */
    box-shadow: 0 6px 20px 0 rgba(80,80,120,0.15) !important;
}

/* Explore More Button Styling (Bootstrap utility classes assumed) */
.btn-warning {
    background-color: #fdbe33; /* Your brand color */
    border-color: #fdbe33;
    color: #1d2a35;
    font-weight: 600;
    padding: 8px 25px;
    border-radius: 50px;
    transition: background-color 0.3s;
}
.btn-warning:hover {
    background-color: #d19f2a;
    border-color: #d19f2a;
    color: #fff;
}

/* Hover effect for the image overlay */
.card:hover .fixed-img::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient overlay */
    background: linear-gradient(120deg, rgba(253,190,51,0.13) 0%, rgba(0,0,0,0.19) 100%);
    border-radius: 0.25rem 0.25rem 0 0;
}

/* Section Title Style */
.section-title {
    font-family: 'Playfair Display', serif; 
    font-weight: 700;
    font-size: 2.5rem;
    color: #ffffff;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #000000, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* General Blog/Section Styling */
.blog .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1d2a35;
    letter-spacing: 1.5px;
}
.blog .section-tag {
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fdbe33;
}
.blog {
    background: #f7fafd;
    border-radius: 0.25rem;
}

/* Card Image Styles (Reduced Height) */
.fixed-img {
    width: 100%;
    /* REDUCED HEIGHT for 4-column layout */
    height: 200px; 
    object-fit: cover;
    border-radius: 0.25rem 0.25rem 0 0;
}
.card-img-top {
    height: 230px; /* Kept for general card-img-top if used elsewhere */
    object-fit: cover;
    border-radius: 0.25rem 0.25rem 0 0;
}

/* Card Body and Title Styles */
.card-body {
    padding: 10px 12px; 
    min-height: 36px;
}
.card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #222;
    text-align: left;
}
.animated-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    animation: fadeInUp 0.8s;
}
.animated-title {
    animation-duration: 1s;
}


/* Card Hover Animation */
.animated-card {
    transition: transform 0.4s, box-shadow 0.4s;
}
.animated-card:hover {
    transform: scale(1.05) translateY(-7px);
    box-shadow: 0 8px 32px 0 rgba(80,80,120,0.2);
}

/*******************************/
/*********** Testimonials CSS **********/
/*******************************/

.testimonial-shadow {
    box-shadow: 0 8px 24px rgba(24,169,196,0.13), 0 2px 8px rgba(51,63,90,0.09);
    transition: transform 0.35s cubic-bezier(.47,1.64,.41,.8), box-shadow 0.3s;
}
.testimonial-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 16px 32px rgba(24,169,196,0.18), 0 6px 18px rgba(51,63,90,0.14);
    background: linear-gradient(115deg,#e4f6fb 60%, #f7ecfa 100%);
}
.testimonial-quote {
    position: absolute;
    left: 20px;
    top: -22px;
    z-index: 2;
}
.accent-border { border-width: 3px !important; }
.rounded-4 { border-radius: 1.5rem !important; }
@media (max-width: 767.98px) {
    .testimonial-item { margin-bottom: 24px !important; }
    .testimonial-quote { left: 10px; top: -18px; }
}

/***************************************/
/*********** Testimonials CSS **********/
/***************************************/
.certificate-section {
    background-color: #f8f9fa;
}

.section-title {
    font-weight: 700;
    color: #205b91;
    font-size: 2.5rem;
}

.section-subtitle {
    color: #555;
    font-size: 1.1rem;
}

.certificate-card h5 {
    color: #359ac6;
    font-weight: 600;
}

.certificate-card iframe {
    border-radius: 5px;
}
