:root {
    --primary-color: #0c695e;
    --primary-light: rgba(12, 105, 94, 0.1);
    --primary-dark: #074e46;
    --secondary-color: #FF9F1C;
    --secondary-light: rgba(255, 159, 28, 0.1);
    --accent-color: #E71D36;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #0C695E 0%, #074e46 100%);
    --gradient-secondary: linear-gradient(135deg, #FF9F1C 0%, #FFB347 100%);
}
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

html {
    scrollbar-width: none;
}

body {
    overflow-y: scroll;
}

.text-bold{
    font-weight: bold !important;
}

.btn-primary,
.badge-primary,
.bg-primary {
    background: var(--gradient-primary) !important;
    border-color: var(--primary-color) !important;
}

.btn-secondary,
.badge-secondary,
.bg-secondary {
    background: var(--gradient-secondary) !important;
    border-color: var(--secondary-color) !important;
    color: #fff !important;
}

.btn-outline-primary {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background: var(--gradient-primary) !important;
    color: white !important;
}

.btn-outline-secondary {
    color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-outline-secondary:hover {
    background: var(--gradient-secondary) !important;
    color: white !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

/* Transparent Navbar */
.navbar {
    transition: all 0.5s ease;
    padding: 25px 0;
}

.navbar.transparent {
    background-color: transparent !important;
    box-shadow: none;
}

.navbar.scrolled {
    background-color: #FFFFFF !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.navbar-brand strong {
    color: var(--primary-color);
}

.navbar.transparent .navbar-brand,
.navbar.transparent .nav-link {
    color: white;
}

.navbar.transparent .navbar-toggler {
}

.navbar.transparent .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar.transparent .nav-link::after {
    background-color: white;
}

.navbar.scrolled .nav-link::after {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/imgs/slideshow-1.JPG') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Section Styles */
section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
    font-weight: 700;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-bg-light {
    background-color: var(--light-color);
}

.section-bg-primary {
    background-color: var(--primary-light);
}

.section-bg-secondary {
    background-color: var(--secondary-light);
}

/* Curved section dividers */
.curved-top {
    position: relative;
    background: #fff;
    padding-top: 150px;
}

.curved-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--primary-light);
    border-bottom-left-radius: 50% 50%;
    border-bottom-right-radius: 50% 50%;
}

.curved-bottom {
    position: relative;
    background: #fff;
    padding-bottom: 150px;
}

.curved-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: var(--secondary-light);
    border-top-left-radius: 50% 50%;
    border-top-right-radius: 50% 50%;
}

/* Section dividers */
.divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.divider.divider-top {
    top: 0;
    bottom: auto;
    transform: rotate(0);
}

.divider .shape-fill {
    fill: #FFFFFF;
}

.divider-primary .shape-fill {
    fill: var(--primary-light);
}

.divider-secondary .shape-fill {
    fill: var(--secondary-light);
}

.bg-dots {
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 30px 30px;
    background-position: 0 0, 15px 15px;
    opacity: 0.1;
}

.bg-lines {
    background: linear-gradient(90deg, var(--primary-light) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* About Section */
.about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
    z-index: -1;
}

.about-img::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 5px solid var(--secondary-color);
    border-right: 5px solid var(--secondary-color);
    z-index: -1;
}

.about-feature {
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 10px;
    cursor: default;
}

.about-feature:hover {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member .member-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member .member-img img {
    transition: transform 0.5s ease;
    width: 100%;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.team-member .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.4s ease;
    background: var(--gradient-primary);
    padding: 15px 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.team-member:hover .social-links {
    bottom: 0;
    opacity: 1;
}

.team-member .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.team-member .social-links a:hover {
    transform: scale(1.2);
}

.team-member h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.team-member span {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Services Section */
.service-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-primary);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    background: var(--primary-light);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

/* Tender Section */
.tender-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tender-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.tender-card .card-body {
    position: relative;
    z-index: 1;
}

.tender-card .card-body::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.tender-card:hover .card-body::before {
    transform: scale(1.5);
}

/* Careers Section */
.career-card {
    border-radius: 20px;
    transition: all 0.4s ease;
    height: 100%;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.career-card .card-body {
    position: relative;
    z-index: 1;
}

.career-card .card-body::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 100px;
    height: 100px;
    background: var(--secondary-light);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.4s ease;
}

.career-card:hover .card-body::after {
    transform: scale(1.5);
}

/* Contact Section */
.contact-info i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    background: var(--primary-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-info:hover i {
    background: var(--primary-color);
    color: white;
    transform: rotateY(360deg);
}

.contact-form {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.partner-form {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
}

/* Banner Section */
.banner-card {
    margin: auto;
    position: relative;
    max-width: 70%;
    overflow: hidden;
    border-radius: 20px;
}

.banner-card img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(12, 105, 94, 0.8), rgba(12, 105, 94, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    z-index: 2;
    color: white;
    text-align: center;
    transition: all 0.4s ease;
}

.banner-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.banner-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .banner-card {
        height: 300px;
    }

    .banner-content {
        padding: 20px;
    }

    .banner-content h3 {
        font-size: 1.4rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }
}
.swiper-pagination-bullet-active {
    background: #FFFFFF !important;
}

/* ================== TIMELINE SECTION ================== */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: var(--gradient-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
    animation: growLine 2s ease-out forwards;
}

@keyframes growLine {
    0% {
        height: 0;
        top: 50%;
        opacity: 0;
    }

    100% {
        height: 100%;
        top: 0;
        opacity: 1;
    }
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
}

.timeline-item .content {
    background: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(12, 105, 94, 0.15);
    border-left: 6px solid var(--primary-color);
    transition: all 0.4s ease;
}

.timeline-item .content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(12, 105, 94, 0.25);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 25px;
    background: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.3s ease;
}

.timeline-item.left::before {
    right: -12px;
}

.timeline-item.right::before {
    left: -12px;
}

.timeline-item:hover::before {
    transform: scale(1.3);
    background: var(--primary-color);
}

/* Year Label */
.timeline-item .year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.timeline-item h4 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 20px;
    }

    .timeline-item.right {
        left: 0%;
    }

    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 10px;
    }
}

/* Footer */
footer {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 15px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

footer ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

footer ul li a:hover {
    padding-left: 20px;
    color: white !important;
}

footer ul li a:hover::before {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(12, 105, 94, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    animation: pulse 2s infinite;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* Enhanced Styling */
.btn {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    box-shadow: 0 10px 20px rgba(12, 105, 94, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(12, 105, 94, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 159, 28, 0.4);
}

.btn-outline-light:hover {
    transform: translateY(-5px);
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(12, 105, 94, 0.25);
}

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Animated elements */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.rotate {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Decorative Elements */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
    z-index: 0;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    opacity: 0.5;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
}

.dots-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: 0;
}

.dots-1 {
    top: 50px;
    left: 50px;
}

.dots-2 {
    bottom: 50px;
    right: 50px;
}

/* Scroll Reveal Animation */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
}

.reveal.from-left {
    transform: translateX(-100px);
}

.reveal.from-right {
    transform: translateX(100px);
}

.reveal.from-bottom {
    transform: translateY(100px);
}

.reveal.active.from-left,
.reveal.active.from-right,
.reveal.active.from-bottom {
    transform: translateX(0) translateY(0);
}