
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* BODY */
body {
    font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    background-color: #fff;
}

/* LINKS */
a {
    text-decoration: none;
    color: #06A0DE;
    transition: color 0.25s ease, text-decoration 0.25s ease;
}

a:hover {
    color: #06A0DE; /* slightly lighter purple */
}

/* HEADINGS */
h1, h2, h3 {
    font-family: "Roboto", Georgia, serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.25;
    margin-bottom: 0.6em;
}

/* Optional for better scale */
h1 { font-size: 2rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }


@media (min-width: 1600px) {
    .h1, h1 {
        font-size: 2.2rem;
    }
}

/*@media (min-width: 340px) and (max-width: 768px){*/
/*    .h1, h1 {*/
/*        font-size: 1.5rem;*/
/*    }*/
/*    .h2, h2 {*/
/*        font-size: 1rem;*/
/*    }*/
/*    .h3, h3 {*/
/*        font-size: 1rem;*/
/*    }*/
/*}*/



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #06A0DE;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #06A0DE;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(0, 0, 0, 0.7);
}

#header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo{
    margin: 0;!important;
    padding: 0;!important;

}

#header .logo a span {
    color: #06A0DE;
}

#header .logo img {
    max-height: 60px;
}
@media (min-width: 340px) and (max-width: 600px) {
    #header .logo img {
    max-height: 40px;
}

#header .logo {
    font-size: 20px;
}
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #06A0DE;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #06A0DE;
    padding: 8px 25px;
    margin-left: 30px;
    border-radius: 4px;
    font-weight: 400;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #06A0DE;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
    color: #556270;
}
.navbar .dropdown ul li a {
    color: #556270;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #06A0DE;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(63, 73, 83, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #556270;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #06A0DE;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #06A0DE;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* 🌟 HERO SECTION BASE STYLE */
#hero {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    object-fit: fill;
    background-color: rgba(63, 73, 83, 0.3);
    background-attachment: fixed;
}

/* 🖼 Carousel Structure */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: fill;
}

#hero .carousel-item::before {
    content: "";
    background-color: rgba(30, 35, 40, 0.3);
}

/* 🎯 Carousel Container */
#hero .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 70px;
    bottom: 0;
    left: 50px;
    right: 50px;
}

#hero .container {
    text-align: center;
}

/* 🧠 Text Styling */
#hero h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 700;
}

#hero p {
    margin: 0 auto 30px;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    animation-delay: 0.4s;
}
.hero-content p{
    max-width: 50%;
    text-align: center;
}

/* ✨ Carousel Animation */
#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

/* ⏩ Controls */
#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    font-size: 30px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
}

/* 🔘 Indicators */
#hero .carousel-indicators li {
    list-style: none;
    cursor: pointer;
    background: #fff;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.6;
    transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background: #06A0DE;
}

/* 🎯 Button */
#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    background: #06A0DE;
    animation-delay: 0.8s;
}

#hero .btn-get-started:hover {
    background: #0087C5;
}

/* ==========================
   📱 RESPONSIVE DESIGN
   ========================== */

/* 💻 Medium Devices (<= 992px) */
@media (max-width: 992px) {
    #hero {
        height: 70vh;
        background-attachment: scroll; /* disable parallax on mobile for performance */
    }

    #hero h2 {
        font-size: 32px;
    }

    #hero p {
        font-size: 13px;
    }

    #hero .btn-get-started {
        font-size: 12px;
        padding: 12px 28px;
    }
}

/* 📲 Tablets & Small Laptops (<= 768px) */
@media (max-width: 768px) {
    #hero {
        height: 50vh;
    }

    #hero h2 {
        font-size: 26px;
    }

    #hero p {
        font-size: 11px;
    }

    #hero .btn-get-started {
        font-size: 11px;
        padding: 10px 24px;
    }
    .hero-content p{
        max-width: 100%;
        text-align: center;
    }
}

/* 📱 Extra Small Phones (340px - 400px) */
@media (min-width: 340px) and (max-width: 400px) {
    #hero {
        height: 45vh;
    }

    #hero .carousel-container {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    #hero h2 {
        font-size: 18px;
    }

    #hero p {
        font-size: 9px;
    }

    #hero .btn-get-started {
        font-size: 10px;
        padding: 8px 20px;
    }
    .hero-content p{
        max-width: 100%;
        text-align: center;
    }
}

/* 📏 Landscape Phones or Short Screens */
@media (max-height: 500px) {
    #hero {
        height: 45vh;
    }

    #hero p {
        font-size: 10px;
    }
    .hero-content p{
        max-width: 100%;
        text-align: center;
    }
}

/* 🖥 Large Desktops */
@media (min-width: 1024px) {
    #hero .carousel-control-prev,
    #hero .carousel-control-next {
        width: 5%;
    }
}

/* -------- About Section -------- */
.about-section {
    padding: 50px 0;
    background: linear-gradient(to right, #f0f4f8, #ffffff);
    font-family: "Poppins", sans-serif;
}


.board-section {
    background-color: #f9f9f9;
}

.board-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0d6efd; /* Highlighted heading */
    position: relative;
}

.board-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.member-card {
    background-color: #ffffff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
}



/* ===== Breadcrumbs ===== */
.breadcrumbs {
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
}

/* ===== Board of Directors ===== */
.board-section {
    background-color: #f9f9f9;
    padding: 40px 0 0 0;
}

.board-title {
    font-size: 2rem;
    font-weight: 700;
    color: #06A0DE;
    position: relative;
    margin-bottom: 40px;
}

.board-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #06A0DE;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

.member-card {
    background-color: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.member-img {
    width: 180px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

/* ===== Company Profile ===== */
.company-title {
    color: #06A0DE;
    font-weight: 700;
    margin-bottom: 20px;
}

.core-values li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Optional: adjust for small screens */
@media (max-width: 575px) {
    .member-img {
        width: 100px;
        height: 100px;
    }
}

.core-values-section {
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif; /* Modern clean font */
}

.section-title {
    font-family: 'Times New Roman', Georgia, serif; /* Serif font */
    font-size: 3rem; /* Large, prominent size */
    font-weight: 700; /* Bold */
    color: #06A0DE; /* Highlight color */
    line-height: 1.2;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2.2rem; /* Adjust for mobile */
    }
    .member-card h5{
        font-size: 16px;
    }
    .member-card p{
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem; /* Smaller for small screens */
    }
}


.core-value-card {
    background-color: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e0e0e0;
}

.core-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.core-value-card i {
    font-size: 2rem;
    color: #06A0DE;
}




/* Container Layout */
.about-section .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/* Image / Media Section */
.about-section .about-media {
    flex: 1 1 500px;
    max-width: 600px;
    position: relative;
    border: solid 1px #06A0DE;
    border-radius: 0 25px 0 25px;
    overflow: hidden;
}

.company-profile {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.25rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.company-profile h2 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    letter-spacing: 0.2px;
}

.company-profile p {
    margin: 0 0 1rem 0;
    line-height: 1.6;
    color: #222;
}

.about-section .about-media img {
    width: 100%;
    border-radius: 0 25px 0 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-section .about-media:hover img {
    transform: scale(1.03);
}

/* Content Section */
.about-section .about-content {
    flex: 1 1 500px;
    max-width: 600px;
}

.about-section .about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 20px;
}

.about-section .about-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Features / Theme List */
.about-section .theme-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.about-section .theme-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-weight: 500;
    color: #333;
    text-align: left;
}

.about-section .theme-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #06A0DE;
    font-weight: bold;
    font-size: 16px;
}

/* Learn More Button */
.about-section .theme-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #06A0DE;
    color: #06A0DE;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.about-section .theme-btn:hover {
    background: #06A0DE;
    color: #fff;
    transform: translateY(-2px);
}

/* -------- Responsive Styles -------- */
@media (max-width: 900px) {
    .about-section .container {
        flex-direction: column-reverse;
        gap: 30px;
        text-align: center;
    }

    .about-section .about-media,
    .about-section .about-content {
        max-width: 100%;
    }
    .about-section {
        padding: 20px 0 0 0;
    }
}

@media (max-width: 600px) {
    .about-section .about-content h2 {
        font-size: 18px;
    }
    .about-section .theme-btn {
        padding: 5px 15px;
        border: 1px solid #06A0DE;
        color: #06A0DE;
        font-weight: 600;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        margin-bottom: 20px;
    }

    .about-section .about-content p {
        font-size: 13px;
        text-align: justify;
    }
    .about-section .theme-list li {
        font-size: 14px;
        padding-left: 20px;
    }
    .about-section {
        padding: 20px 0 0 0;
    }
}


/*---- Project info-----*/
.project-card {
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 720px;
}

/*.project-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.12);*/
/*}*/

/* Image Styling */
.project-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease, filter 0.5s ease;
    display: block;
}

.project-card:hover .project-img {
    transform: scale(1.05);
    filter: brightness(0.95) contrast(1.05);
}

/* Badge */
.status-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.9rem;
    position: absolute;
    top: 15px;
    left: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* ===========================
   Info Section (Project Details)
   =========================== */

.info-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    margin-top: 0.25rem;
    flex-wrap: wrap; /* Ensures proper layout on smaller screens */
}

.info-item {
    text-align: center;
    font-size: 0.8rem;
    color: #333;
    padding: 5px 5px;
    flex: 1; /* Keeps all items evenly sized */
    min-width: 60px; /* Prevents shrinking too small */
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:first-child {
    border-left: none;
}

.info-item span {
    display: block;
    font-weight: 600;
    color: #222;
    margin-top: 2px;
}

/* Responsive adjustment */
@media (max-width: 576px) {
    .info-bar {
        gap: 0.5rem;
    }

    .info-item {
        font-size: 0.85rem;
        padding: 4px 6px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
    }

    .info-item:first-child {
        border-left: none;
    }
}

/* Title & Address */
.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.project-title a:hover {
    color: #6f42c1;
}

.location-info {
    font-size: 0.9rem;
    color: #555;
}

/* Explore Button */
.btn-explore {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 10px 24px;
    border: 1px solid #000;
    border-radius: 50px;
    background: transparent;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: all 0.4s ease;
}

.btn-explore::after {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: rgba(111, 66, 193, 0.2);
    transition: all 0.5s ease;
}

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

.btn-explore:hover {
    color: #6f42c1;
    border-color: #6f42c1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .project-img {
        height: 280px;
    }
    .project-title {
        font-size: 1.2rem;
    }
    .info-bar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
/*--------- Social Icon----------*/
.social-bar {
    position: fixed;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

/* Base icon styles */
.social-bar a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeIn 0.6s ease forwards;
}

/* Hover Effects */
.social-bar a:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Platform hover colors */
.social-bar .facebook { color: #1877f2; }
.social-bar .linkedin { color: #0077b5; }
.social-bar .youtube { color: #ff0000; }
.social-bar .whatsapp { color: #25D366; }
.social-bar .email { color: #ffb400; }

/* Platform hover colors */
.social-bar .facebook:hover { color: #FFFFFF; }
.social-bar .linkedin:hover { color: #FFFFFF; }
.social-bar .youtube:hover { color: #FFFFFF; }
.social-bar .whatsapp:hover { color: #FFFFFF; }
.social-bar .email:hover { color: #FFFFFF; }
/* Platform hover colors */
.social-bar .facebook:hover { background-color: #1877f2; }
.social-bar .linkedin:hover { background-color: #0077b5; }
.social-bar .youtube:hover { background-color: #ff0000; }
.social-bar .whatsapp:hover { background-color: #25D366; }
.social-bar .email:hover { background-color: #ffb400; }

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ✅ Tablet View */
@media (max-width: 768px) {
    .social-bar a {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }
}

/* ✅ Mobile View (horizontal bottom bar) */
@media (max-width: 480px) {
    .social-bar {
        top: auto;
        bottom: 20px;
        right: 55%;
        transform: translateX(50%);
        flex-direction: row;
        background: rgba(0, 0, 0, 0.25);
        padding: 8px 14px;
        border-radius: 40px;
        backdrop-filter: blur(15px);
        gap: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .social-bar a {
        width: 38px;
        height: 38px;
        font-size: 16px;
        box-shadow: none;
    }

    .social-bar a:hover {
        transform: scale(1.1);
    }
}

/* -------- Category Section -------- */

.cat-section-bg{
    width: 100%;
    height: auto;
    background: url("../img/elh/b-img/cat-bg.jpg") no-repeat center center/cover fixed;
}

.category-section {
    padding: 20px 15px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.category-section .headline h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1b1b1b;          /* Text fill color */
    -webkit-text-stroke: 0.5px white;  /* Border color and thickness */
}


/* Category Filter List */
.category-link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Water Glass Background for Category Items */
.category-link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background-size: 50px 50px; /* adjust size as needed */
    border-radius: 12px;
    padding: 20px 25px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    min-width: 150px;
    border: 1px solid white;
}


.category-link a:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-5px);
}

/* Standard icon size for all devices */
.category-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.category-link span {
    font-size: 1rem;
    font-weight: 500;
    color: black;
}

.category-link a:hover span {
    color: #fff;
}

/* -------- Responsive -------- */
@media (max-width: 992px) {
    .category-link a {
        min-width: 140px;
        padding: 18px 20px;
    }

    .category-link img {
        width: 35px;
        height: 35px;
    }
    .category-link-list {
        display: flex; !important;
    }
}

@media (max-width: 768px) {
    /*.category-section {*/
    /*    padding: 40px 10px;*/
    /*}*/

    .category-link-list {
        gap: 15px;
    }
    .category-link-list {
        display: flex; !important;
    }

    .category-link a {
        min-width: 70px;
        padding: 7px;
        height: auto;
    }

    .category-link img {
        width: 35px;
        height: 35px;
    }

    .category-link span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .category-section .headline h2 {
        font-size: 1.5rem;
    }

    .category-link-list {
        gap: 10px;
    }
    .category-link-list {
        display: flex; !important;
    }

    .category-link a {
        min-width: 80px;
        padding: 10px;
        height: auto;
    }

    .category-link img {
        width: 30px;
        height: 30px;
    }

    .category-link span {
        font-size: 0.7rem;
    }
}

/*---- End Project Category----*/

/*----Project----*/

.project{
    padding-top: 35px;
    padding-bottom: 35px;
}
/* start*/
.portfolio .portfolio-url-link{
    display: flex;
    justify-content: center;
}
.portfolio{
    background: 0 0;
}

.portfolio .portfolio-link {
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    padding: 6px 10px;
    border: 1px solid #06A0DE;
    text-transform: uppercase;
    font-weight: bold;
}
.portfolio .portfolio-url-link li{
    list-style: none;!important;
    text-decoration: none;
}

.portfolio .portfolio-link a {
    cursor: pointer;
    display: inline-block;
    /*padding: 10px 15px 8px 15px;*/
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.portfolio .portfolio-url-link li:hover{
    transition: 0.5s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    color: #06A0DE;
}
.portfolio .portfolio-link a{
    color: #444444;
    font-size: 14px;
}
.portfolio .portfolio-link a i img{
    height: 30px;
    width: 30px;
    font-size: 14px;
}

.portfolio .portfolio-url-link li a.filter-active {
    color: #06A0DE;
}
.portfolio .portfolio-link  a:hover{
    transition: 0.5s;
    color: #06A0DE;
}

.portfolio .portfolio-url-link li:first-child{
    margin-right: 0px;
}

/* end */

.project #project-flters {
    list-style: none;!important;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 0;
}


.project #project-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.project #project-flters li:hover,
.project #project-flters li.filter-active {
    background: #06A0DE;
}
.project #project-flters li:hover a,
.project #project-flters li.filter-active a{
    color: #fff;
}

.category-link.filter-active a{
    background: #007BFF;
    color: #fff;
}

.project #project-flters li:last-child {
    margin-right: 0;
}
@media (max-width: 768px) {
    .project{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .project #project-flters li {
        font-size: 10px;
        background: #06A0DE;
    }.project a{
          color: #fff;
      }
}

/*--------------------------------------------------------------
# architect
--------------------------------------------------------------*/
.architect{
    background-color: white;
}

.architect .row .col-md-6{
    padding: 0;
    margin: 0;
}
.architect .container .content p{
    font-size: 18px;
    color: #444444;
    text-align: center;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .portfolio-item {
    margin-bottom: 30px;
}
.portfolio_bg {
    width: 100%;
    height: auto;
    background: url("../img/elh/b-img/cat-bg.jpg") no-repeat center center/cover fixed;
}
/*.portfolio .portfolio-item:hover img {*/
/*    transform: scale(1.1);*/
/*    transition-duration: 0.9s;*/
/*}*/
/*.portfolio .portfolio-item:hover img {*/
/*    transform: scale(1.1);*/
/*    transition: all ease-in-out 0.9s;*/
/*}*/
.portfolio .portfolio-item img{
    transition: transform .9s;
}

.portfolio .portfolio-item:hover img {
    -ms-transform: scale(1.1); /* IE 9 */
    -webkit-transform: scale(1.1); /* Safari 3-8 */
    transform: scale(1.1);
}




/* start*/

.portfolio .portfolio-url {
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 8px 20px;
    border: 1px solid #06A0DE;
}

.portfolio .portfolio-url li {
    cursor: pointer;
    display: inline-block;
    padding: 6px 8px 4px 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}
.portfolio .portfolio-url li a{
    color: #444444;
    font-size: medium;
}

.portfolio .portfolio-url li a.filter-active {
    color: #06A0DE;
}
.portfolio .portfolio-url li a:hover{
    color: #06A0DE;
    transition: 0.5s;
}

.portfolio .portfolio-url li:last-child {
    margin-right: 0;
}

/* end */

.portfolio #portfolio-flters {
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #06A0DE;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    /*transition: 0.9s;*/
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all ease-in-out 0.9s;
    background: rgba(0, 0, 0, 0.6);
}
.portfolio-wrap{
    height: 50vh;
    width: 100%;
}
.portfolio .portfolio-wrap img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    -moz-background-size: cover;
}

/*.portfolio .portfolio-wrap::before {*/
/*    content: "";*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    position: absolute;*/
/*    left: 30px;*/
/*    right: 30px;*/
/*    top: 30px;*/
/*    bottom: 30px;*/
/*    transition: all ease-in-out 0.9s;*/
/*    z-index: 2;*/
/*    opacity: 0;*/
/*}*/
.portfolio .project-info{
    position: relative;
    /*background: rgba(63, 73, 83, 0.9);*/
    background-color: white;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
    padding-top: 5px;
}
.portfolio .project-info h2{
    position: relative;
    color: #4A4A4A;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
    background-color: white;
}
.portfolio .project-info h2 a{
    position: relative;
    color: #0C0C0C;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1.5px;
    font-family: "the-seasons", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.portfolio .project-info h2 a:hover{
    color: #3F3F3F;
    transition: 0.5s;
}
.portfolio .project-info h2:hover{
    position: relative;
    /*background: #1a1d20;*/
    background: white;

    font-weight: 600;
    width: 100%;
    text-align: center;
    transition: 0.5s;
}
.portfolio .project-info h2 span a{
    color: #525252;
    transition: 0.5s;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-family: "Open Sans", sans-serif;
}
.portfolio .project-info h2 span a:hover{
    color: #06A0DE;
}
.project-bdr{
    border: 5px solid #ffffff;
}
.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #06A0DE;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #06A0DE;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #06A0DE;
}

.portfolio-details .portfolio-info {
    padding: 10px;
    box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-weight: 700;
    margin-bottom: 20px;
    /*padding-bottom: 20px;*/
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .project-description h4 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}



/*---------------------------------------------
interior
---------------------------------------------*/
.interior{
    height: 40vh;
    width: 100%;
    background:no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment:fixed ;
}
.interior::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}
@media (max-width: 400px) {
    .interior {
        height: 30vh;
    }
}

/*--------------------------------------------------------------
# landmark
--------------------------------------------------------------*/
.landmark .content h2 {
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.landmark .landmark-item {
    margin-bottom: 30px;
}

.landmark #landmark-flters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.landmark #landmark-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 15px 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

.landmark #landmark-flters li:hover,
.landmark #landmark-flters li.filter-active {
    color: #fff;
    background: #06A0DE;
}

.landmark #landmark-flters li:last-child {
    margin-right: 0;
}

.landmark .landmark-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(85, 98, 112, 0.6);
}

.landmark .landmark-wrap::before {
    content: "";
    background: rgba(85, 98, 112, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.landmark .landmark-wrap img {
    transition: all ease-in-out 0.3s;
}

.landmark .landmark-wrap .landmark-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px;
}
@media (max-width: 768px) {
    .landmark{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .landmark #landmark-flters li {
        font-size: 10px;
        background: #06A0DE;
    } .landmark a{
          color: #fff;
      }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.btn-gp-size .btn{
    width: 100%;
    background: #06A0DE;
}
.btn-gp-size .dropdown-menu{
    scroll-snap-type: both mandatory;!important;
}

.features .nav-link {
    border: 1px solid #d4d6df;
    padding: 15px;
    transition: 0.3s;
    color: #2a2c39;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features .nav ul li:hover {
    background: #06A0DE;
    color: #fff;
    border-color: #06A0DE;
    border-radius: 10px;
}
.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    background: #06A0DE;
    color: #fff;
    border-color: #06A0DE;
    border-radius: 10px;
}

.features .nav-link.active {
    background: #06A0DE;
    color: #fff;
    border-color: #06A0DE;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    font-weight: 600;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #06A0DE;
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

/*---partnership-------*/

#partnership{
    margin: 0;
    padding: 0;
}
.partnership .content h2 {
    margin-top: 15px;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.partnership .content p {
    color: black;
    font-size: 18px;
}
#partnership{
    background-position: center center;
    background-size: cover;
    background-color: white;
}
.partner-details {
    padding: 10px 0;
    width: 100%;
    background: url("../img/bg-img/bg-partnar.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

/* Mobile fix for background attachment */
@media (max-width: 768px) {
    .partner-details {
        background-attachment: scroll;
    }
}

.partner-details .container{
    margin-top: 100px;
    margin-bottom: 100px;
}

@media (max-width: 992px) {
    .partnership .content h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .partnership .content p {
        color: black;
        font-size: 16px;
    }
}

.card-info .card{
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 10px 25px 0 rgba(0, 0, 0, 0.19);
}
.card-info .card{
    margin-top: 80px;
}
@media (min-width: 340px) and (max-width: 450px){
    .card-info .card{
        margin-top: 50px;
    }

}

.card-content{
    height: 200px;
    width: 100%;
}

.card-content p{
    margin-top: 70px;
    font-size: 20px;

    font-weight: 500;
    font-style: normal;
}
.card-content:hover{
    width: 100%;
    color: white;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    background-color: #06A0DE;
    transition: 0.5s;
    border-radius: 20px;
}
.card-content:hover p{
    margin-top: 60px;
    font-size: 20px;
    font-weight: 500;
    transition: 0.5s;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 20px 0;
    overflow: hidden;
}



.section-bg,
.services .icon-box {
    background-color: #F0F0F0;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: capitalize;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #06A0DE;
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #556270;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    margin-top: 100px;
    height: 40vh;
    background:center center / cover no-repeat fixed;

}
.breadcrumbs img{
    height: 40vh;
}

.breadcrumbs h2 {
    font-size: 32px;
    font-weight: 300;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 18px;
    margin-top: 200px;
    margin-left: 0!important;
    color: white;
    font-weight: 600;
    text-align: center;
}

.breadcrumbs ol {
    padding-left: 0!important;
}

.breadcrumbs ol li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6b7b8d;

}
.breadcrumbs ol li::after {
    display: inline-block;
    padding-right: 10px;
    padding-left: 10px;
    color: #6b7b8d;
    content: '/';

}

@media (max-width: 992px) {
    .breadcrumbs {
        width: 100%;
        margin-top: 58px;
        height: 30vh;
        background:center center / cover no-repeat fixed;
    }

    .breadcrumbs h2 {
        margin-bottom: 10px;
    }

    .breadcrumbs ol h1 {
        display: block;
        font-size: 18px;
        margin-top: 40px;

    }

    .breadcrumbs ol {
        display: block;
        font-size: 16px;
        margin-top: 35px;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }

}
@media (min-width: 340px) and(max-width: 500px) {
    .breadcrumbs{
        width: 100%;
        margin-top: -110px;
        margin-left: -100px;
        height: 30vh;
        background:center center / cover no-repeat fixed;
    }
    .breadcrumbs img{
        margin-top: -80px;
        height: 200px;
    }


}

.build{
    background: #34414F;
    margin: 0;
    padding: 0;
}
.headline h2{
    text-align: center;
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
    margin:auto;
    text-transform: capitalize;
}
@media (max-width: 768px) {
    .headline h2 {
        font-size: 25px;
    }
}
/*--------------------------------------------------
# career
____________________________________________________________*/
.career {
    height: auto;
    width: 100%;
}
/*.career {*/
/*    height: 100%;*/
/*    width: 100%;*/
/*    padding: 10px 0;*/
/*    transform: scale(1.1);*/
/*    background: url("../img/CareerImage.jpg") no-repeat;*/
/*    background-position: center center;*/
/*    background-size: cover;*/
/*    position: relative;*/
/*}*/
.career.background-overlay {
    background-color: #000;
    opacity: .67;
    transition: background 0.3s,border-radius 0.3s,opacity 0.3s;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}


.career img{
    margin-top: -60px;
    margin-left: 200px;
    padding: 0;
    position: absolute;
}
.career-info{
    margin-top: 10px;
    position: relative;
    text-align: center;
}
.career-info .member-info h3{
     font-weight: 600;
     text-transform: capitalize;
     margin-bottom: 10px;
     color: black;
 }
.career-info-text {
    font-size: smaller;
    font-family: Roboto, sans-serif;
    margin-bottom: -20px;
 }
.md-img img{
    height: 250px;
}
@media (min-width: 340px) and (max-width: 500px){
    .member-info p{
        margin-top: -10px;
    }
}
@media (min-width: 340px) and (max-width: 500px){
    .about .content p{
        font-size: 12px;
    }
}


/* ===============================
   💠 Team Section (Soft Black + Glassmorphism)
   =============================== */

.team {
    position: relative;
    margin-bottom: -40px;
    padding: 60px 0;
    background: #121212; /* Soft black background */
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.team_bg {
    width: 100%;
    height: auto;
    background: url("../img/team/our-team-bg-01.jpg") no-repeat center center/cover fixed;
}

.team-content p{
    max-width: 80%;
    padding-bottom: 50px;
    text-align: justify;
}


/* ===============================
   💠 Section Headings
   =============================== */
.team .content {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}

.team .content h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-transform: capitalize;
}

.team .content h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.4;
    color: #dcdcdc;
}

.team .content p {
    font-size: 16px;
    color: #bfbfbf;
    max-width: 700px;
    margin: 0 auto;
}

/* ===============================
   💠 Team Card (Glass Effect)
   =============================== */
.team .card {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05); /* Glass effect base */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
    text-align: center;
}

.team .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(88, 42, 138, 0.4);
    border-color: rgba(88, 42, 138, 0.4);
}

/* ===============================
   💠 Card Image (Circular)
   =============================== */
.team .card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    margin-bottom: 15px;
}


.team .card:hover img {
    transform: scale(1.08);
    border-color: #06A0DE;
    box-shadow: 0 0 15px rgba(88, 42, 138, 0.6);
}

/* ===============================
   💠 Card Text
   =============================== */
.team .card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.team .card p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
}
.team .card .call-p {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 12px;
    font-weight: 600;
    max-width: 100%;
}

.team .card span {
    font-size: 13px;
    color: #bfbfbf;
}

/* ===============================
   💠 Social Icons
   =============================== */
.team .card .social {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team .card .social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team .card .social a:hover {
    background: #06A0DE;
    transform: scale(1.1);
}

.team .card .social i {
    color: #fff;
    font-size: 16px;
}

/* ===============================
   💠 Responsive Design
   =============================== */

/* Tablet */
@media (max-width: 992px) {
    .team .content h2 {
        font-size: 34px;
    }

    .team .content h3 {
        font-size: 18px;
    }

    .team .content p {
        font-size: 15px;
    }
    .team .card{
        gap: 1rem;
    }
    .team .card {
        position: relative;
        width: 250px;
        height: 250px;

    }
    .team .card img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s ease;
        margin-bottom: -30px;
    }

}

/* Mobile - 2 Cards per Row */
@media (max-width: 768px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .team {
        gap: 20px;
        justify-content: center;
    }

    .team .card {
        width: calc(50% - 15px);
        height: auto;
        padding: 0;
    }

    .team .content h2 {
        font-size: 28px;
    }
    .team .content p {
        font-size: 13px;
        color: #bfbfbf;
        max-width: 700px;
        margin: 0 auto;
    }
    .team-content p{
        max-width: 100%;
    }
    .team .card{
        gap: 1rem;
    }
    .team .card {
        position: relative;
        width: 230px;
        height: 230px;
        display: flex;

    }
    .team .card img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s ease;
        /*margin-bottom: -30px;*/
    }

}

/* Extra Small Devices - 1 Card per Row */
@media (max-width: 500px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .team .content {
        text-align: center;
        width: 50%;
        padding-top: 100px;
    }
    .team .card {
        width: 45%;
        display: flex;
        padding: 0;
    }

    .team .content h2 {
        font-size: 24px;
    }
    .team .content p {
        font-size: 12px;
        color: #bfbfbf;
        max-width: 700px;
        margin: 0 auto;
    }
    .team-content p{
        max-width: 100%;
    }
    .team .card{
        gap: 1rem;
    }
    .team .card {
        position: relative;
        width: 200px;
        display: flex;

    }
    .team .card img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s ease;
        margin-bottom: -25px;
    }

}
/* Extra Small Devices - 1 Card per Row */
@media (max-width: 480px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .team .card {
        width: 50%;
        display: flex;
        padding: 0;
    }

    .team .content h2 {
        font-size: 24px;
    }
    .team .content p {
        font-size: 12px;
        color: #bfbfbf;
        max-width: 700px;
        margin: 0 auto;
    }
    .team-content p{
        max-width: 100%;
    }
    .team .card{
        gap: 1rem;
    }
    .team .card {
        position: relative;
        width: 200px;
        display: flex;

    }
    .team .card img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s ease;
        margin-bottom: -30px;
    }

}

/* Extra Small Devices - 1 Card per Row */
@media (max-width: 400px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
        height: 200px;
    }
    .team .card {
        width: 50%;
        display: flex;
        height: 200px;
        padding: 0;
    }

    .team .content h2 {
        font-size: 20px;
    }
    .team-card .card-body h5 {
        font-size: 18px;
        max-width: 100% !important;
    }
    .team-card .card-body{
        max-width: 100% !important;
        padding: 0px !important;
    }
    .team .content p {
        font-size: 11px;
        color: #bfbfbf;
        max-width: 100%;
        margin: 0 auto;
    }
    .team-content p{
        max-width: 100%;
    }
    .team .card{
        gap: 1rem;
    }
    .team .card {
        position: relative;
        width: 200px;
        display: flex;
        padding: 0;

    }
    .team .card img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid rgba(255, 255, 255, 0.3);
        transition: all 0.4s ease;
        margin-bottom: -15px;
    }
    .team .card .call-p {
        font-size: 11px;
        color: #ccc;
        font-weight: 600;
        max-width: 100%;
        padding: 0;
    }

}





/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.wish-card{
    margin-top: 300px;
    margin-left:600px;
    position: absolute;
    z-index: 999;
    display: block;


}
.site-container {
    place-items: center;!important;
    padding: 1.5em;
    width: 600px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    border: 1px solid rgba(255, 255, 255, .25);
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    position: relative;!important;
}
@media (max-width: 1920px) {
    .wish-card {
        margin-top: 250px;
        margin-left: 600px;
    }
}
@media (min-width: 1366px) and (max-width: 1600px) {
    .wish-card {
        margin-top: 300px;
        margin-left:400px;
    }
}

@media (max-width: 500px) {
    .site-container .card i{
        height: 30px;
        width: 30px;
        cursor: pointer;
        margin-left: 318px;
    }
    .wish-card {
        margin-top: 90px;
        margin-left: 18px;
    }
    .site-container{
        height: 300px;
        width: 350px;
        padding: 0;
    }
    .site-container .card{
        width: 340px;
        height: 290px;
        margin: 4px 4px 0 4px;
        padding: 0;
    }
}

.site-container.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 600px;
    height: 300px;
    padding: 20px;

    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);

    backdrop-filter: blur(15px);
}
.site-container .card i{
    height: 30px;
    width: 30px;
    cursor: pointer;
    margin-left: 527px;
}
.site-container .card i:hover{
    color: #06A0DE;
}
.site-container.card p{
   text-align: justify;
}

.site-container.card-footer {
    font-size: 0.65em;
    color: #446;
}

.about-bg{
    padding: 10px 0;
    width: 100%;
    background: url("../img/about/about-banner.jpg") no-repeat center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.about .content h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 60px;
    margin-top: 10px;
    text-transform: capitalize;
    color: white;
}

.about .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 24px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0 0 28px;
    position: relative;
}

.about .content button a{
    font-size: 20px;
    color: #06A0DE;
}
.about .content button a:hover{
    font-size: 18px;
    color: white;
}



.about .card {
    position: relative;
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 30px 0;
    border: 1px solid #06A0DE;
    cursor: pointer;
    margin-bottom: 30px;
    box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.10);
    -webkit-box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.10);
    -moz-box-shadow: 5px 5px 5px 0 rgba(0,0,0,0.10);

}


.about .card::before,
.about .card::after {
    position: absolute;
    content: "";
    width: 20%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: bold;
    background-color: #06A0DE;
    transition: all 0.5s;
}

.about .card::before {
    top: 0;
    right: 0;
    border-radius: 0 0 0 100%;
}

.about .card::after {
    bottom: 0;
    left: 0;
    border-radius: 0 100%  0 0;
}
.about .card:hover{
    border-radius: 30px 0;
}
.about .card:hover::before,
.about .card:hover:after {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    border-radius: 30px 0;
}

.about .card:hover:after {
    content: "Click Here";
    color: white;
    border-radius: 30px 0;
}
@media (min-width: 340px) and (max-width: 768px){
    .about .content h2 {
        font-weight: 700;
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    .about .content h3 {
        font-weight: 500;
        line-height: 30px;
        font-size: 25px;
    }
}


/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    filter: grayscale(100);
}

.clients img:hover {
    filter: none;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
}

.services .icon-box i {
    float: left;
    color: #06A0DE;
    font-size: 40px;
}

.services .icon-box h4 {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .icon-box h4 a {
    color: #556270;
    transition: 0.3s;
}

.services .icon-box p {
    margin-left: 70px;
    line-height: 24px;
    font-size: 14px;
}

.services .icon-box:hover h4 a {
    color: #06A0DE;
}

/*--------------------------------------------------------------
# owner
--------------------------------------------------------------*/
.owner-cover{
    padding: 10px 0;
    width: 100%;
    background: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment:fixed ;
}

/*--------------------------------------------------------------
# News slider
--------------------------------------------------------------*/


#owl-demo .item{
    background: #42bdc2;
    padding: 30px 0px;
    margin: 10px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
}


/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 10px 0;
    margin: 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #556270;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #edeff1;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #6b7b8d;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #777777;
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: #06A0DE;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: #06A0DE;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: #06A0DE;
    display: inline-block;
    padding: 8px 35px 9px 35px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: #06A0DE;
}

.pricing .featured h3 {
    color: #fff;
    background: #06A0DE;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #06A0DE;
    color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
    margin: 20px 0;
    padding: 20px 0;
    border-bottom: 1px solid white;
}

.faq .faq-item i {
    color: #dee2e6;
    font-size: 20px;
    float: left;
    line-height: 0;
    padding: 13px 0 0 0;
    margin: 0;
}

.faq .faq-item h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin: 0 0 10px 28px;
    font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
    font-size: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 40px;
    box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid #fff;
    float: left;
    margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #f8d1d3;
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 15px 0 0 0;
    padding: 0;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-banner{
    padding: 10px 0;
    height: 20vh;
    width: 100%;
    background: url("../img/contact-banner.png") no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment:fixed ;
}
.contact-info{
    width: 100%;
    background: #F6F6F6;
}
.contact-info .info{
    border-radius: 5px;
    border: 1px solid #06A0DE;
    background: white;
    margin-bottom: 20px;
    height: 220px;
}
.contact-info .info i{
    font-size: 50px;
    color: #06A0DE;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}


.contact-info .info h4{
    margin-top: 5px;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    justify-content: space-between;
    align-items: baseline;
    letter-spacing: 1.8px;
}
.contact-info .info p{
    font-weight: bold;
    color: black;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}
.contact-info .info p a:hover{
    color: #06A0DE;
    justify-content: center;
    align-items: center;
    transition-duration:0.3s;
}
.contact-info .info p a{
    color: black;
    letter-spacing: 1.8px;
    transition: 0.5s;
}

.contact .info {
    width: 100%;
    background: #fff;
}
.contact .form-group .form-control{
    background: none;
    position: relative;
    border: 1px solid #06A0DE;
    border-radius: 5px;
}
.contact .form-group button{
    background: white;
    border: 1px solid #06A0DE;
    border-radius: 5px;
    color: black;
}
.contact .form-group button:hover{
    background: #06A0DE;
    color: white;
    transition-duration: 0.5s!important;
}

.contact .info i {
    font-size: 18px;
    color: #556270;
    float: left;
    width: 44px;
    height: 44px;
    background: #edeff1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #556270;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #8795a4;
}

.contact .info .email,
.contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: #556270;
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #06A0DE;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #06A0DE;
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
    background: #06A0DE;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #06A0DE;
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
    padding: 10px 0 10px 0;
}
.blog .container{
    padding-top: 40px;
}

.blog .entry {
    padding: 30px;
    margin-bottom: 60px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    height: 500px;
    background-size: cover;
}
.blog .entry .sil-entry-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    background-size: cover;
}

.blog .entry .entry-title {
    font-size: 28px;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
    color: #556270;
    transition: 0.3s;
}

.blog .entry .entry-title a:hover {
    color: #06A0DE;
}

.blog .entry .entry-meta {
    margin-bottom: 15px;
}

.blog .entry .entry-meta ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.blog .entry .entry-meta ul li {
    padding: 10px;
    margin-right: 10px;
    border: .25px solid #eaead8;
    border-radius: 5px;
}

.blog .entry .entry-meta i {
    font-size: 16px;
    margin-right: 5px;
    line-height: 0;
}


.blog .entry .entry-meta a {
    color: #777777;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.blog .entry .entry-content p {
    line-height: 24px;
}

.blog .entry .entry-content .read-more {
    -moz-text-align-last: right;
    text-align-last: right;
}

.blog .entry .entry-content .read-more a {
    display: inline-block;
    background: #06A0DE;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
    background: #06A0DE;
}

.blog .entry .entry-content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
}

.blog .entry .entry-content blockquote {
    overflow: hidden;
    background-color: #fafafa;
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
    color: #444444;
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #556270;
    margin-top: 20px;
    margin-bottom: 20px;
}

.blog .entry .entry-footer {
    padding-top: 10px;
    border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
    color: #a4afba;
    display: inline;
}

.blog .entry .entry-footer a {
    color: #606f7e;
    transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
    color: #06A0DE;
}

.blog .entry .entry-footer .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
}

.blog .entry .entry-footer .cats li {
    display: inline-block;
}

.blog .entry .entry-footer .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
}

.blog .entry .entry-footer .tags li {
    display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
    padding-right: 6px;
    color: #6c757d;
    content: ",";
}

.blog .entry .entry-footer .share {
    font-size: 16px;
}

.blog .entry .entry-footer .share i {
    padding-left: 5px;
}

.blog .entry-single {
    margin-bottom: 30px;
}

.blog .blog-author {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
    width: 120px;
    margin-right: 20px;
}

.blog .blog-author h4 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;
    padding: 0;
    color: #556270;
}

.blog .blog-author .social-links {
    margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
    color: rgba(85, 98, 112, 0.5);
    margin-right: 5px;
}

.blog .blog-author p {
    font-style: italic;
    color: #b7b7b7;
}

.blog .blog-comments {
    margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
    font-weight: bold;
}

.blog .blog-comments .comment {
    margin-top: 30px;
    position: relative;
}

.blog .blog-comments .comment .comment-img {
    margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
    width: 60px;
}

.blog .blog-comments .comment h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
    font-weight: bold;
    color: #444444;
    transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
    color: #06A0DE;
}

.blog .blog-comments .comment h5 .reply {
    padding-left: 10px;
    color: #556270;
}

.blog .blog-comments .comment h5 .reply i {
    font-size: 20px;
}

.blog .blog-comments .comment time {
    display: block;
    font-size: 14px;
    color: #6b7b8d;
    margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
    padding-left: 40px;
}

.blog .blog-comments .reply-form {
    margin-top: 30px;
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
    font-weight: bold;
    font-size: 22px;
}

.blog .blog-comments .reply-form p {
    font-size: 14px;
}

.blog .blog-comments .reply-form input {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
    box-shadow: none;
    border-color: #06A0DE;
}

.blog .blog-comments .reply-form textarea {
    border-radius: 4px;
    padding: 10px 10px;
    font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
    box-shadow: none;
    border-color: #06A0DE;
}

.blog .blog-comments .reply-form .form-group {
    margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
    border-radius: 4px;
    padding: 10px 20px;
    border: 0;
    background-color: #556270;
}

.blog .blog-comments .reply-form .btn-primary:hover {
    background-color: #606f7e;
}

.blog .blog-pagination {
    color: #8795a4;
}

.blog .blog-pagination ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog .blog-pagination li {
    margin: 0 5px;
    transition: 0.3s;
}

.blog .blog-pagination li a {
    color: #556270;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
    background: #06A0DE;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
    color: #fff;
}

.blog .sidebar {
    padding: 10px;
    margin: 0 0 30px 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.blog .sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0 0 15px 0;
    color: #556270;
    position: relative;
}

.blog .sidebar .sidebar-item {
    margin-bottom: 30px;
}

.blog .sidebar .search-form form {
    background: #fff;
    border: 1px solid #ddd;
    padding: 3px 10px;
    position: relative;
}

.blog .sidebar .search-form form input[type=text] {
    border: 0;
    padding: 4px;
    border-radius: 4px;
    width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: -1px;
    background: #06A0DE;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    line-height: 0;
}

.blog .sidebar .search-form form button i {
    line-height: 0;
}

.blog .sidebar .search-form form button:hover {
    background: #06A0DE;
}

.blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .categories ul li+li {
    padding-top: 10px;
}

.blog .sidebar .categories ul a {
    color: #556270;
    transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
    color: #06A0DE;
}

.blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
    margin-top: 15px;
}

.blog .sidebar .recent-posts img {
    width: 80px;
    float: left;
}

.blog .sidebar .recent-posts h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
    color: #556270;
    transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
    color: #06A0DE;
}

.blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
}

.blog .sidebar .tags {
    margin-bottom: -10px;
}

.blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
}

.blog .sidebar .tags ul li {
    display: inline-block;
}

.blog .sidebar .tags ul a {
    color: #96a2af;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid white;
    display: inline-block;
    transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #06A0DE;
    background: #06A0DE;
}

.blog .sidebar .tags ul a span {
    padding-left: 5px;
    color: #fbfbfc;
    font-size: 14px;
}
@media(max-width: 900px) {
    .blog .container {
        padding-top: 20px!important;
    }

    .blog .entry {
        padding: 30px 30px 10px 30px;
        margin-bottom: 60px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }

    .blog .entry .entry-img {
        height: 100%;
    }

    .blog .entry .entry-title {
        font-size: 16px;
        font-weight: bold;
        padding: 0;
        margin-bottom: 10px;
        text-align: left;
    }

    .blog .entry .entry-title.entry-meta {
        font-size: 12px;

    }

    .blog .entry .entry-meta ul {
        font-size: 12px;
    }

    .blog .entry .entry-meta i {
        font-size: 12px;
    }

    .blog .entry .entry-meta ul li {
        padding: 2px;
        margin-right: 5px;
        border: .25px solid #eaead8;
        border-radius: 2px;
    }

    .blog .entry .entry-meta a {
        color: #777777;
        font-size: 10px;
        display: inline-block;
        line-height: 1;
    }

    .blog .entry .entry-meta i {
        font-size: 12px;
        margin-right: 2px;
        line-height: 0;
    }

    .entry-content {
        font-size: 12px;
    }

    .blog .entry .entry-content p {
        line-height: 1;
    }

    .blog .entry .entry-content .read-more a {
        display: inline-block;
        background: #06A0DE;
        color: #fff;
        padding: 5px 15px;
        transition: 0.3s;
        font-size: 12px;
        border-radius: 5px;
    }
}
/*land owner ----*/


.landowner{
    background: url("../img/dragon-palace-hotel.jpg") no-repeat;!important;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;!important;
    position: relative;
    width: 100%;!important;
}

.landowner .container{
    align-content: center;
}

.landowner .container .card-info:first-child{
    margin-right: 0px;
}
.landowner .container .card-info .card {
    height: 350px;
    /*width: 260px;*/
    color: white;
    border-radius: 5px;
    position:center;
    padding: 1.8rem;
    border: 1px solid #c3c6ce;
    transition: 0.5s ease-out;
    overflow: visible;
    background-color: transparent;!important;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.landowner .container .card-info .card .card-details {
    color: white;
    gap: .5em;
    display: grid;
    place-content: center;
}

@media only screen and (max-width: 360px) {
    .landowner .container .col-md-3.card-info {
        height: 360px; /* Change height to auto for responsive behavior */
        width: 100%; /* Set width to 100% for responsiveness */
        margin-right: -50px;
        margin-left: 0; /* Reset margin-left */
        margin-top: 0; /* Reset margin-top */
    }
}
.card-button {
    transform: translate(-50%, 50%);
    width: 50%;
    border-radius: 5px;
    border: 1px solid #06A0DE;
    background-color: white;
    color: black;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 80px;
}
.card-button:hover {
    transform: translate(-50%, 50%);
    width: 50%;
    border-radius: 5px;
    border: 1px solid white;
    background-color: #06A0DE;
    color: #fff;
    transition-duration: 0.7s;
}


.landowner .container .card .text-body {
    color: white;
}

/*Text*/
.landowner .container .text-title {
    font-size: 2em;
    font-weight: bold;
}

/*Hover*/
.landowner .container .card:hover {
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
    border: 1px solid #06A0DE;
    transition: 0.7s;
    border-radius: 5px;
    height: 350px;
    /*width: 260px;*/
}


/* --- nrw-testimonials--- */
#testimonial{
    padding: 0 0 0 0;
    background: url("../img/testimonials-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed !important;
    position: relative;
}


.testimonial-slider{
    height: auto;
}
#testimonial .section-header{
    text-align: center;
    color: white;
}
.section-header .title{
    text-transform: capitalize;
    color: hsl(0,0%,100%);
    font-size: 50px;
}
.testimonial-item{
    background-color: hsl(0,0%,100%);
    padding:20px;
    border-radius:5px;
}
.testimonial-item .testimonial-title a{
font-size: medium;
    font-weight: 600;
    text-align: left;
}
.testimonial-item .info{
    display:flex;
    align-items:center;
}
.testimonial-item img {
    border-radius:5px;
    height: 200px;
}
.testimonial-item .name{
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color:hsl(0,0%,0%);
    line-height: 1.2;
}
.testimonial-item .job{
    text-transform: capitalize;
    color:hsl(0,0%,40%);
}
.testimonial-item p{
    margin-top: 20px;
    color:hsl(0,0%,40%);
    text-align: justify;
    font-size: 12px;
}
.testimonial-item .rating{
    margin-top: 15px;
    font-size: 14px;
    color:hsl(0,0%,0%);
}
#testimonial .swiper-pagination{
    position: relative;
    margin-top: 40px;
    bottom: auto;
}
#testimonial .swiper-pagination-bullet{
    height: 12px;
    width: 12px;
    background-color: hsl(0,0%,100%);
}

@media (min-width: 340px) and (max-width: 780px){
    .section-header .title{
        font-size: 25px;
        margin-top: 10px;
    }
}
@media (min-width: 340px) and (max-width: 780px){
    .testimonial-slider{
        height: 400px;
    }

    .testimonial-item img {
        border-radius:2px;
    }

    .testimonial-item .testimonial-title a{
        font-size: 12px;
        text-align: left;
    }
    .testimonial-item p{
        font-size: 10px;
        margin-top: -10px;
    }
   .testimonial-item h4{
       line-height: 12px;
       margin-top: -5px;
   }
}

.project-item{
   line-height: 20px;
    display: flex
;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
    color: #000;
    /* font-weight: 600; */
    font-size: 14px;
    text-align: right;
    letter-spacing: 0.2px;
    font-family: 'Open Sans';
}
.project-item strong{
        /* font-size: 11px; */
    /* text-transform: uppercase; */
    font-weight: 600;
    float: left;
    text-align: left;
    letter-spacing: 0.5px;
}
.project-img-fluid{
    max-width: 100%;
    height: auto;
    background-size: cover;
    width: 100%;
}
.testimonial-item .read-more{
    -moz-text-align-last: right;
    text-align-last: right;
}

.testimonial-item .read-more a {
    display: inline-block;
    background: #06A0DE;
    color: #fff;
    padding: 6px 20px;
    transition: 0.3s;
    font-size: 14px;
    border-radius: 4px;
}

.testimonial-item .read-more a:hover {
    background: #06A0DE;
}

/*------
map
-------*/
.project-location{
    margin-bottom: 30px;
}
.project-location h1{
    text-transform: uppercase;
    font-weight: bold;
}
.map{
    margin: 0;
    padding: 0;
    height: 600px;
}
.map-custom-embed{
    width: 100%;
    height: 600px;
    border: 0;
}
.map-custom-embed iframe{
    width: 100%;!important;
    height: 600px!important;
    border: 0;
}
iframe{
    height: 600px!important;
    width: 100%;
}
@media (min-width: 340px) and (max-width: 500px){
    iframe{
        height: 300px;
        width: 100%;
    }
    .map{
        margin: 0;
        padding: 0;
        height: 300px;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    position: absolute;
    width: 100%;
    background: black;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    border-bottom: 1px solid #06A0DE;
    padding: 60px 0 30px 0;
    width: 100%;
    background-color: rgba(63, 73, 83, 0.8);!important;
    overflow: hidden;
    position: relative;!important;
}

#footer .footer-top .footer-info {
    margin-bottom: 50px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #1c3733;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #06A0DE;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #4ae3c6;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: inline-block;
    /*align-items: center;*/
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

/*#footer .footer-top .footer-links ul a {*/
/*    color: #fff;*/
/*    transition: 0.3s;*/
/*    display: inline-block;*/
/*    line-height: 1;*/
/*}*/
#footer .footer-top .footer-links ul li a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #06A0DE;
}

#footer .footer-top .footer-newsletter form {
    /*background: #fff;*/
    color:#FFFFFF;
    padding: 6px 10px;
    position: relative;
    border: 1px solid #06A0DE;
    border-radius: 4px 0 0 4px;
}
#footer .footer-top .footer-newsletter form .form-control{
    /*background: #fff;*/
    color:#FFFFFF;!important;
}
#footer .footer-top .footer-newsletter form ::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}
#footer .footer-top .footer-newsletter form input{
    background: none;!important;

    padding: 6px 10px;
    position: relative;
    border: 1px solid #06A0DE;
    border-radius: 5px;
}
#footer .footer-top .footer-newsletter form textarea{
    background: none;!important;
    padding: 6px 10px;
    position: relative;
    border: 1px solid #06A0DE;
    border-radius: 5px;
}
#footer .footer-top .footer-newsletter form .contact-error{
    margin: 10px auto;
    font-size: medium;
}

/*#footer .footer-top .footer-newsletter form input[type=email] {*/
/*  border: 0;*/
/*  padding: 4px;*/
/*  width: calc(100% - 110px);*/
/*}*/

#footer .footer-top .container .row .footer-newsletter .php-email-form button {
    position: relative;
    padding: 5px;
    background: #06A0DE;
    color: #fff;
    font-size: 20px;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 10px auto;
    border-radius: 30px;
    transition: 0.3s;
}

#footer .footer-top .footer-newsletter .php-email-form button:hover {
    background: #06A0DE;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 16px;
    text-transform: uppercase;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}
.footer-info img {
    height: 85px;
    width: 150px;
}
.footer-info p{
    text-align: justify;
    font-size: 16px;
    line-height: 16;
}

@media (min-width: 340px) and (max-width: 500px){
    #footer .footer-top {
        border-bottom: 1px solid #06A0DE;
        padding: 30px 0 30px 0;
        width: 100%;
        background-color: rgba(63, 73, 83, 0.8);!important;
        overflow: hidden;
        position: relative;!important;
    }
    .footer-info h3{
        text-align: center;
    }
    .footer-info img{
        height: 60px;
        width: 120px;
    }
    #footer .footer-top .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
        line-height: 12px;
    }
    #footer .copyright {
        text-align: center;
        padding-top: 20px;
        font-size: 12px;
        text-transform: uppercase;
    }

    #footer .credits {
        text-align: center;
        font-size: 12px;
        color: #fff;
    }

}

/*-------------- our Mission */


.mission-info{
    margin-top: 50px;
    color: black;
    text-align: center;
}
.mission-info h3{
    font-weight: bold;
    text-transform: uppercase;
}
/*-------------- buyer-info */
.buyer-ctn{
    background-color: #D6D9DC;
    border-radius: 10px;
    border: 5px solid white;
    box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.25);
}
.buyer-info{
    margin-top: 50px;
    color: #1e2125;
    text-align: justify;

}
.buyer-info h3{
    font-weight: bold;
    text-transform: uppercase;
}

@media (min-width: 340px) and (max-width: 500px){

    .buyer-info p{
        font-size: 12px;
        padding:0 10px;
    }
    .buyer-info ul{
        font-size: 14px;
    }
    .buyer-info h5{
        font-size: 20px;
        padding:0 10px;
        text-align: left;
    }
}
/* ---------- Project Icon Section ---------- */
.project-cover {
    margin: 0;
    padding: 0;
    height:720px;
    width: 100%;
    background-size: cover;
    overflow: hidden;
}

/* Gradient progress bar with animation */
.gradient-bar {
    background: linear-gradient(90deg, #06A0DE, #00C851);
    transition: width 2s ease-in-out;
    font-weight: 600;
    font-size: 1rem;
    line-height: 30px;
    text-align: center;
    color: #fff;
}

/* Trigger animation on page load */
.progress-bar-animated {
    animation: fillProgress 2s forwards;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 80%; } /* Change to your desired value */
}


/* Project Title */
.project-name .container.row h1 {
    margin-top: 50px;
    font-weight: 700 !important; /* fixed !important placement */
    z-index: 999;
    text-transform: uppercase;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #fff;
}

/* Project Icon Section */
.project-icon {
    padding: 10px 0;
    width: 100%;
    background: url("../img/bg-img/close-at-icon-bg.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed; /* only keep one */
    position: relative;
}

/* Card Style */
.project-icon .card {
    border: none;
    background: transparent;
    border-radius: 10px;
}

/* Title inside project-icon */
.project-icon .project-title h1 {
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    padding-top: 10px;
}

/* Image Box */
.image-box-wrapper {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);

    position: relative;
    overflow: hidden;

    transition: transform 0.3s ease;
}

.image-box-wrapper:hover {
    transform: translateY(-10px);
}

/* Icon Frame */
.image-framed {
    width: 80px;
    height: 80px;
}

.image-framed img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* Text Below Icons */
.image-box-content h6 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 1200px) {
    .image-framed { width: 70px; height: 70px; }
    .image-box-content h6 { font-size: 13px; }
}

@media (max-width: 992px) {
    .image-framed { width: 60px; height: 60px; }
    .image-box-content h6 { font-size: 12px; }
}

@media (max-width: 768px) {
    .image-framed { width: 50px; height: 50px; }
    .image-box-content h6 { font-size: 11px; }
}

@media (max-width: 576px) {
    .image-framed { width: 40px; height: 40px; }
    .image-box-content h6 { font-size: 10px; }
}


.why-button{
    transform: translate(-50%, 50%);
    width: 200px;
    border-radius: 5px;
    border: 1px solid #06A0DE;
    background-color: white;
    color:black;
    font-size: 1rem;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 80px;
}
.why-button:hover{
    background-color: #06A0DE;
    color: #fff;
    transition-duration: 0.5s;
}

.slider-section{
    width: 100%;!important;
    height: 600px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 1);
    background-color: #323232;
    max-width: 100%;
    padding-left: 0;!important;
    padding-right: 0;!important;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-right: auto;
    margin-left: auto;
}
#carouselExampleFade{
    width: 100%;!important;
    max-width: 100%;!important;
    height: 600px;
    z-index: 999;
    background-color: #323232;
}
.future-slider{
    height: 600px;
    width: 100%;
}
.img-slider{
    width: 100%;
    height: 600px;
    background-size: cover;
}
@media (min-width: 340px) and (max-width: 500px){
    .img-slider{
        width: 100%;
        height: 300px;
        background-size: cover;
    }
    .future-slider {
        height: 300px;
        width: 100%;
    }
    #carouselExampleFade {
        width: 100%;
        max-width: 100%;
        height: 300px;
        z-index: 999;
        background-color: #323232;
    }
    .slider-section {
        height: 300px;
        width: 100%;
    }
    .sl-content{
        display: none!important;
    }

}


.future-slider .carousel-item .row .order-lg-2{
    margin: 0;!important;
}
.bg-tx-cr{
    color: white;
    background-color: #323232;
}
.sl-content h2{
    font-weight: bold;
}
.sl-content{
    margin-top: 180px;
    margin-left: 150px;
    margin-right: 100px;
}

@media (max-width: 1920px) {
    .slider-section .future-slider .sl-content {
        margin-top: 180px;
        margin-left: 150px;
        margin-right: 50px;
    }
    .slider-section .future-slider .sl-content p{
        font-size: 18px;
        margin-top: 25px;
    }

}

.flex-wrap .relative label{
    color: #FFFFFF;
}

.project-gallery {
    background-color: #f8f9fa;
}

.project-gallery h1 {
    font-size: 2.3rem;
    color: #222;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.project-gallery h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.project-gallery .swiper {
    width: 100%;
    padding-bottom: 60px;
}

.project-gallery .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}

.project-gallery .swiper-slide:hover {
    transform: scale(1.02);
}

.project-gallery .card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.project-gallery .card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}



.project-gallery{
    width: 100%;
    height: auto;
    position: relative;
}
.project-gallery .gallery-item{
    margin-bottom: 30px;
}
.project-gallery .gallery-item:hover img {
    transform: scale(1.1);
    transition-duration: 0.9s;
}

.project-gallery .project-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}
.project-wrap{
    /*height: 300px;*/
    width: 100%;
}
.project-gallery .project-wrap img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-size: cover;
    -moz-background-size: cover;
}

.project-gallery .project-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}
.project-gallery .project-glry-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}
.project-glry-wrap{
    height: 250px;
    width: 100%;
}
.project-gallery .project-glry-wrap img{
    height: 100%;
    width: 100%;
    transition: transform 0.5s;
    object-fit: cover;
    background-size: cover;
    -moz-background-size: cover;
}

.project-gallery .project-glry-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition:  0.5s;
    z-index: 2;
    opacity: 0;
}
@media screen and (min-width: 1444px) {
    .portfolio-container{
        margin-left: 100px;
        margin-right: 100px;
    }
}
@media (min-width: 340px) and (max-width: 500px) {

    .portfolio-container {
        margin-bottom: 0 !important;
    }
    .portfolio .portfolio-url li a {
        color: #444444;
        font-size: small;
    }
    .portfolio-wrap {
        height: 320px;
        width: 100%;
    }
    .portfolio .project-info {
        padding-top: 5px;
    }
    .portfolio .portfolio-url {
        margin:auto;
        list-style: none;
        text-align: center;
        background: #fff;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        padding: 5px 10px;
        border: 1px solid #06A0DE;
    }
    .portfolio .project-info h2 span a {
        font-size: 14px;
    }
    .partnership .content h2 {
          font-size: 20px;
          line-height: 25px;
      }
    .partnership .content p {
        color: #444444;
        font-size: 12px;
        margin-top: -10px;
    }
}
@media (min-width: 340px) and (max-width: 500px){
    .card-content{
        height: 150px;
        width: 100%;
        text-align: center!important;
    }
    .card-content p {
        margin-top: 60px;
        font-size: 16px;
        font-weight: 500;
        font-style: normal;
    }

}


.portfolio-container {
    margin-bottom: 30px;
}

.job-menu{
    padding: 10px;
    box-shadow: 0px 0 30px rgba(33, 65, 60, 0.08);
    border-radius: 15px;
    transition: transform .6s;
    background-color: white;
}
.job-menu:hover{
    border: 2px solid beige;
    transform: scale(1.1)
}
.job-info{
    padding: 40px 0;
    box-shadow: 0 0 30px rgba(33, 65, 60, 0.08);
    border-radius: 15px;
    transition: transform .6s;
    background-color: white;
    font-family: "Poppins", sans-serif;
}
.job-info h3{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border-bottom: 1px solid #b1b6bb;
    text-align: center;
    margin-bottom: 20px;
}
.job-info .job-info-content{
   margin: 0 50px 50px 50px;
}

@media (max-width: 500px) {
    .job-info .job-info-content{
        margin: 5px;
        text-align: justify-all;
    }

}
.border-box {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #000;
    text-transform: uppercase;
    overflow: hidden;
}

.border-box::before,
.border-box::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #06A0DE;
    transition: all 0.4s linear;
}

.border-box::before {
    top: 0;
    left: 0;
}

.border-box::after {
    bottom: 0;
    right: 0;
}

.border-box:hover::before {
    width: 100%;
}

.border-box:hover::after {
    width: 100%;
}
.clients-section {
    padding-top: 20px;
    background: #06A0DE;
    color: white;
}
.client-logo {
    max-width: 170px; /* smaller width */
    max-height: 100px; /* smaller height */
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}
.client-logo:hover {
    transform: scale(1.1);
}
.swiper {
    width: 100%;
}

.swiper-slide-client {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide-client img {
    height: 80px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
    width: 80%;
}

.swiper-slide-client img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
.map-custom-embed iframe,
.map-custom-embed img {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    object-fit: cover;
}






