*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    outline-style: none;
}

html {
    font-size: 14px;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
    padding-top: 0;
}

:root{
    --txtaccent: #fff;
    --txtaccent1: #9D9D9F;
    --textaccent2: #73757E;
    --textaccent3: #484848;
    --txtaccent4: #000;
    --txtaccent5: #E5E5E5;
    --haccent: #41B06E;
    --haccent_withOpacity: rgba(65, 176, 110, 0.8);
    --haccent2: #8DECB4;
    --bgaccent: #1A1C27;
    --bgaccent_withOpacity: rgba(26, 28, 39, 0.96);
    
    /* Modern color scheme */
    --primary: #41B06E;
    --primary-light: #8DECB4;
    --primary-dark: #2a8f53;
    --secondary: #1A1C27;
    --secondary-light: #2d3040;
    --secondary-dark: #13141c;
    --white: #ffffff;
    --light: #f5f5f5;
    --dark: #333333;
    --text-light: #666666;
    --text-dark: #484848;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 5px 15px rgba(0, 0, 0, 0.3);
}

ul{
    color: var(--txtaccent);
    list-style-type: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container{
    width: 95%;
    max-width: 1340px;
    margin: 0px auto;
    padding: 0px 15px;
}
/* SECTION ZERO = LANDING VIEW */
#sec-0{
    position: relative;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(rgba(0,0,0,0.85),rgba(0,0,0,0.85)), url(../Images/back.png) no-repeat center center/cover;
}
#sec-0 header.top {
    background-color: var(--bgaccent);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}
#sec-0 header.top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#sec-0 header.top p {
    margin: 0;
    color: var(--txtaccent5);
    font-size: 0.9rem;
    padding-left: 25px;
    position: relative;
}
#sec-0 header.top .social {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}
#sec-0 .top p::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
#sec-0 .top p:first-of-type::before{
    content: "\f095";
}
#sec-0 .top p:nth-of-type(2)::before{
    content: "\f0e0";
}
#sec-0 .top p:last-of-type::before{
    content: "\f017";
}
#sec-0 .top .social a{
    color: var(--txtaccent5);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-left: 15px;
}
#sec-0 .top .social a:hover{
    background-color: var(--haccent);
}
#sec-0 .top .social a img{
    width: 16px;
    height: auto;
    display: block;
}
#sec-0 header:last-of-type {
    background-color: var(--white);
    padding: 20px 0;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: var(--shadow);
    margin-top: 0;
}
#sec-0 header:last-of-type.sticky {
    top: 40px;
    background-color: var(--white);
}
#sec-0 header:last-of-type.hide {
    transform: none;
}
#sec-0 header:last-of-type .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
}
#sec-0 header:last-of-type .logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}
#sec-0 header:last-of-type .brand-logo {
    width: 55px;
    height: auto;
}
#sec-0 header:last-of-type h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--haccent);
    line-height: 1.2;
    letter-spacing: 0.5px;
}
#sec-0 header:last-of-type h1 span {
    color: var(--text-dark);
}
#sec-0 header:last-of-type h1 p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}
#sec-0 header:last-of-type nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 20px;
}
#sec-0 header:last-of-type nav a {
    color: var(--bgaccent);
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}
#sec-0 header label{
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--bgaccent);
    z-index: 1021;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 176, 110, 0.1);
    border-radius: 5px;
    margin-left: 15px;
}
#sec-0 header input[type="checkbox"] {
    display: none;
}
#sec-0 header nav {
    background-color: transparent;
    transition: all 0.3s ease;
}
#sec-0 header nav a {
    color: var(--bgaccent);
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 3px;
}
#sec-0 header nav a:hover,
#sec-0 header nav a.active {
    color: var(--haccent);
    background-color: rgba(65, 176, 110, 0.1);
    border-radius: 4px;
}
#sec-0 header nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}
#sec-0 header nav i {
    color: var(--bgaccent);
    cursor: pointer;
    margin-left: 15px;
    padding: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}
#sec-0 header nav i:hover {
    color: var(--haccent2);
    background-color: rgba(141, 236, 180, 0.1);
}
#sec-0 #searchBar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 15px;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 999;
}
#sec-0 #searchBox {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--txtaccent1);
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--bgaccent);
    transition: all 0.3s ease;
}
#sec-0 #searchBox::placeholder {
    color: var(--textaccent2);
}
#sec-0 #searchBox:focus {
    border-color: var(--primary);
}
.show{
    display: block !important;
}
.hide{
    display: none !important;
}

#sec-0 header input {
    display: none;
}
#sec-0 input + nav {
    display: flex;
    align-items: center;
    background-color: transparent;
}
#sec-0 input:checked + nav {
    display: block;
}
#sec-0 article{
    display: flex;
    align-items: center;
    text-align: center;
    padding: 12rem 0px 3rem;
}
#sec-0 article h1{
    font-weight: normal;
    font-size: 1.25rem;
    color: var(--txtaccent);
    margin-bottom: 10px;
}
#sec-0 article h2{
    text-transform: uppercase;
    font-size: 1.85rem;
    color: var(--txtaccent);
    line-height: 1em;
    margin-bottom: 15px;
    font-weight: 700;
}
#sec-0 article h2 span{
    color: var(--haccent);
}
#sec-0 article p{
    color: var(--txtaccent);
    margin-bottom: 3rem;
    padding-left: 4rem;
    padding-right: 4rem;
}
#sec-0 article a{
    color: var(--haccent2);
    background-color: var(--txtaccent4);
    display: inline-block;
    padding: 8px 15px;
    margin-left: 5px;
    border: solid 1px var(--haccent2);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
}
#sec-0 article a:hover{
    background-color: var(--haccent2);
    color: var(--txtaccent);
}

#sec-0 .hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

#sec-0 .feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

#sec-0 .feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

#sec-0 .feature-item i {
    font-size: 2rem;
    color: var(--haccent2);
    margin-bottom: 10px;
    display: block;
}

#sec-0 .feature-item span {
    color: var(--txtaccent);
    font-size: 1.1rem;
    display: block;
}

/* The main content section for non-home pages */
#sec-0 main.page-content {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: 400px;
    background-color: var(--white);
    color: var(--textaccent3);
}

/* Sticky header behavior */
#sec-0 header.sticky {
    position: fixed;
    top: 40px;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#sec-0 header.sticky h1,
#sec-0 header.sticky h1 span,
#sec-0 header.sticky h1 p {
    color: inherit;
}

#sec-0 header.sticky nav a {
    color: inherit;
}

#sec-0 header.sticky nav a:hover,
#sec-0 header.sticky nav a.active {
    color: var(--haccent);
    background-color: rgba(65, 176, 110, 0.1);
}

#sec-0 header.sticky nav a.active::after {
    background-color: var(--haccent);
}

#sec-0 header.sticky nav i {
    color: inherit;
}

#sec-0 header.sticky nav i:hover {
    color: var(--haccent);
    background-color: rgba(65, 176, 110, 0.1);
}

/* SECTION ONE */
#sec-1 {
    background-color: var(--txtaccent);
}
#sec-1 article{
    padding-top: 20px;
    text-align: center;
}
#sec-1 article h1{
    font-size: 1.85rem;
    color: var(--haccent);
    font-weight: 700;
    text-transform: uppercase;
}
#sec-1 article h2{
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--textaccent3);
}
#sec-1 article p{
    font-size: 0.85rem;
    text-align: justify;
    margin: 1.3rem 0px 1.1rem;
}
#sec-1 article a{
    color: var(--txtaccent);
    background-color: var(--haccent);
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 5px;
    display: inline-block;
    width: fit-content;
}
#sec-1 aside {
    width: 95%;
    margin: 25px auto 0px;
}
#sec-1 aside img{
    max-width: 100%;
}

#sec-2{
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(../Images/bg4.jpg) no-repeat center center/cover;
    text-align: center;
    padding: 3rem 0px 1.8rem;
}
#sec-2 .container>h1{
    color: var(--haccent);
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}
#sec-2 .container>p {
    color: var(--txtaccent);
    margin-bottom: 30px;
}
#sec-2 article{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#sec-2 article figure{
    text-align: center;
    max-width: 63%;
    margin-top: 40px;
}
#sec-2 article .cont{
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3));
    border-radius: 10px;
    padding: 95px 10px 20px;
    text-align: center;
    margin-top: -75px;
}
#sec-2 article figure div:first-of-type{
    width: 10em;
    height: 10em;
    background-color: var(--haccent2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}
#sec-2 article figure img{
    max-width: 55%;
}
#sec-2 article figure h2{
font-size: 1.2rem;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 10px;
color: var(--haccent2);
}
#sec-0 article p{
}
#sec-2 article figure p{
color: var(--txtaccent);
font-size: 0.88rem;
text-shadow:1px 1px #73757E;
}

#sec-3{
    background-color: var(--txtaccent);
    padding-top: 30px;
    padding-bottom: 30px;
}
#sec-3 h1{
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--bgaccent);
    font-weight: 900;
}
#sec-3 .cont{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
    align-content: space-around;
}
#sec-3 .card{
    width: 90%;
    margin-bottom: 30px;
}
#sec-3 .card p{
    text-align: justify;
    word-break: break-all;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
#sec-3 .card>div{
    position: relative;
}
#sec-3 .caption{
    width: 100%;
    text-align: center;
    margin: 0px;
    color: var(--txtaccent);
    background-color: rgba(0,0,0,0.65);
    padding: 8px 15px 15px;
    position: absolute;
    bottom: 0px;
    font-size: 1.5rem;
    font-weight: 400;
}
#sec-3 a{
    color: var(--txtaccent);
    background-color: var(--haccent);
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 15px;
    border-radius: 5px;
    display: inline-block;
}
/* SECTION 4 */
#sec-4{
    background: linear-gradient(rgba(78, 76, 70, 0.8),rgba(78, 76, 70, 0.8)), url(../Images/bg2.jpg) no-repeat center center/cover;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
}
#sec-4 h1{
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
    color: var(--txtaccent);
    font-weight: 800;
}
#sec-4 p{
    color: var(--txtaccent);
    font-size: 0.9rem;
    padding: 0px 6rem;
    margin-bottom: 2rem;
}
#sec-4 .filter{
    margin-bottom: 2rem;
    padding: 0px 6rem;
}
#sec-4 .filter a{
    display: inline-block;
    padding: 3px 20px 5px;
    border-radius: 15px;
    color: var(--txtaccent);
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.65s ease;
    font-size: 0.85rem;
}
#sec-4 .filter a:hover{
    background-color: var(--bgaccent);
}
#sec-4 .cont{
    width: 90%;
    margin: 0px auto;
}
#sec-4 .cont>img{
    width: 100%;
    display: block;
    margin: 0px auto 20px;
}
#sec-4 aside{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
#sec-4 aside img{
    margin-bottom: 10px;
    width: 48%;
}
/* SECTION 5 */
#sec-5{
    background: url(../Images/bg3.jpg) no-repeat center center/cover;
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
}
#sec-5 h1{
    text-transform: uppercase;
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
    color: var(--txtaccent4);
    font-weight: 800;
}
#sec-5 h1+p{
    color: var(--txtaccent4);
    padding: 0px 2rem;
    margin-bottom: 4rem;
}
#sec-5 .cont{
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 5vh;
}
#sec-5 article{
    width: 70%;
}
#sec-5 .quotetxt{
    display: flex;
    align-items: stretch;
    padding: 1.8em 1.7em 2em 1em;
    background-color: var(--txtaccent5);
    text-align: justify;
    word-break: break-all;    
    position: relative;
}
#sec-5 .quotetxt p:first-child{
    padding-right: 0.7em;
}
#sec-5 .quotetxt p:first-child img{
    min-width: 100%;
}
#sec-5 .quotetxt p:last-child{
    padding-top: 3px;
}
#sec-5 .arrow:after {
    content: '';
    position: absolute;
    border: 15px solid transparent;
    border-top-color: var(--txtaccent5);
    left: calc(50% - 15px);
    top: 100%;
}
#sec-5 figure{
    margin-top: 1.85rem;
}
#sec-5 .customer{
    display: block;
    margin: 0px auto;
    border-radius: 50%;
}
#sec-5 figcaption{
    text-transform: uppercase;
    font-weight: 600;
    text-shadow:1px 1px #73757E;
}
#sec-5 article:nth-of-type(2) div.quotetxt{
    color: var(--txtaccent);background-color: var(--haccent);
}
#sec-5 article:nth-of-type(2) .arrow:after{
    border-top-color: var(--haccent);
}
#sec-5 .contactUs{
    padding-top: 1.5rem;
    background-color: var(--haccent_withOpacity);
    border-bottom: solid 2rem var(--textaccent3);
}
#sec-5 .contactUs h1{
    color: var(--textaccent3);
    text-transform: uppercase;
    font-size: 1.52rem;
    font-weight: 800;
    margin: 0px;
}
#sec-5 .contactUs h2{
    font-size: 2rem;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0px;
}
#sec-5 .contactUs form{
    padding: 10px 0px 1.7rem;
    position: relative;
}
#sec-5 .contactUs form input{
    padding: 6px 15px;
    margin: 0px 5px 10px 0px;
    border-radius: 6px;
    border-style: none;
    color: var(--textaccent3);
}
#sec-5 .contactUs form input[type=submit]{
    padding: 6px 20px;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--textaccent3);
    color: var(--txtaccent5);
}
#sec-5 .contactUs form input:focus{
    box-shadow: inset 0px 0px 10px var(--txtaccent1);
}
#sec-5 .contactUs form input[type=submit]:hover{
    box-shadow: inset 0px 0px 10px var(--txtaccent1);
}
#sec-5 .contactUs form input+p{
    width: 100%;
    margin: 0px auto;
    color:#ff0000;
    font-style: italic;
    font-size: 0.8rem;
    line-height: 1.1em;
    padding: 0px 6px;
    position: absolute;
    bottom: 2px;
}
.invalid{
    box-shadow: inset 0px 0px 10px #e67a7a;
}
/* SECTION SIX */
#sec-6{
    background: linear-gradient(rgba(0, 0, 0,0.9),rgba(0, 0, 0,0.9)), url(../Images/rascacielos-nueva-york.jpg) no-repeat center center/cover;
    padding-top: 2rem;
    padding-bottom: 4rem;
    font-size: 0.8rem;
}
#sec-6 .container{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    row-gap: 15px;
    color: var(--txtaccent5);
}
#sec-6 h1{
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 1.1rem;
}
#sec-6 .about h2{
    font-size: 1.3rem;
    font-weight: 800;
    font-style: italic;
    color: var(--haccent);
    padding-bottom: 5px;
    margin-bottom: 1rem;
}
#sec-6 .about h2 p{
    color: var(--txtaccent1);
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0px;
}
#sec-6 .about>p{
    margin-bottom: 1.5rem;
}
#sec-6 .about a{
    display: inline-flex;
    padding: 5px;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    border-radius: 50%;
    background-color: var(--haccent);
    font-size: 1.25rem;
    color: var(--bgaccent);
    justify-content: center;
    align-items: center;
    transition: background-color ease-in;
    margin-top: 5px;
    text-decoration: none;
}
#sec-6 .about i{
    vertical-align: baseline;
}
#sec-6 .about a:hover{
    background-color: var(--txtaccent5);
}
#sec-6 .links a{
    color: inherit;
    text-decoration: none;
    display: block;
}
#sec-6 .links a{
    position: relative;
    padding: 0.2em;
    padding-left: 25px;
}
#sec-6 .links a::before{
    content: '';
    position: absolute;
    border: 0.35em solid transparent;
    border-left-color: var(--txtaccent5);
    left: 0px;
    top: 0.8em;
}
#sec-6 .links a:hover{
    text-decoration: underline;
}
#sec-6 .posts a{
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 1.1em;
    transition: background-color 0.7s ease-out;
    margin-left: -5px;
}
#sec-6 .posts a:hover{
    background-color: var(--haccent_withOpacity);
    color: var(--txtaccent);
}
#sec-6 .posts a span{
    display: inline-flex;
    width: 2.5em;
    height: 2.5em;
    border-radius: 50%;
    border: solid 2px var(--txtaccent5);
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 25px;
    margin-right: 10px;
}
#sec-6 .contact p{
    margin-bottom: 15px;
    display: flex;
    margin-left: -1em;
}
#sec-6 .contact p::before{
    font-family: fontAwesome;
    display: inline-flex;
    min-width: 2em;
    justify-content: center;
    font-size: 1.2em;
}
#sec-6 .contact p:first-of-type::before{
    content: "\f3c5";
}
#sec-6 .contact p:nth-of-type(2)::before{
    content: "\f0e0";
}
#sec-6 .contact p:last-of-type::before{
    content: "\f3cd";
}
/* SECTION SEVEN */
#sec-7 {
    background-color: var(--bgaccent);
    padding: 20px 0px 10px;
    text-align: center;
    font-size: 0.7rem;
}
#sec-7 p{
    color: var(--txtaccent5);
}
#sec-7 p span{
    color: var(--haccent);
}

/*MEDIA QUERRIES*/
/*Smart phones */
@media (min-width: 576px) {
    html{
        font-size: 13px;
    }
    .container {
        width: 520px;
    }
    #sec-0 header nav a {
        background-color: transparent;
    }
    #sec-0 input + nav {
        background-color: var(--bgaccent_withOpacity);
        position: absolute;
        top: 100%;
        right: 0%;
        width: 35%;
        border-bottom-left-radius: 10px;
    }
    #sec-0 #searchBox {
        transform: translateY(25px);
    }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html{
        font-size: 14px;
    }
    .container {
        width: 720px;
    }
    #sec-0 header.top {
        /* padding-top: 0px; */
    }
    #sec-0{
        background-position: center center;
    }
    #sec-0 header.top .container {
        justify-content: flex-start;
    }
    #sec-0 header.top p {
        width: fit-content;
        margin-right: 10px;
    }
    #sec-0 .top .social {
        width: fit-content;
        flex-grow: 1;
    }
    #sec-0 header label{
        display: none;
    }
    #sec-0 header nav a {
        border-style: none;
    }
    #sec-0 input + nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-end;
        width: fit-content;
        position: static;
        border-radius: none;
        font-size: 0.8rem;
    }
    #sec-0 input:checked + nav {
        display: flex;
    }
    #sec-0 article{
        padding: 5rem 0px;
    }
    #sec-0 article h1{
        font-size: 2rem;
    }
    #sec-0 article h2{
        font-size: 3.5rem;
    }
    #sec-0 #searchBox {
        min-width: 35%;
    }
    #sec-1 .container{ 
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #sec-1 article{
        padding: 0px;
        text-align: left;
        width:51%;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
    }
    #sec-1 article p{
        padding-right: 1rem;
    }
    #sec-1 aside {
        width: 48%;
        margin: 0px;
        text-align: right;
    }
    #sec-2{
        padding: 4rem 0px 2.5rem;
    }
    #sec-2 article{
        justify-content: space-between;
    }
    #sec-2 article figure{
        max-width: 40%;
    }
    #sec-2 article figure img{
        max-width: 55%;
    }
    #sec-3 {
        padding-top: 40px;
        padding-bottom: 50px;
    }
    #sec-3 .cont{
        flex-direction: row;
    }
    #sec-3 .card{
        width: 48%;
    }
    #sec-3 .card:last-child{
        margin-left: auto;
        margin-right: auto;
    }
    #sec-4 .cont{
        width: 100%;
        margin: 0px;
    }
    #sec-4 aside img{
        margin-bottom: 15px;
        width: 48%;
    }
    #sec-5 h1+p{
        padding: 0px 6rem;
    }
    #sec-5 .cont{
        gap: 5vw;
    }
    #sec-5 article{
        width: 43%;
    }
    #sec-5 .contactUs form input+p{
        bottom: 4px;
    }
    #sec-6 .container{
        justify-content: space-between;
        row-gap: 25px;
    }
    #sec-6 .about{
        width: 65%;
    }
    #sec-6 .links{
        width: 20%;
    }
    #sec-6 .posts {
        width: 65%;
    }
    #sec-6 .contact {
        width: 20%;
    }
}
/* Standard PC screens */
@media (min-width: 1200px) {
    html{
        font-size: 15px;
    }
    .container {
        width: 1140px;
    }
    #sec-0 .top .social {
        gap: 10px ;
    }
    #sec-0 header:last-of-type .container{
        padding: 0.95rem 0px;
    }
    #sec-0 header nav a {
        margin-right: 10px;
        font-size: 0.92rem;
    }
    #sec-0 article p{
        padding-left: 14rem;
        padding-right: 14rem;
    }
    #sec-1 article h1{
        font-size: 2.7rem;
    }
    #sec-1 article h2{
        font-size: 1.8rem;
    }
    #sec-2{
        background-position: center top;
    }
    #sec-2 article{
        justify-content: space-evenly;
    }
    #sec-2 article figure{
        max-width: 21%;
    }
    #sec-3 {
        padding-top: 70px;
        padding-bottom: 60px;
    }
    #sec-3 .card{
        width: 31%;
    }
    #sec-3 .card:last-child{
        margin-left: 0px;
        margin-right: 0px;
    }
    #sec-4 .cont{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }
    #sec-4 .cont>img{
        width: 50%;
        margin: 0px;
    }
    #sec-4 aside{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        width: 49%;
        gap: 10px;
    }
    #sec-4 aside img{
        width: 49%;
        margin: 0px;
    }
    #sec-5{
        background-position: right center;
    }
    #sec-5 .cont{
        justify-content: space-between;
        gap: 0px;
        padding-bottom: 25px;
    }
    #sec-5 article{
        width: 30%;
    }
    #sec-5 .contactUs>.container {
        display: flex;
        justify-content: space-between;
    }
    #sec-5 .contactUs aside{
        width: 45%;
        text-align: left;
    }
    #sec-5 .contactUs form {
        width: 45%;
        padding-top: 0px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    #sec-5 .contactUs form input {
        margin-right: 15px;
    }
    #sec-5 .contactUs form input:not(input[type=submit]) {
        flex-grow: 1;
    }
    #sec-5 .contactUs form input+p{
        text-align: left;
    }
    #sec-6 .container{
        justify-content: space-between;
        row-gap: 25px;
    }
    #sec-6 .about{
        width: 30%;
    }
    #sec-6 .links{
        width: 15%;
    }
    #sec-6 .posts {
        width: 20%;
    }
    #sec-6 .contact {
        width: 18%;
    }
}
@media (min-width: 1400px) {
    html{
        font-size: 17px;
    }
    .container {
        width: 1340px;
    }
}

/* END OF SHEET */

/* General Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    padding-top: 90px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.top-header {
    background-color: var(--primary);
    padding: 8px 0;
    color: var(--text-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    height: 0.9em;
    vertical-align: middle;
    margin-top: -2px;
}

/* Main Header */
.main-header {
    background-color: var(--background-dark);
    position: fixed;
    width: 100%;
    top: 40px;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 1.8rem;
    font-style: italic;
    font-weight: bold;
    color: var(--primary);
    margin: 0;
}

.logo span {
    color: var(--text-light);
}

.logo p {
    font-size: 0.85rem;
    font-style: normal;
    color: var(--text-muted);
    margin: 0;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--primary);
    color: var(--text-light);
}

.search-icon {
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.search-icon:hover {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--haccent);
    border-radius: 8px;
    cursor: pointer;
    margin-left: 15px;
    border: none;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.mobile-menu-toggle span::before {
    top: -6px;
}

.mobile-menu-toggle span::after {
    bottom: -6px;
}

.mobile-menu-toggle.active span {
    background: transparent;
}

.mobile-menu-toggle.active span::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.search-bar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-bar.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.search-bar input {
    width: 100%;
    max-width: 600px;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: var(--background-light);
    color: var(--text-dark);
}

.search-bar input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
}

.search-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
}

/* Sticky Header */
.main-header.sticky {
    top: 0;
    background-color: var(--bgaccent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.main-header.sticky h1,
.main-header.sticky h1 span {
    color: var(--txtaccent);
}

.main-header.sticky h1 p {
    color: var(--txtaccent5);
}

.main-header.sticky nav a {
    color: var(--txtaccent);
    transition: all 0.3s ease;
}

.main-header.sticky nav a:hover,
.main-header.sticky nav a.active {
    color: var(--haccent2);
    background-color: rgba(141, 236, 180, 0.1);
    border-radius: 4px;
}

.main-header.sticky nav a.active::after {
    background-color: var(--haccent2);
}

.main-header.sticky nav i {
    color: var(--txtaccent);
}

.main-header.sticky nav i:hover {
    color: var(--haccent2);
    background-color: rgba(141, 236, 180, 0.1);
}

/* Responsive Header */
@media (max-width: 991px) {
    .contact-info span:not(:first-child) {
        display: none;
    }
    
    .main-header {
        top: 35px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    /* Mobile Navigation Menu */
    #sec-0 header:last-of-type nav {
        position: fixed !important;
        top: 120px !important;
        left: 0 !important;
        right: 0 !important;
        background: var(--white) !important;
        flex-direction: column !important;
        padding: 20px !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
        border-radius: 0 0 15px 15px !important;
        max-height: none !important;
        overflow: visible !important;
        display: flex !important;
    }

    #sec-0 header:last-of-type nav.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }

    #sec-0 header:last-of-type nav a {
        display: block !important;
        text-align: center !important;
        color: var(--bgaccent) !important;
        padding: 15px 20px !important;
        margin: 8px 0 !important;
        border-radius: 8px !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        font-size: 1.1rem !important;
        border-bottom: none !important;
        width: auto !important;
    }

    #sec-0 header:last-of-type nav a:hover,
    #sec-0 header:last-of-type nav a.active {
        color: var(--white) !important;
        background-color: var(--haccent) !important;
        transform: scale(1.02) !important;
    }

    /* Mobile header adjustments */
    #sec-0 header:last-of-type .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px !important;
        position: relative !important;
    }

    #sec-0 header:last-of-type .logo-brand {
        flex: 1 !important;
    }

    #sec-0 header:last-of-type .logo-brand h1 {
        font-size: 1.5rem !important;
        margin-bottom: 0 !important;
    }

    #sec-0 header:last-of-type .logo-brand p {
        font-size: 0.8rem !important;
        margin-top: 2px !important;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 40px !important;
        height: 40px !important;
    }

    /* Sticky header mobile menu */
    #sec-0 header label {
        display: flex;
    }
    
    #sec-0 header nav {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: auto;
        background-color: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    #sec-0 header input[type="checkbox"]:checked + nav {
        max-height: calc(100vh - 85px);
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }
    
    #sec-0 header nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: left;
        color: var(--bgaccent);
        font-weight: 500;
        margin: 0;
    }
    
    #sec-0 header.sticky {
        background-color: var(--bgaccent);
    }
    
    #sec-0 header.sticky label {
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }
    
    #sec-0 header.sticky nav {
        background-color: var(--bgaccent);
    }
    
    #sec-0 header.sticky nav a {
        color: var(--white);
        border-bottom-color: rgba(255,255,255,0.1);
    }
    
    /* Search bar fixes */
    #sec-0 #searchBar {
        width: 100%;
        position: relative;
        top: auto;
        right: auto;
        box-shadow: none;
        border-top: none;
        padding: 10px 15px;
        margin-top: 5px;
    }
    
    #sec-0 header.sticky #searchBar {
        background-color: var(--bgaccent);
    }
    
    #sec-0 header.sticky #searchBox {
        background-color: rgba(255, 255, 255, 0.15);
        color: var(--txtaccent);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    #sec-0 header.sticky #searchBox::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    #sec-0 header.top .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    #sec-0 header.top p {
        font-size: 0.7rem;
        padding: 0 10px 0 18px;
    }

    #sec-0 header:last-of-type {
        top: 50px;
    }

    .logo-brand h1 {
        font-size: 1.3rem;
    }

    .logo-brand h1 p {
        font-size: 0.65rem;
    }
}

/* Animations */
.wow {
    visibility: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.social-footer a img {
    height: 1em;
    vertical-align: middle;
    margin-top: -3px;
}

/* Project Cards */
.project-card {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.project-image {
    position: relative;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75); /* Increased opacity for better text visibility */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-overlay h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added text shadow for better contrast */
}

.project-overlay p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Added text shadow for better contrast */
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Service Boxes */
.service-box {
    padding: 40px 30px;
    margin-bottom: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5em;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 0;
}

.grid-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.grid-img:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../Images/back.png') no-repeat center center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 600px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 2rem 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: var(--haccent2);
    margin-bottom: 10px;
    display: block;
}

.feature-item span {
    color: var(--txtaccent);
    font-size: 1.1rem;
    display: block;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
}

.hero-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 1rem;
        margin: 0 auto 30px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 80%;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* Section Styles for Harmony */
section {
    padding: 80px 0;
    position: relative;
}

section.bg-light {
    background-color: var(--background-light);
}

section.bg-dark {
    background-color: var(--background-dark);
    color: var(--text-light);
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 15px auto 0;
}

.bg-dark .section-header h2 {
    color: var(--text-light);
}

.bg-dark .section-header p {
    color: var(--text-light);
    opacity: 0.8;
}

/* Card Styles for Consistency */
.card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    border: none;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--secondary);
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 176, 110, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-light {
    background-color: var(--text-light);
    color: var(--primary);
}

.btn-light:hover {
    background-color: #f8f9fa;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Text Readability Improvements */
p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-muted);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

/* Spacing Utilities */
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }

.py-1 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-2 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-4 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.px-1 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-2 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-3 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-4 { padding-left: 2rem !important; padding-right: 2rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

/* Page Banner */
.page-banner {
    margin-top: 130px;
    padding: 60px 0;
    background: linear-gradient(rgba(65, 176, 110, 0.8), rgba(65, 176, 110, 0.8)), url('../Images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--primary-light);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--primary-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-info-wrapper {
    padding-right: 30px;
}

.contact-info-cards {
    margin-top: 40px;
}

.contact-card {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(65, 176, 110, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(65, 176, 110, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background-color: var(--primary);
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary);
}

.contact-details p {
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(65, 176, 110, 0.1);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form .form-control {
    border: 2px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(65, 176, 110, 0.1);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form .form-check {
    margin: 20px 0;
}

.contact-form .form-check-label {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-form .form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
    border: 2px solid #ddd;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.contact-form .btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 176, 110, 0.3);
}

.form-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(65, 176, 110, 0.1);
    color: var(--primary);
    border: 1px solid rgba(65, 176, 110, 0.2);
}

.form-message.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .contact-section {
        padding: 70px 0;
    }
}

@media (max-width: 767px) {
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
}

.map-section {
    height: 450px;
}

.map-container {
    height: 100%;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .contact-section {
        padding: 70px 0;
    }
    
    .page-banner {
        padding: 60px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 50px 0;
    }
    
    .page-banner {
        padding: 50px 0 30px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
}

/* Footer Styles */
footer {
    background-color: var(--secondary-dark);
    color: var(--white);
    padding: 80px 0 20px;
}

footer h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

footer h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

footer p {
    color: var(--white);
    margin-bottom: 15px;
}

footer p i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 3px 0;
}

footer ul li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.social-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-footer a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-footer a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.social-footer a img {
    height: 1em;
    vertical-align: middle;
}

.copyright {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    footer {
        padding: 60px 0 20px;
        text-align: center;
    }
    
    footer h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .col-md-4 {
        margin-bottom: 40px;
    }
    
    .social-footer {
        justify-content: center;
    }
}

/* Desktop menu styles */
@media (min-width: 769px) {
    #sec-0 header label {
        display: none;
    }
    
    #sec-0 input + nav {
        display: flex;
        position: static;
        width: auto;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }
    
    #sec-0 header nav a {
        display: inline-block;
        padding: 8px 12px;
        margin: 0 3px;
        color: var(--bgaccent);
        border-radius: 0;
    }
    
    #sec-0 header nav a:hover,
    #sec-0 header nav a.active {
        background-color: transparent;
        color: var(--haccent);
    }
    
    #sec-0 header nav a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background-color: var(--haccent);
    }
    
    /* Sticky header desktop */
    #sec-0 header.sticky {
        top: 0;
        background-color: var(--bgaccent);
    }
    
    #sec-0 header.sticky nav {
        background-color: transparent;
    }
    
    #sec-0 header.sticky nav a {
        color: var(--txtaccent);
    }
    
    #sec-0 header.sticky nav a:hover,
    #sec-0 header.sticky nav a.active {
        background-color: transparent;
        color: var(--haccent2);
    }
    
    #sec-0 header.sticky nav a.active::after {
        background-color: var(--haccent2);
    }
    
    #sec-0 header.sticky nav i {
        color: var(--txtaccent);
    }
    
    #sec-0 header.sticky nav i:hover {
        color: var(--haccent2);
        background-color: rgba(141, 236, 180, 0.1);
    }
    
    /* Search bar */
    #sec-0 #searchBar {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background-color: var(--white);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: var(--shadow);
    }
    
    #sec-0 header.sticky #searchBar {
        background-color: var(--bgaccent);
    }
    
    #sec-0 header.sticky #searchBox {
        background-color: rgba(255, 255, 255, 0.15);
        color: var(--txtaccent);
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    #sec-0 header.sticky #searchBox::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }
}

/* Video Showcase Styles */
.video-showcase {
    padding: 20px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    background-color: #000;
}

.video-item.loaded {
    opacity: 1;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-item:last-child {
    grid-column: 1 / -1;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    z-index: 2;
}

.video-item.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

.video-overlay i {
    color: var(--white);
    font-size: 3rem;
    transition: all 0.3s ease;
    background-color: var(--primary);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-item:hover .video-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.video-item:hover .video-overlay i {
    transform: scale(1.1);
}

.video-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 3;
    transition: all 0.3s ease;
}

.video-item:hover .video-content {
    padding-bottom: 25px;
}

.video-item h5 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-item p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-item:hover h5,
.video-item:hover p {
    transform: translateY(-5px);
}

/* Video Controls Customization */
.video-wrapper video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.video-wrapper video:hover::-webkit-media-controls-panel {
    opacity: 1;
}

.video-wrapper video::-webkit-media-controls-play-button {
    background-color: var(--primary);
    border-radius: 50%;
    margin: 0 10px;
}

.video-wrapper video::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 0 10px;
}

.video-wrapper video::-webkit-media-controls-current-time-display,
.video-wrapper video::-webkit-media-controls-time-remaining-display {
    color: var(--white);
    margin: 0 10px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-item:last-child {
        grid-column: auto;
    }

    .video-overlay i {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .video-content {
        padding: 15px;
    }

    .video-item h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .video-item h5 {
        font-size: 1rem;
    }
    
    .video-item p {
        font-size: 0.85rem;
    }
    
    .video-overlay i {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .video-content {
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .video-overlay i {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    .video-item h5 {
        font-size: 0.95rem;
    }
    
    .video-item p {
        font-size: 0.8rem;
    }
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features li {
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-card .btn-primary {
    margin-top: auto;
    width: 100%;
    padding: 12px 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.service-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}

/* Logo and Brand Styles */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: auto;
    transition: all 0.3s ease;
}

/* Sticky header with logo */
header.sticky .brand-logo {
    width: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-brand {
        gap: 10px;
    }

    .brand-logo {
        width: 40px;
    }

    header.sticky .brand-logo {
        width: 35px;
    }
}

@media (max-width: 480px) {
    .logo-brand {
        gap: 8px;
    }

    .brand-logo {
        width: 35px;
    }

    header.sticky .brand-logo {
        width: 30px;
    }
}

#sec-0 header:last-of-type .logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

#sec-0 header:last-of-type .brand-logo {
    width: 65px;
    height: auto;
    transition: all 0.3s ease;
}

/* Sticky header with logo */
#sec-0 header.sticky .brand-logo {
    width: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #sec-0 header:last-of-type .logo-brand {
        gap: 10px;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 50px;
    }

    #sec-0 header.sticky .brand-logo {
        width: 45px;
    }
}

@media (max-width: 480px) {
    #sec-0 header:last-of-type .logo-brand {
        gap: 8px;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 45px;
    }

    #sec-0 header.sticky .brand-logo {
        width: 40px;
    }
}

@media (max-width: 768px) {
    #sec-0 header.top {
        padding: 5px 0;
    }

    #sec-0 header.top p {
        font-size: 0.75rem;
        padding: 0 12px 0 20px;
    }

    #sec-0 header:last-of-type {
        top: 30px;
        padding: 10px 0;
    }

    #sec-0 header label {
        display: block;
        margin-left: auto;
    }

    #sec-0 header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
        opacity: 0;
        visibility: hidden;
    }

    #sec-0 header input[type="checkbox"]:checked + nav {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
    }

    #sec-0 header nav a {
        display: block;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: left;
        color: var(--bgaccent);
        font-weight: 500;
    }

    #sec-0 header nav a:hover,
    #sec-0 header nav a.active {
        background-color: rgba(65, 176, 110, 0.1);
        color: var(--haccent);
    }

    #sec-0 header nav a:last-child {
        border-bottom: none;
    }

    .logo-brand {
        gap: 8px;
        flex: 1;
    }

    .logo-brand h1 {
        font-size: 1.5rem;
    }

    .logo-brand h1 p {
        font-size: 0.7rem;
    }

    #sec-0 header.sticky nav {
        top: 100%;
        background-color: var(--white);
    }

    #sec-0 header.sticky nav a {
        color: var(--bgaccent);
    }

    #sec-0 header.sticky nav a:hover,
    #sec-0 header.sticky nav a.active {
        background-color: rgba(65, 176, 110, 0.1);
        color: var(--haccent);
    }
}

/* Mobile Navigation Fixes */
@media (max-width: 768px) {
    #sec-0 header.top {
        padding: 5px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1030;
        background-color: var(--secondary);
    }

    #sec-0 header.top .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
    }

    #sec-0 header.top p {
        font-size: 0.75rem;
        padding: 0 12px 0 20px;
    }

    #sec-0 header:last-of-type {
        top: 35px;
        padding: 10px 0;
        background-color: var(--white);
        z-index: 1020;
    }

    #sec-0 header:last-of-type .container {
        position: relative;
    }

    #sec-0 header label {
        display: block;
        margin-left: 15px;
        cursor: pointer;
        color: var(--bgaccent);
        font-size: 1.5rem;
        z-index: 1021;
    }

    #sec-0 header input[type="checkbox"] {
        display: none;
    }

    #sec-0 header nav {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: auto;
        background-color: var(--white);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    #sec-0 header input[type="checkbox"]:checked + nav {
        max-height: calc(100vh - 85px);
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    #sec-0 header nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        text-align: left;
        color: var(--bgaccent);
        font-weight: 500;
        margin: 0;
    }

    #sec-0 header nav a:hover,
    #sec-0 header nav a.active {
        background-color: rgba(65, 176, 110, 0.1);
        color: var(--haccent);
    }

    #sec-0 header nav a:last-child {
        border-bottom: none;
    }

    .logo-brand {
        gap: 8px;
        flex: 1;
    }

    .logo-brand h1 {
        font-size: 1.3rem;
    }

    .logo-brand h1 p {
        font-size: 0.65rem;
    }

    /* Sticky Header Mobile Fixes */
    #sec-0 header.sticky {
        top: 0;
        background-color: var(--bgaccent);
    }

    #sec-0 header.sticky nav {
        top: 50px;
        background-color: var(--bgaccent);
    }

    #sec-0 header.sticky label {
        color: var(--white);
    }

    #sec-0 header.sticky nav a {
        color: var(--white);
        border-bottom-color: rgba(255,255,255,0.1);
    }

    /* Main Content Padding Fix */
    #sec-0 main.page-content {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    #sec-0 header.top {
        padding: 5px 0;
    }

    #sec-0 header.top .container {
        justify-content: center;
        text-align: center;
    }

    #sec-0 header.top p {
        font-size: 0.7rem;
        padding: 0 10px 0 18px;
        margin: 2px 0;
    }

    #sec-0 header:last-of-type {
        top: 50px;
    }

    #sec-0 header nav {
        top: 100px;
    }

    #sec-0 header.sticky nav {
        top: 50px;
    }

    .logo-brand h1 {
        font-size: 1.2rem;
    }

    .logo-brand h1 p {
        font-size: 0.6rem;
    }

    /* Adjust page content padding */
    #sec-0 main.page-content {
        padding-top: 120px;
    }
}

/* Mobile Menu Styles */
header label {
    display: none;
    font-size: 26px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    margin: 0;
    padding: 10px;
}

header label:hover {
    color: #4CAF50;
}

#menu {
    display: none;
}

@media screen and (max-width: 768px) {
    header label {
        display: block;
    }

    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 0;
        max-height: 0;
        width: 100%;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    header nav a {
        display: block;
        padding: 15px 20px;
        margin: 0;
        border-bottom: 1px solid #eee;
        color: #333;
        text-align: left;
    }

    header nav a:hover {
        background: #f8f8f8;
        color: #4CAF50;
    }

    /* Removed old checkbox menu style */

    header .container {
        position: relative;
    }

    .logo-brand {
        margin-right: auto;
    }
}

#sec-0 header:last-of-type nav a {
    color: var(--bgaccent);
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 3px;
}

#sec-0 header:last-of-type nav a:hover,
#sec-0 header:last-of-type nav a.active {
    color: var(--haccent);
    background-color: rgba(65, 176, 110, 0.1);
    border-radius: 4px;
}

#sec-0 header:last-of-type nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--haccent);
}

#sec-0 header:last-of-type nav i {
    color: var(--bgaccent);
    cursor: pointer;
    margin-left: 15px;
    padding: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

#sec-0 header:last-of-type nav i:hover {
    color: var(--haccent);
    background-color: rgba(65, 176, 110, 0.1);
}

/* Sticky header styles */
#sec-0 header.sticky {
    position: fixed;
    top: 40px;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#sec-0 header.sticky nav a {
    color: var(--bgaccent);
}

#sec-0 header.sticky nav a:hover,
#sec-0 header.sticky nav a.active {
    color: var(--haccent);
    background-color: rgba(65, 176, 110, 0.1);
}

#sec-0 header.sticky nav a.active::after {
    background-color: var(--haccent);
}

#sec-0 header.sticky nav i {
    color: var(--bgaccent);
}

#sec-0 header.sticky nav i:hover {
    color: var(--haccent);
    background-color: rgba(65, 176, 110, 0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background-color: #22c15e;
    color: white;
}

.whatsapp-float i {
    font-size: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 20px;
        bottom: 20px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
}

/* Mobile Menu Styles */
#menu {
    display: none;
}

label[for="menu"] {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--bgaccent);
    padding: 10px;
    z-index: 1000;
}

/* OLD CONFLICTING MOBILE MENU STYLES REMOVED - REPLACED WITH NEW JAVASCRIPT-BASED MENU */
/*
@media (max-width: 991px) {
    #sec-0 header:last-of-type .container {
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    label[for="menu"] {
        display: block;
        order: 2;
    }

    #sec-0 header:last-of-type .logo-brand {
        order: 1;
        display: flex;
        align-items: center;
    }

    #sec-0 header:last-of-type nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    #sec-0 header:last-of-type nav a {
        width: 100%;
        padding: 15px;
        margin: 5px 0;
        text-align: left;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        color: var(--bgaccent);
    }

    #sec-0 header:last-of-type nav a:last-child {
        border-bottom: none;
    }

    #sec-0 header:last-of-type nav a.active::after {
        display: none;
    }

    #sec-0 header:last-of-type nav i {
        margin: 15px 0;
        width: 100%;
        justify-content: flex-start;
        padding: 15px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        color: var(--bgaccent);
    }

    /* Top Header Mobile Styles */
    #sec-0 header.top {
        padding: 5px 0;
    }

    #sec-0 header.top .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 15px;
    }

    #sec-0 header.top p {
        margin: 2px 0;
        font-size: 0.9rem;
    }

    #sec-0 header.top .social {
        margin-top: 5px;
    }

    /* Main Header Mobile Styles */
    #sec-0 header:last-of-type {
        padding: 10px 0;
    }

    #sec-0 header:last-of-type .logo-brand {
        flex-direction: row;
        align-items: center;
    }

    #sec-0 header:last-of-type .logo-brand h1 {
        margin-top: 0;
        font-size: 1.2rem;
        margin-left: 10px;
    }

    #sec-0 header:last-of-type .logo-brand p {
        font-size: 0.8rem;
        display: none;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 40px;
        height: 40px;
    }
}
*/

@media (max-width: 576px) {
    #sec-0 header.top p {
        font-size: 0.8rem;
    }

    #sec-0 header:last-of-type .logo-brand h1 {
        font-size: 1.1rem;
    }

    #sec-0 header:last-of-type nav {
        width: 100%;
        max-width: none;
    }
}

/* Mobile Header Styles */
@media (max-width: 991px) {
    #sec-0 header.top {
        display: none;
    }

    #sec-0 header:last-of-type {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    #sec-0 header:last-of-type .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-logo img {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .mobile-logo h1 {
        font-size: 1.2rem;
        color: var(--haccent);
        margin: 0;
    }

    .mobile-logo h1 span {
        color: var(--bgaccent);
    }

    .mobile-logo p {
        display: none;
    }

    .mobile-contact {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    .mobile-phone {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--bgaccent);
        font-weight: 600;
        font-size: 0.9rem;
    }

    .mobile-phone i {
        color: var(--haccent);
    }

    .mobile-social {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .mobile-social a {
        color: var(--bgaccent);
        font-size: 1.2rem;
        transition: color 0.3s ease;
    }

    .mobile-social a:hover {
        color: var(--haccent);
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: var(--haccent);
        border-radius: 8px;
        cursor: pointer;
        margin-left: 15px;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        position: relative;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle span::before {
        top: -6px;
    }

    .mobile-menu-toggle span::after {
        bottom: -6px;
    }

    .mobile-menu-toggle.active span {
        background: transparent;
    }

    .mobile-menu-toggle.active span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .mobile-menu-toggle.active span::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    #sec-0 header:last-of-type nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        z-index: 999;
    }

    #sec-0 header:last-of-type nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    #sec-0 header:last-of-type nav a {
        display: block;
        padding: 12px 15px;
        color: var(--bgaccent);
        font-weight: 600;
        border-radius: 8px;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    #sec-0 header:last-of-type nav a:hover,
    #sec-0 header:last-of-type nav a.active {
        background: var(--haccent);
        color: var(--white);
    }

    #sec-0 header:last-of-type nav a.active::after {
        display: none;
    }

    #sec-0 header:last-of-type nav i {
        display: none;
    }
}

@media (max-width: 576px) {
    /* Top header mobile adjustments */
    #sec-0 header.top .container {
        flex-direction: column;
        gap: 8px;
        padding: 8px 15px;
    }

    #sec-0 header.top p {
        font-size: 0.8rem;
        margin: 2px 0;
    }

    /* Main header mobile adjustments */
    #sec-0 header:last-of-type .logo-brand h1 {
        font-size: 1.2rem;
    }

    #sec-0 header:last-of-type .logo-brand p {
        font-size: 0.7rem;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 35px;
        height: 35px;
    }

    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }

    .mobile-menu-toggle span {
        width: 20px;
    }

    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after {
        width: 20px;
    }

    /* Hero content mobile adjustments */
    #sec-0 article h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    #sec-0 article h2 {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    #sec-0 article p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Container adjustments */
    .container {
        width: 95%;
        padding: 0 10px;
    }

    /* Button adjustments for mobile */
    .btn, .cta-btn {
        padding: 12px 20px;
        font-size: 1rem;
        width: auto;
        min-width: 150px;
    }

    /* Section padding adjustments */
    section {
        padding: 40px 0;
    }

    /* Grid adjustments for mobile */
    .row {
        margin: 0 -10px;
    }

    .col-md-6, .col-lg-4, .col-lg-6 {
        padding: 0 10px;
        margin-bottom: 30px;
    }

    /* Text adjustments */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    
    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Desktop styles - Override mobile styles */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    /* Show top header on desktop */
    #sec-0 header.top {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background-color: var(--secondary) !important;
        padding: 8px 0 !important;
        height: auto !important;
    }

    #sec-0 header.top .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        gap: 0 !important;
        min-height: 32px !important;
        padding: 0 15px !important;
    }

    /* Contact info styling */
    #sec-0 header.top p {
        display: inline-block !important;
        margin: 0 20px 0 0 !important;
        color: var(--txtaccent5) !important;
        font-size: 0.9rem !important;
        padding-left: 25px !important;
        position: relative !important;
        white-space: nowrap !important;
        flex: none !important;
        line-height: 1.2 !important;
        vertical-align: middle !important;
    }

    #sec-0 header.top p:last-of-type {
        margin-right: 0 !important;
    }

    /* Clickable links in top header */
    #sec-0 header.top p a {
        color: var(--txtaccent5) !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    #sec-0 header.top p a:hover {
        color: var(--haccent) !important;
        text-decoration: underline !important;
    }

    #sec-0 header.top .social {
        display: flex !important;
        gap: 12px !important;
        align-items: center !important;
        margin-left: auto !important;
        height: 100% !important;
    }

    #sec-0 header.top .social a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: var(--txtaccent5) !important;
        transition: all 0.3s ease !important;
        margin-left: 15px !important;
        flex-shrink: 0 !important;
    }

    #sec-0 header.top .social a:hover {
        background-color: var(--haccent) !important;
        transform: scale(1.1) !important;
        color: var(--white) !important;
    }

    /* Reset mobile nav styles for desktop */
    #sec-0 header:last-of-type nav {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        border-radius: 0 !important;
        max-height: none !important;
        overflow: visible !important;
        display: flex !important;
        align-items: center !important;
        gap: 0 !important;
        margin: 0 !important;
    }

    #sec-0 header:last-of-type nav a {
        display: inline-block !important;
        margin: 0 15px !important;
        padding: 8px 12px !important;
        font-size: 0.95rem !important;
        color: var(--bgaccent) !important;
        background: transparent !important;
        border-radius: 0 !important;
        text-align: left !important;
        font-weight: 600 !important;
        border-bottom: none !important;
        width: auto !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        text-decoration: none !important;
    }

    #sec-0 header:last-of-type nav a:hover,
    #sec-0 header:last-of-type nav a.active {
        color: var(--haccent) !important;
        background-color: rgba(65, 176, 110, 0.1) !important;
        border-radius: 4px !important;
        transform: none !important;
    }

    #sec-0 header:last-of-type nav a.active::after {
        content: '' !important;
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 30px !important;
        height: 2px !important;
        background: var(--haccent) !important;
        border-radius: 1px !important;
    }

    /* Desktop header container */
    #sec-0 header:last-of-type .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 15px !important;
        position: relative !important;
    }

    #sec-0 header:last-of-type .logo-brand {
        display: flex !important;
        align-items: center !important;
        flex: none !important;
    }

    #sec-0 header:last-of-type .logo-brand h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0 !important;
        margin-left: 15px !important;
    }

    #sec-0 header:last-of-type .logo-brand p {
        font-size: 0.9rem !important;
        margin-top: 2px !important;
        display: block !important;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 50px !important;
        height: 50px !important;
    }

    /* Force show navigation on desktop */
    nav {
        display: flex !important;
    }
}

/* Enhanced Contact Form Styles */
.form-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #34d399;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #f87171;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

/* Loading state for submit button */
button[type="submit"]:disabled,
input[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

button[type="submit"]:disabled::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Form validation improvements */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--haccent);
    box-shadow: 0 0 0 3px rgba(65, 176, 110, 0.1);
}

.form-group input:valid,
.form-group textarea:valid,
.form-group select:valid {
    border-color: #10b981;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #ef4444;
}

/* Honeypot field - absolutely hidden */
input[name="honeypot"] {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tab-index: -1 !important;
}

    /* Fix navigation positioning and z-index */
    #sec-0 header nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
        z-index: 1002 !important;
        background: transparent !important;
    }

    /* Desktop navigation link styles */
    #sec-0 header nav a {
        display: inline-block !important;
        margin: 0 15px !important;
        padding: 8px 12px !important;
        font-size: 0.95rem !important;
        color: var(--bgaccent) !important;
        background: transparent !important;
        border-radius: 0 !important;
        text-align: left !important;
        font-weight: 600 !important;
        border-bottom: none !important;
        width: auto !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        text-decoration: none !important;
    }

    #sec-0 header nav a:hover,
    #sec-0 header nav a.active {
        color: var(--haccent) !important;
        background-color: rgba(65, 176, 110, 0.1) !important;
        border-radius: 8px !important;
    }

    #sec-0 header nav a.active::after {
        content: '' !important;
        position: absolute !important;
        bottom: -5px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 30px !important;
        height: 2px !important;
        background-color: var(--haccent) !important;
    }
}

@media (min-width: 992px) {
    #sec-0 header:last-of-type .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    #sec-0 header:last-of-type .logo-brand {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 50px;
        height: auto;
    }

    #sec-0 header:last-of-type h1 {
        font-size: 1.5rem;
        margin: 0;
    }

    #sec-0 header:last-of-type h1 p {
        font-size: 0.8rem;
        margin: 0;
        color: var(--text-light);
    }

    #sec-0 header:last-of-type nav {
        display: flex;
        gap: 20px;
    }

    #sec-0 header:last-of-type nav a {
        color: var(--bgaccent);
        font-size: 0.95rem;
        font-weight: 600;
        padding: 8px 0;
        position: relative;
    }

    #sec-0 header:last-of-type nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--haccent);
        transition: width 0.3s ease;
    }

    #sec-0 header:last-of-type nav a:hover::after,
    #sec-0 header:last-of-type nav a.active::after {
        width: 100%;
    }
}

/* Mobile styles */
@media (max-width: 991px) {
    #sec-0 header:last-of-type .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    #sec-0 header:last-of-type .logo-brand {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    #sec-0 header:last-of-type .brand-logo {
        width: 40px;
        height: auto;
    }

    #sec-0 header:last-of-type h1 {
        font-size: 1.2rem;
        margin: 0;
    }

    #sec-0 header:last-of-type h1 p {
        font-size: 0.7rem;
        margin: 0;
    }

    #sec-0 header:last-of-type label {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--bgaccent);
    }

    #sec-0 header:last-of-type input[type="checkbox"] {
        display: none;
    }

    #sec-0 header:last-of-type nav {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 20px;
        box-shadow: var(--shadow);
    }

    #sec-0 header:last-of-type input[type="checkbox"]:checked + nav {
        display: flex;
        flex-direction: column;
    }

    #sec-0 header:last-of-type nav a {
        padding: 12px 0;
        color: var(--bgaccent);
        font-weight: 600;
        border-bottom: 1px solid var(--light);
    }

    #sec-0 header:last-of-type nav a:last-child {
        border-bottom: none;
    }
}

#sec-0 header:last-of-type .brand-logo {
    width: 60px;
    height: auto;
}

#sec-0 header:last-of-type h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--haccent);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

#sec-0 header:last-of-type h1 p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-light);
}

#sec-0 header:last-of-type nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 20px;
}

#sec-0 header:last-of-type nav a {
    color: var(--bgaccent);
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

@media (max-width: 991px) {
    #sec-0 header:last-of-type .brand-logo {
        width: 45px;
    }

    #sec-0 header:last-of-type h1 {
        font-size: 1.4rem;
    }

    #sec-0 header:last-of-type nav a {
        font-size: 0.95rem;
        padding: 10px 0;
    }
}