/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'montserrat', sans-serif;
}
/* Contact Page Styles */
.contact-page {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Left Side - Form */
.contact-form {
    flex: 1;
    padding: 40px;
    background: #fff;
}

.contact-form h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-row .form-group {
    margin-bottom: 0;
}

input,
textarea {
    width: 100%;
    padding: 12px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s ease;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

input:focus,
textarea:focus {
    border-bottom-color: #147180;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: #147180;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #147180;
    transform: translateY(-2px);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Right Side - Contact Info */
.contact-info {
    flex: 0 0 320px;
    background: #147180;
    padding: 40px;
    color: #fff;
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.info-content {
    padding-top: 8px;
}

.info-content p {
    font-size: 14px;
    line-height: 1.6;
}

.info-content strong {
    font-weight: 600;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        flex: none;
    }
    .info-content p{
        font-size: 12px;
        
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }
}

/* Navigation/Test Page Styles */
.nav-page {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #fff;
    position: relative;
}

/* Top Utility Bar */
.top-utility-bar {
    display: flex;
    justify-content: flex-end;
}

/* Main Header Row (Logo + Nav) */
.main-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
    border-bottom: 5px solid #147180;
}

/* Logo */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-section img{
    padding-bottom: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(135deg, #1a5a3a 60%, #c45c2c 60%);
}

.logo-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #8b2332;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text span:first-child {
    color: #4a1c1c;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
}

.logo-text span:last-child {
    color: #4a1c1c;
    font-size: 11px;
    margin-top: 2px;
}

/* Top Right Area */
.top-right-area {
    display: flex;
    align-items: stretch;
    height: 45px;
}

/* Color Bars */
.color-bars {
    display: flex;
    height: 100%;
}

.color-bar {
    width: 25px;
    height: 100%;
}

.color-bar.green { background-color: #147180; }
.color-bar.teal { background-color: #f19349; }
.color-bar.olive { background-color: #a02a3c; }
.color-bar.brown { background-color: #39393b; }

/* Utility Nav */
.utility-nav {
    display: flex;
    align-items: center;
    background-color: #147180;
    height: 100%;
}

.utility-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease;
    white-space: nowrap;
}

.utility-link:first-child {
    border-left: none;
}

.utility-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.utility-link.proposal-btn {
    background-color: #f19349;
    font-weight: 600;
}

.utility-link.proposal-btn:hover {
    background-color: #a02a3c;
}

/* Social Icons - Navigation */
.social-icons {
    display: flex;
    align-items: center;
    background-color: #dd4435;
    padding: 0 15px;
    gap: 14px;
    height: 100%;
}

.social-icon {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    height: 70px;
}

.nav-item {
    position: relative;
    height: 100%;
}
.nav-item a{
    font-size: 12px;
    font-weight: 600;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #8b2332;
}

.nav-link.active {
    color: #8b2332;
}

.nav-link i.fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-top: 3px solid #8b2332;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: #f8f8f8;
    color: #8b2332;
    padding-left: 25px;
}

/* Search */
.nav-search {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding-left: 15px;
    border-left: 1px solid #ddd;
    height: 25px;
}

.search-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #8b2332;
}

/* Bottom Color Stripe */
.bottom-stripe {
    display: flex;
    height: 6px;
    width: 100%;
}

.stripe-segment {
    height: 100%;
}

.stripe-segment.dark-blue { 
    background-color: #147180; 
    flex: 1;
}
.stripe-segment.teal { 
    background-color: #4a9a9a; 
    flex: 1;
}
.stripe-segment.olive { 
    background-color: #8a9a5a; 
    flex: 1;
}
.stripe-segment.maroon { 
    background-color: #39393b; 
    flex: 1;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Navigation Page Responsive */
@media (max-width: 1100px) {
    .utility-link {
        padding: 0 12px;
        font-size: 12px;
    }

    .nav-link {
        padding: 0 10px;
        font-size: 13px;
    }

    .color-bar {
        width: 18px;
    }
}

@media (max-width: 900px) {
    .top-right-area {
        width: 100%;
        height: 40px;
    }

    .color-bars {
        display: none;
    }

    .utility-nav {
        flex: 1;
        justify-content: flex-end;
    }

    .main-header-row {
        height: auto;
        padding: 15px 20px;
        position: relative;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        height: auto;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        display: none;
        z-index: 999;
    }

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

    .nav-item {
        width: 100%;
        height: auto;
    }

    .nav-link {
        padding: 15px 20px;
        justify-content: space-between;
        border-bottom: 1px solid #eee;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        background: #f8f8f8;
        max-height: 0;
        overflow: hidden;
    }

    .nav-item.open .dropdown {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-search {
        display: none;
    }
}

@media (max-width: 600px) {
    .utility-link:not(.proposal-btn) {
        display: none;
    }

    .social-icons {
        gap: 10px;
        padding: 0 10px;
    }
}

.hero-section {
    position: relative;
    min-height: 250px;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.637);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Breadcrumb */
.breadcrumb {
    position: absolute;
    top: 30px;
    left: 60px;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.breadcrumb svg {
    display: inline-block;
    position: relative;
    top: 1px;
    margin: 0 8px;
}

/* Content with color bar */
.hero-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 40px;
}

/* Vertical Color Bar */
.color-bar-vertical {
    display: flex;
    flex-direction: column;
    width: 5px;
    height: 180px;
    flex-shrink: 0;
}

.color-bar-vertical .bar {
    flex: 1;
}

.color-bar-vertical .bar.blue { background-color: #1a4a6e; }
.color-bar-vertical .bar.teal { background-color: #4a9a9a; }
.color-bar-vertical .bar.olive { background-color: #f19349; }
.color-bar-vertical .bar.brown { background-color: #a02a3c; }

/* Text Content */
.text-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.section-label {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-heading {
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px;
        min-height: 250px;
    }

    .breadcrumb {
        left: 30px;
        top: 20px;
    }

    .hero-heading {
        font-size: 36px;
    }

    .color-bar-vertical {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .section-label {
        font-size: 10px;
    }
}
 /* Footer */
 footer {
    background-color: #39393b;
    color: #fff;
    padding: 0;
}

/* Top Footer Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 50px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 35px;
}

.footer-nav-row a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-nav-row a:hover {
    opacity: 0.7;
}

.footer-nav-row a i.fa-chevron-down {
    font-size: 10px;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 8px;
}

.footer-social-icon {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-social-icon:hover {
    opacity: 0.7;
}

/* Divider */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 50px;
}

/* Bottom Footer Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #fff;
}

.footer-bottom-left a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom-left a:hover {
    opacity: 0.7;
}

.footer-bottom-left .separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
}

/* Back to Top */
.back-to-top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
}

.back-to-top:hover {
    opacity: 0.7;
}

.back-to-top i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        gap: 25px;
        padding: 25px 30px;
    }

    .footer-social-icons {
        align-self: flex-start;
    }

    .footer-divider {
        margin: 0 30px;
    }

    .footer-bottom {
        padding: 20px 30px;
    }
}

@media (max-width: 768px) {
    .footer-nav-row {
        gap: 10px 20px;
    }

    .footer-nav-row a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom-left {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 20px;
    }

    .footer-divider {
        margin: 0 20px;
    }

    .footer-bottom {
        padding: 15px 20px;
    }

    .footer-bottom-left {
        font-size: 12px;
    }

    .footer-bottom-left .separator {
        margin: 0 5px;
    }
}

.about-section {
    display: flex;
    gap: 60px;
    padding: 80px 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Left Content */
.about-content {
    flex: 1;
    max-width: 700px;
    padding-top: 60px;
}

.about-heading {
    font-size: 34px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin-bottom: 20px;
}

.heading-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #147180, #147180);
    margin-bottom: 30px;
}

.about-text {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a5a7a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: #0d3d5c;
}

.about-link span {
    text-decoration: underline;
}

.link-icon {
    width: 16px;
    height: 16px;
    border: 2px solid #1a5a7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.3s ease;
}

.about-link:hover .link-icon {
    background-color: #1a5a7a;
    color: #fff;
}

/* Right Image Card */
.image-card {
    flex: 0 0 380px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.card-footer {
    background-color: #147180;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-footer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.card-footer a:hover {
    color: #ffffff;
}

.card-footer a i {
    font-size: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-section {
        padding: 50px 40px;
        gap: 40px;
    }

    .about-heading {
        font-size: 30px;
    }

    .image-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 900px) {
    .about-section {
        flex-direction: column;
        padding: 40px 30px;
    }

    .about-content {
        max-width: 100%;
    }

    .image-card {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

    .image-card img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 30px 20px;
    }

    .about-heading {
        font-size: 26px;
    }

    .about-text {
        font-size: 14px;
    }

    .image-card img {
        height: 250px;
    }
}
.leaders-section {
    background-color: #f5f5f5;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.leadership{
    background-color: #f5f5f5;  
}

.leaders-heading {
    
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
}

.leaders-divider {
    width: 100%;
    height: 1.5px;
    background-color: #147180;
    margin-bottom: 30px;
}

.leaders-text {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 25px;
    font-weight: 500;
}

.leaders-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0077a0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.leaders-link:hover {
    color: #005577;
}

.leaders-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.leaders-link:hover span {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .leaders-section {
        padding: 40px 30px;
    }

    .leaders-heading {
        font-size: 30px;
    }

    .leaders-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .leaders-section {
        padding: 30px 20px;
    }

    .leaders-heading {
        font-size: 26px;
    }
}
.service-text{
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 20px;
}
.service-text h1{
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    max-width: 100%;
    margin-bottom: 0;
}

.service-text ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-template-rows: repeat(8, auto);
    gap: 4px 10px;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    width: 550px;
    max-width: 100%;
}

.service-text ul li {
    font-size: 13px;
    color: #000000;
    padding: 1px 0;
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    word-wrap: break-word;
}

.service-text ul li::before {
    content: "•";
    color: #147180;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .service-text {
        padding: 30px 15px;
    }
    
    .service-text h1 {
        font-size: 16px;
        line-height: 1.4;
    }
    
    .service-text ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 12px;
        width: 100%;
        margin-top: 25px;
    }
    
    .service-text ul li {
        font-size: 12px;
        padding-left: 18px;
    }
}

@media (max-width: 480px) {
    .service-text {
        padding: 20px 15px;
    }
    
    .service-text h1 {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .service-text ul {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-flow: column;
        grid-template-rows: repeat(7, auto);
        gap: 6px 10px;
        width: 100%;
        margin-top: 20px;
    }
    
    .service-text ul li {
        font-size: 11px;
        padding-left: 16px;
        line-height: 1.4;
    }
}

/* Careers Section - Test.html */
.careers-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #ecf4f58e;
    position: relative;
    z-index: 1;
}

/* Left Side - Image */
.careers-image-wrapper {
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    position: relative;
}

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

/* Color Bar Strip */
.color-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 8px;
}

.color-strip .strip {
    height: 100%;
}

.color-strip .strip.teal {
    background-color: #147180;
    flex: 0 0 60px;
}

.color-strip .strip.light-gray {
    background-color: #f19349;
    flex: 1;
}

.color-strip .strip.dark-gray {
    background-color: #a02a3c;
    flex: 1;
}

/* Right Side - Content */
.careers-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.careers-headline {
    font-size: 24px;
    font-weight: 600;
    
    color: #1a2a3a;
    line-height: 1.5;
    margin-bottom: 20px;
}

.careers-text {
    font-size: 13.8px;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Buttons */
.careers-buttons {
    display: flex;
    gap: 20px;
}

.careers-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #147180;
    color: #fff;
    text-decoration: none;
    padding: 14px 35px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.careers-btn:hover {
    background-color: #007a96;
    transform: translateY(-2px);
}

.careers-btn span {
    transition: transform 0.3s ease;
}

.careers-btn:hover span {
    transform: translateX(4px);
}

/* Careers Section Responsive */
@media (max-width: 900px) {
    .careers-section {
        flex-direction: column;
        gap: 40px;
        padding: 60px 30px;
    }

    .careers-image-wrapper {
        width: 100%;
        max-width: 450px;
        height: 300px;
    }

    .careers-content {
        max-width: 100%;
        text-align: center;
    }

    .careers-buttons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .careers-section {
        padding: 50px 20px;
        margin-top: 100px;
    }

    .careers-headline {
        font-size: 22px;
    }

    .careers-text {
        font-size: 14px;
    }

    .careers-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .careers-btn {
        width: 100%;
        padding: 14px 30px;
    }

    .careers-image-wrapper {
        height: 280px;
    }
}

/* Clients Section - Test.html */
.clients-section {
    padding: 70px 40px;
    background-color: #ffffff;
}

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

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-label {
    font-size: 12px;
    font-weight: 600;
    color: #0088a0;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.clients-title {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a2a3a;
}

/* Logos Row */
.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 2px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 390px;
    max-height: 70px;
    object-fit: contain;
}

/* Clients Section Responsive */
@media (max-width: 900px) {
    .clients-section {
        padding: 60px 30px;
    }

    .clients-logos {
        gap: 35px;
    }

    .client-logo img {
        max-width: 110px;
        max-height: 45px;
    }
}

@media (max-width: 600px) {
    .clients-section {
        padding: 50px 20px;
    }

    .clients-title {
        font-size: 24px;
    }

    .clients-logos {
        gap: 25px;
    }

    .client-logo {
        padding: 10px 15px;
    }

    .client-logo img {
        max-width: 90px;
        max-height: 40px;
    }
}

/* Plant Hire Section */
.section-plant {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}
.pakhati{
    margin-top: 60px;
    margin-bottom: 60px;
}

.section-plant a {
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-plant a:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #147180;
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    padding: 20px 15px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10001;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 4px;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: #147180;
}

.modal-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-prev,
    .modal-next {
        padding: 15px 10px;
        font-size: 20px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
    
    .modal-counter {
        bottom: 20px;
        font-size: 16px;
        padding: 8px 16px;
    }
}

.section-plant img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .section-plant {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 40px;
        gap: 15px;
    }
    
    .section-plant img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section-plant {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 30px;
        gap: 15px;
    }
    
    .section-plant img {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .section-plant {
        grid-template-columns: 1fr;
        padding: 20px 20px;
        gap: 15px;
    }
    
    .section-plant img {
        height: 200px;
    }
}
 /* Slider Container - Full Width */
 .slider-section {
    width: 100%;
    position: relative;
}

/* Main Slider Container */
.slider-container {
    position: relative;
    width: 100%;
}

/* Slider Wrapper - Full Width */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slide - Full Width */
.slide {
    min-width: 100%;
    position: relative;
    height: 90vh;
    max-height: 500px;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.slide:hover .slide-image {
    transform: scale(1.05);
}

/* Slide Overlay */
.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
    padding: 80px 80px 100px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease;
}

.slide.active .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-tag {
    display: inline-block;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    width: 450px;
}

.slide-description {
    font-size: 14px;
    color: #fffcfc;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 25px;
    font-weight: 500;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0a0a0a;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-btn:hover {
    background: #00b4d8;
    color: #fff;
    transform: translateX(5px);
}

.slide-btn i {
    transition: transform 0.3s ease;
}

.slide-btn:hover i {
    transform: translateX(5px);
}

/* Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    width: 0%;
    transition: width 0.1s linear;
    z-index: 10;
}

/* Slide Counter */
.slide-counter {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}

.slide-counter .current {
    color: #00b4d8;
    font-weight: 700;
}

/* Dots Navigation - Right Side */
.slider-dots {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

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

.dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00b4d8;
}

.dot.active::before {
    border-color: #00b4d8;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Navigation Buttons - Bottom */
.slider-nav-bottom {
    position: absolute;
    bottom: 30px;
    right: 80px;
    display: flex;
    gap: 5px;
    z-index: 10;
}

.nav-btn {
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.nav-btn i {
    font-size: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #00b4d8;
    border-color: #00b4d8;
    color: #fff;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .slide {
        height: 80vh;
        max-height: 550px;
    }

    .slide-title {
        font-size: 28px;
        width: 270px;
    }

    .slide-overlay {
        padding: 60px 50px 80px;
    }

    .slider-dots {
        gap: 12px;
        right: 20px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }

    .slider-nav-bottom {
        right: 50px;
        bottom: 25px;
    }
}

@media (max-width: 768px) {
    .slide {
        height: 70vh;
        max-height: 500px;
    }

    .slide-overlay {
        padding: 40px 30px 70px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-description {
        font-size: 14px;
        display: none;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }

    .nav-btn i {
        font-size: 10px;
    }

    .slider-nav-bottom {
        right: 30px;
        bottom: 20px;
    }

    .slider-dots {
        right: 15px;
    }

    .slide-counter {
        top: 15px;
        right: 15px;
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 60vh;
        max-height: 400px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .slide-overlay {
        padding: 30px 20px 60px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .nav-btn i {
        font-size: 10px;
    }

    .slider-nav-bottom {
        right: 20px;
        bottom: 15px;
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .slider-dots {
        gap: 10px;
        right: 10px;
    }
}
.slide-subtitle {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
    width: fit-content;
    padding: 8px 8px 8px 12px;
    position: relative;
    display: inline-block;
    background-color: #0077a0;
    transform: skewX(-15deg);
    margin-left: 20px;
}

.slide-subtitle::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 0;
    width: 12px;
    height: 100%;
    background-color: #e8943a;
    transform: skewX(0deg);
}

.slide-subtitle span {
    display: inline-block;
    transform: skewX(15deg);
}
.featured-projects {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 60px;
}

/* Left Side - Image Section */
.projects-left {
    flex: 1;
    max-width: 55%;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-label-1 {
    font-size: 12px;
    font-weight: 600;
    color: #0077a0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-arrows {
    display: flex;
    gap: 5px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    color: #0077a0;
}

.nav-arrow.disabled {
    color: #ccc;
    cursor: not-allowed;
}

/* Image Slider */
.image-slider {
    position: relative;
    overflow: hidden;
}

.image-track {
    display: flex;
    transition: transform 0.5s ease;
}

.project-image-wrapper {
    min-width: 100%;
    position: relative;
}

.project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-size: 12px;
    padding: 30px 15px 15px;
    text-align: right;
}

/* Right Side - Content Section */
.projects-right {
    flex: 1;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.projects-quote {
    font-size: 25px;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 40px;
}

.projects-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.projects-counter {
    font-size: 14px;
    color: #666;
}

.projects-counter .current {
    font-weight: 600;
    color: #333;
}

.see-all-link {
    font-size: 14px;
    color: #0077a0;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.see-all-link:hover {
    color: #005577;
}

.see-all-link span {
    transition: transform 0.3s ease;
}

.see-all-link:hover span {
    transform: translateX(5px);
}

/* Project Details */
.project-details {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.project-details.changing {
    opacity: 0;
    transform: translateY(10px);
}

.project-title {
    
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 10px;
}

.project-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-location {
    font-size: 10px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-size {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.project-size sup {
    font-size: 10px;
}

/* Left Border Accent */
.featured-projects::before {
    content: '';
    position: absolute;
    left: 0;
    top: 60px;
    bottom: 60px;
    width: 4px;
    background: linear-gradient(to bottom, #0077a0, #00a0a0);
}

.featured-projects {
    position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-projects {
        flex-direction: column;
        gap: 40px;
    }

    .projects-left,
    .projects-right {
        max-width: 100%;
    }

    .projects-quote {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .featured-projects {
        padding: 40px 20px;
    }

    .project-image {
        height: 300px;
    }

    .projects-quote {
        font-size: 20px;
    }

    .project-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .projects-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .project-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}
/* ========================================
   OUR SERVICES SECTION - Fresh Start
   ======================================== */
   .our-services {
    margin: 60px 0;
}

/* Header */
.our-services-header {
    background: linear-gradient(135deg, #147180 0%, #147180 40%, #39393b 100%);
    padding: 50px 80px 180px;
}

.our-services-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 0 40px;
}

.our-services-title {
    font-size: 26px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    max-width: 520px;
    margin: 0;
}

.our-services-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.our-services-link:hover {
    color: #7eeaff;
}

.our-services-link span {
    transition: transform 0.3s ease;
}

.our-services-link:hover span {
    transform: translateX(5px);
}

/* Cards Grid */
.our-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: -120px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

/* Card */
.our-services-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.our-services-card-img {
    height: 200px;
    overflow: hidden;
}

.our-services-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.our-services-card:hover .our-services-card-img img {
    transform: scale(1.05);
}

.our-services-card-body {
    padding: 15px;
}

.our-services-card-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0;
}

/* ========================================
   RESPONSIVE - Our Services
   ======================================== */
@media (max-width: 1100px) {
    .our-services-header {
        padding: 40px 40px 160px;
    }

    .our-services-grid {
        padding: 0 30px;
        margin-top: -100px;
    }

    .our-services-title {
        font-size: 24px;
    }
}

@media (max-width: 900px) {
    .our-services-header {
        padding: 35px 30px 140px;
    }

    .our-services-header-inner {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .our-services-title {
        max-width: 100%;
    }

    .our-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
        margin-top: -80px;
    }

    .our-services-card-img {
        height: 180px;
    }

    .our-services-card-body h3 {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .our-services-header {
        padding: 30px 20px 120px;
    }

    .our-services-title {
        font-size: 20px;
    }

    .our-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
        margin-top: -60px;
    }

    .our-services-card-img {
        height: 160px;
    }

    .our-services-card-body {
        padding: 12px 15px;
    }

    .our-services-card-body h3 {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .our-services-header {
        padding: 25px 15px 100px;
    }

    .our-services-title {
        font-size: 18px;
    }

    .our-services-link {
        font-size: 14px;
    }

    .our-services-grid {
        padding: 0 10px;
        gap: 12px;
        margin-top: -50px;
    }

    .our-services-card-img {
        height: 140px;
    }

    .our-services-card-body h3 {
        font-size: 12px;
    }
}
.services-section{
    margin-top: 90px;
    margin-bottom: 90px;
}
 /* Floating Buttons Container */
 .floating-buttons {
    position: fixed;
    right: 0;
    top: 85%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

/* Floating Button Base */
.floating-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    outline: none;
}

/* Call Button */
.floating-btn.call {
    background-color: #0088a0;
}

.floating-btn.call:hover {
    background-color: #006d82;
}

/* Feedback Button */
.floating-btn.feedback {
    background-color: #e8943a;
}

.floating-btn.feedback:hover {
    background-color: #d17f2a;
}

/* Hover Effect - Slide out label */
.floating-btn::before {
    content: attr(data-label);
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    background-color: inherit;
    color: #fff;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Pulse Animation for Call */
.floating-btn.call::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0088a0;
    border-radius: 0;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 600px) {
    .floating-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .floating-btn::before {
        display: none;
    }
    .floating-buttons{
        top: 65%; 
    }
}

/* Feedback Modal Overlay */
.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.feedback-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Feedback Form Container */
.feedback-form-container {
    position: fixed;
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    width: 380px;
    max-width: 90vw;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: right 0.4s ease;
    overflow: hidden;
}

.feedback-form-container.active {
    right: 20px;
}

/* Form Header */
.feedback-header {
    background-color: #0088a0;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.feedback-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.3s ease;
}

.feedback-close:hover {
    transform: rotate(90deg);
}

/* Form Body */
.feedback-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0088a0;
    box-shadow: 0 0 0 3px rgba(0, 136, 160, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Rating Stars */
.rating-group {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.rating-group input {
    display: none;
}

.rating-group label {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    margin-bottom: 0;
}

.rating-group label:hover,
.rating-group label:hover ~ label,
.rating-group input:checked ~ label {
    color: #f5a623;
}

.rating-group label:hover {
    transform: scale(1.2);
}

/* Submit Button */
.feedback-submit {
    width: 100%;
    padding: 14px 20px;
    background-color: #0088a0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.feedback-submit:hover {
    background-color: #006d82;
}

.feedback-submit:active {
    transform: scale(0.98);
}

/* Success Message */
.feedback-success {
    display: none;
    text-align: center;
    padding: 40px 25px;
}

.feedback-success.show {
    display: block;
}

.feedback-success i {
    font-size: 60px;
    color: #25D366;
    margin-bottom: 20px;
}

.feedback-success h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.feedback-success p {
    font-size: 14px;
    color: #666;
}

.feedback-form.hide {
    display: none;
}

/* Responsive for form */
@media (max-width: 450px) {
    .feedback-form-container {
        width: 100%;
        max-width: 100%;
        right: -100%;
        border-radius: 0;
    }

    .feedback-form-container.active {
        right: 0;
    }

    .feedback-body {
        padding: 20px;
    }
}
.electric-content {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 120px;
}

.taty {
    padding-bottom: 120px;
}

.electric-content img {
    width: 1000px;
    max-width: 100%;
}

.electric-motors {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* THIS WAS MISSING */
.electric-motors img {
    width: 1000px;
    max-width: 100%;
    height: auto;
}

.electric-conveyor {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.electric-conveyor img {
    width: 550px;
    max-width: 100%;
    height: auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .electric-content img,
    .electric-motors img {
        width: 90%;
    }

    .electric-conveyor img {
        width: 45%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .electric-content {
        padding-top: 60px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .taty {
        padding-bottom: 60px;
    }

    .electric-motors {
        padding-top: 20px;
    }

    .electric-motors img {
        width: 100%;
    }

    .electric-conveyor {
        flex-direction: column;
        padding-top: 20px;
        gap: 15px;
    }

    .electric-conveyor img {
        width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .electric-content {
        padding-top: 40px;
    }

    .taty {
        padding-bottom: 40px;
    }
}