/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0B5E32;
    --secondary-color: #ff6b35;
    --accent-color: #0B5E32;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #0B5E32 0%, #0d7a42 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 50px; /* Account for top bar */
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.top-bar-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

.top-bar-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-bar-icon {
    font-size: 1rem;
}

.top-bar-item {
    transition: transform 0.3s;
}

.top-bar-item:hover {
    transform: translateY(-2px);
}

.top-bar-item a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.top-bar-item a:hover {
    opacity: 0.9;
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 50px; /* Below top bar */
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-brand h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.nav-brand .tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link {
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    list-style: none;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-submenu .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.dropdown-submenu:hover .dropdown-arrow {
    transform: rotate(90deg);
}

.dropdown-submenu-list {
    position: absolute;
    right: 100%;
    top: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-hover);
    list-style: none;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s;
    padding: 0.5rem 0;
    margin-right: 0.5rem;
    border-radius: 4px;
}

.dropdown-submenu:hover .dropdown-submenu-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu-list li {
    padding: 0;
}

.dropdown-submenu-list a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.3s;
    font-size: 0.9rem;
}

.dropdown-submenu-list a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    min-height: 700px;
    overflow: visible;
    margin-bottom: 60px;
    padding-bottom: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 700px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 700px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 700px;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-slide-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    width: 100%;
    align-items: center;
    padding: 3rem 0;
}

.hero-slide-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 2rem;
}

.hero-slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    line-height: 1.2;
    word-wrap: break-word;
}

.hero-slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-hero-call {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-hero-call:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.call-icon {
    font-size: 1.5rem;
}

.hero-slide-form {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    height: 100%;
}

.hero-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    margin-top: 0;
}

.hero-form-container h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.hero-form-container > p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn-hero {
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-hero:hover {
    background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-slider-controls {
    position: absolute;
    bottom: 80px;
    left: 2rem;
    z-index: 3;
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-dots {
    display: none;
    gap: 0.75rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Banners Section */
.banners-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.banners-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.banner-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.banner-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.banner-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.banner-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.btn-more-info {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.btn-more-info:hover {
    background: #e55a2a;
    transform: scale(1.05);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-white);
    margin-top: 0;
}

.about-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.about-separator-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.about-separator-main::before {
    content: '';
    width: 100px;
    height: 2px;
    background: var(--text-dark);
}

.about-separator-main .separator-dot {
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    display: inline-block;
}

.about-separator-main::after {
    content: '';
    width: 100px;
    height: 2px;
    background: var(--text-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-headline {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-separator {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.about-separator::before {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--text-dark);
}

.separator-dot {
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    display: inline-block;
}

.about-separator::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-cta {
    margin-top: 2rem;
}

.btn-learn-more {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 94, 50, 0.3);
}

.btn-learn-more:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 94, 50, 0.4);
}

.about-image-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    border: 3px dashed var(--secondary-color);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.experience-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-text {
    font-size: 0.9rem;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
    transition: all 0.3s;
    cursor: default;
}

.feature-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.feature-item:hover .feature-icon {
    color: white;
}

.feature-icon {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.certifications-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 0;
    max-width: 100%;
}

.certifications-section .certification-logo:nth-child(4) {
    grid-column: 1;
}

.certifications-section .certification-logo:nth-child(5) {
    grid-column: 2;
}

.footer-section .certifications-section {
    margin-top: 1.5rem;
}

.certification-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.certification-logo:hover {
    transform: scale(1.05);
}

.certification-logo img {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.footer-section .certification-logo img {
    max-width: 150px;
    max-height: 90px;
}

.certification-logo:hover img {
    filter: grayscale(0%);
}

.about-cta {
    margin-top: 1.5rem;
}

.btn-view-more {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.btn-view-more:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.service-category {
    margin-bottom: 4rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category[style*="margin-top"] {
    margin-top: 20px !important;
}

.service-category-header {
    margin-bottom: 1.5rem;
}

.service-category-header h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
    text-align: left;
}

.service-category-separator {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.service-category-separator::before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--text-dark);
}

.service-category-separator .separator-dot {
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    display: inline-block;
}

.service-category-separator::after {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--text-dark);
}

.section-separator {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.section-separator::before {
    content: '';
    width: 100px;
    height: 2px;
    background: var(--text-dark);
}

.section-separator .separator-dot {
    width: 8px;
    height: 8px;
    background: var(--text-dark);
    border-radius: 50%;
    display: inline-block;
}

.section-separator::after {
    content: '';
    width: 100px;
    height: 2px;
    background: var(--text-dark);
}

/* Services Container */
.services-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Services Scroll Wrapper */
.services-scroll-wrapper {
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    padding: 1rem 0;
}

.services-arrow {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.services-arrow:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.services-arrow:active {
    transform: scale(0.95);
}

.services-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.services-grid {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    width: 220px;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(11, 94, 50, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Projects Gallery Section */
.projects-section {
    padding: 5rem 0 3rem 0;
    background: var(--bg-white);
}

.projects-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.projects-gallery {
    position: relative;
    margin-bottom: 2rem;
}

.gallery-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

.gallery-item {
    flex: 0 0 calc(25% - 1.125rem);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-gallery-btn {
    left: -25px;
}

.next-gallery-btn {
    right: -25px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Benefits Section */
.benefits-section {
    padding: 2rem 0 5rem 0;
    background: var(--bg-white);
}

.benefits-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    perspective: 1000px;
    height: 300px;
}

.benefit-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.benefit-card:hover .benefit-card-inner {
    transform: rotateY(180deg);
}

.benefit-card-front,
.benefit-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card-front {
    background: var(--bg-white);
    border: 2px solid transparent;
}

.benefit-card-back {
    background: var(--gradient-primary);
    color: white;
    transform: rotateY(180deg);
    border: 2px solid var(--primary-color);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card-front h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.benefit-card-front p {
    color: var(--text-light);
}

.benefit-card-back h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-card-back p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}


/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(11, 94, 50, 0.2);
    border-left-color: var(--secondary-color);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    text-align: right;
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-review-google {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-review-google:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Call to Action Section */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    margin: 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta-call {
    background: var(--gradient-secondary);
    color: white;
}

.btn-cta-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8c5a 0%, #ff6b35 100%);
}

.btn-cta-quote {
    background: var(--gradient-primary);
    color: white;
}

.btn-cta-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(11, 94, 50, 0.4);
    background: linear-gradient(135deg, #0d7a42 0%, #0B5E32 100%);
}

.cta-icon {
    font-size: 1.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.contact-section h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.service-areas {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
}

.service-areas h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-areas p {
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 94, 50, 0.1);
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.napit-logo-container {
    margin: 1rem 0;
}

.napit-logo {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section h4 {
    font-size: 1.1rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section .tagline {
    font-style: italic;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    position: relative;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.floating-call {
    background: var(--primary-color);
    color: white;
}

.floating-whatsapp {
    background: #25D366;
    color: white;
}

.floating-btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 45px;
    }

    .top-bar {
        padding: 0.4rem 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .top-bar-tagline {
        font-size: 0.8rem;
    }

    .top-bar-contact {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .top-bar-item {
        font-size: 0.85rem;
    }

    .navbar {
        top: 45px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .floating-btn-icon {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .napit-logo {
        max-width: 150px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-top: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 1rem;
        display: block;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding-left: 1rem;
    }

    .dropdown-submenu-list {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0;
        padding-left: 1.5rem;
        right: auto;
        margin-right: 0;
    }

    .hero-slider-section {
        min-height: auto;
        overflow: visible;
        margin-bottom: 60px;
        padding-bottom: 0;
    }

    .hero-slider-controls {
        left: 1rem;
        bottom: 60px;
    }

    .hero-slide {
        min-height: auto;
        position: relative;
    }

    .hero-slide-image {
        min-height: auto;
        height: 100%;
    }

    .hero-slide-overlay {
        min-height: auto;
        height: 100%;
    }

    .hero-slide-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
        min-height: auto;
    }

    .hero-slide-content {
        text-align: center;
        padding: 1.5rem;
    }

    .hero-slide-content h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-slide-content p {
        font-size: 1.1rem;
    }

    .hero-cta-buttons {
        align-items: center;
    }

    .hero-slide-form {
        justify-content: center;
    }

    .hero-form-container {
        max-width: 100%;
    }

    .gallery-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .prev-gallery-btn {
        left: 10px;
    }

    .next-gallery-btn {
        right: 10px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        padding-right: 0;
    }

    .about-headline {
        font-size: 1.5rem;
    }

    .experience-overlay {
        top: 15px;
        right: 15px;
        padding: 1rem 1.5rem;
    }

    .experience-number {
        font-size: 2.5rem;
    }

    .experience-text {
        font-size: 0.8rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .certifications-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 0;
        max-width: 600px;
    }

    .certifications-section .certification-logo:nth-child(4),
    .certifications-section .certification-logo:nth-child(5) {
        grid-column: span 1;
    }

    .certification-logo img {
        max-width: 150px;
        max-height: 100px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .banners-section .container {
        grid-template-columns: 1fr;
    }

    .services-container {
        gap: 0.5rem;
    }

    .services-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .service-card {
        width: calc(50% - 0.75rem);
        min-width: 200px;
    }

    .services-container {
        gap: 0.5rem;
    }

    .services-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .service-card {
        width: calc(50% - 0.75rem);
        min-width: 200px;
    }

    .services-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        height: 280px;
    }

    .benefit-card-front,
    .benefit-card-back {
        padding: 2rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-slider-section {
        min-height: auto;
        overflow: visible;
        margin-bottom: 60px;
        padding-bottom: 0;
    }

    .hero-slider-controls {
        left: 0.5rem;
        bottom: 50px;
        gap: 1rem;
    }

    .hero-slide {
        min-height: auto;
        position: relative;
    }

    .hero-slide-image {
        min-height: auto;
        height: 100%;
    }

    .hero-slide-overlay {
        min-height: auto;
        height: 100%;
    }

    .hero-slide-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
        min-height: auto;
    }

    .hero-slide-content {
        text-align: center;
        padding: 1rem;
    }

    .hero-slide-content h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-slide-content p {
        font-size: 1rem;
    }

    .hero-slide-form {
        justify-content: center;
    }

    .hero-form-container {
        padding: 1.5rem;
    }

    .hero-form-container h3 {
        font-size: 1.5rem;
    }

    .gallery-item {
        flex: 0 0 100%;
    }

    .banner-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .about-section h2,
    .services-section h2,
    .benefits-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    scroll-margin-top: 130px; /* Account for top bar (50px) + navbar (80px) */
}

