/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Our Scrolling Ticker css
06. About Us css
07. Our Services css
08. Why Choose Us css
09. Our Projects css
10. Our Environment css
11. Our Facts css
12. What We Do css
13. How It Work css
14. Our FAQs css
15. Our Testimonial css
16. Our Blog css
17. Footer css
18. About Us Page css
19. Services Page css
20. Service Single css
21. Blog Archive css
22. Blog Single css
23. Projects Page css
24. Project Single css
25. Team Page css
26. Team Single css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQs Page css
31. Contact Us Page css
32. Donation Page css
33. 404 Error Page css
34. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
    --primary-color: #3361AC;
    --primary-dark: #6E8CB4;
    --primary-darker:#313131; 
    --secondary-color: #EAEAEA;
    --text-color: #727272;
    --accent-color: #3361AC;
    --accent-secondary-blue-color: #274b85;
    --accent-secondary-color: #B4A050;
    --accent-tertiary-color: #6E8CB4;
    --accent-quaternary-color: #E1C864;
    --white-color: #ffffff;
    --divider-color: #3361AC1a;
    --dark-divider-color: #ffffff25;
    --error-color: rgb(230, 87, 87);
    --default-font: "Open Sans", sans-serif;
    --accent-font: "Open Sans", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 400;
    line-height: 1em;
    color: var(--text-color);
    background: var(--white-color);
}

::-webkit-scrollbar-track {
    background-color: var(--secondary-color);
    border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar {
    width: 7px;
    background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color);
}

::selection {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    filter: invert(1);
}

p {
    line-height: 1.6em;
    margin-bottom: 1.57em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--accent-font);
    font-weight: 600;
    line-height: 1.1em;
    color: var(--primary-darker);
}

figure {
    margin: 0;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    outline: 0;
}

a:focus {
    text-decoration: none;
    outline: 0;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

.container {
    max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
    z-index: 1;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    display: none;
}

.image-anime:hover:after {
    height: 0%;
    transition: none;
    background-color: transparent;
    display: none;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row > * {
    padding-right: 15px;
    padding-left: 15px;
}

.row.no-gutters {
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > * {
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default {
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 17px 60px 17px 20px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover {
    background: var(--accent-secondary-blue-color);
    color: var(--white-color);
}

.btn-default::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url("../images/arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-25px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
    transform: translate(-17px, -50%);
}

.btn-default::after {
    display: none;
}

.btn-default.btn-highlighted:hover {
    color: var(--white-color);
}

.btn-default.btn-highlighted:hover::before {
    /* filter: brightness(1) invert(1); */
}

.btn-default.btn-highlighted::after {
    background: var(--white-color);
}

.readmore-btn {
    position: relative;
    display: inline-block;
    font-size: 16px;
    /* font-weight: 700; */
    line-height: normal;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 30px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover {
    color: var(--primary-color);
}

.readmore-btn::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-3px);
    background: url("../images/arrow-accent-secondary.svg") no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
    filter: brightness(0) invert(0);
    transform: translateY(-50%) translateX(0px);
}

.cb-cursor:before {
    background: var(--accent-color);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container,
.loading {
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}

.loading-container {
    margin: 40px auto;
}

.loading {
    border: 1px solid transparent;
    border-color: transparent var(--accent-color) transparent
        var(--accent-color);
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
    transition: all 0.5s ease-in-out;
}

#loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 66px;
    transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.section-row {
    margin-bottom: 80px;
}

.section-row .section-title {
    margin-bottom: 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-darker);
    background: url("../images/icon-sub-heading.svg") no-repeat;
    background-position: left center;
    background-size: 24px auto;
    padding-left: 34px;
    margin-bottom: 15px;
}

.section-title h1 {
    font-size: 64px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

.section-title h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 0;
}

.section-title h2 + h3 {
    margin-top: 10px;
}

.section-title p {
    margin-top: 20px;
    margin-bottom: 0;
}

.investors-page-section .section-title h2 {
    font-size: 48px;
    /* text-align: center; */
}

.investors-content-section .section-title h2 {
    font-size: 36px;
}

.section-title-content p {
    margin: 0;
}

.section-btn {
    text-align: right;
}

.section-content-btn .section-btn {
    text-align: left;
    margin-top: 30px;
}

.dark-section {
    background: var(--secondary-color);
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1 {
    color: var(--primary-darker);
}

.help-block.with-errors ul {
    margin: 0;
    text-align: left;
}

.help-block.with-errors ul li {
    color: var(--error-color);
    font-weight: 500;
    font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
    position: absolute;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
    transition: background-color 0.3s ease;
}

/* Sticky blue header for non-index pages */
body.non-index-page {
    padding-top: 90px;
}

body.non-index-page header.main-header {
    position: fixed;
    top: 0;
    background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

body.non-index-page header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
}

header.main-header .header-sticky {
    position: relative;
    top: 0;
    z-index: 100;
    transition: background-color 0.4s ease;
}

header.main-header .header-sticky.hide {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    border-radius: 0;
}

header.main-header .header-sticky.active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    transform: translateY(0);
    background: var(--primary-color);
    border-bottom: 1px solid var(--dark-divider-color);
}

/* Index page header sticky with gradual background transition */
body.active-sticky-header header.main-header {
    transition: background-color 0.4s ease, position 0.3s ease;
}

body.active-sticky-header header.main-header .header-sticky.active {
    background: transparent;
}

body.active-sticky-header header.main-header .header-sticky {
    transition: background-color 0.4s ease;
}

.navbar {
    padding: 30px 0;
    align-items: center;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 50px;
    height: 50px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
}

.main-menu .nav-menu-wrapper {
    flex: 1;
    text-align: right;
    margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul {
    align-items: center;
    display: inline-flex;
}

.main-menu ul li {
    margin: 0;
    position: relative;
}

.main-menu ul li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
    padding: 15px 20px !important;
    color: var(--secondary-color);
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 14px;
    margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
    color: var(--accent-quaternary-color);
    text-decoration: underline;
    text-decoration-color: var(--accent-quaternary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

/* Active page underline */
.main-menu ul li a.active {
    color: var(--accent-quaternary-color);
    text-decoration: underline;
    text-decoration-color: var(--accent-quaternary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

/* Override Bootstrap's navbar active color */
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--accent-quaternary-color) !important;
    text-decoration: underline !important;
    text-decoration-color: var(--accent-quaternary-color) !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 8px !important;
}

.main-menu .navbar-nav .nav-link.active,
.main-menu .navbar-nav .nav-link.show {
    color: var(--accent-quaternary-color) !important;
    text-decoration: underline !important;
    text-decoration-color: var(--accent-quaternary-color) !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 8px !important;
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
}

.main-menu ul li.submenu:first-child ul {
    width: 235px;
}

.main-menu ul ul ul {
    left: 100%;
    top: 0;
    text-align: left;
}

.main-menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
    content: "\f105";
    float: right;
}

.main-menu ul ul li {
    margin: 0;
    padding: 0;
}

.main-menu ul ul li a {
    color: var(--secondary-color);
    padding: 8px 20px !important;
    transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
    color: var(--primary-color);
    background-color: transparent;
    padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
    display: none;
}

.responsive-menu,
.navbar-toggle {
    display: none;
}

.responsive-menu {
    top: 0;
    position: relative;
}

.slicknav_btn {
    background: var(--accent-secondary-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    width: 22px;
    background-color: var(--primary-color);
    border-radius: 6px;
    margin: 4px auto !important;
    transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
    margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
    margin-bottom: 0 !important;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
    background-color: var(--primary-color);
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle
    a.slicknav_btn.slicknav_open
    .slicknav_icon
    span.slicknav_icon-bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -5px);
    background-color: var(--primary-color);
}

.slicknav_menu {
    position: absolute;
    width: 100%;
    padding: 0;
    background: var(--primary-darker);
}

.slicknav_menu ul {
    margin: 5px 0;
}

.slicknav_menu ul ul {
    margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 8px 20px;
    color: var(--secondary-color);
    line-height: normal;
    margin: 0;
    border-radius: 0 !important;
    transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.slicknav_menu ul ul li a {
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
    font-size: 0 !important;
}

.slicknav_arrow:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 12px;
    margin-left: 8px;
    color: var(--secondary-color);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
    position: relative;
    background: url("/images/hero-bg-2.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 260px 0 150px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
}

.hero .container {
    width: 100%;
}

/* .hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgba(3, 34, 27, 0.9) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);
	width: 100%;
	height: 100%;
	z-index: 1;
} */

.hero.hero-video .hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero.hero-video .hero-bg-video::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero.hero-video .hero-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.hero.hero-video {
    min-height: 100vh;
    padding: 120px 0 20px;
    overflow: visible;
}

.hero.hero-video .container {
    position: relative;
    z-index: 2;
}

.hero.hero-video .hero-content {
    position: relative;
    z-index: 2;
}

.hero.hero-slider-layout {
    background: none;
    padding: 0;
}

.hero.hero-slider-layout .hero-slide {
    position: relative;
    padding: 260px 0 150px;
}

.hero.hero-slider-layout .hero-slide::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
            360deg,
            rgba(3, 34, 27, 0) 74.01%,
            rgba(3, 34, 27, 0.9) 100%
        ),
        linear-gradient(
            270deg,
            rgba(3, 34, 27, 0) 25.1%,
            rgba(3, 34, 27, 0.516) 41.43%,
            rgba(3, 34, 27, 0.86) 58.93%
        );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 50px;
    text-align: left;
    padding-left: calc(((100vw - 1300px) / 2) + 15px);
    z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.hero-body {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 40px;
}

.hero-review-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-review-images {
    display: flex;
    align-items: center;
}

.hero-review-image {
    display: inline-block;
    margin-left: -12px;
}

.hero-review-image:first-child {
    margin: 0;
}

.hero-review-image figure {
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.hero-review-image img {
    width: 100%;
    border-radius: 50%;
}

.hero-review-content h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.hero-review-content p {
    color: var(--secondary-color);
    opacity: 80%;
    text-transform: capitalize;
    margin: 0;
}

/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker {
    background: var(--accent-color);
    padding: 20px 0;
}

.scrolling-ticker-box {
    --gap: 20px;
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    align-items: center;
}

.scrolling-content {
    flex-shrink: 0;
    display: flex;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll 60s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - var(--gap)));
    }
}

.scrolling-content span {
    font-family: var(--accent-font);
    display: flex;
    align-items: center;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1em;
    color: var(--secondary-color);
}

.scrolling-content span img {
    width: 20px;
    margin-right: 20px;
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us {
    /* background: url("../images/section-bg-1.png") no-repeat; */
    background-position: bottom -70px right -200px;
    background-size: auto;
    padding: 100px 0;
}

.about-images {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-img-1,
.about-img-2 {
    width: calc(50% - 15px);
}

.about-img-1 figure,
.about-img-2 figure {
    display: block;
    border-radius: 999px;
}

.about-img-1 img,
.about-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.9;
    object-fit: cover;
    border-radius: 999px;
}

.about-img-2 {
    margin-top: 70px;
}

.years-experience-box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    align-content: center;
    text-align: center;
    background: var(--accent-color);
    border: 10px solid var(--white-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.years-experience-box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.about-images:hover .years-experience-box::before {
    transform: scale(1);
}

.years-experience-box h2,
.years-experience-box p {
    position: relative;
    z-index: 1;
}

.years-experience-box h2 {
    font-size: 46px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.years-experience-box p {
    line-height: normal;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.about-us-content {
    margin-left: 20px;
}

.about-us-body {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-body-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 20px;
}

.about-body-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.about-body-item .icon-box::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.about-body-item:hover .icon-box::before {
    transform: scale(1);
}

.about-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 36px;
    z-index: 1;
}

.about-body-item-title {
    position: relative;
    width: calc(100% - 70px);
    z-index: 1;
}

.about-body-item-title h3 {
    font-size: 22px;
    text-transform: capitalize;
    line-height: 1.3em;
}

.about-us-footer {
    margin-top: 40px;
}

.about-us-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 50px;
    margin-top: 40px;
}

.about-author-box {
    display: flex;
    align-items: center;
}

.about-author-box .author-image {
    display: block;
    border-radius: 50%;
}

.about-author-box .author-image figure {
    display: block;
    border-radius: 50%;
}

.about-author-box .author-image img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.about-author-box .author-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.about-author-box .author-info p {
    margin-bottom: 0;
}

/************************************/
/*** 	  07. Our Services css	  ***/
/************************************/

.our-services {
    background: var(--secondary-color) url("../images/section-bg-2.png")
        no-repeat;
    background-position: bottom -40px left -60px;
    background-size: auto;
    padding: 100px 0;
}

.service-item {
    position: relative;
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.service-item.active::before,
.service-item:hover::before {
    height: 100%;
    border-radius: 0;
}

.service-item .icon-box {
    position: relative;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 60px;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-item.active .icon-box,
.service-item:hover .icon-box {
    background-color: var(--secondary-color);
}

.service-item .icon-box img {
    width: 100%;
    max-width: 40px;
    transition: all 0.5s ease-in-out;
}

.service-item.active .icon-box img,
.service-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.service-item-content {
    position: relative;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.service-item.active .service-item-content,
.service-item:hover .service-item-content {
    border-bottom-color: var(--dark-divider-color);
}

.service-item-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
}

.service-item-content h3 a {
    color: inherit;
}

.service-item-content p {
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.service-readmore-btn {
    position: relative;
    z-index: 1;
}

.service-item.active .service-item-content h3,
.service-item:hover .service-item-content h3,
.service-item.active .service-item-content p,
.service-item:hover .service-item-content p,
.service-item.active .service-readmore-btn .readmore-btn,
.service-item:hover .service-readmore-btn .readmore-btn {
    color: var(--secondary-color);
}

.service-item.active .readmore-btn::before,
.service-item:hover .readmore-btn::before {
    filter: brightness(0) invert(1);
}

.service-pagination {
    text-align: center;
    margin-top: 50px;
}

.service-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 2px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.service-pagination .swiper-pagination-bullet-active {
    width: 24px;
    background-color: var(--accent-color);
}

/* Projects slider pagination */
.project-pagination {
    text-align: center;
    margin-top: 20px;
}

.project-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background: var(--secondary-color);
    opacity: 1;
    margin: 0 8px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.project-pagination .swiper-pagination-bullet-active {
    width: 32px;
    background-color: rgb(180, 160, 80);
    border-radius: 100px;
    /* pull left to visually connect with previous dot */
    margin-left: -8px;
}

.project-pagination .swiper-pagination-bullet-active:first-child {
    /* avoid negative offset on the very first bullet */
    margin-left: 0;
}

/************************************/
/*** 	 08. Why Choose Us css	  ***/
/************************************/

.why-choose-us {
    padding: 100px 0;
}

.why-choose-list {
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
}

.why-choose-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose-list ul li {
    background-image: url("../images/arrow-accent-secondary.svg");
    background-repeat: no-repeat;
    background-position: left top 1px;
    background-size: 20px auto;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 25px;
}

.why-choose-list ul li:last-child {
    margin-bottom: 0;
}

.why-choose-btn {
    margin-top: 40px;
}

.why-choose-images {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 30px;
    margin-left: 15px;
}

.why-choose-image-box-1 {
    width: calc(48% - 15px);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-image-box-2 {
    width: calc(52% - 15px);
    margin-top: 100px;
}

.why-choose-image {
    width: 100%;
}

.why-choose-image figure {
    display: block;
    border-radius: 20px;
}

.why-choose-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.why-choose-image.why-img-1 {
    aspect-ratio: 1 / 1.065;
}

.why-choose-image.why-img-2 img {
    aspect-ratio: 1 / 0.78;
}

.why-choose-image.why-img-3 img {
    aspect-ratio: 1 / 1.692;
}

/************************************/
/*** 	 09. Our Projects css	  ***/
/************************************/

.our-projects {
    padding: 100px 0;
}

/* Project Subsection Styling */
.project-subsection {
    margin-bottom: 80px;
}

.project-subsection:last-child {
    margin-bottom: 0;
}

.subsection-title {
    margin-bottom: 50px;
    text-align: left;
}

.subsection-title h3 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.subsection-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Center project items within the swiper */
.project-subsection .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-subsection .swiper-slide {
    display: flex;
    justify-content: center;
}

.project-item {
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.project-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.project-image a,
.project-image figure {
    display: block;
    height: 100%;
}

.project-image figure {
    position: relative;
    height: 100%;
}

.project-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 34, 27, 0) 45.62%,
        rgba(3, 34, 27, 0.8) 76.07%
    );
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease-in-out;
    display: block;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-body {
    position: absolute;
    left: 30px;
    bottom: 30px;
    right: 30px;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-body {
    transform: translateY(0);
}

.project-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.project-content h3 a {
    color: inherit;
}

.project-body p {
    color: var(--secondary-color);
    opacity: 80%;
    margin-bottom: 0;
}

.project-readmore-btn {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.project-item:hover .project-readmore-btn {
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
}

.project-readmore-btn .readmore-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 20px;
    padding-right: 38px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.project-readmore-btn .readmore-btn:hover {
    background: var(--accent-secondary-blue-color);
    color: var(--white-color);
}

.project-readmore-btn .readmore-btn::before {
    right: 8px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.project-readmore-btn .readmore-btn:hover::before {
    filter: brightness(0) saturate(100%) invert(100%);
    transform: translateY(-50%) translateX(0px);
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    margin-bottom: 0;
}

.dark-section .section-footer-text p {
    color: var(--secondary-color);
}

.section-footer-text span {
    font-family: var(--accent-font);
    font-weight: 600;
    background: var(--accent-color);
    padding: 3px 10px;
    border-radius: 100px;
    margin-right: 10px;
}

.section-footer-text p a {
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: underline;
    text-underline-offset: 3px;
    color: var(--accent-color);
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--accent-color);
}

/************************************/
/*** 	10. Our Environment css	  ***/
/************************************/

.our-environment {
    padding: 100px 0;
}

.our-environment-images {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.environment-img-1,
.environment-img-2 {
    width: 100%;
    border-radius: 20px;
}

.environment-img-1 figure,
.environment-img-2 figure {
    display: block;
    border-radius: 20px;
}

.environment-img-1 figure img,
.environment-img-2 figure img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.environment-img-1 figure img {
    aspect-ratio: 1 / 1.399;
}

.environment-img-2 {
    width: 100%;
    max-width: 310px;
    margin-left: -111px;
}

.environment-img-2 figure {
    border: 4px solid var(--white-color);
    border-radius: 24px;
}

.environment-img-2 figure img {
    aspect-ratio: 1 / 1.2;
}

.experience-circle {
    position: relative;
    display: inline-block;
    border: 4px solid var(--white-color);
    border-radius: 50%;
    margin-left: 40px;
    margin-top: -80px;
    z-index: 1;
}

.experience-circle img {
    width: 100%;
    max-width: 180px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.environment-body-item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.environment-body-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.environment-body-item .icon-box {
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    margin-right: 20px;
}

.environment-body-item .icon-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.environment-body-item:hover .icon-box::before {
    transform: scale(1);
}

.environment-body-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.environment-body-item-content {
    width: calc(100% - 70px);
}

.environment-body-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.environment-body-item-content p {
    margin-bottom: 0;
}

/************************************/
/*** 	   11. Our Facts css	  ***/
/************************************/

.our-facts {
    position: relative;
    background: url("../images/fact-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 30px;
}

.our-facts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        270deg,
        rgba(3, 34, 27, 0) -31.52%,
        rgba(3, 34, 27, 0.96) 45.81%
    );
    width: 100%;
    height: 100%;
    z-index: 0;
}

.our-facts .container {
    position: relative;
    z-index: 1;
}

.our-fact-content {
    height: calc(100% - 100px);
    align-content: center;
    margin: 50px 0;
}

.fact-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.fact-list ul li {
    width: calc(50% - 15px);
    line-height: 1.5em;
    color: var(--secondary-color);
    background-image: url("../images/arrow-accent-secondary.svg");
    background-repeat: no-repeat;
    background-position: left top 1px;
    background-size: 20px auto;
    padding-left: 30px;
}

.fact-counter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 60px;
    border-top: 1px solid var(--dark-divider-color);
    margin-top: 50px;
    padding-top: 0;
}

.fact-counter-item {
    position: relative;
    width: calc(33.33% - 40px);
}

.fact-counter-item:after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.fact-counter-item:last-child:after,
.fact-counter-item:nth-child(3n + 3)::after {
    display: none;
}

.fact-counter-item img {
    width: 100%;
    max-width: 50px;
    margin-bottom: 20px;
}

.fact-counter-item h2 {
    font-size: 46px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.fact-counter-item p {
    color: var(--secondary-color);
    opacity: 80%;
    margin-bottom: 0;
}

.our-fact-image {
    padding-left: 15px;
    margin-top: -30px;
    text-align: center;
}

.our-fact-image figure {
    display: block;
}

.our-fact-image img {
    width: 100%;
    aspect-ratio: 1 / 1.49;
    object-fit: cover;
}

/************************************/
/*** 	  12. What We Do css	  ***/
/************************************/

.what-we-do {
    padding: 100px 0;
}

.What-we-do-content {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.what-we-do-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.what-we-do-list ul li {
    background-image: url("../images/arrow-accent-secondary.svg");
    background-repeat: no-repeat;
    background-position: left top 1px;
    background-size: 20px auto;
    line-height: 1.5em;
    padding-left: 30px;
    margin-bottom: 20px;
}

.what-we-do-list ul li:last-child {
    margin-bottom: 0;
}

.what-we-do-btn {
    margin-top: 40px;
}

.what-do-item-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.what-we-do-item {
    position: relative;
    width: calc(50% - 15px);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.what-we-do-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-do-item.active::before,
.what-we-do-item:hover::before {
    height: 100%;
    border-radius: 0;
}

.what-we-do-item .icon-box {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.what-we-do-item .icon-box img {
    width: 100%;
    max-width: 60px;
    transition: all 0.4s ease-in-out;
}

.what-we-do-item.active .icon-box img,
.what-we-do-item:hover .icon-box img {
    filter: brightness(0) invert(1);
}

.what-do-item-content h3,
.what-do-item-content p {
    position: relative;
    z-index: 1;
}

.what-do-item-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.what-do-item-content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.what-we-do-item.active .what-do-item-content h3,
.what-we-do-item:hover .what-do-item-content h3,
.what-we-do-item.active .what-do-item-content p,
.what-we-do-item:hover .what-do-item-content p {
    color: var(--secondary-color);
}

.what-we-do-box .section-footer-text {
    margin-top: 40px;
}

/************************************/
/*** 	 13. How It Work css	  ***/
/************************************/

.how-it-work {
    background: url("../images/section-bg-3.png"), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    padding: 100px 0 100px 0;
    /* margin-bottom: 220px; */
}

.work-step-item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.work-step-item {
    width: calc(25% - 22.5px);
    text-align: center;
}

.work-step-image {
    margin-bottom: 20px;
}

.work-step-image figure {
    display: block;
    border-radius: 20px;
}

.work-step-image img {
    width: 100%;
    aspect-ratio: 1 / 0.746;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-image img {
    transform: scale(1.1);
}

.work-step-content {
    position: relative;
    padding-top: 30px;
}

.work-step-content h2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 90px;
    font-weight: 700;
    line-height: 0.9em;
    color: var(--secondary-color);
    background: var(--divider-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
    transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-content h2 {
    color: transparent;
}

.work-step-content h3,
.work-step-content p {
    position: relative;
    z-index: 1;
}

.work-step-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.work-step-content p {
    margin-bottom: 0;
}

.donate-box {
    display: flex;
    gap: 30px 60px;
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 80px;
    margin-top: 80px;
    margin-bottom: -220px;
}

.donate-box .section-title {
    width: calc(40% - 30px);
    margin-bottom: 0;
}

.donate-form {
    width: calc(60% - 30px);
}

.donate-form .form-control {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 700;
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    box-shadow: none;
    outline: none;
    padding: 17px 20px;
}

.donate-form .form-control::placeholder {
    color: var(--secondary-color);
}

.donate-value-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.donate-form .donate-value {
    width: calc(33.33% - 6.66px);
}

.donate-value-box .donate-value input {
    position: absolute;
    left: -9999px;
}

.donate-value-box .donate-value label {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 1.5em;
    background-color: transparent;
    border: 1px solid var(--dark-divider-color);
    color: var(--secondary-color);
    border-radius: 10px;
    padding: 17px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.donate-value-box .donate-value input[type="radio"]:hover + label,
.donate-value-box .donate-value input[type="radio"]:focus + label,
.donate-value-box .donate-value input[type="radio"]:checked + label {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

.donate-form .form-group-btn .btn-default.btn-highlighted {
    width: 100%;
    display: block;
    text-align: center;
    padding: 18px;
}

.donate-form .form-group-btn .btn-default.btn-highlighted::before {
    display: none;
}

/************************************/
/*** 	   14. Our FAQs css 	  ***/
/************************************/

.our-faqs {
    padding: 100px 0;
}

/* FAQ Image Section Styling */
.faq-image {
    margin-bottom: 0;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-review-content {
    margin-top: 30px;
    text-align: left;
}

.client-review-content p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 15px;
}

.client-review-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
}

.client-review-content ul li i {
    color: var(--accent-color);
    font-size: 20px;
}

.faq-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.faq-image figure {
    display: block;
}

.faq-image figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(3, 34, 27, 0) 52.02%,
        rgba(3, 34, 27, 0.8) 100%
    );
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-image img {
    width: 100%;
    aspect-ratio: 1 / 0.807;
    object-fit: cover;
}

.client-review-content {
    position: absolute;
    /* text-align: center; */
    bottom: 25px;
    right: 25px;
    left: 25px;
    z-index: 1;
}

.client-review-content p {
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.client-review-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.client-review-content ul li {
    display: inline-block;
}

.client-review-content ul li i {
    color: var(--accent-secondary-color);
}

.faq-accordion .accordion-item {
    position: relative;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.1em;
    background: transparent;
    padding: 18px 50px 18px 20px;
    color: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
    color: var(--primary-color);
    background: transparent;
    font-weight: bold;
}

.faq-accordion .accordion-header .accordion-button:hover,
.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    /* color: var(--secondary-color); */
}

.faq-categories .accordion-header .accordion-button:hover,
.faq-categories .accordion-header .accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    /* color: var(--secondary-color); */
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-button::after {
    background-image: none !important;
}

.faq-categories .accordion-button::after {
    background-image: none !important;
    content: "\f068";
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    background-color: var(--accent-color);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.faq-categories .accordion-button.collapsed::after {
    content: "\f067";
}

.faq-accordion .accordion-item .accordion-button::after {
    content: "\f068";
    font-family: "FontAwesome";
    position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    background-color: var(--accent-color);
    background-image: none !important;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
    content: "\f067";
    transform: translateY(-50%);
}

.faq-accordion .accordion-item .accordion-body {
    background: transparent;
    border-top: 1px solid var(--divider-color);
    padding: 18px 50px 18px 20px;
}

.faq-accordion .accordion-item .accordion-body p {
    margin: 0;
}

/* Ensure accordion button text is bold */
.faq-accordion .accordion-button,
.accordion .accordion-button,
button.accordion-button,
#faqCategories .accordion-button,
#faqaccordionCompany .accordion-button,
#faqaccordionEnergy .accordion-button,
#faqaccordionCarbon .accordion-button {
    font-weight: bold !important;
}

/* Paraguay E-Methanol Project page specific styling */
body .non-index-page .section-title.text-center h2 {
    font-size: 48px !important;
}

/************************************/
/*** 	15. Our Testimonial css	  ***/
/************************************/

.our-testimonials {
    background-image: url("../images/testimonials-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.review-box {
    display: flex;
    align-items: center;
    justify-content: end;
}

.review-image {
    border-right: 1px solid var(--dark-divider-color);
    margin-right: 25px;
    padding-right: 25px;
}

.review-image img {
    width: 100%;
    max-width: 150px;
}

.review-content ul {
    list-style: none;
    margin-bottom: 10px;
    padding: 0;
}

.review-content ul li {
    display: inline-block;
}

.review-content ul li i {
    color: var(--accent-color);
}

.review-content p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.testimonial-image figure {
    display: block;
    border-radius: 20px;
}

.testimonial-image img {
    width: 100%;
    aspect-ratio: 1 / 0.79;
    object-fit: cover;
    border-radius: 20px;
}

.testimonial-slider {
    position: relative;
    margin-left: 20px;
}

.testimonial-slider .swiper-wrapper {
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-company-logo img {
    width: 100%;
    max-width: 175px;
}

.testimonial-quote img {
    width: 100%;
    max-width: 40px;
}

.testimonial-content {
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.testimonial-content p {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    margin-right: 15px;
}

.author-image figure {
    display: block;
    border-radius: 50%;
}

.author-image img {
    width: 100%;
    max-width: 60px;
    border-radius: 50%;
}

.author-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.author-content p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.testimonial-pagination {
    position: absolute;
    right: 0;
    display: flex;
    bottom: 0;
    align-items: center;
    justify-content: right;
    z-index: 2;
}

.testimonial-pagination .swiper-pagination-bullet {
    height: 8px;
    width: 8px;
    background: var(--dark-divider-color);
    border-radius: 100px;
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--white-color);
    width: 26px;
    border-radius: 100px;
}

.testimonial-company-slider {
    /* border-top: 1px solid var(--dark-divider-color); */
    /* margin-top: 80px; */
    /* padding-top: 80px; */
}

.testimonial-company-slider .company-logo {
    text-align: center;
}

.testimonial-company-slider .company-logo img {
    width: 100%;
    max-width: 175px;
    max-height: 40px;
}

/************************************/
/*** 	  16. Our Blog css  	  ***/
/************************************/

.our-blog {
    padding: 100px 0;
}

.post-item {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.post-item:last-child {
    margin-bottom: 0;
}

.post-featured-image {
    width: 47%;
}

.post-item-body {
    width: 53%;
    align-content: center;
    padding: 30px;
}

.post-featured-image a {
    height: 100%;
    display: block;
    overflow: hidden;
}

.post-featured-image figure {
    height: 100%;
}

.post-featured-image img {
    height: 100%;
    width: 100%;
    aspect-ratio: 1 / 0.861;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
    transform: scale(1.1);
}

.post-item-content {
    margin-bottom: 20px;
}

.post-item-content h2 {
    color: var(--primary-darker);
    font-size: 22px;
    line-height: 1.3em;
    margin-bottom: 15px;
}

.post-item-content h2 a {
    color: inherit;
}

.post-item-content p:last-child {
    margin: 0;
}

.post-item.highlighted-post-item .post-featured-image,
.post-item.highlighted-post-item .post-item-body {
    width: 100%;
}

.post-item.highlighted-post-item .post-featured-image img {
    aspect-ratio: 1 / 0.557;
}

/************************************/
/*** 	 	17. Footer css		  ***/
/************************************/

.main-footer {
    position: relative;
    background: var(--primary-dark);
    background-image: url("../images/footer-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-blend-mode: overlay;
    padding: 100px 0px 0px;
}

.main-footer:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-darker);
    opacity: 97%;
}

.main-footer-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid var(--dark-divider-color);
    margin-bottom: 60px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 20%;
}

.footer-logo img {
    width: auto;
    max-width: 400px;
    min-width: 350px;
    height: auto;
}

.footer-contact-details {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 20px 40px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
}

.footer-contact-item .icon-box {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.footer-contact-item .icon-box:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.footer-contact-item:hover .icon-box::before {
    transform: scale(1);
}

.footer-contact-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.footer-contact-item-content {
    text-align: left;
    width: calc(100% - 80px);
}

.footer-contact-item-content h3 {
    color: var(--secondary-color);
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 3px;
    text-align: left;
}

.footer-contact-item-content p {
    color: var(--secondary-color);
    margin: 0;
}

.footer-contact-item-content p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item-content p a:hover {
    color: var(--accent-color);
}

.about-footer {
    padding-right: 60px;
}

.footer-links p {
    color: var(--secondary-color);
    margin: 0;
}

.footer-social-links {
    margin-top: 40px;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    background: var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    background: var(--accent-secondary-blue-color);
}

.footer-social-links ul li a i {
    color: var(--secondary-color);
    font-size: 18px;
}

.footer-links h3 {
    color: var(--secondary-color);
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    color: var(--secondary-color);
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a:hover {
    color: var(--primary-color) ;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

.footer-links ul li a {
    color: inherit;
    display: inline-block;
}

.newsletter-form {
    padding-left: 50px;
}

.newsletter-form p {
    margin-bottom: 30px;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form .form-group .form-control {
    width: 68%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    color: var(--secondary-color);
    background-color: transparent;
    border: 1px solid var(--dark-divider-color);
    border-right: none;
    border-radius: 10px 0 0 10px;
    outline: none;
    box-shadow: none;
    padding: 12px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
    color: var(--text-color);
}

.newsletter-form .form-group .btn-default.btn-highlighted {
    width: 32%;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 0 10px 10px 0;
    padding: 17px 12px;
    line-height: 1em;
}

.newsletter-form .form-group .btn-default.btn-highlighted:hover {
    background-color: var(--accent-secondary-blue-color);
    color: var(--white-color);
}

.newsletter-form .form-group .btn-default::before {
    display: none;
}

.newsletter-form .form-group .btn-default::after {
    display: none;
}

.footer-copyright {
    position: relative;
    background: var(--primary-darker);
    border-top: 1px solid var(--dark-divider-color);
    padding: 50px 0;
    margin-top: 60px;
    z-index: 1;
}

.footer-copyright-text p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.footer-privacy-policy {
    text-align: right;
}

.footer-privacy-policy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-privacy-policy ul li {
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
    text-transform: capitalize;
    line-height: 1.6em;
    margin-right: 30px;
    transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
    color: var(--accent-color);
}

.footer-privacy-policy ul li:last-child {
    margin-right: 0;
}

.footer-privacy-policy ul li:before {
    content: "/";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -18px;
    color: var(--secondary-color);
}

.footer-privacy-policy ul li:last-child::before {
    display: none;
}

.footer-privacy-policy ul li a {
    color: inherit;
}

/************************************/
/*** 	 18. About Us Page css	  ***/
/************************************/

.page-header {
    position: relative;
    background: url("../images/page-header-bg.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 230px 0 120px;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            360deg,
            rgba(3, 34, 27, 0) 74.01%,
            rgba(3, 34, 27, 0.9) 100%
        ),
        linear-gradient(
            270deg,
            rgba(3, 34, 27, 0) 25.1%,
            rgba(3, 34, 27, 0.516) 41.43%,
            rgba(3, 34, 27, 0.86) 58.93%
        );
    width: 100%;
    height: 100%;
}

.page-header-box {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-header-box h1 {
    display: inline-block;
    font-size: 75px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-header-box ol {
    margin: 0;
    padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--secondary-color);
}

.page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
    color: var(--secondary-color);
}

.our-scrolling-ticker.subpages-scrolling-ticker {
    padding: 15px 0;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-ticker-box {
    --gap: 15px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
    font-size: 40px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img {
    width: 20px;
    margin-right: 15px;
}

.our-approach {
    background: var(--secondary-color) url("../images/section-bg-2.png")
        no-repeat;
    background-position: bottom left;
    background-size: 290px auto;
    padding: 100px 0;
}

.our-approach-content {
    position: sticky;
    top: 20px;
    margin-right: 20px;
}

.our-approach-nav {
    margin-bottom: 40px;
}

.our-approach-nav .nav-tabs {
    padding: 0;
    margin: 0;
    list-style: none;
    background: var(--white-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    border: none;
    overflow: hidden;
}

.our-approach-nav ul li {
    width: 33.33%;
}

.our-approach-nav ul li .nav-link {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--primary-color);
    background: transparent;
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--divider-color);
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-approach-nav ul li .nav-link.active,
.our-approach-nav ul li .nav-link:focus,
.our-approach-nav ul li .nav-link:hover {
    background: transparent;
    color: var(--secondary-color);
}

.our-approach-nav ul li:last-child .nav-link {
    border-right: none;
}

.our-approach-nav ul li .nav-link:before {
    content: "";
    position: absolute;
    top: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.our-approach-nav ul li .nav-link.active::before,
.our-approach-nav ul li .nav-link:focus::before,
.our-approach-nav ul li .nav-link:hover::before {
    top: 0;
}

.our-approach-nav ul li .nav-link span {
    background: var(--accent-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.our-approach-nav ul li .nav-link.active span,
.our-approach-nav ul li .nav-link:focus span,
.our-approach-nav ul li .nav-link:hover span {
    background: var(--white-color);
}

.our-approach-nav ul li .nav-link span img {
    max-width: 36px;
    transition: all 0.4s ease-in-out;
}

.our-approach-nav ul li .nav-link.active span img,
.our-approach-nav ul li .nav-link:focus span img,
.our-approach-nav ul li .nav-link:hover span img {
    filter: brightness(0) invert(0);
}

.approach-tab-list-image {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
}

.approach-tab-image,
.approach-tab-list {
    width: calc(50% - 15px);
}

.approach-tab-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-tab-list ul li {
    position: relative;
    line-height: 1.5em;
    text-transform: capitalize;
    background: url("../images/arrow-accent-secondary.svg") no-repeat;
    background-position: left center;
    background-size: 20px auto;
    padding-left: 30px;
    margin-bottom: 15px;
}

.approach-tab-list ul li:last-child {
    margin-bottom: 0;
}

.approach-tab-image figure {
    display: block;
    border-radius: 20px;
}

.approach-tab-image img {
    width: 100%;
    aspect-ratio: 1 / 0.556;
    object-fit: cover;
    border-radius: 20px;
}

.our-solutions {
    padding: 100px 0;
}

.our-solution-content {
    margin-right: 15px;
}

.our-solution-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.our-solution-list ul li {
    position: relative;
    background: url("../images/arrow-accent-secondary.svg") no-repeat;
    background-position: left center;
    background-size: 20px auto;
    width: calc(50% - 15px);
    line-height: 1.5em;
    text-transform: capitalize;
    padding-left: 30px;
}

.our-solution-images {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.solution-image-box {
    width: calc(50% - 15px);
}

.solution-support-box {
    position: relative;
    background: var(--accent-color);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

.solution-support-box::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.solution-support-box:hover::before {
    height: 100%;
    border-radius: 0;
}

.solution-support-title {
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.solution-support-title h2 {
    font-size: 46px;
    color: var(--secondary-color);
}

.solution-support-body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    z-index: 1;
}

.solution-support-body p {
    width: calc(100% - 50px);
    color: var(--secondary-color);
    margin: 0;
}

.solution-support-body a {
    display: block;
    background: var(--white-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-support-body a img {
    max-width: 20px;
}

.solution-image-2 figure,
.solution-image-1 figure {
    display: block;
    border-radius: 20px;
}

.solution-image-2 img,
.solution-image-1 img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.solution-image-1 img {
    aspect-ratio: 1 / 0.682;
}

.solution-image-2 img {
    aspect-ratio: 1 / 1.365;
}

.our-team {
    padding: 100px 0 70px;
}

.team-item {
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.team-image {
    position: relative;
    padding: 15px;
    overflow: visible;
    text-align: center;
}

.team-image a {
    display: block;
    pointer-events: auto;
}

.team-image img {
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    display: block;
    margin: 0 auto;
}

.team-item:hover .team-image img {
    filter: grayscale(0%);
}

.team-content {
    position: relative;
    text-align: center;
    padding: 15px 20px 25px;
    overflow: hidden;
}

.team-content::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
    border-radius: 0 0 20px 20px;
}

.team-item:hover .team-content::before {
    height: 100%;
}

.team-content h2 {
    position: relative;
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 8px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    font-weight: 600;
}

.team-content h2 a {
    color: inherit;
}

.team-content p {
    position: relative;
    text-transform: capitalize;
    margin: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
}

.team-item:hover .team-content p,
.team-item:hover .team-content h2 {
    color: var(--secondary-color);
}

/* Team Member Modal Styles */
.team-member-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white-color);
    border-radius: 15px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 30px;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary-color);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.modal-body {
    padding: 30px;
}

.member-header {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 25px;
}

.member-image {
    flex: 0 0 180px;
    text-align: center;
}

.member-details {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-details {
    flex: 1;
    min-width: 280px;
}

.member-details h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.2;
}

.member-position {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    margin-bottom: 25px;
}

.member-bio h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.member-bio p {
    line-height: 1.7;
    color: var(--text-color);
    text-align: left;
}

.member-bio-full {
    width: 100%;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--divider-color);
}

.member-bio-full h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
    text-align: left;
}

.member-bio-full p {
    line-height: 1.7;
    color: var(--text-color);
    text-align: left;
}

/* Carbon Project Verra ID and SDG Styles */
.project-verra-id {
    margin: 15px 0;
    padding: 8px 12px;
    background: var(--secondary-color);
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    border-left: 3px solid var(--primary-color);
}

.registry_ids {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
}

.registry_ids .project-verra-id {
    margin: 0;
}

.verra-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.verra-id {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.verra-id-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.3s ease;
}

.verra-id-link:hover {
    color: #254A7D;
    text-decoration: underline;
}

.project-sdgs {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sdg-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.sdg-icons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.sdg-icons img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.sdg-icons img:hover {
    transform: scale(1.1);
}


.modal-open {
    overflow: hidden;
}

.our-feature {
    background: url(../images/section-bg-3.png), var(--secondary-color);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    padding: 100px 0;
}

.feature-item-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-item {
    width: calc(50% - 15px);
}

.feature-item .icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-item .icon-box::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.feature-item:hover .icon-box::before {
    transform: scale(1);
}

.feature-item .icon-box img {
    position: relative;
    width: 100%;
    max-width: 40px;
    z-index: 1;
}

.feature-item-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.feature-item-content p {
    margin: 0;
}

.feature-list {
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.feature-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.feature-list ul li {
    background: url("../images/arrow-accent-secondary.svg") no-repeat;
    background-position: left center;
    background-size: 20px auto;
    width: calc(50% - 15px);
    line-height: 1.5em;
    text-transform: capitalize;
    padding-left: 30px;
}

.feature-images {
    position: relative;
    display: flex;
    margin-left: 15px;
}

.feature-image-1 {
    position: relative;
    width: 100%;
    max-width: 330px;
    margin-right: -137px;
    z-index: 1;
}

.feature-image-2 {
    width: 100%;
    padding-top: 100px;
}

.feature-image-1 figure,
.feature-image-2 figure {
    display: block;
    width: 100%;
    border-radius: 20px;
}

.feature-image-1 img,
.feature-image-2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.feature-image-1 img {
    aspect-ratio: 1 / 1.02;
}

.feature-image-2 img {
    aspect-ratio: 1 / 1.169;
}

.feature-experience-circle {
    position: absolute;
    left: 25px;
    bottom: 50px;
}

.feature-experience-circle img {
    max-width: 140px;
    border-radius: 50%;
    animation: infiniterotate 20s infinite linear;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
    padding: 100px 0;
}

.page-services .service-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.page-services .service-item {
    width: calc(25% - 22.5px);
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single {
    padding: 100px 0;
}

.page-single-sidebar {
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.page-catagery-list {
    background-color: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.page-catagery-list h3 {
    font-size: 22px;
    text-transform: capitalize;
    border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.page-catagery-list ul {
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-catagery-list ul li {
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
    margin: 0;
}

.page-catagery-list ul li a {
    position: relative;
    display: block;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 12px 50px 12px 20px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.page-catagery-list ul li:hover a {
    color: var(--secondary-color);
}

.page-catagery-list ul li a::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url("../images/arrow-text.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before {
    filter: brightness(0) invert(1);
}

.page-catagery-list ul li a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--accent-color);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li:hover a::after {
    top: 0;
    height: 100%;
}

.sidebar-cta-box {
    position: relative;
    background: url("../images/sidebar-cta-bg.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    border-radius: 20px;
    padding: 65px 50px;
    overflow: hidden;
}

.sidebar-cta-box:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 80%;
    width: 100%;
    height: 100%;
}

.sidebar-cta-content,
.sidebar-cta-contact {
    position: relative;
    z-index: 1;
}

.sidebar-cta-content {
    margin-bottom: 30px;
}

.sidebar-cta-content img {
    width: 100%;
    max-width: 176px;
    margin-bottom: 40px;
}

.sidebar-cta-content h3 {
    font-size: 22px;
    color: var(--secondary-color);
}

.sidebar-cta-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-cta-contact ul li {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sidebar-cta-contact ul li:last-child {
    margin-bottom: 0;
}

.sidebar-cta-contact ul li a {
    position: relative;
    color: var(--secondary-color);
    line-height: normal;
    border: 1px solid var(--dark-divider-color);
    border-radius: 10px;
    padding: 9px 24px;
    overflow: hidden;
}

.sidebar-cta-contact ul li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: var(--accent-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.sidebar-cta-contact ul li a:hover::before {
    width: 100%;
    transform: skew(0deg);
    left: 0;
}

.page-single-image {
    margin-bottom: 40px;
}

.page-single-image figure {
    display: block;
    border-radius: 20px;
}

.page-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.574;
    object-fit: cover;
    border-radius: 20px;
}

.service-entry {
    margin-bottom: 60px;
}

.service-entry p {
    margin-bottom: 20px;
}

.service-entry p:last-child {
    margin-bottom: 0;
}

.service-entry h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-entry ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-entry ul li {
    line-height: 1.5em;
    background-image: url("../images/arrow-accent-secondary.svg");
    background-repeat: no-repeat;
    background-position: left top 1px;
    background-size: 20px auto;
    padding-left: 30px;
    margin-bottom: 15px;
}

.service-entry ul li:last-child {
    margin-bottom: 0;
}

.service-solutions-box,
.service-driving-box {
    margin-top: 60px;
}

.service-solutions-box ul {
    margin: 30px 0;
}

.service-solution-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.solution-step-item {
    position: relative;
    width: calc(50% - 15px);
    background-color: var(--secondary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.solution-step-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.solution-step-item:hover::before {
    height: 100%;
    border-radius: 0;
}

.solution-item-header,
.solution-item-content {
    position: relative;
    z-index: 1;
}

.solution-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.solution-step-item .icon-box {
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .icon-box {
    background-color: var(--secondary-color);
}

.solution-step-item .icon-box img {
    width: 100%;
    max-width: 40px;
    transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.solution-step-no h2 {
    font-size: 46px;
    font-weight: 700;
    opacity: 5%;
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .solution-step-no h2 {
    color: var(--secondary-color);
}

.solution-item-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.4s ease-in-out;
}

.solution-item-content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .solution-item-content h3,
.solution-step-item:hover .solution-item-content p {
    color: var(--secondary-color);
}

.service-driving-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.service-driving-image-box,
.service-driving-item-list {
    width: calc(50% - 15px);
}

.service-driving-image-box figure {
    display: block;
    border-radius: 20px;
    margin-top: 40px;
}

.service-driving-image-box figure img {
    width: 100%;
    aspect-ratio: 1 / 0.683;
    object-fit: cover;
    border-radius: 20px;
}

.service-driving-item-list .environment-body-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.service-driving-item-list .environment-body-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
    padding: 100px 0;
}

.page-blog .post-item {
    display: block;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-blog .post-item .post-featured-image,
.page-blog .post-item .post-item-body {
    width: 100%;
}

.page-blog .post-item .post-featured-image img {
    aspect-ratio: 1 / 0.673;
}

.page-pagination {
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul {
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
    background: var(--accent-color);
}

/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/

.page-single-post {
    padding: 100px 0;
}

.post-single-meta ol li {
    font-size: 18px;
    color: var(--secondary-color);
    margin-right: 15px;
}

.post-single-meta ol li:last-child {
    margin-right: 0;
}

.post-single-meta ol li i {
    font-size: 18px;
    color: var(--secondary-color);
    margin-right: 5px;
}

.post-image {
    position: relative;
    margin-bottom: 30px;
}

.post-image figure {
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    aspect-ratio: 1 / 0.5;
    object-fit: cover;
    border-radius: 20px;
}

.post-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.post-entry {
    border-bottom: 1px solid var(--divider-color);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after {
    content: "";
    display: block;
    clear: both;
}

.post-entry a {
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
    font-weight: 700;
    line-height: 1.1em;
    margin: 0 0 0.435em;
}

.post-entry h1 {
    font-size: 75px;
}

.post-entry h2 {
    font-size: 46px;
}

.post-entry h3 {
    font-size: 40px;
}

.post-entry h4 {
    font-size: 30px;
}

.post-entry h5 {
    font-size: 24px;
}

.post-entry h6 {
    font-size: 20px;
}

.post-entry p {
    margin-bottom: 20px;
}

.post-entry p:last-child {
    margin-bottom: 0;
}

.post-entry p strong {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.post-entry ol {
    margin: 0 0 30px;
}

.post-entry ul {
    padding: 0;
    margin: 20px 0 20px;
    padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child {
    margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
    margin-bottom: 0;
}

.post-entry blockquote {
    background: url("../images/icon-blockquote.svg"), var(--primary-color);
    background-repeat: no-repeat;
    background-position: 30px 30px;
    background-size: 45px;
    border-radius: 12px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--secondary-color);
}

.post-entry blockquote p:last-child {
    margin-bottom: 0;
}

.tag-links {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.post-tags .tag-links a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 10px;
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
    background: var(--primary-color);
}

.post-social-sharing {
    text-align: right;
}

.post-social-sharing ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li {
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child {
    margin-right: 0;
}

.post-social-sharing ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
    background: var(--primary-color);
}

.post-social-sharing ul li a i {
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 23. Projects Page css	  ***/
/************************************/

.page-projects {
    padding: 100px 0 70px;
}

/* Energy Section Styling */
.energy-section {
    padding: 100px 0 70px;
    background: var(--white-color);
}

.energy-section .section-title {
    margin-bottom: 60px;
}

.energy-section .section-title h2 {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.energy-section .section-title p {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Carbon Section Styling */
.carbon-section {
    padding: 100px 0 70px;
    background: var(--secondary-color);
}

.carbon-section .section-title {
    margin-bottom: 60px;
}

.carbon-section .section-title h2 {
    color: var(--primary-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carbon-section .section-title p {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/************************************/
/*** 	 24. Project Single css	  ***/
/************************************/

.page-project-single {
    padding: 100px 0;
}

/* v1: Visual split header */
.project-visual-split {
    position: relative;
    padding: 60px 0 40px;
}

.project-visual-split .split-left figure {
    display: block;
    border-radius: 20px;
}

.project-visual-split .split-left img {
    width: 100%;
    aspect-ratio: 1 / 0.56;
    object-fit: cover;
    border-radius: 20px;
}

.project-visual-split .split-right {
    position: relative;
    /* min-height: 100%; */
    background-position: center center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
}

.project-visual-split .split-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(3, 34, 27, 0.75);
    backdrop-filter: blur(4px);
}

.project-visual-split .split-right::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    width: 40px;
    background: linear-gradient(
        90deg,
        rgba(3, 34, 27, 0) 0%,
        rgba(3, 34, 27, 0.35) 45%,
        rgba(3, 34, 27, 0) 100%
    );
}

.project-visual-split .project-right-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    color: var(--secondary-color);
}

.project-visual-split .project-right-content h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.project-key-table {
    width: 100%;
    border-collapse: separate;
    /* border-spacing: 0 10px; */
}

.project-key-table th,
.project-key-table td {
    font-size: 16px;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.06);
    color: var(--secondary-color);
    padding: 12px 14px;
}

.project-key-table th {
    width: 45%;
    font-weight: 700;
    text-transform: capitalize;
}

.project-key-table tr {
    border-radius: 10px;
}

/* v1: Project gallery */
.project-gallery {
    margin-top: 30px;
}

.project-gallery .swiper-slide img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 1 / 0.66;
    object-fit: cover;
}

/* v1: Impact + Highlight + Registry logos */
.impact-highlight {
    padding: 60px 0;
}

.impact-highlight .impact-list ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.impact-highlight .impact-list ul li {
    line-height: 1.6em;
    background-image: url("../images/arrow-accent-secondary.svg");
    background-repeat: no-repeat;
    background-position: left top 2px;
    background-size: 20px auto;
    padding-left: 30px;
    margin-bottom: 10px;
}

.highlight-card {
    background: var(--secondary-color);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--divider-color);
}

.project-info-section {
    margin-bottom: 30px;
}

.project-info-section:last-child {
    margin-bottom: 0;
}

.project-info-section h4 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 15px;
}

.offset-types {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offset-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.offset-item span {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.offset-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.offset-dot.forest-conservation {
    background-color: #4caf50;
}

.offset-dot.reduction {
    background-color: transparent;
    border: 2px solid var(--primary-color);
}

.registry-logos {
    margin-top: 40px;
    border-top: 1px solid var(--divider-color);
    padding-top: 25px;
}

.registry-logos ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.registry-logos ul li {
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.25s ease-in-out;
}

.registry-logos ul li:hover {
    filter: none;
    opacity: 1;
}

.registry-logos img {
    max-height: 42px;
    width: auto;
}

/* v1: Partners */
.partners-section {
    padding: 80px 0;
    background: var(--primary-dark);
}

.partners-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-carousel .swiper-slide img {
    max-height: 48px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.25s ease-in-out;
}
.partners-carousel .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.partner-vision {
    background: var(--dark-divider-color);
    border-radius: 16px;
    padding: 30px;
}
.partner-vision .featured-partner {
    margin-top: 20px;
}
.partner-vision .featured-partner img {
    max-height: 40px;
    width: auto;
}

.partner-vision .partner-vision-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* v1: SDGs */
.sdg-section {
    padding: 60px 0;
}

.sdg-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.sdg-section .section-title h2 {
    color: var(--primary-darker);
    margin: 0;
}

.sdg-grid-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 15px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

.sdg-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.sdg-grid li {
    /* background: var(--secondary-color); */
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    text-align: center;
    padding: 20px;
    width: 120px;
    transition: all 0.3s ease;
}

.sdg-grid li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sdg-grid img {
    max-height: 56px;
    width: auto;
    margin-bottom: 10px;
}

.sdg-grid span {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
}

/* v1: Bottom support CTA */
.support-cta-full {
    padding: 80px 0 120px 0;
}

.support-cta-box {
    background: var(--primary-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex-direction: column;
}

.support-cta-content img {
    display: none;
}

.support-cta-content h3 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.4em;
    text-align: center;
    margin-bottom: 30px;
}

.support-cta-contact ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.support-cta-contact a {
    display: block;
    padding: 14px 20px;
    border: 2px solid var(--white-color);
    border-radius: 12px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    min-width: 200px;
}

.support-cta-contact a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

/* Responsive tweaks */
@media (max-width: 1115px) {
    .main-footer-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo img {
        max-width: 100%;
        min-width: 320px;
        width: auto;
    }
    
    .footer-contact-details {
        width: 100%;
        justify-content: center;
        flex-direction: row;
        align-items: center;
        gap: 20px 40px;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: row;
        align-items: center;
    }
    
    .footer-contact-item .icon-box {
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .footer-contact-item-content {
        text-align: left;
        width: calc(100% - 80px);
    }
    .footer-contact-item-content h3 {
        text-align: left;
    }
}

@media (max-width: 991.98px) {
    .sdg-section {
        padding: 50px 0;
    }

    .sdg-section .section-title {
        margin-bottom: 40px;
    }

    .sdg-grid-wrapper {
        padding: 25px;
    }

    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .support-cta-full {
        padding: 60px 0 100px 0;
    }

    .support-cta-box {
        flex-direction: column;
        align-items: center;
        padding: 35px 25px;
        gap: 30px;
    }

    .support-cta-content h3 {
        font-size: 1.2em;
    }

    .support-cta-contact ul {
        gap: 15px;
    }
}

@media (max-width: 767.98px) {
    .sdg-section {
        padding: 40px 0;
    }

    .sdg-section .section-title {
        margin-bottom: 30px;
    }

    .sdg-section .section-title h2 {
        font-size: 1.8em;
    }

    .sdg-grid-wrapper {
        padding: 20px;
    }

    .sdg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sdg-grid li {
        padding: 15px;
    }

    .sdg-grid img {
        max-height: 48px;
        margin-bottom: 8px;
    }

    .sdg-grid span {
        font-size: 0.9em;
    }

    .support-cta-full {
        padding: 50px 0 80px 0;
    }

    .support-cta-box {
        padding: 30px 20px;
        gap: 25px;
        max-width: 90%;
    }

    .support-cta-content h3 {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .support-cta-contact ul {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .support-cta-contact a {
        padding: 12px 18px;
        width: 100%;
        text-align: center;
    }
}

.page-single-faqs .section-title {
    text-align: center;
}

.project-category-list {
    background: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.project-category-list h3 {
    font-size: 22px;
    color: var(--secondary-color);
    text-transform: capitalize;
    background-color: var(--primary-color);
    padding: 30px;
}

.project-category-list ul {
    margin: 0;
    padding: 30px;
    list-style: none;
}

.project-category-list ul li {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: normal;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-list ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-category-list ul li span {
    width: 65%;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.project-entry {
    margin-bottom: 60px;
}

.project-entry p {
    margin-bottom: 20px;
}

.project-entry p:last-child {
    margin-bottom: 0;
}

.project-entry h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
}

.project-entry ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.project-entry ul li {
    line-height: 1.5em;
    background-image: url("../images/arrow-accent-secondary.svg");
    background-repeat: no-repeat;
    background-position: left top 1px;
    background-size: 20px auto;
    padding-left: 30px;
    margin-bottom: 15px;
}

.project-entry ul li:last-child {
    margin-bottom: 0;
}

.project-innovation-box,
.project-challenge-box {
    margin-top: 60px;
}

.project-innovation-image-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 30px;
    margin-top: 40px;
}

.project-innovation-image,
.project-innovation-list {
    width: calc(50% - 15px);
}

.project-innovation-image figure {
    display: block;
    border-radius: 20px;
}

.project-innovation-image img {
    width: 100%;
    aspect-ratio: 1 / 0.62;
    object-fit: cover;
    border-radius: 20px;
}

.project-challenge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-top: 40px;
}

.project-challenge-list .environment-body-item {
    width: calc(50% - 15px);
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-challenge-video-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.project-challenge-image,
.project-challenge-video {
    width: calc(50% - 15px);
}

.project-challenge-image figure {
    display: block;
    border-radius: 20px;
}

.project-challenge-image img {
    width: 100%;
    aspect-ratio: 1 / 0.881;
    object-fit: cover;
    border-radius: 20px;
}

.challenge-image-video {
    position: relative;
}

.challenge-image-video figure {
    display: block;
    border-radius: 20px;
}

.challenge-image-video img {
    width: 100%;
    aspect-ratio: 1 / 0.634;
    object-fit: cover;
    border-radius: 20px;
}

.challenge-image-video .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.video-play-button a {
    height: 85px;
    width: 85px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in-out;
}

.video-play-button a:hover {
    background-color: var(--primary-color);
}

.video-play-button a:before {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--white-color);
    opacity: 70%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    border: 50px solid var(--white-color);
    opacity: 70%;
    border-radius: 50%;
    transform: scale(0.6);
    z-index: -1;
    animation: border-zooming 1.2s infinite linear;
    animation-delay: 0.3s;
}

@keyframes border-zooming {
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.video-play-button a i {
    font-size: 30px;
    color: var(--secondary-color);
    margin-left: 2px;
    transition: all 0.4s ease-in-out;
}

.video-play-button a:hover i {
    color: var(--accent-color);
}

.project-challenge-video ul {
    margin: 30px 0 0;
}

/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/

.page-team {
    padding: 100px 0 70px;
}

.page-team .section-title h2 {
    font-size: 48px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
    position: relative;
    padding: 100px 0;
}

.team-about-box,
.team-expertise-experience {
    margin-bottom: 80px;
}

.team-about-box,
.team-expertise-experience,
.team-skills-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 60px;
}

.team-single-image,
.team-about-content {
    width: calc(50% - 30px);
}

.team-single-image figure {
    display: block;
    border-radius: 20px;
}

.team-single-image img {
    width: 100%;
    aspect-ratio: 1 / 0.933;
    object-fit: cover;
    border-radius: 20px;
}

.team-contact-info-box {
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
}

.team-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.team-contact-box {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.team-contact-box .icon-box {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.team-contact-box .icon-box::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 5px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .icon-box::before {
    transform: scale(1);
}

.team-contact-box .icon-box img {
    position: relative;
    width: 100%;
    max-width: 30px;
    z-index: 1;
}

.team-contact-content {
    width: calc(100% - 65px);
}

.team-contact-content h3 {
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-contact-content p {
    margin: 0;
}

.member-social-list {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--divider-color);
    margin-top: 40px;
    padding-top: 40px;
}

.member-social-list h3 {
    font-size: 22px;
    text-transform: capitalize;
}

.member-social-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li {
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.member-social-list ul li:last-child {
    margin-right: 0;
}

.member-social-list ul li a {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a {
    background-color: var(--accent-color);
}

.member-social-list ul li a i {
    color: inherit;
    font-size: 18px;
}

.team-expertise-experience {
    align-items: start;
}

.team-expertise-box,
.team-experience-box {
    width: calc(50% - 30px);
}

.team-expertise-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-expertise-list ul li {
    position: relative;
    line-height: 1.5em;
    text-transform: capitalize;
    background: url("../images/arrow-accent-secondary.svg") no-repeat;
    background-position: left top 1px;
    background-size: 20px auto;
    padding-left: 30px;
    margin-bottom: 15px;
}

.team-expertise-list ul li:last-child {
    margin-bottom: 0;
}

.team-experience-info-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.team-experience-info-item:last-child {
    margin-bottom: 0;
}

.team-experience-content {
    width: calc(70% - 10px);
}

.team-experience-content h3 {
    font-size: 22px;
    margin-bottom: 5px;
}

.team-experience-content p,
.team-experience-year p {
    margin-bottom: 0;
}

.team-experience-year {
    width: calc(30% - 10px);
    text-align: end;
}

.team-skills-box,
.team-member-form {
    width: calc(50% - 30px);
}

.skills-progress-bar {
    margin-bottom: 30px;
}

.skills-progress-bar:last-child {
    margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-progress {
    position: relative;
    width: 100%;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 100px;
}

.team-member-form {
    border-radius: 20px;
}

/************************************/
/***   27. Testimonials Page css  ***/
/************************************/

.page-testimonials {
    padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
}

.page-testimonials .testimonial-item .testimonial-header {
    margin-bottom: 20px;
}

.page-testimonials .testimonial-item .testimonial-header .review-content ul {
    margin: 0;
}

.page-testimonials .testimonial-item .testimonial-content {
    border-color: var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content p {
    color: var(--text-color);
}

.page-testimonials .testimonial-item .author-content h3 {
    color: var(--primary-color);
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery {
    padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
}

.page-gallery-box .photo-gallery figure {
    display: block;
    border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
    width: 100%;
    aspect-ratio: 1 / 0.83;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
    padding: 100px 0 70px;
}

.video-gallery-image {
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.video-gallery-image a {
    position: relative;
    display: block;
}

.video-gallery-image a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after {
    content: "\f04b";
    font-family: "FontAwesome";
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    font-size: 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after {
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img {
    width: 100%;
    aspect-ratio: 1 / 0.83;
    object-fit: cover;
    border-radius: 20px;
}

/************************************/
/*** 	   30. FAQs Page css	  ***/
/************************************/

.page-faqs {
    padding: 100px 0;
}

.page-faqs-catagery .page-faq-accordion {
    margin-bottom: 60px;
}

.page-faqs-catagery .page-faq-accordion:last-child {
    margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.contact-info-box {
    padding: 100px 0 100px;
}

.contact-info-item {
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 30px;
    overflow: hidden;
}

.contact-info-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
    border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover::before {
    height: 100%;
    border-radius: 0;
}

.contact-info-item .icon-box,
.contact-info-content {
    position: relative;
    z-index: 1;
}

.contact-info-item .icon-box {
    height: 50px;
    width: 50px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box {
    background: var(--white-color);
}

.contact-info-item .icon-box img {
    width: 100%;
    max-width: 28px;
    transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box img {
    filter: brightness(0) invert(0);
}

.contact-info-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.contact-info-content p {
    margin: 0;
    transition: all 0.4s ease-in-out;
}

.contact-info-content p a {
    color: inherit;
}

.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p {
    color: var(--secondary-color);
}

.page-contact-us {
    padding: 100px 0 50px;
}

.page-contact-us .page-heading {
    margin-bottom: 60px;
}

.page-contact-us .page-heading h1 {
    color: var(--primary-darker);
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-contact-us .page-heading p {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.contact-us-box {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.contact-us-image,
.contact-us-box .contact-form {
    width: 50%;
}

.contact-us-image figure {
    display: block;
    height: 100%;
}

.contact-us-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1.11;
    object-fit: cover;
}

.contact-us-box .contact-form {
    align-content: center;
    width: 100%;
}

.contact-form {
    background: linear-gradient(135deg, var(--white-color) 0%, var(--secondary-color) 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(51, 97, 172, 0.1);
}

.contact-form .section-title {
    margin-bottom: 40px;
}

.contact-form .section-title h3 {
    color: var(--primary-color);
}

.contact-form .section-title h2 {
    color: var(--primary-darker);
    margin-top: 10px;
}

.contact-form .form-control {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--text-color);
    background: var(--white-color);
    border: 2px solid var(--divider-color);
    border-radius: 10px;
    padding: 17px 20px;
    box-shadow: none;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(51, 97, 172, 0.1);
}

.contact-form .form-control::placeholder {
    color: var(--text-color);
    opacity: 0.7;
}

.google-map .container-fluid {
    padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
    height: 600px;
    width: 100%;
}

.google-map-iframe iframe {
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
    filter: grayscale(0);
}

/************************************/
/*** 	 32. Donation Page css	  ***/
/************************************/

.page-donation {
    padding: 100px 0;
}

.donation-box {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 30px;
    padding: 100px;
}

.donate-form.donate-form-box {
    width: 100%;
}

.donate-form-box .form-control {
    border-color: var(--divider-color);
    color: var(--text-color);
}

.donate-form-box .form-control::placeholder {
    color: var(--text-color);
    font-weight: 400;
}

.donate-form-box .donate-value-box {
    gap: 15px;
    margin-bottom: 80px;
}

.donate-form-box .donate-value {
    width: calc(16.66% - 12.5px);
}

.donate-value-box .donate-value label {
    background: var(--secondary-color);
    color: var(--text-color);
}

.donate-payment-method {
    margin-bottom: 80px;
}

.donar-personal-info {
    background: var(--secondary-color);
    border-radius: 20px;
}

.donate-payment-method .section-title {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.donate-payment-type {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}

.donate-payment-type .payment-method {
    display: flex;
    align-items: center;
}

.donate-payment-type .payment-method input {
    height: 24px;
    width: 24px;
}

.payment-method label {
    text-transform: capitalize;
    padding-left: 10px;
}

/************************************/
/*** 	 33. 404 Error Page css	  ***/
/************************************/

.error-page {
    padding: 100px 0;
}

.error-page-image {
    text-align: center;
    margin-bottom: 30px;
}

.error-page-image img {
    width: 100%;
    max-width: 50%;
}

.error-page-content {
    text-align: center;
}

.error-page-content .section-title {
    margin-bottom: 15px;
}

/************************************/
/*** 	 34. Responsive css 	  ***/
/************************************/

@media only screen and (max-width: 991px) {
    .btn-default {
        padding: 15px 40px 15px 15px;
    }

    .btn-default::before {
        width: 18px;
        height: 18px;
        transform: translate(-15px, -50%);
    }

    .btn-default:hover::before {
        transform: translate(-12px, -50%);
    }

    .navbar {
        padding: 20px 0;
    }

    .slicknav_nav li,
    .slicknav_nav ul {
        display: block;
    }

    .responsive-menu,
    .navbar-toggle {
        display: block;
    }

    .header-btn {
        display: none;
    }

    .section-row {
        margin-bottom: 40px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h3 {
        font-size: 14px;
        background-size: 22px auto;
        padding-left: 30px;
        margin-bottom: 10px;
    }

    .section-title h1 {
        font-size: 55px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 15px;
    }

    .section-btn {
        text-align: left;
        margin-top: 15px;
    }

    .section-content-btn .section-btn {
        margin-top: 15px;
    }

    .hero {
        padding: 180px 0 90px;
        display: flex;
        align-items: center;
        min-height: 100vh;
    }

    .hero .hero-content {
        width: 100%;
    }

    .hero .hero-content .section-title h1 {
        font-size: 48px;
        line-height: 1.2;
    }

    .hero .hero-content .section-title h3 {
        font-size: 1.1rem;
    }

    .hero .hero-content .section-title p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero.hero-slider-layout .hero-slide {
        padding: 180px 0 90px;
    }

    .hero.hero-slider-layout .hero-pagination {
        bottom: 30px;
        padding-left: 15px;
    }

    .our-scrolling-ticker {
        padding: 15px 0;
    }

    .scrolling-ticker-box {
        --gap: 15px;
    }

    .scrolling-content span {
        font-size: 36px;
    }

    .scrolling-content span img {
        width: 22px;
        margin-right: 15px;
    }

    .about-us {
        padding: 50px 0;
        background-size: 80% auto;
        background-position: bottom -60px right -130px;
    }

    .about-images {
        width: 100%;
        max-width: 75%;
        margin: 0 auto 30px;
    }

    .about-img-1 img,
    .about-img-2 img {
        aspect-ratio: 1 / 1.7;
    }

    .years-experience-box {
        width: 140px;
        height: 140px;
        border-width: 5px;
    }

    .years-experience-box h2 {
        font-size: 36px;
    }

    .about-us-content {
        margin-left: 0;
    }

    .about-body-item {
        padding: 15px;
    }

    .about-body-item .icon-box {
        width: 50px;
        height: 50px;
    }

    .about-body-item .icon-box img {
        max-width: 30px;
    }

    .about-body-item-title {
        width: calc(100% - 60px);
    }

    .about-body-item-title h3,
    .about-author-box .author-info h3 {
        font-size: 20px;
    }

    .about-us-footer {
        margin-top: 30px;
    }

    .our-services {
        background-position: bottom -20px left -20px;
        background-size: 240px auto;
        padding: 50px 0;
    }

    .service-item {
        padding: 20px;
    }

    .service-item .icon-box {
        height: 60px;
        width: 60px;
        margin-bottom: 40px;
    }

    .service-item .icon-box img {
        max-width: 36px;
    }

    .service-item-content {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .service-item-content h3 {
        font-size: 20px;
    }

    .service-pagination {
        margin-top: 30px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-choose-content {
        margin: 0 0 30px 0;
    }

    .why-choose-list {
        padding: 20px;
    }

    .why-choose-list ul li {
        background-size: 18px auto;
        background-position: left top 2px;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .why-choose-btn {
        margin-top: 30px;
    }

    .why-choose-images {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }

    .our-projects {
        padding: 50px 0;
    }

    .project-subsection {
        margin-bottom: 60px;
    }

    .subsection-title h3 {
        font-size: 28px;
    }

    .subsection-title p {
        font-size: 14px;
    }

    .project-body {
        left: 20px;
        bottom: 20px;
        right: 20px;
    }

    .project-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .section-footer-text {
        margin-top: 10px;
    }

    .section-footer-text span {
        font-size: 14px;
    }

    .our-environment {
        padding: 50px 0;
    }

    .our-environment-images {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .environment-img-1 figure img {
        width: 100%;
        aspect-ratio: 1 / 1.02;
        border-radius: 20px;
    }

    .environment-img-2 figure img {
        aspect-ratio: 1 / 1.09;
    }

    .experience-circle img {
        max-width: 130px;
    }

    .environment-body-item {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .environment-body-item-content h3 {
        font-size: 20px;
    }

    .our-facts {
        margin-top: 0;
        padding: 50px 0 0;
    }

    .our-fact-content {
        height: auto;
        margin: 0 0 30px 0;
    }

    .fact-list ul {
        gap: 15px 20px;
    }

    .fact-list ul li {
        width: calc(50% - 10px);
        background-size: 18px auto;
        background-position: left top 2px;
        padding-left: 25px;
    }

    .fact-counter-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .fact-counter-item img {
        margin-bottom: 15px;
    }

    .fact-counter-item h2 {
        font-size: 36px;
        margin-bottom: 5px;
    }

    .our-fact-image {
        padding: 0;
        margin: 0;
    }

    .our-fact-image img {
        max-width: 60%;
    }

    .what-we-do {
        padding: 50px 0;
    }

    .What-we-do-content {
        position: initial;
        margin: 0 0 30px 0;
    }

    .what-we-do-list ul li {
        background-position: left top 2px;
        background-size: 18px auto;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .what-we-do-btn {
        margin-top: 30px;
    }

    .what-we-do-item {
        padding: 20px;
    }

    .what-we-do-item .icon-box {
        margin-bottom: 30px;
    }

    .what-we-do-item .icon-box img {
        max-width: 50px;
    }

    .what-do-item-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .what-we-do-box .section-footer-text {
        margin-top: 40px;
    }

    .how-it-work {
        padding: 50px 0 0;
        margin-bottom: 220px;
    }

    .work-step-item {
        width: calc(50% - 15px);
    }

    .work-step-image {
        margin-bottom: 15px;
    }

    .work-step-content {
        padding-top: 20px;
    }

    .work-step-content h2 {
        font-size: 65px;
    }

    .work-step-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .donate-box {
        padding: 40px;
        margin-top: 40px;
    }

    .donate-box .section-title,
    .donate-form {
        width: 100%;
    }

    .donate-form .form-control {
        padding: 12px 15px;
    }

    .donate-value-box .donate-value label {
        padding: 12px;
    }

    .donate-form .form-group-btn .btn-default.btn-highlighted {
        padding: 15px;
    }

    .our-faqs {
        padding: 50px 0;
    }

    .faq-image {
        margin-bottom: 30px;
    }

    .faq-image img {
        aspect-ratio: 1 / 0.56;
    }

    .client-review-content p {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .faq-accordion .accordion-item {
        margin-bottom: 20px;
    }

    .faq-accordion .accordion-header .accordion-button {
        font-size: 20px;
        padding: 14px 40px 14px 15px;
    }

    .faq-accordion .accordion-item .accordion-button::after,
    .faq-accordion .accordion-item .accordion-button.collapsed::after {
        right: 15px;
        font-size: 10px;
        width: 18px;
        height: 18px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 14px 40px 14px 15px;
    }

    .our-testimonials {
        padding: 50px 0;
    }

    .review-box {
        margin-top: 15px;
        justify-content: start;
    }

    .testimonial-image {
        margin-bottom: 30px;
    }

    .testimonial-image img {
        aspect-ratio: 1 / 0.59;
    }

    .testimonial-slider {
        margin: 0;
    }

    .testimonial-header {
        margin-bottom: 30px;
    }

    .testimonial-content {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .author-content h3 {
        font-size: 20px;
    }

    .testimonial-company-slider {
        margin-top: 40px;
        padding-top: 40px;
    }

    .our-blog {
        padding: 50px 0;
    }

    .post-item.highlighted-post-item {
        margin-bottom: 30px;
    }

    .post-featured-image img {
        aspect-ratio: 1 / 0.557;
    }

    .post-item-body {
        padding: 20px;
    }

    .post-item-content h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .main-footer {
        padding: 50px 0 0;
    }

    .main-footer-box {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-logo {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-logo img {
        max-width: 300px;
        min-width: 200px;
        width: auto;
    }

    .footer-contact-details {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .footer-contact-item .icon-box {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .footer-contact-item .icon-box img {
        max-width: 26px;
    }

    .footer-contact-item-content {
        width: calc(100% - 60px);
    }

    .footer-contact-item-content h3 {
        font-size: 20px;
    }

    .about-footer {
        padding-right: 30px;
        margin-bottom: 30px;
    }

    .footer-social-links {
        margin-top: 30px;
    }

    .footer-links {
        margin-bottom: 30px;
    }

    .footer-links h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-links ul li {
        margin-bottom: 10px;
    }

    .newsletter-form {
        padding-left: 0px;
    }

    .footer-copyright {
        padding: 30px 0;
        margin-top: 0;
    }

    .page-header {
        padding: 160px 0px 70px;
    }

    .page-header-box h1 {
        font-size: 55px;
        margin-bottom: 5px;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker {
        padding: 10px 0;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker
        .scrolling-content
        span
        img {
        width: 18px;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
        font-size: 30px;
    }

    .our-approach {
        background-size: 200px auto;
        padding: 50px 0;
    }

    .our-approach-content {
        position: initial;
        top: 0;
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .our-approach-nav {
        margin-bottom: 30px;
    }

    .our-approach-nav ul li .nav-link {
        padding: 20px;
        gap: 15px;
        font-size: 20px;
    }

    .our-approach-nav ul li .nav-link span {
        width: 50px;
        height: 50px;
    }

    .our-approach-nav ul li .nav-link span img {
        max-width: 30px;
    }

    .our-solutions {
        padding: 50px 0;
    }

    .our-solution-content {
        margin-right: 0px;
        margin-bottom: 30px;
    }

    .solution-support-title {
        margin-bottom: 20px;
    }

    .solution-image-2 img {
        aspect-ratio: 1 / 1.2;
    }

    .solution-support-title h2 {
        font-size: 36px;
    }

    .our-team {
        padding: 50px 0 20px;
    }

    .team-image img {
        width: 140px;
        height: 140px;
        aspect-ratio: 1 / 1;
        border-radius: 50%;
    }

    .modal-body {
        padding: 20px;
    }

    .member-header {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .member-image {
        flex: none;
    }

    .member-image img {
        width: 140px;
        height: 140px;
    }

    .member-details h2 {
        font-size: 22px;
        text-align: center;
    }

    .member-bio-full {
        margin-top: 20px;
        padding-top: 20px;
    }

    .member-position {
        font-size: 14px;
        text-align: center;
    }

    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .team-content h2 {
        font-size: 16px;
    }

    .team-content p {
        font-size: 12px;
    }

    .our-feature {
        padding: 50px 0;
    }

    .our-feature-content {
        margin-bottom: 30px;
    }

    .feature-item-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .feature-item .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .feature-item .icon-box img {
        max-width: 34px;
    }

    .feature-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .feature-images {
        margin-left: 0;
    }

    .feature-image-2 img {
        aspect-ratio: 1 / 0.9;
    }

    .page-services {
        padding: 50px 0;
    }

    .page-services .service-item {
        width: calc(50% - 15px);
    }

    .page-service-single {
        padding: 50px 0;
    }

    .page-single-sidebar {
        position: initial;
        margin: 0 0 30px 0;
    }

    .page-catagery-list {
        margin-bottom: 30px;
    }

    .page-catagery-list h3 {
        font-size: 20px;
        padding: 20px;
    }

    .page-catagery-list ul {
        padding: 20px;
    }

    .page-catagery-list ul li a {
        padding: 10px 40px 10px 15px;
    }

    .page-catagery-list ul li a::before {
        right: 15px;
        width: 18px;
        height: 18px;
    }

    .sidebar-cta-box {
        padding: 30px;
    }

    .sidebar-cta-content img {
        margin-bottom: 30px;
    }

    .sidebar-cta-content h3 {
        font-size: 20px;
    }

    .sidebar-cta-contact ul li {
        margin-bottom: 15px;
    }

    .sidebar-cta-contact ul li a {
        padding: 6px 20px;
    }

    .page-single-image {
        margin-bottom: 30px;
    }

    .service-entry {
        margin-bottom: 40px;
    }

    .service-entry p {
        margin-bottom: 15px;
    }

    .service-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .service-entry ul li {
        background-position: left top 2px;
        background-size: 18px auto;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .service-solutions-box,
    .service-driving-box {
        margin-top: 40px;
    }

    .service-solutions-box ul {
        margin: 20px 0;
    }

    .service-solution-steps {
        margin-top: 30px;
    }

    .solution-step-item {
        padding: 20px;
    }

    .solution-item-header {
        margin-bottom: 30px;
    }

    .solution-step-item .icon-box {
        height: 60px;
        width: 60px;
    }

    .solution-step-item .icon-box img {
        max-width: 36px;
    }

    .solution-step-no h2 {
        margin-bottom: 0;
    }

    .solution-item-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-driving-image-box figure {
        margin-top: 30px;
    }

    .service-driving-item-list .environment-body-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .page-blog {
        padding: 50px 0;
    }

    .page-pagination {
        margin-top: 10px;
    }

    .page-single-post {
        padding: 50px 0;
    }

    .post-image {
        margin-bottom: 20px;
    }

    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6 {
        margin: 0 0 0.417em;
    }

    .post-entry h2 {
        font-size: 36px;
    }

    .post-entry p {
        margin-bottom: 15px;
    }

    .post-entry ol li,
    .post-entry ul li {
        margin-bottom: 10px;
    }

    .post-entry blockquote {
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }

    .post-entry blockquote p {
        font-size: 18px;
    }

    .post-tags {
        margin-bottom: 20px;
    }

    .tag-links {
        font-size: 20px;
    }

    .post-tags .tag-links a {
        padding: 12px 15px;
    }

    .post-social-sharing ul {
        text-align: left;
    }

    .page-projects {
        padding: 50px 0 20px;
    }

    /* Energy Section Responsive Styling */
    .energy-section {
        padding: 50px 0 20px;
    }

    .energy-section .section-title h2 {
        font-size: 36px;
    }

    .energy-section .section-title p {
        font-size: 16px;
    }

    /* Carbon Section Responsive Styling */
    .carbon-section {
        padding: 50px 0 20px;
    }

    .carbon-section .section-title h2 {
        font-size: 36px;
    }

    .carbon-section .section-title p {
        font-size: 16px;
    }

    .page-project-single {
        padding: 50px 0;
    }

    .project-category-list {
        margin-bottom: 30px;
    }

    .project-category-list h3 {
        font-size: 20px;
        padding: 20px;
    }

    .project-category-list ul {
        padding: 20px;
    }

    .project-category-list ul li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .project-entry {
        margin-bottom: 40px;
    }

    .project-entry p {
        margin-bottom: 15px;
    }

    .project-entry h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .project-entry ul li {
        background-position: left top 2px;
        background-size: 18px auto;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .project-innovation-box,
    .project-challenge-box {
        margin-top: 40px;
    }

    .project-innovation-image-list,
    .project-challenge-list,
    .project-challenge-video-box {
        margin-top: 30px;
    }

    .video-play-button a {
        height: 70px;
        width: 70px;
    }

    .video-play-button a i {
        font-size: 26px;
    }

    .project-challenge-video ul {
        margin: 20px 0 0;
    }

    .page-team {
        padding: 50px 0 20px;
    }

    .page-team-single {
        padding: 50px 0;
    }

    .team-about-box,
    .team-expertise-experience {
        margin-bottom: 40px;
    }

    .team-single-image,
    .team-about-content {
        width: 100%;
    }

    .team-single-image img {
        aspect-ratio: 1 / 0.75;
    }

    .team-contact-info-box {
        padding: 20px;
    }

    .team-contact-content h3 {
        font-size: 20px;
    }

    .member-social-list {
        margin-top: 30px;
        padding-top: 30px;
    }

    .member-social-list h3 {
        font-size: 20px;
    }

    .team-expertise-box,
    .team-experience-box {
        width: 100%;
    }

    .team-expertise-list ul li {
        background-position: left top 2px;
        background-size: 18px auto;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .team-experience-info-item {
        margin-bottom: 20px;
    }

    .team-experience-content h3 {
        font-size: 20px;
    }

    .team-skills-box,
    .team-member-form {
        width: 100%;
    }

    .skills-progress-bar {
        margin-bottom: 20px;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 15px;
    }

    .skills-progress-bar .skillbar .skill-progress {
        height: 14px;
    }

    .page-testimonials {
        padding: 50px 0 20px;
    }

    .page-testimonials .testimonial-item {
        padding: 20px;
    }

    .page-testimonials .testimonial-item .testimonial-header {
        margin-bottom: 10px;
    }

    .page-gallery {
        padding: 50px 0 20px;
    }

    .page-video-gallery {
        padding: 50px 0 20px;
    }

    .page-faqs {
        padding: 50px 0;
    }

    .page-faqs-catagery .page-faq-accordion {
        margin-bottom: 40px;
    }

    .contact-info-box {
        padding: 100px 0 100px;
    }

    .contact-info-item {
        padding: 20px;
    }

    .contact-info-item .icon-box {
        margin-bottom: 20px;
    }

    .contact-info-content h3 {
        font-size: 20px;
    }

    .page-contact-us {
        padding: 50px 0 30px;
    }

    .page-contact-us .page-heading {
        margin-bottom: 40px;
    }

    .page-contact-us .page-heading h1 {
        font-size: 48px;
    }

    .page-contact-us .page-heading p {
        font-size: 16px;
        padding: 0 20px;
    }

    .contact-us-box {
        max-width: 100%;
        margin: 0 15px;
    }

    .contact-us-image,
    .contact-us-box .contact-form {
        width: 100%;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .contact-us-image figure,
    .contact-us-image img {
        height: auto;
    }

    .contact-us-image img {
        aspect-ratio: 1 / 0.8;
    }

    .contact-form .form-control {
        padding: 12px 16px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 450px;
    }

    .page-donation {
        padding: 50px 0;
    }

    .donation-box {
        padding: 60px 30px;
        border-radius: 20px;
    }

    .donate-form-box .form-control {
        padding: 12px 20px;
    }

    .donate-form-box .donate-value-box {
        margin-bottom: 40px;
    }

    .donate-form-box .donate-value label {
        padding: 12px;
    }

    .donate-payment-method {
        margin-bottom: 40px;
    }

    .donate-payment-method .section-title {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .donate-payment-type .payment-method input {
        height: 20px;
        width: 20px;
    }

    .error-page {
        padding: 50px 0;
    }

    .error-page-image {
        margin-bottom: 20px;
    }

    .error-page-image img {
        max-width: 80%;
    }
}

/* Fix footer layout between 768px and 991px - keep newsletter on same row as quick links */
@media (min-width: 768px) and (max-width: 991.98px) {
    .main-footer .row > .col-lg-4.col-md-6 {
        flex: 0 0 30%;
        max-width: 30%;
    }

    .main-footer .row > .col-lg-2.col-md-6 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .main-footer .row > .col-lg-6.col-md-6 {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media only screen and (max-width: 767px) {
    .section-row {
        margin-bottom: 30px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: 100vh;
    }

    .hero .hero-content .section-title h1 {
        font-size: 48px;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero .hero-content .section-title h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .hero .hero-content .section-title p {
        font-size: 0.9rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .section-title h1 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title p {
        margin-top: 10px;
    }

    .section-title-content {
        margin-top: 10px;
    }

    .hero-review-image figure {
        width: 50px;
        height: 50px;
    }

    .scrolling-content span {
        font-size: 26px;
    }

    .scrolling-content span img {
        width: 18px;
    }

    .about-images {
        max-width: 100%;
        gap: 20px;
    }

    .about-img-1,
    .about-img-2 {
        width: calc(50% - 10px);
    }

    .about-img-2 {
        margin-top: 50px;
    }

    .years-experience-box {
        width: 110px;
        height: 110px;
    }

    .years-experience-box h2 {
        font-size: 26px;
    }

    .years-experience-box p {
        font-size: 14px;
    }

    .about-us {
        background-position: bottom -30px right -90px;
        background-size: 130% auto;
    }

    .about-us-body {
        gap: 20px;
    }

    .about-body-item {
        width: 100%;
    }

    .service-item .icon-box {
        margin-bottom: 30px;
    }

    .why-choose-list {
        padding: 10px;
        border-radius: 10px;
    }

    .why-choose-list ul li {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .why-choose-btn {
        margin-top: 20px;
    }

    .why-choose-images {
        max-width: 100%;
        gap: 20px;
    }

    .why-choose-image-box-1 {
        width: calc(48% - 10px);
        gap: 20px;
    }

    .why-choose-image-box-2 {
        width: calc(52% - 10px);
        margin-top: 50px;
    }

    .environment-img-2 {
        max-width: 180px;
        margin-left: -80px;
    }

    .environment-img-1 figure img {
        aspect-ratio: 1 / 1.3;
    }

    .experience-circle img {
        max-width: 90px;
    }

    .environment-body-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .environment-body-item .icon-box {
        margin-right: 10px;
    }

    .environment-body-item-content {
        width: calc(100% - 60px);
    }

    .fact-list ul {
        gap: 10px;
    }

    .fact-list ul li {
        width: 100%;
    }

    .fact-counter-list {
        gap: 30px 20px;
    }

    .fact-counter-item {
        width: calc(33.33% - 13.33px);
        text-align: center;
    }

    .fact-counter-item:after {
        right: -10px;
    }

    .fact-counter-item h2 {
        font-size: 26px;
    }

    .our-fact-image img {
        max-width: 100%;
    }

    .what-we-do-list ul li {
        margin-bottom: 10px;
    }

    .what-we-do-item {
        width: 100%;
    }

    .what-we-do-item .icon-box {
        margin-bottom: 20px;
    }

    .work-step-item {
        width: 100%;
    }

    .work-step-content {
        padding-top: 10px;
    }

    .work-step-content h2 {
        font-size: 50px;
    }

    .work-step-content h3 {
        margin-bottom: 5px;
    }

    .donate-box {
        padding: 30px 20px;
    }

    .donate-value-box .donate-value label {
        font-size: 14px;
        padding: 10px;
    }

    .faq-image img {
        aspect-ratio: 1 / 0.82;
    }

    .client-review-content {
        bottom: 15px;
        right: 15px;
        left: 15px;
    }

    .client-review-content p {
        font-size: 16px;
    }

    .faq-accordion .accordion-item .accordion-body {
        padding: 14px 15px;
    }

    .review-image {
        margin-right: 15px;
        padding-right: 15px;
    }

    .review-image img {
        max-width: 120px;
    }

    .testimonial-image img {
        aspect-ratio: 1 / 0.7;
    }

    .testimonial-header {
        margin-bottom: 20px;
    }

    .testimonial-company-logo img {
        max-width: 150px;
    }

    .testimonial-quote img {
        max-width: 34px;
    }

    .testimonial-content {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .testimonial-pagination {
        position: initial;
        margin-top: 20px;
        justify-content: center;
    }

    .testimonial-company-slider {
        margin-top: 30px;
        padding-top: 30px;
    }

    .post-item .post-featured-image,
    .post-item .post-item-body {
        width: 100%;
    }

    .post-item-content {
        margin-bottom: 15px;
    }

    .post-item-content h2 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        max-width: 250px;
        min-width: 150px;
        width: auto;
    }
    
    .footer-contact-details {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-contact-item {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact-item .icon-box {
        width: 45px;
        height: 45px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-contact-item-content {
        width: 100%;
        text-align: center;
    }

    .footer-contact-item-content h3 {
        text-align: center;
    }

    .footer-contact-item-content p {
        text-align: center;
    }

    .about-footer {
        padding-right: 0px;
        text-align: center;
    }

    .about-footer .footer-links {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-social-links {
        margin-top: 20px;
        text-align: center;
    }

    .footer-social-links ul {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h3 {
        margin-bottom: 15px;
        text-align: center;
    }

    .footer-links p {
        text-align: center;
    }

    .footer-links ul {
        text-align: center;
        display: inline-block;
    }

    .footer-links ul li {
        text-align: center;
    }

    .newsletter-form {
        text-align: center;
    }

    .newsletter-form h3 {
        text-align: center;
    }

    .newsletter-form p {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-copyright {
        padding: 15px 0;
    }

    .footer-privacy-policy,
    .footer-copyright-text {
        text-align: center;
    }

    .footer-privacy-policy {
        margin-top: 10px;
    }

    .page-header-box h1 {
        font-size: 30px;
    }

    .page-header-box ol li.breadcrumb-item {
        font-size: 14px;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
        font-size: 20px;
    }

    .our-scrolling-ticker.subpages-scrolling-ticker
        .scrolling-content
        span
        img {
        width: 14px;
    }

    .our-approach-nav {
        margin-bottom: 20px;
    }

    .our-approach-nav ul li .nav-link {
        padding: 15px;
        gap: 10px;
        font-size: 18px;
    }

    .our-approach-nav ul li .nav-link span img {
        max-width: 26px;
    }

    .approach-tab-image,
    .approach-tab-list {
        width: 100%;
    }

    .approach-tab-list ul li {
        margin-bottom: 10px;
        background-size: 18px auto;
        padding-left: 25px;
    }

    .our-solution-list ul {
        gap: 10px;
    }

    .our-solution-list ul li {
        width: 100%;
        background-size: 18px auto;
        padding-left: 25px;
    }

    .our-solution-images {
        gap: 20px;
    }

    .solution-image-box {
        width: 100%;
    }

    .solution-support-box {
        margin-bottom: 20px;
    }

    .solution-support-title {
        margin-bottom: 15px;
    }

    .solution-support-title h2 {
        font-size: 26px;
    }

    .solution-image-2 img {
        aspect-ratio: 1 / 0.9;
    }

    .team-content {
        padding: 15px;
    }

    .feature-item-box {
        gap: 20px;
    }

    .feature-item {
        width: calc(50% - 10px);
    }

    .feature-item-content p {
        font-size: 14px;
    }

    .feature-list {
        margin-top: 20px;
        padding-top: 20px;
    }

    .feature-list ul {
        gap: 10px;
    }

    .feature-list ul li {
        width: 100%;
    }

    .feature-image-1 {
        max-width: 200px;
        margin-right: -80px;
    }

    .feature-image-2 {
        padding-top: 80px;
    }

    .feature-image-2 img {
        aspect-ratio: 1 / 1.1;
    }

    .feature-experience-circle {
        left: 10px;
        bottom: 15px;
    }

    .feature-experience-circle img {
        max-width: 90px;
    }

    .page-services .service-item {
        width: 100%;
    }

    .page-catagery-list h3 {
        padding: 15px 20px;
    }

    .sidebar-cta-content img {
        margin-bottom: 20px;
    }

    .page-single-image {
        margin-bottom: 20px;
    }

    .page-single-image img {
        aspect-ratio: 1 / 0.7;
    }

    .service-entry h2 {
        font-size: 26px;
    }

    .service-solutions-box ul {
        margin: 20px 0;
    }

    .solution-step-item {
        width: 100%;
    }

    .solution-step-item .solution-step-no h2 {
        font-size: 36px;
    }

    .service-driving-image-box,
    .service-driving-item-list {
        width: 100%;
    }

    .service-driving-image-box figure {
        margin-top: 20px;
    }

    .service-driving-item-list .environment-body-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .post-single-meta ol li {
        font-size: 16px;
    }

    .post-single-meta ol li i {
        font-size: 16px;
    }

    .post-image img {
        aspect-ratio: 1 / 0.7;
    }

    .post-entry blockquote {
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }

    .post-entry blockquote p {
        font-size: 16px;
    }

    .post-entry h2 {
        font-size: 26px;
    }

    .tag-links {
        font-size: 18px;
    }

    .project-category-list h3 {
        padding: 15px 20px;
    }

    .project-category-list ul li {
        font-size: 18px;
    }

    .project-category-list ul li span {
        width: 68%;
    }

    .project-entry h2 {
        font-size: 26px;
    }

    .project-innovation-image,
    .project-innovation-list {
        width: 100%;
    }

    .project-challenge-list .environment-body-item {
        width: 100%;
    }

    .project-challenge-image,
    .project-challenge-video {
        width: 100%;
    }

    .project-challenge-image img {
        aspect-ratio: 1 / 0.68;
    }

    .team-single-image img {
        aspect-ratio: 1 / 0.9;
    }

    .team-contact-list {
        gap: 20px;
    }

    .team-contact-box {
        width: 100%;
    }

    .team-contact-box .icon-box {
        width: 45px;
        height: 45px;
        margin-right: 10px;
    }

    .team-contact-box .icon-box img {
        max-width: 26px;
    }

    .team-contact-content {
        width: calc(100% - 55px);
    }

    .member-social-list {
        margin-top: 20px;
        padding-top: 20px;
    }

    .member-social-list ul li {
        margin-right: 5px;
    }

    .team-experience-info-item {
        gap: 5px;
    }

    .team-experience-content,
    .team-experience-year {
        width: 100%;
    }

    .team-experience-year {
        text-align: left;
    }

    .skills-progress-bar .skill-data {
        margin-bottom: 10px;
    }

    .contact-form {
        padding: 20px;
    }

    .google-map-iframe,
    .google-map-iframe iframe {
        height: 350px;
    }

    .donation-box {
        padding: 30px 20px;
    }

    .donate-form-box .form-control {
        padding: 12px 15px;
    }

    .donate-form-box .donate-value {
        width: calc(33.33% - 10px);
    }

    .donate-payment-type .payment-method input {
        height: 16px;
        width: 16px;
    }
}

/************************************/
/*** 	Project Hero Carousel	  ***/
/************************************/

/* Hero Section */
.project-hero-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.project-hero-section .section-title h2 {
    font-size: 48px;
}

.project-hero-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-hero-carousel .swiper {
    width: 100%;
    height: 100%;
}

.project-hero-carousel .swiper-slide {
    width: 100%;
    height: 100%;
}

.project-hero-carousel .swiper-slide figure {
    width: 100%;
    height: 100%;
    margin: 0;
}

.project-hero-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-pagination {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
}

.project-hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    opacity: 0.7;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.project-hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
}

/* Project Info & About Section */
.project-info-about {
    padding: 80px 0;
}

.project-info-about .row {
    align-items: stretch;
}

/************************************/
/*** Contact Information Section ***/
/************************************/

.contact-section {
    background: var(--secondary-color);
    padding: 100px 0;
}

.contact-info-section {
    /* margin-top: 50px; */
}

.contact-info-box {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: flex-start;
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease-in-out;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(3, 34, 27, 0.1);
}

.contact-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-item:hover .contact-icon::before {
    transform: scale(1);
}

.contact-icon i {
    position: relative;
    color: var(--secondary-color);
    font-size: 24px;
    z-index: 1;
}

.contact-details {
    flex: 1;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.contact-details p a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact-details p a:hover {
    color: var(--accent-color);
}

.contact-cta {
    text-align: center;
    padding: 10px;
    border-radius: 15px;
}

.contact-cta p {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Responsive adjustments for contact section */
@media (max-width: 767px) {
    .contact-info-box {
        gap: 20px;
    }

    .contact-item {
        width: 100%;
        padding: 20px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .contact-details h4 {
        font-size: 18px;
    }

    .contact-cta {
        padding: 25px 15px 15px;
    }

    .contact-cta p {
        font-size: 16px;
    }
}

.project-info-panel {
    background: var(--primary-darker);
    padding: 30px 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* margin-right: 15px; */
}

.project-info-panel h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.project-key-table th,
.project-key-table td {
    color: var(--secondary-color);
}

.project-about-panel {
    background: var(--white-color);
    padding: 30px 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* margin-left: 15px; */
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    border: 1px solid var(--divider-color);
}

.project-about-panel h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.project-about-panel p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 5px;
}

/* Impact Section Centered */
.impact-content-centered {
    text-align: left;
    margin: 0 auto;
}

.impact-content-centered .row {
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.impact-description h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.impact-text {
    color: var(--text-color);
    font-size: 1.1em;
    line-height: 1.7;
    margin: 0;
}

.highlight-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    margin-top: 0;
}

/* Desktop alignment */
@media (min-width: 992px) {
    .impact-content-centered .row {
        align-items: flex-start;
    }

    .highlight-card {
        position: sticky;
        top: 20px;
    }
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.highlight-card p {
    color: var(--accent-color);
    font-size: 1.1em;
    margin-bottom: 20px;
}

.highlight-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-points li {
    color: var(--text-color);
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95em;
    line-height: 1.4;
}

.highlight-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Carbon Registry Section */
.carbon-registry {
    padding: 80px 0;
    background: var(--secondary-color);
}

.registry-content {
    text-align: center;
}

.registry-title {
    color: var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
}

.registry-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    margin-top: 40px;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.registry-logo-item {
    background: var(--white-color);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.registry-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.registry-logo-item img {
    max-height: 50px;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.registry-logo-item:hover img {
    opacity: 1;
}

.registry-logo-item span {
    display: block;
    color: var(--text-color);
    font-size: 0.9em;
    font-weight: 500;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.partners-title-section {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title-section h2 {
    color: var(--primary-darker);
    margin-bottom: 0;
    font-size: 46px;
}

.partners-title-section p {
    color: var(--primary-darker);
}

.partners-carousel {
    margin-bottom: 60px;
}

.partners-carousel .swiper {
    padding-bottom: 40px;
}

.partners-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.partners-carousel .swiper-slide img {
    max-height: 60px;
    max-width: 120px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partners-carousel .swiper-slide img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partners-pagination {
    bottom: 0px !important;
    left: 50% !important;
    transform: translateX(-50%);
    width: auto !important;
}

.partners-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-dark);
    opacity: 0.7;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.partners-pagination .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    transform: scale(1.2);
}

.partner-vision {
    text-align: center;
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 20px;
}

.partner-vision h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.partner-vision p {
    color: var(--text-color);
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.featured-partner img {
    max-height: 50px;
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .project-hero-section {
        padding: 40px 0;
    }

    .project-hero-carousel {
        height: 350px;
        border-radius: 15px;
    }

    .project-info-about {
        padding: 50px 0;
    }

    .project-info-panel {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .project-about-panel {
        margin-left: 0;
    }

    .impact-content-centered .row {
        gap: 20px;
    }

    .highlight-card {
        margin-top: 0;
        padding: 25px;
    }

    .carbon-registry {
        padding: 50px 0;
    }

    .registry-title {
        margin-bottom: 40px;
        font-size: 1.8em;
    }

    .registry-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 25px;
    }

    .registry-logo-item {
        padding: 20px 15px;
    }

    .registry-logo-item img {
        max-height: 40px;
    }

    .partners-section {
        padding: 50px 0;
    }

    .partners-title-section {
        margin-bottom: 40px;
    }

    .partners-carousel {
        margin-bottom: 40px;
    }

    .partners-carousel .swiper-slide img {
        max-height: 50px;
        max-width: 100px;
    }

    .partner-vision {
        padding: 30px 25px;
    }

    .partner-vision h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 767.98px) {
    .project-hero-section {
        padding: 30px 0;
    }

    .project-hero-carousel {
        height: 250px;
        border-radius: 10px;
    }

    .project-hero-pagination {
        bottom: 15px !important;
    }

    .project-hero-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .project-info-about {
        padding: 30px 0;
    }

    .project-info-panel,
    .project-about-panel {
        padding: 30px 20px;
    }

    .impact-content-centered .row {
        gap: 15px;
    }

    .highlight-card {
        margin-top: 20px;
        padding: 20px;
    }

    .highlight-card h3 {
        font-size: 1.2em;
    }

    .highlight-card p {
        font-size: 1em;
    }

    .highlight-points li {
        font-size: 0.9em;
        padding: 6px 0;
    }

    .carbon-registry {
        padding: 40px 0;
    }

    .registry-title {
        margin-bottom: 30px;
        font-size: 1.6em;
    }

    .registry-logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .registry-logo-item {
        padding: 18px 12px;
    }

    .registry-logo-item img {
        max-height: 35px;
        margin-bottom: 12px;
    }

    .registry-logo-item span {
        font-size: 0.8em;
    }

    .partners-section {
        padding: 40px 0;
    }

    .partners-title-section {
        margin-bottom: 30px;
    }

    .partners-title-section h2 {
        font-size: 1.8em;
    }

    .partners-carousel {
        margin-bottom: 30px;
    }

    .partners-carousel .swiper-slide {
        height: 80px;
    }

    .partners-carousel .swiper-slide img {
        max-height: 40px;
        max-width: 80px;
    }

    .partners-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .partner-vision {
        padding: 25px 20px;
    }

    .partner-vision h3 {
        font-size: 1.2em;
    }

    .partner-vision p {
        font-size: 1em;
    }

    .featured-partner img {
        max-height: 40px;
    }
}

/* Extra Small Devices */
@media only screen and (max-width: 480px) {
    .hero {
        padding: 100px 0 50px;
        min-height: 100vh;
        overflow: hidden;
    }

    .hero .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .hero .hero-content .section-title h1 {
        font-size: 48px !important;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .hero .hero-content .section-title h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .hero .hero-content .section-title p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .hero .hero-btn {
        margin-top: 15px;
    }

    .page-contact-us {
        padding: 40px 0 20px;
    }

    .page-contact-us .page-heading h1 {
        font-size: 48px;
    }

    .page-contact-us .page-heading p {
        font-size: 14px;
        padding: 0 15px;
    }

    .contact-us-box {
        margin: 0 10px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form .section-title h2 {
        font-size: 32px;
    }
}

/* Industries Overview Section */
.industries-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.industry-section {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.industry-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.industry-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-section:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 40px;
}

.industry-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.industry-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.industry-cta {
    text-align: center;
}

.industry-cta .btn-default {
    padding: 15px 50px 15px 20px;
    font-size: 1.1rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Responsive Design for Industries */
@media (max-width: 991px) {
    .industries-overview {
        padding: 60px 0;
    }
    
    .industry-content {
        padding: 30px;
    }
    
    .industry-content h2 {
        font-size: 2rem;
    }
    
    .industry-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .industries-overview {
        padding: 40px 0;
    }
    
    .industry-content {
        padding: 25px;
    }
    
    .industry-content h2 {
        font-size: 1.8rem;
    }
    
    .industry-content p {
        font-size: 1rem;
    }
    
    .industry-image {
        height: 200px;
    }
}

/* Carbon Projects Section */
.carbon-projects-section {
    padding: 80px 0;
    background: #fff;
}

.carbon-projects-section .section-title {
    margin-bottom: 60px;
}

.carbon-projects-section .section-label {
    display: block;
    color: var(--accent-quaternary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.carbon-projects-section .section-title h2 {
    color: var(--primary-darker);
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.carbon-projects-section .section-title p {
    color: var(--text-color);
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.carbon-project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.carbon-project-card.horizontal-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    margin-bottom: 50px;
    min-height: 300px;
    height: auto;
}

.carbon-projects-section .row > .col-lg-12 {
    margin-bottom: 50px;
}

.carbon-projects-section .row > .col-lg-12:last-child {
    margin-bottom: 0;
}

.carbon-project-card.horizontal-card:last-child {
    margin-bottom: 0;
}

.carbon-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.carbon-project-card .project-image {
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.carbon-project-card.horizontal-card .project-image {
    width: 40%;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.carbon-project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
}

.carbon-project-card.horizontal-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carbon-project-card:hover .project-image img {
    transform: scale(1.05);
}

/* New Project Card Styles */
.project-card-new {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 1fr;
    align-items: stretch;
}

.project-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.project-image-new {
    position: relative;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
    height: 100%;
}

.project-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.3s ease;
}

.project-card-new:hover .project-image-new img {
    transform: scale(1.05);
}

.project-content-new {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Responsive */
@media (max-width: 768px) {
    .project-card-new {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .project-image-new {
        border-radius: 15px 15px 0 0;
        min-height: 200px;
    }
    
    .project-content-new {
        padding: 30px;
    }
}

.carbon-project-card .project-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    /* height: calc(100% - 250px); */
}

.carbon-project-card.horizontal-card .project-content {
    width: 60%;
    padding: 40px;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-darker);
    margin: 0;
    flex: 1;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.active {
    background: var(--accent-quaternary-color);
    color: var(--accent-secondary-color);
}

.status-badge.registered {
    background: var(--accent-secondary-color);
    color: var(--white-color);
}

.project-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0 0 20px 0;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.metric {
    text-align: center;
    padding: 15px 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: #3361AC;
    margin-bottom: 15px;
    line-height: 1.1;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.2;
}

.project-credits {
    margin: 20px 0;
}

.credits-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

.project-actions {
    text-align: left;
    margin-top: 20px;
}

.carbon-project-card.horizontal-card .project-actions {
    text-align: left;
}

.btn-external {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-external:hover {
    background: var(--accent-secondary-blue-color);
    color: white;
    transform: translateY(-2px);
}

.btn-external i {
    font-size: 0.9rem;
}

.btn-view-project {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view-project:hover {
    color: #254A7D;
    text-decoration: underline;
}

/* Responsive Design for Carbon Projects */
@media (max-width: 991px) {
    .carbon-projects-section {
        padding: 60px 0;
    }
    
    .carbon-project-card.horizontal-card {
        flex-direction: column;
    }
    
    .carbon-project-card.horizontal-card .project-image {
        width: 100%;
        min-height: 300px;
    }
    
    .carbon-project-card.horizontal-card .project-content {
        width: 100%;
        padding: 30px;
    }
    
    .carbon-project-card .project-content {
        padding: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: calc(100% - 250px);
    }
    
    .project-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .carbon-projects-section {
        padding: 40px 0;
    }
    
    .carbon-projects-section .section-title {
        text-align: center;
    }
    
    .carbon-projects-section .section-label {
        text-align: center;
    }
    
    .carbon-projects-section .section-title h2 {
        text-align: center;
    }
    
    .carbon-projects-section .section-title p {
        text-align: center;
    }
    
    .carbon-project-card.horizontal-card .project-image {
        min-height: 250px;
        border-radius: 15px 15px 0 0;
    }
    
    .carbon-project-card.horizontal-card .project-content {
        padding: 20px;
        text-align: center;
    }
    
    .carbon-project-card .project-content {
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: calc(100% - 250px);
    }
    
    .project-header {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    
    .project-header h3 {
        text-align: center;
    }
    
    .project-verra-id {
        text-align: center;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content
    }
    
    .verra-label {
        text-align: center;
    }
    
    .verra-id-link {
        text-align: center;
    }
    
    .project-sdgs {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .sdg-label {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .sdg-icons {
        justify-content: center;
        display: flex;
    }
    
    .project-description {
        text-align: center;
    }
    
    .project-credits {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .credits-label {
        text-align: center;
    }
    
    .project-actions {
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .project-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .metric {
        padding: 12px 8px;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
}

/* Paraguay E-Methanol Project Styles */
.project-graphs-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.graph-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    margin-bottom: 30px;
    height: 100%;
}

.graph-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.graph-placeholder {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: var(--secondary-color); */
    border-radius: 10px;
    border: 2px dashed var(--accent-tertiary-color);
    color: var(--text-color);
}

.graph-content {
    display: flex;
    gap: 20px;
    height: 200px;
    width: 100%;
    padding: 20px;
}

/* Production Capacity Forecast - Column Chart (first graph-box) */
.project-graphs-section .row .col-lg-6:first-child .graph-content {
    align-items: flex-end;
    justify-content: center;
}

/* CO₂ Reduction Impact - Centered Metrics (second graph-box) */
.project-graphs-section .row .col-lg-6:last-child .graph-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
}

.graph-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-secondary-color), var(--accent-quaternary-color));
    border-radius: 5px 5px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    min-height: 60px;
}

.bar-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.bar-value {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 600;
}

.impact-metric {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    /* margin-bottom: 20px; */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #3361AC;
    margin-bottom: 15px;
    line-height: 1.1;
}

.metric-unit {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.3;
}

.metric-description {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
    margin-top: 5px;
}

/* Process Infographic */
.infographic-section {
    padding: 80px 0;
    background: #fff;
}

.process-infographic {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    min-height: 280px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
    flex: 1 1 200px;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    /* background: var(--secondary-color); */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.step-icon i {
    font-size: 1.5rem;
    color: white;
}

.step-icon img {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(30%) sepia(89%) saturate(1352%) hue-rotate(203deg) brightness(95%) contrast(88%);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    margin-top: 0;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.process-arrow {
    font-size: 1.5rem;
    color: #3361AC;
    margin: 0 10px;
    display: flex;
    align-items: center;
    align-self: center;
}

/* Responsive Design for E-Methanol Project */
@media (max-width: 1115px) {
    .process-step {
        max-width: 160px;
        min-height: 300px;
        padding: 15px;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
    }
    
    .process-arrow {
        font-size: 1.2rem;
        margin: 0 8px;
    }
}

@media (max-width: 991px) {
    .project-graphs-section {
        padding: 60px 0;
    }
    
    .project-graphs-section .row .col-lg-6:first-child {
        margin-bottom: 30px;
    }
    
    .graph-box {
        padding: 25px;
    }
    
    .graph-content {
        gap: 15px;
        height: 150px;
    }
    
    .process-infographic {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .process-step {
        max-width: 140px;
        min-height: 320px;
        padding: 12px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        margin-bottom: 12px;
    }
    
    .step-icon img {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    
    .step-content h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .process-arrow {
        font-size: 1rem;
        margin: 0 6px;
    }
}

@media (max-width: 767px) {
    .project-graphs-section {
        padding: 40px 0;
    }
    
    .project-graphs-section .row .col-lg-6:first-child {
        margin-bottom: 30px;
    }
    
    .graph-box {
        padding: 20px;
    }
    
    .graph-content {
        flex-direction: column;
        height: auto;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }
    
    .graph-bar {
        width: 100%;
        height: 40px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .process-infographic {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .process-step {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        min-height: auto;
        height: auto;
        padding: 15px;
        flex: 0 0 auto;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        margin-bottom: 12px;
    }
    
    .step-icon i {
        font-size: 1.2rem;
    }
    
    .step-icon img {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
        max-width: 28px;
        max-height: 28px;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .process-arrow {
        font-size: 1.2rem;
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* Investors Page Styles */
.investors-overview {
    padding: 80px 0;
    background: #fff;
}

.investors-section {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3361AC;
    display: inline-block;
}

/* Financial Reports */
.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.report-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.report-icon {
    width: 60px;
    height: 60px;
    background: #3361AC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.report-icon i {
    font-size: 1.5rem;
    color: white;
}

.report-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.report-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888;
}

.report-date {
    font-weight: 500;
}

.report-size {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-download {
    background: #3361AC;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-download:hover {
    background: var(--accent-secondary-blue-color);
    color: white;
    transform: translateY(-2px);
}

/* Stock Information */
.stock-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.stock-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.stock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.stock-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.stock-price {
    text-align: right;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    display: block;
}

.change {
    font-size: 1rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
}

.change.positive {
    background: #E1C864;
    color: #B4A050;
}

.change.negative {
    background: #f8d7da;
    color: #721c24;
}

.dividend-info {
    text-align: right;
}

.dividend-rate {
    font-size: 1.8rem;
    font-weight: bold;
    color: #3361AC;
    display: block;
}

.dividend-frequency {
    font-size: 0.9rem;
    color: #666;
}

.stock-details {
    display: grid;
    gap: 12px;
}

.stock-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.stock-detail:last-child {
    border-bottom: none;
}

.stock-detail .label {
    font-weight: 500;
    color: #666;
}

.stock-detail .value {
    font-weight: 600;
    color: #333;
}

/* Shareholder Information */
.shareholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.shareholder-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.shareholder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #3361AC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3361AC;
    font-weight: bold;
}

.dates-list {
    display: grid;
    gap: 15px;
}

.date-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.date-item:last-child {
    border-bottom: none;
}

.date {
    font-weight: 600;
    color: #3361AC;
}

.event {
    color: #666;
    text-align: right;
}

.btn-contact {
    background: #3361AC;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-contact:hover {
    background: var(--accent-secondary-blue-color);
    color: white;
    transform: translateY(-2px);
}

/* Corporate Governance */
.governance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.governance-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.governance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.governance-card .card-icon {
    margin: 0 auto 20px;
}

.governance-card .card-content h4 {
    margin-bottom: 15px;
}

.governance-card .card-content p {
    margin-bottom: 25px;
}

/* Responsive Design for Investors */
@media (max-width: 991px) {
    .investors-overview {
        padding: 60px 0;
    }
    
    .reports-grid,
    .stock-info-grid,
    .shareholder-grid,
    .governance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stock-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .stock-price,
    .dividend-info {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .investors-overview {
        padding: 40px 0;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .report-card,
    .stock-card,
    .shareholder-card,
    .governance-card {
        padding: 20px;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .dividend-rate {
        font-size: 1.4rem;
    }
}

/* Investors Page with Sidebar Navigation */
.investors-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.investors-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg-2.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.investors-page-header h1 {
    font-size: 64px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    margin: 0;
}

.investors-page-section {
    padding: 80px 0;
    background: var(--white-color);
    position: relative;
}

.investors-page-section .container {
    position: relative;
}

.investors-page-section .row {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
}

.investors-page-section .col-lg-3,
.investors-page-section .col-md-4 {
    position: relative;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
}

.investors-page-section .col-lg-9,
.investors-page-section .col-md-8 {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-top: 0;
}

/* Scroll padding for smooth anchor navigation */
html {
    scroll-padding-top: 200px;
}

.investors-content-section {
    scroll-margin-top: 50px;
}

/* Sidebar Navigation */
.investors-sidebar {
    margin-bottom: 40px;
    width: 100%;
    /* padding: 0 15px; */
}

.investors-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: none;
}

.investors-nav-menu li {
    margin: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-width: 0;
}

.investors-nav-menu li:last-child {
    border-right: none;
}

.investors-nav-menu .nav-link {
    display: block;
    padding: 18px 16px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
    border: none;
    width: 100%;
}

.investors-nav-menu .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-secondary-color);
}

.investors-nav-menu .nav-link.active {
    background: var(--accent-secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.investors-nav-menu .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 4px;
    background: var(--white-color);
}

/* Investors Content Sections */
.investors-content-section {
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--divider-color);
}

.investors-content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.investors-content-section .section-title {
    margin-bottom: 40px;
}

.investors-content-section .section-title h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-darker);
    margin-bottom: 15px;
}

.investors-content-section .section-title h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Investor Reason Cards */
.investor-reason-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.investor-reason-card {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.investor-reason-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.investor-reason-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--divider-color);
}

.reason-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.reason-point {
    padding-left: 20px;
    position: relative;
}

.reason-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--accent-secondary-color);
    border-radius: 50%;
}

.reason-point strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 8px;
}

.reason-point p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

/* Stock Info Styles */
.stock-info-container {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 30px;
}

.stock-ticker {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--divider-color);
}

.ticker-symbol {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 8px;
}

.time-range-buttons {
    display: flex;
    gap: 10px;
}

.time-btn {
    padding: 8px 16px;
    border: 1px solid var(--divider-color);
    background: var(--white-color);
    color: var(--text-color);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-btn:hover {
    background: var(--secondary-color);
    border-color: var(--primary-color);
}

.time-btn.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.stock-chart-placeholder {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-color);
}

.chart-note {
    font-size: 12px;
    color: var(--text-color);
    margin-top: 10px;
    opacity: 0.7;
}

.stock-details-table {
    margin-bottom: 40px;
}

.stock-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.detail-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--divider-color);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: var(--text-color);
}

.detail-value {
    font-weight: 600;
    color: var(--primary-darker);
}

.detail-value.positive {
    color: var(--accent-secondary-color);
}

.share-structure {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--divider-color);
}

.share-structure h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 20px;
}

.structure-banner {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.structure-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.structure-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--divider-color);
}

.structure-row:last-child {
    border-bottom: none;
}

.structure-label {
    font-weight: 500;
    color: var(--text-color);
}

.structure-value {
    font-weight: 600;
    color: var(--primary-darker);
}

.data-disclaimer {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
    margin-top: 20px;
    font-style: italic;
}

/* Corporate Presentation Styles */
.presentation-container {
    background: var(--white-color);
}

.presentation-container > p {
    margin-bottom: 30px;
    color: var(--text-color);
    line-height: 1.8;
}

.presentation-cards {
    display: grid;
    gap: 30px;
}

.presentation-card {
    background: var(--white-color);
    border: 1px solid var(--divider-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
}

.presentation-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.presentation-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.presentation-icon i {
    font-size: 32px;
    color: var(--secondary-color);
}

.presentation-content {
    flex: 1;
}

.presentation-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-darker);
    margin-bottom: 12px;
}

.presentation-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.presentation-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-color);
}

.presentation-date {
    font-weight: 500;
}

.presentation-size {
    background: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* Financials & Filings Styles */
.financials-container {
    background: var(--white-color);
}

.financials-section {
    margin-bottom: 50px;
}

.financials-section h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.financials-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.financials-section a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.financials-section a:hover {
    color: var(--accent-secondary-color);
}

.estma-reports {
    margin-top: 30px;
}

.estma-reports p {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-darker);
}

.estma-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.estma-table thead {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.estma-table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estma-table tbody tr {
    border-bottom: 1px solid var(--divider-color);
    transition: background 0.3s ease;
}

.estma-table tbody tr:hover {
    background: var(--secondary-color);
}

.estma-table tbody tr:last-child {
    border-bottom: none;
}

.estma-table td {
    padding: 18px 24px;
    color: var(--text-color);
    font-weight: 500;
}

.download-link {
    color: var(--primary-color);
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.download-link:hover {
    color: var(--accent-secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design for Investors Page */
@media (max-width: 1115px) {
    .investors-page-header h1 {
        font-size: 48px;
    }
    
    .investors-page-section .row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .investors-page-section .col-lg-3,
    .investors-page-section .col-lg-9,
    .investors-page-section .col-md-4,
    .investors-page-section .col-md-8 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        position: relative;
    }
    
    .investors-sidebar {
        margin-bottom: 30px;
        width: 100%;
        /* padding: 0 15px; */
    }
    
    .investors-page-section .col-lg-9,
    .investors-page-section .col-md-8 {
        padding-top: 0;
    }
    
    .investors-nav-menu {
        display: flex;
        flex-wrap: wrap;
        border-radius: 8px;
        gap: 0;
        justify-content: center;
        align-items: center;
    }
    
    .investors-nav-menu li {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        flex: 1;
        min-width: 0;
    }
    
    .investors-nav-menu li:last-child {
        border-right: none;
    }
    
    .investors-nav-menu .nav-link {
        padding: 15px 8px;
        font-size: 12px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.2;
    }
    
    .investors-nav-menu .nav-link:hover {
        padding-left: 12px;
    }
    
    .investors-nav-menu .nav-link.active::before {
        display: none;
    }
    
    .investors-nav-menu .nav-link.active {
        background: var(--accent-secondary-color);
        position: relative;
    }
    
    .investors-nav-menu .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--white-color);
    }
    
    /* Why Invest Section - Column Stack */
    .investors-content-section {
        padding-bottom: 40px;
        margin-bottom: 60px;
    }
    
    .investors-content-section .section-title h2 {
        font-size: 36px;
    }
    
    .investor-reason-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .investor-reason-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
        padding: 25px;
    }
    
    .reason-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-point {
        width: 100%;
        max-width: 100%;
    }
    
    .stock-detail-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .presentation-card {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .investors-page-header {
        padding: 100px 0 40px;
    }
    
    .investors-page-header h1 {
        font-size: 36px;
    }
    
    .investors-page-section {
        padding: 60px 0;
    }
    
    .investors-page-section .row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .investors-page-section .col-lg-3,
    .investors-page-section .col-lg-9,
    .investors-page-section .col-md-4,
    .investors-page-section .col-md-8 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        position: relative;
    }
    
    .investors-page-section .col-lg-9,
    .investors-page-section .col-md-8 {
        padding-top:50px;
    }
    
    .investors-sidebar {
        margin-bottom: 30px;
        width: 100%;
        /* padding: 0 15px; */
    }
    
    .investors-nav-menu {
        display: flex;
        flex-wrap: nowrap;
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: flex-start;
        align-items: center;
        scroll-padding: 0 20px;
    }
    
    .investors-nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .investors-nav-menu li {
        flex: 0 0 auto;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }
    
    .investors-nav-menu li:last-child {
        border-right: none;
    }
    
    .investors-nav-menu .nav-link {
        padding: 12px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .investors-nav-menu .nav-link:hover {
        padding-left: 16px;
    }
    
    .investors-content-section .section-title h2 {
        font-size: 36px;
    }
    
    .investors-content-section .section-title h3 {
        font-size: 22px;
    }
    
    .investor-reason-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .investor-reason-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin-bottom: 0;
    }
    
    .reason-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .reason-point {
        width: 100%;
        max-width: 100%;
    }
    
    .stock-info-container {
        padding: 20px;
    }
    
    .time-range-buttons {
        flex-wrap: wrap;
    }
    
    .time-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .presentation-card {
        padding: 20px;
    }
    
    .presentation-icon {
        width: 60px;
        height: 60px;
    }
    
    .presentation-icon i {
        font-size: 24px;
    }
    
    .estma-table th,
    .estma-table td {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* News Page Styles */
.news-section {
    padding: 80px 0;
    background: #fff;
}

/* Featured News */
.featured-news {
    margin-bottom: 60px;
}

.featured-news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-news-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.featured-news .news-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-news .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-news-content:hover .news-image img {
    transform: scale(1.05);
}

.featured-news .news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #3361AC;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.featured-news .news-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-news .news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #888;
}

.featured-news .news-category-tag {
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 500;
}

.featured-news .news-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-news .news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-news .news-title a:hover {
    color: #3361AC;
}

.featured-news .news-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.featured-news .news-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-read-more {
    background: #3361AC;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-read-more:hover {
    background: var(--accent-secondary-blue-color);
    color: white;
    transform: translateY(-2px);
}

.news-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-share span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.share-link {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-link:hover {
    background: #3361AC;
    color: white;
    transform: translateY(-2px);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card .news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3361AC;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-card-content {
    padding: 25px;
}

.news-card .news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #888;
}

.news-card .news-category-tag {
    background: #f8f9fa;
    color: #666;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.news-card .news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card .news-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card .news-title a:hover {
    color: #3361AC;
}

.news-card .news-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 20px;
}

.news-card .news-actions {
    text-align: center;
}

/* Newsletter Subscription */
.newsletter-subscription {
    padding: 80px 0;
    background: #f8f9fa;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-subscription .newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-subscription .form-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.newsletter-subscription .form-control {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-subscription .form-control:focus {
    outline: none;
    border-color: #3361AC;
}

.newsletter-subscription .btn-default {
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 25px;
    white-space: nowrap;
}

/* Load More Button */
.news-load-more {
    margin-top: 40px;
}

/* Responsive Design for News */
@media (max-width: 991px) {
    .news-section {
        padding: 60px 0;
    }
    
    .featured-news-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .featured-news .news-image {
        height: 300px;
    }
    
    .featured-news .news-content {
        padding: 30px;
    }
    
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .newsletter-subscription {
        padding: 60px 0;
    }
    
    .newsletter-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 40px 0;
    }
    
    .featured-news .news-content {
        padding: 20px;
    }
    
    .featured-news .news-title {
        font-size: 1.5rem;
    }
    
    .featured-news .news-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .news-card-content {
        padding: 20px;
    }
    
    .newsletter-subscription {
        padding: 40px 0;
    }
    
    .newsletter-content h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-subscription .form-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-subscription .form-control,
    .newsletter-subscription .btn-default {
        width: 100%;
    }
}

/* Testimonial Company Slider - Company Logo SVG Color */
.testimonial-company-slider .company-logo img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.2) contrast(100%);
}

/* Partners Section - Company Logo SVG Color */
.partners-section .swiper-slide img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.2) contrast(100%);
}

/* Hero Section - White Text Color */
.hero.hero-video .section-title h3,
.hero.hero-video .section-title h1,
.hero.hero-video .section-title p {
    color: var(--secondary-color);
}

/* ============================================
   Wheaton-Style News Page
   ============================================ */

.news-section-wheaton {
    padding: 80px 0;
    background: #fff;
}

.news-page-title {
    margin-bottom: 40px;
}

.news-page-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    line-height: 1.3;
}

/* Year Filters */
.year-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.year-filter-btn {
    background: #f5f5f5;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.year-filter-btn:hover {
    background: #e8e8e8;
    color: #333;
}

.year-filter-btn.active {
    background: #1a3a5f;
    color: #fff;
}

.year-filter-btn.archive-btn {
    margin-left: auto;
}

/* News List Table */
.news-list-container {
    margin-top: 20px;
}

.news-list-table {
    width: 100%;
    border-collapse: collapse;
}

.news-list-table thead {
    border-bottom: 2px solid #e0e0e0;
}

.news-list-table th {
    text-align: left;
    padding: 15px 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-list-table th:first-child {
    width: 180px;
}

.news-list-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.news-list-table tbody tr:hover {
    background-color: #f9f9f9;
}

.news-list-table tbody tr:last-child {
    border-bottom: none;
}

.news-date {
    padding: 20px 20px 20px 0;
    font-size: 0.95rem;
    color: #666;
    vertical-align: top;
    font-weight: 500;
}

.news-title-cell {
    padding: 20px 0;
    vertical-align: top;
}

.news-title-cell a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: block;
}

.news-title-cell a:hover {
    color: #3361AC;
}

/* Subscribe Widget */
.news-subscribe-widget {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.news-subscribe-widget h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.news-subscribe-widget > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.news-subscribe-form .form-group {
    margin-bottom: 20px;
}

.news-subscribe-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.news-subscribe-form .required {
    color: #d32f2f;
}

.news-subscribe-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.news-subscribe-form .form-control:focus {
    outline: none;
    border-color: #3361AC;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    user-select: none;
}

.news-subscribe-form .btn-default {
    width: 100%;
    margin-top: 10px;
    padding: 12px 20px;
}

/* Unsubscribe Section */
.unsubscribe-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.unsubscribe-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.unsubscribe-section > p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-unsubscribe-form .form-group {
    margin-bottom: 15px;
}

.news-unsubscribe-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.news-unsubscribe-form .form-control {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
}

.news-unsubscribe-form .btn-default {
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.news-unsubscribe-form .btn-default:hover {
    background: #f5f5f5;
}

/* Media Contacts Widget */
.media-contacts-widget {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.media-contacts-widget h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.media-contacts-widget > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.media-contact-info {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
}

.media-contact-info strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.media-contact-info a {
    color: #3361AC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.media-contact-info a:hover {
    color: #1a3a5f;
    text-decoration: underline;
}

/* Social Media Widget */
.social-media-widget {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.social-media-widget h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.social-media-widget > p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.social-link:hover {
    background: #3361AC;
    color: #fff;
    border-color: #3361AC;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .news-section-wheaton {
        padding: 60px 0;
    }

    .year-filter-btn.archive-btn {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .news-list-table th:first-child {
        width: 150px;
    }

    .news-date {
        padding: 15px 15px 15px 0;
        font-size: 0.9rem;
    }

    .news-title-cell {
        padding: 15px 0;
    }

    .news-title-cell a {
        font-size: 0.95rem;
    }
}

@media (max-width: 767px) {
    .news-section-wheaton {
        padding: 40px 0;
    }

    .news-page-title h2 {
        font-size: 1.5rem;
    }

    .year-filters {
        gap: 8px;
    }

    .year-filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .news-list-table {
        font-size: 0.9rem;
    }

    .news-list-table th {
        font-size: 0.8rem;
        padding: 12px 0;
    }

    .news-date {
        padding: 12px 10px 12px 0;
        font-size: 0.85rem;
        width: 120px;
    }

    .news-title-cell {
        padding: 12px 0;
    }

    .news-title-cell a {
        font-size: 0.9rem;
    }

    .news-subscribe-widget,
    .media-contacts-widget,
    .social-media-widget {
        padding: 20px;
        margin-bottom: 20px;
    }

    .news-subscribe-widget h3,
    .media-contacts-widget h3,
    .social-media-widget h3 {
        font-size: 1.3rem;
    }
}

/* ============================================
   News Modal Popup
   ============================================ */

.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news-modal.active {
    opacity: 1;
    visibility: visible;
}

.news-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
}

.news-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10000;
}

.news-modal.active .news-modal-content {
    transform: scale(1) translateY(0);
}

.news-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    color: #333;
    font-size: 1.2rem;
}

.news-modal-close:hover {
    background: #e0e0e0;
    transform: rotate(90deg);
}

.news-modal-header {
    padding: 40px 40px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.news-modal-date {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-modal-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.news-modal-body {
    padding: 30px 40px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.news-modal-body p {
    margin-bottom: 20px;
}

.news-modal-body p:last-child {
    margin-bottom: 0;
}

.news-modal-footer {
    padding: 20px 40px 40px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.news-modal-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-modal-share span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.news-modal-share .share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-modal-share .share-link:hover {
    background: #3361AC;
    color: #fff;
    transform: translateY(-2px);
}

.news-modal-share .share-link i {
    font-size: 1rem;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Responsive Styles for Modal */
@media (max-width: 767px) {
    .news-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 8px;
    }

    .news-modal-header {
        padding: 30px 20px 15px;
    }

    .news-modal-title {
        font-size: 1.4rem;
        padding-right: 40px;
    }

    .news-modal-body {
        padding: 20px;
        font-size: 0.95rem;
    }

    .news-modal-footer {
        padding: 15px 20px 30px;
        flex-direction: column;
        align-items: stretch;
    }

    .news-modal-footer .btn-default {
        width: 100%;
    }

    .news-modal-share {
        justify-content: center;
    }

    .news-modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
    }
}

/* Center all text content on mobile view */
@media (max-width: 767px) {
    body,
    p,
    h1, h2, h3, h4, h5, h6,
    div,
    span,
    section,
    article,
    header,
    footer,
    main,
    .container,
    .row,
    .col,
    [class*="col-"],
    .section-title,
    .section-label,
    .content,
    .text-content,
    .hero-content,
    .page-heading,
    .card,
    .card-body,
    .card-title,
    .card-text,
    .btn,
    .form-group,
    .form-control,
    label,
    .list-group,
    .list-group-item,
    .nav,
    .navbar,
    .navbar-nav,
    .nav-link,
    .dropdown-menu,
    .dropdown-item,
    table,
    td,
    th,
    .table,
    .alert,
    .badge,
    .breadcrumb,
    .breadcrumb-item,
    .pagination,
    .page-link,
    .modal-content,
    .modal-header,
    .modal-body,
    .modal-footer,
    .tooltip,
    .popover,
    .carousel-caption,
    .jumbotron,
    .lead,
    .blockquote,
    .blockquote-footer,
    .text-left,
    .text-right,
    .text-start,
    .text-end {
        text-align: center !important;
    }
    
    /* Center headings specifically */
    h1, h2, h3, h4, h5, h6 {
        text-align: center !important;
    }
    
    /* Center paragraphs and text blocks */
    p, span, div, article, section {
        text-align: center !important;
    }
    
    /* Center list items */
    li, ul, ol {
        text-align: center !important;
    }
    
    /* Center table cells */
    td, th {
        text-align: center !important;
    }
    
    /* Center hero button container */
    .hero-btn {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    
    .hero-body {
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Center button elements */
    .btn-default,
    .btn,
    a.btn-default {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}