* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Top Utility Bar */
.top-bar {
    background: #1e5aa8;
    padding: 8px 0;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    font-size: 13px;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-family: 'montserrat';
    font-weight: 600;
    font-size: 13px;
}

.top-bar a:hover {
    color: #e00c0c;
}

.language-selector {
    display: flex;
    gap: 5px;
    font-weight: 600;
}

.language-selector span {
    cursor: pointer;
    color: #333;
}

.language-selector span.active {
    color: #e00c0c;
}

/* Main Header */
.main-header {
    background-color: #fff;

    padding: 15px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #e00c0c;
    font-style: italic;
}

.logo-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    color: #e00c0c;
    text-transform: uppercase;
    margin-top: -5px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
    font-family: 'montserrat';
}

.main-nav a:hover {
    color: #e00c0c;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}

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

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #e00c0c;
}

.dropdown.active .dropdown-content {
    display: block;
}

/* Ensure parent li has relative positioning */
.main-nav li {
    position: relative;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .top-bar-content {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        position: relative;
    }

    .logo {
        order: 1;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        color: #333;
        border-bottom: none;
        justify-content: space-between;
    }

    .main-nav a:hover {
        color: #e00c0c;
        background: #f8f8f8;
        padding-left: 10px;
    }

    /* Mobile Dropdown */
    .dropdown-content {
        position: static;
        display: none;
        background: #f8f8f8;
        box-shadow: none;
        margin: 0;
        width: 100%;
    }

    .dropdown-content a {
        padding: 12px 20px;
        font-size: 14px;
        color: #666;
        border-left: 3px solid transparent;
    }

    .dropdown-content a:hover {
        background: #e00c0c;
        color: white;
        border-left-color: #fff;
    }

    .main-nav li.dropdown-active .dropdown-content {
        display: block;
    }

    /* Mobile dropdown arrow rotation */
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }

    .main-nav li.dropdown-active .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Close button in mobile menu */
    .mobile-close {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        padding: 5px;
    }

    .mobile-close:hover {
        color: #e00c0c;
    }

    /* Show close button only on mobile when menu is active */
    .main-nav.active .mobile-close {
        display: block;
        display: none;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }

    .main-nav {
        width: 100%;
        right: -100%;
    }

    .header-content {
        padding: 0 15px;
    }

    .top-bar-content {
        padding: 0 15px;
        gap: 15px;
    }

    .button-group {
        gap: 10px;
        padding: 0 10px;
    }

    .btn {
        font-size: 13px;
        padding: 10px 12px;
        max-width: 140px;
    }
}


input[type=text],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}

input[type=submit] {
    background-color: #e00c0c;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

input[type=submit]:hover {
    background-color: #e00c0c;
}

.contact-section {
    background-color: #efefef;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
}

.taat {
    width: 450px;
}

/* Name fields side by side */
.name-fields {
    display: flex;
    gap: 15px;
    margin-bottom: 16px;
}

.name-field {
    flex: 1;
}

.name-field label {
    display: block;
    margin-bottom: 6px;
    font-family: 'montserrat';
    font-weight: 600;
    font-size: 13px;
}

.name-field input[type=text] {
    margin-bottom: 0;
}

.contact-header {
    margin-bottom: 20px;
    font-family: 'montserrat';
    font-weight: 800;
    text-transform: uppercase;
}

/* Style all form labels consistently */
form label {
    display: block;
    margin-bottom: 6px;
    font-family: 'montserrat';
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

/* Contact info styling */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

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

.contect-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;

}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: #e00c0c;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    font-family: 'montserrat';
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    font-weight: 500
}

.contact-text a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    color: #e00c0c;
}

.contact-details {
    padding-left: 60px;
    padding-top: 40px;
}

/* Responsive styles for contact section */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .taat {
        width: 100%;
    }

    .contact-details {
        padding-left: 0;
        padding-top: 0;
    }

    .name-fields {
        flex-direction: column;
        gap: 0;
    }

    .name-field {
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 30px 15px;
    }

    .contact-section {
        padding: 0 10px;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }

    .contact-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-icon {
        margin-top: 3px;
    }
}

.breadcrumb-section {
    background-color: #efefef;
    background-image: url('images/services/7.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no repeat;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.733);
}

.breadcrumb-section-blast {
    background-color: #efefef;
    background-image: url('images/services/1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no repeat;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.705);
}

.breadcrumb-section-borehole {
    background-color: #efefef;
    background-image: url('images/services/3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no repeat;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.671);
}

.breadcrumb-section-about {
    background-color: #efefef;
    background-image: url('images/projects/2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no repeat;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.644);
}

.bread-header {
    font-family: 'montserrat';
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 5px;
    color: #fff;
    display: inline-block;
    border-bottom: 3px solid #e00c0c;
    margin-bottom: 10px;
}

.breadcrumb-content {
    margin: 0 auto;
    max-width: 1200px;
    padding-top: 60px;
    font-family: 'montserrat';
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 60px;
    color: #fff;

}

@media (max-width: 768px) {
    .breadcrumb-content {
        padding-left: 20px;
    }
}

.breadcrumb-content a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'montserrat';
    font-size: 14px;
    font-weight: 500;

}

@media (max-width: 768px) {
    .breadcrumb-content a {
        text-align: center;
    }
}

/* Footer contact styling */
.footer-contact {
    list-style: none !important;
    padding: 0 !important;
    margin: 20px 0 !important;
}

.footer-contact li.contact-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
    list-style: none !important;
}

.footer-contact svg.contact-icon {
    width: 20px !important;
    height: 20px !important;
    fill: #e00c0c !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
    display: inline-block !important;
}

.footer-contact .contact-text {
    font-family: 'montserrat' !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: #000 !important;
    font-weight: 500 !important;
    flex: 1 !important;
}

.footer-contact .contact-text a {
    color: #000 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
}

.footer-contact .contact-text a:hover {
    color: #e00c0c !important;
}

/* Footer Styles - matching your design system */
footer {
    color: #000000;
    padding: 60px 0 20px;
    margin: 0;
    width: 100%;
    border-top: 3px solid #e00c0c;
    background-image: url('images/backg.png');
    background-size: cover;
    box-shadow: inset 0 0 0 2000px rgba(255, 255, 255, 0.89);
    background-position: center;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-column a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}



.footer-copyright {
    font-size: 13px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.footer-copyright a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #45a049;
}



@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}



.social-link:hover {
    background: #4CAF50;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    border-color: #4CAF50;
}

.bottom-links {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.589);
    width: 100%;
    justify-content: center;
}

.bottom-links a {
    color: #909090;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.bottom-links a::after {
    content: '|';
    position: absolute;
    right: -15px;
    color: rgba(255, 255, 255, 0.2);
}

.bottom-links a:last-child::after {
    display: none;
}

.bottom-links a:hover {
    color: #4CAF50;
}

/* Contact Items Alignment Styles */
.footer-contact {
    font-size: 13px;
}

.footer-contact li {
    list-style: none;
}

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

.contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    fill: #000000;
}

.contact-text {
    flex: 1;
    line-height: 1.5;
    font-size: 13px;
    color: #000000;
}

.contact-text a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 13px;
}

.contact-text a:hover {
    color: #4CAF50;
    transform: none;
}

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

    .footer-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-container {
        padding: 0 20px;
    }

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

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .bottom-links a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-column h3 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-column a {
        font-size: 12px;
    }



    .social-link {
        width: 36px;
        height: 36px;
    }

    .bottom-links {
        gap: 15px;
    }

    .bottom-links a {
        font-size: 12px;
    }
}

.about-section {
    background-color: #efefef;
    padding-top: 60px;
}

@media (max-width: 768px) {
    .about-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.about-content p {
    font-weight: 500;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-content p {
    font-size: 13px;
    font-family: 'montserrat';
    line-height: 1.5;
    margin: 0;
}

/* Column styles for about section */
.col-md-9 {
    flex: 0 0 70%;
}

.col-md-3 {
    flex: 0 0 25%;
}

.col-md-3 img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* Responsive design for about section */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .col-md-9,
    .col-md-3 {
        flex: 1 1 100%;
    }
}

.corporate-state {
    background-color: #efefef;
    padding-bottom: 20px;
}

.corporate-content {
    margin: 0 auto;
    max-width: 900px;
    padding: 60px 20px;


}

.corp-card {
    padding: 30px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #000000;
}

.corp-card h3 {
    text-align: center;
    margin-bottom: 10px;
    color: #e00c0c;
    font-family: 'montserrat';
}

.corp-card p {
    text-align: center;
    font-size: 13px;
    font-family: 'montserrat';
    line-height: 1.5;
}

.corp-cardx {
    padding: 30px;
    align-items: center;
    justify-content: center;
}

.corp-cardx h3 {
    text-align: center;
    margin-bottom: 10px;
    font-family: 'montserrat';
    color: #e00c0c;
}

.corp-cardx p {
    text-align: center;
    font-size: 13px;
    font-family: 'montserrat';
    line-height: 1.5;
}

.corp-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* Read More Button Styles */
.corp-card .read-more-btn,
.corp-cardx .read-more-btn {
    background-color: #e00c0c !important;
    color: white !important;
    border: none !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-family: 'montserrat' !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    margin-top: 10px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.corp-card .read-more-btn:hover,
.corp-cardx .read-more-btn:hover {
    background-color: #a00d25 !important;
    transform: translateY(-1px) !important;
}

.corp-card .read-more-btn:active,
.corp-cardx .read-more-btn:active {
    transform: translateY(0) !important;
}

/* Hidden text initially hidden */
.corp-card .hidden-text,
.corp-cardx .hidden-text {
    display: none !important;
    color: #000 !important;
    font-family: 'montserrat' !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

/* Visible text styling */
.corp-card .visible-text,
.corp-cardx .visible-text {
    color: #000 !important;
    font-family: 'montserrat' !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

/* Smooth transition for text appearance */
.corp-card .visible-text,
.corp-card .hidden-text,
.corp-cardx .visible-text,
.corp-cardx .hidden-text {
    transition: opacity 0.3s ease !important;
}

/* Method 1: Checkbox Toggle */
.method1 {
    position: relative;
}

/* Image and H2 side by side */
.method1 .header-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e00c0c;
}

.method1 img {
    flex-shrink: 0;
}

.method1 h2 {
    margin: 0;
    font-family: 'montserrat';
    font-weight: 700;
    color: #e00c0c;
    font-size: 18px;
}

.method1 input[type="checkbox"] {
    display: none;
}

.method1 .short-text {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 13px;
    font-family: 'montserrat';
    font-weight: 500;
}

.method1 .full-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    line-height: 1.6;
    font-size: 13px;
    font-family: 'montserrat';
    font-weight: 500;
}

.method1 input[type="checkbox"]:checked~.full-text {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.method1 .toggle-btn {
    display: inline-block;
    border: 2px solid #e00c0c;
    color: black;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    margin-top: 10px;
}

.method1 .toggle-btn:hover {
    background: #45a049;
}

.method1 input[type="checkbox"]:checked~.toggle-btn::after {
    content: " Less";
}

.method1 input[type="checkbox"]:not(:checked)~.toggle-btn::after {
    content: " More";
}

.tangi {
    background: white;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.services-section {
    background-color: #efefef;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .services-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.services-content {
    margin: 0 auto;
    max-width: 1200px;
}

.services-content h2 {
    font-family: 'montserrat';
    text-transform: uppercase;
    font-size: 23px;
    font-weight: 800;
    margin-bottom: 15px;
}

.services-content p {
    font-size: 13px;
    font-family: 'montserrat';
    font-weight: 500;
    line-height: 1.5;
}

.services-content li {
    font-size: 13px;
    font-family: 'montserrat';

}

.services-content ul {
    padding-left: 20px;
    margin-top: 20px;

}

/* Images section styling */
.images-section {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: space-between;
}

.images-section img {
    flex: 1;
    height: 300px;
    object-fit: cover;

    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.images-section img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.images-section img:active {
    transform: translateY(-2px);
}

/* Image Modal/Lightbox */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal-caption {
    color: white;
    font-family: 'montserrat';
    font-size: 16px;
    margin-top: 15px;
    text-align: center;
}

/* Responsive design for images */
@media (max-width: 768px) {
    .images-section {
        flex-direction: column;
        gap: 15px;
    }

    .images-section img {
        height: 150px;
    }

    .modal-content {
        width: 95%;
        padding: 10px;
    }

    .close-modal {
        top: 5px;
        right: 15px;
        font-size: 28px;
    }
}

.ibox {
    clear: both;
    margin-bottom: 25px;
    margin-top: 0;
    padding: 0;
}

.ibox.collapsed .ibox-content {
    display: none;
}

.ibox.collapsed .fa.fa-chevron-up:before {
    content: "\f078";
}

.ibox.collapsed .fa.fa-chevron-down:before {
    content: "\f077";
}

.ibox:after,
.ibox:before {
    display: table;
}

.ibox-title {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #ffffff;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 3px 0 0;
    color: inherit;
    margin-bottom: 0;
    padding: 14px 15px 7px;
    min-height: 48px;
}

.ibox-content {
    background-color: #ffffff;
    color: inherit;
    padding: 15px 20px 20px 20px;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 0;
}

.ibox-footer {
    color: inherit;
    border-top: 1px solid #e7eaec;
    font-size: 90%;
    background: #ffffff;
    padding: 10px 15px;
}

/* Equipment section container styling */
.images-equipment {
    padding: 40px 0;
}

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

.images-equipment .row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.images-equipment .col-md-3 {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

/* Enhanced product box styling */
.product-box {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-imitation {
    background: linear-gradient(135deg, #f8f8f9 0%, #e9ecef 100%);
    border-radius: 0;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;

    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-imitation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-desc {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-price {
    border-radius: 0 0 8px 0;
    font-family: 'montserrat';
    font-weight: 700;
}

.product-name {
    font-family: 'montserrat';
    text-decoration: none;
}

.small.text-muted {
    font-family: 'montserrat';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.small.m-t-xs {
    font-family: 'montserrat';
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.btn.btn-outline.btn-primary {
    border: 2px solid #e00c0c;
    color: #e00c0c;
    background: transparent;
    font-family: 'montserrat';
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.btn.btn-outline.btn-primary:hover {
    background: #e00c0c;
    color: white;
    transform: translateY(-1px);
}

/* Responsive design for product boxes */
@media (max-width: 1200px) {
    .images-equipment .col-md-3 {
        min-width: 220px;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .images-equipment .row {
        flex-direction: column;
        gap: 15px;
    }

    .images-equipment .col-md-3 {
        max-width: 100%;
        min-width: auto;
    }

    .product-imitation {
        padding: 10px 0;
    }
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.project-card {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

/* Individual card backgrounds */
.card-water {
    background-image: url('images/services/5.jpg');
    background-size: cover;
    object-fit: cover;
}

.card-road {
    background-image: url('images/equipment/12.jpg');
    background-size: cover;
}

.card-bridge {
    background-image: url('images/services/7.jpg');
}

.equipment {
    background-image: url('images/equipment/3.jpg');
}

.equipment1 {
    background-image: url('images/equipment/4.jpg');
}

.equipment2 {
    background-image: url('images/services/10.jpg');
}

.equipment3 {
    background-image: url('images/services/2.jpg');
}

.equipment4 {
    background-image: url('images/equipment/6.jpg');
}

.equipment5 {
    background-image: url('images/equipment/8.jpg');
}

.equipment6 {
    background-image: url('images/equipment/9.jpg');
}

.equipment7 {
    background-image: url('images/equipment/10.jpg');
}

.equipment8 {
    background-image: url('images/equipment/11.jpg');
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    z-index: 2;
    color: white;
}

.project-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.view-details {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.view-details:hover {
    transform: translateX(5px);
}

.view-details span {
    margin-right: 8px;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .project-card {
        height: 300px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    z-index: 1;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Background images - using placeholder images that represent industrial/drilling equipment */
.slide1 {
    background-image: url('images/slider/2.jpg')
}

.slide9 {
    background-image: url('images/slider/10.jpg');
}

.slide2 {
    background-image: url('images/slider/6.jpg')
}

.slide3 {
    background-image: url('images/slider/5.jpg');
}

.slide4 {
    background-image: url('images/services/3.jpg');
}

.slide5 {
    background-image: url('images/slider/3.jpg');
}

.slide6 {
    background-image: url('images/slider/4.jpg');
}

.slide7 {
    background-image: url('images/slider/9.jpg');
}

.slide8 {
    background-image: url('images/slider/8.jpg');
}

.slide10 {
    background-image: url('images/services/serv3.jpg');
}

/* Gradient overlay - left to right, matching the drilling image */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.411);
    z-index: 1;
}

/* Additional diagonal gradient for depth matching the image */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(15, 30, 60, 0.4) 0%,
            rgba(30, 60, 120, 0.3) 30%,
            rgba(50, 100, 180, 0.2) 60%,
            rgba(80, 140, 220, 0.1) 80%,
            rgba(100, 150, 220, 0) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    padding: 80px;
    max-width: 700px;
    animation: slideInContent 1s ease-out;
}

.slider-text {
    font-family: 13px;
    font-family: 'montserrat';
    font-weight: 700;
}


@keyframes slideInContent {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide h1 {
    font-size: 45px;
    font-weight: 700;
    color: white !important;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'montserrat', sans-serif;
}

.slide p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'montserrat', sans-serif;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #e00c0c;
    color: #fff;
    border: 2px solid #e00c0c;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #e00c0c;
}

.btn-secondary {
    background: white;
    color: #e00c0c;
    border: 2px solid #ffffff;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.btn-secondary:hover {
    background: white;
    color: #e00c0c;
    transform: translateY(-2px);
}

.navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 90%;
}

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

.nav-dot.active {
    background: white;
    width: 24px;
    border-radius: 12px;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.arrow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 16px;
}

.arrow-nav:hover {
    background: rgba(224, 12, 12, 0.9);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(224, 12, 12, 0.4);
}

.arrow-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.prev {
    left: 30px;
}

.next {
    right: 40px;
}

@media (max-width: 768px) {
    .slide-content {
        padding: 40px 30px;
    }

    .slide-content h1 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 13px;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }


    .arrow-nav {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .arrow-nav svg {
        width: 20px;
        height: 20px;
    }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .button-group {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .btn {
        flex: 1;
        max-width: 150px;
        text-align: center;
    }
}

/* Progress bar */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    z-index: 11;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 0;
    transition: width 6s linear;
}

.progress-fill.active {
    width: 100%;
}

/* Loading fallback for images */
.slide {
    background-color: #1e3a5f;
}

.featured-section {
    background-color: #fff;
}

.featured-content {
    margin: 0 auto;
    max-width: 800px;
    padding-top: 60px;
    padding-bottom: 60px;

}

@media (max-width: 768px) {
    .featured-content {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.featured-content h3 {
    font-family: 'montserrat';
    font-size: 30px;
    text-align: center;
}

@media (max-width: 768px) {
    .featured-content h3 {
        font-size: 25px;
    }
}

.featured-content p {
    font-family: 'montserrat';
    font-size: 13px;
    margin-top: 15px;
    line-height: 1.5;
    font-style: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .featured-content p {
        font-size: 13px;
        font-weight: 500;
    }
}

.featured-content span {
    color: #e00c0c;
}

/* Header Products Section */
.header-products {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.header-products h3:first-child {
    font-family: 'montserrat';
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    position: relative;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .header-products h3:first-child {
        font-size: 16px;
    }
}

.header-products h3:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: #e00c0c;
}

.header-products h3:last-child {
    font-family: 'montserrat';
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    padding-right: 25px;
}

@media (max-width: 768px) {
    .header-products h3:last-child {
        font-size: 12px;
    }
}

.header-products h3:last-child::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.header-products h3:last-child:hover {
    color: #e00c0c;
}

.header-products h3:last-child:hover::after {
    transform: translateY(-50%) translateX(5px);
}

.products-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .products-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: transparent;
    transition: transform 0.3s ease;
    cursor: pointer;
    border-bottom: 6px solid #e00c0c;
}

.product-card:hover {
    transform: translateY(-10px);
}

.card-image-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50px, 100% 100%, 0 100%);
    transition: all 0.3s ease;
}

/* Individual card backgrounds */
.card-yellow {
    background-image: url('images/services/1.jpg');
    background-size: cover;
}

.card-lightblue {
    background-image: url('images/services/10.jpg');
    background-size: cover;
}

.card-white {
    background-image: url('images/services/7.jpg');
    background-size: cover;
    background-position: center;
}

.card-black {
    background-image: url('images/projects/1.jpg');
    background-size: cover;
    background-position: center;
}

.product-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    background-color: transparent;
}

/* Alternative styling for contain fit - use this class if you want the full image visible */
.product-image.contain-fit img {
    object-fit: contain;
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 85%;
}



.card-content {
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    margin-top: -1px;
}

.card-title {
    font-size: 16.5px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-family: 'montserrat';
}

.card-description {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
    font-weight: 400;
    font-family: 'montserrat';
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-description {
        font-size: 13px;
    }
}

/* Animation on hover */
.product-card:hover .card-image-container {
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 60px, 100% 100%, 0 100%);
}

/* Add subtle shadow to corner cut */
.card-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.1) 50%);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    pointer-events: none;
}

.solutions-section {
    margin-top: 90px;
    position: relative;
    margin-bottom: 60px;
}

.main-container {
    position: relative;
    width: 100%;
    height: 70vh;
    background-image: url('images/ctabackground.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
    width: 1200px;
    border-radius: 10px;
}

/* Rock texture overlay */
.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Yellow geometric lines */
.geometric-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}




.content-wrapper {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 350px 300px;
    gap: 10px;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    align-items: center;
}

/* Left section - Explore our solutions */
.explore-section {
    color: white;
}

.explore-section h1 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.explore-section p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
    font-family: 'montserrat';
}

/* Middle section - Global Partners */
.partners-section {
    background: #1e5aa8;
    padding: 20px 20px;
    border-radius: 0;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
    width: 280px;
}

.partners-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partners-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.partners-section h2 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.partners-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: 'montserrat';
    font-weight: 500;
}

.contact-btn {
    background: #FFf;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.contact-btn a {
    text-decoration: none;
    color: #000;
}

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

/* Right section - Drill Tooling Experts */
.experts-section {
    background: #e00c0c;
    padding: 20px 20px;
    border-radius: 0;
    position: absolute;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
    top: -80px;
    right: 180px;
    width: 280px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experts-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.experts-icon img {
    filter: brightness(0) invert(1);
}

.experts-icon svg {
    width: 30px;
    height: 30px;
    fill: #000;
}

.experts-section h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.experts-section p {
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 25px;
    font-family: 'montserrat';
    font-weight: 500;

}


.quote-btn {
    background: #fff;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
}

.quote-btn a {
    text-decoration: none;
    color: #000;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        width: 100%;
        max-width: 100%;
        margin: 0 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .explore-section h1 {
        font-size: 36px;
    }

    .experts-section {
        position: relative;
        top: 0;
        right: 0;
        margin: 30px auto 0;
        max-width: 350px;
    }

    .line-1,
    .line-2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-container {
        height: auto;
        min-height: auto;
        padding: 40px 20px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .content-wrapper {
        padding: 0;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .explore-section h1 {
        font-size: 28px;
        text-align: center;
    }

    .explore-section p {
        text-align: center;
        max-width: 100%;
        font-size: 16px;
        line-height: 1.7;
    }

    .partners-section {
        clip-path: none;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        position: relative;
        padding: 30px 20px;
    }

    .experts-section {
        clip-path: none;
        border-radius: 8px;
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0 0;
        position: relative;
        top: 0;
        right: 0;
        padding: 30px 20px;
        box-shadow: none;
    }

    .partners-section h2,
    .experts-section h2 {
        font-size: 18px;
        text-align: center;
    }

    .partners-section p,
    .experts-section p {
        font-size: 14px;
        text-align: center;
        line-height: 1.6;
    }

    .partners-icon,
    .experts-icon {
        margin: 0 auto 20px auto;
    }

    .contact-btn,
    .quote-btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        margin-top: 60px;
        margin-bottom: 40px;
    }

    .main-container {
        padding: 20px 0;
    }

    .content-wrapper {
        padding: 0 15px;
        gap: 15px;
    }

    .explore-section h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .explore-section p {
        font-size: 14px;
    }

    .partners-section,
    .experts-section {
        padding: 25px 15px;
        max-width: 100%;
    }

    .partners-section h2,
    .experts-section h2 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .partners-section p,
    .experts-section p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .partners-icon,
    .experts-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .partners-icon,
    .experts-icon {
        margin: 0 auto 15px auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners-icon img,
    .experts-icon img {
        width: 35px;
    }
}

.projects-section {
    margin-bottom: 60px;
}

.carousel-container {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-container h1 {
    text-align: center;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'montserrat';
}

@media (max-width: 768px) {
    .carousel-container h1 {
        font-size: 25px;
    }
}

.carousel-container p {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 300px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(310px * 18);
    /* 9 images × 2 for seamless loop */
}

.carousel-slide {
    min-width: 300px;
    height: 300px;
    margin: 0 5px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

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

/* First set of 9 images */
.carousel-slide[data-image="1"] {
    background-image: url('images/projects/1.jpg');
    /* Fallback color */
}

.carousel-slide[data-image="2"] {
    background-image: url('images/projects/2.jpg');

}

.carousel-slide[data-image="3"] {
    background-image: url('images/projects/3.jpg');

}

.carousel-slide[data-image="4"] {
    background-image: url('images/projects/4.jpg');

}

.carousel-slide[data-image="5"] {
    background-image: url('images/projects/5.jpg');

}

.carousel-slide[data-image="6"] {
    background-image: url('images/projects/6.jpg');

}

.carousel-slide[data-image="7"] {
    background-image: url('images/projects/7.jpg');

}

.carousel-slide[data-image="8"] {
    background-image: url('images/projects/8.jpg');

}

.carousel-slide[data-image="9"] {
    background-image: url('images/projects/9.jpg');

}

/* Display placeholder text when image fails to load */
.image-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0.8;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

/* Responsive design */
@media (max-width: 768px) {
    .carousel-slide {
        min-width: 200px;
        height: 200px;
    }

    .carousel-wrapper {
        height: 200px;
    }

    .carousel-track {
        width: calc(210px * 18);
    }

    .image-placeholder {
        font-size: 2em;
    }
}

/* Info text */
.info-text {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9em;
}

/* Clients Section Styling */
.clients-section {
    background-color: #fff;
    padding: 60px 0;
    margin-bottom: 50px;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.clients-header h1 {
    text-align: center;
    color: #000000;
    margin-bottom: 10px;
    font-family: 'montserrat';
}

@media (max-width: 768px) {
    .clients-header h1 {
        font-size: 25px;
    }
}

.clients-img {
    flex: 1;
    min-width: 150px;
    max-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.clients-img:hover {
    transform: translateY(-5px);

}

.clients-img img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;

    transition: filter 0.3s ease;
}

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

/* Responsive Design for Clients Section */
@media (max-width: 1024px) {
    .clients-container {
        justify-content: center;
        gap: 20px;
    }

    .clients-img {
        min-width: 140px;
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    .clients-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        justify-items: center;
    }

    .clients-img {
        width: 100%;
        max-width: 120px;
        min-width: 80px;
        height: 80px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 40px 0;
    }

    .clients-container {
        padding: 0 15px;
        gap: 10px;
    }

    .clients-img {
        max-width: 100px;
        min-width: 70px;
        height: 70px;
        padding: 8px;
    }

    .clients-img img {
        max-height: 50px;
    }
}

/* Floating Contact Buttons Container */
.floating-container {
    position: fixed;
    bottom: 250px;
    right: 1px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1px;
    align-items: flex-end;
}

/* Base button styles */
.floating-btn {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.floating-btn i {
    color: white;
    font-size: 18px;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* WhatsApp button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Call button */
.call-btn {
    background: linear-gradient(135deg, #e00c0c, #e00c0c);
    animation: pulse-call 2s infinite;
    animation-delay: 0.5s;
}

.call-btn:hover {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 25px rgba(238, 9, 121, 0.5);
}

.call-btn:hover i {
    transform: rotate(-15deg) scale(1.1);
}

/* Ripple effect */
.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-btn:hover::before {
    width: 120px;
    height: 120px;
}

/* Tooltips */
.floating-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.floating-btn:hover::after {
    opacity: 1;
    right: 85px;
}

/* Pulse animations */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-call {
    0% {
        box-shadow: 0 0 0 0 rgba(238, 9, 121, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(238, 9, 121, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(238, 9, 121, 0);
    }
}

/* Feedback Modal Styles */
.feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feedback-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.feedback-form-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feedback-modal.active .feedback-form-container {
    transform: scale(1);
}

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

.feedback-header h2 {
    color: #333;
    font-size: 24px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.close-feedback {
    width: 35px;
    height: 35px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.close-feedback i {
    color: #666;
    font-size: 18px;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.rating-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 28px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star:hover,
.star.active {
    color: #ffd700;
    transform: scale(1.1);
}

.submit-feedback {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.feedback-success {
    display: none;
    text-align: center;
    padding: 20px;
}

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

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

.feedback-success h3 {
    color: #333;
    margin-bottom: 10px;
}

.feedback-success p {
    color: #666;
}

/* Entrance animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-btn {
    animation: slideInRight 0.5s ease backwards;
}

.whatsapp-btn {
    animation-delay: 0.1s;
}

.call-btn {
    animation-delay: 0.2s;
}

.feedback-btn {
    animation-delay: 0.3s;
}

/* Feedback button */
.feedback-btn {
    background: linear-gradient(135deg, #1e5aa8, #1e5aa8);
    animation: pulse-feedback 2s infinite;
    animation-delay: 1s;
}

.feedback-btn:hover {
    background: linear-gradient(135deg, #1e3a5f, #1e3a5f);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
}

.feedback-btn:hover i {
    transform: rotate(10deg) scale(1.1);
}

@keyframes pulse-feedback {
    0% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-container {
        bottom: 160px;
        right: 5px;
        gap: 2px;
    }

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

    .floating-btn svg {
        width: 20px;
    }

    .floating-btn i {
        font-size: 22px;
    }

    .floating-btn::after {
        display: none;
    }

    .content {
        padding: 20px;
    }

    .content h1 {
        font-size: 1.8em;
    }

    .feedback-tab {
        font-size: 14px;
        padding: 12px 6px;
        letter-spacing: 1px;
    }
}

/* Ring animation for call button */
@keyframes ring {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.call-btn:hover i {
    animation: ring 1s ease-in-out;
}

/* Additional hover effects */
.floating-btn:active {
    transform: scale(0.95);
}

.about-section h1 {
    font-family: 'montserrat';
    margin-bottom: 20px;
}

.test-carousel-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

.test-cards-wrapper {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

.test-card {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    display: flex;
}

/* Hide cards that are not in the current view */
.test-card.hidden {
    display: none;
}

/* Collapsed card state - vertical layout */
.test-card.collapsed {
    width: 320px;
    height: 300px;
    flex-direction: column;
    background: #2a2a35;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px), 0 0);
}

/* Expanded card state - horizontal layout */
.test-card.expanded {
    width: 700px;
    height: 320px;
    flex-direction: row;
    background: #1e5aa8;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px), 0 0);
}

/* Image container for collapsed card */
.test-card.collapsed .test-card-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Image container for expanded card */
.test-card.expanded .test-card-image-container {
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.test-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.test-card.collapsed .test-card-image {
    opacity: 0.5;
}

.test-card.expanded .test-card-image {
    opacity: 0.9;
}

/* Brazilian flag for Petrobras card */
.brazil-flag {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 22px;
    z-index: 3;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.brazil-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content for collapsed card - overlay */
.test-card.collapsed .test-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(26, 26, 31, 1) 0%, rgba(26, 26, 31, 0.95) 70%, transparent 100%);
    z-index: 2;
}

/* Content for expanded card - side panel */
.test-card.expanded .test-card-content {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    position: relative;
    margin-top: 60px;
}

.test-card-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: all 0.4s ease;
    font-family: 'montserrat';
}

.test-card.expanded .test-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Hide description in collapsed state */
.test-card.collapsed .test-card-description {
    display: none;
}

/* Show description in expanded state */
.test-card.expanded .test-card-description {
    color: #b0b0c0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
    display: block;
    animation: fadeIn 0.6s ease 0.3s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide read more in collapsed state */
.test-card.collapsed .test-read-more-container {
    display: none;
}

/* Show read more in expanded state */
.test-card.expanded .test-read-more-container {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.6s ease 0.4s both;
}

.test-read-more-btn {
    width: 40px;
    height: 40px;
    background: #e00c0c;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.test-card:hover .test-read-more-btn {
    background: #e00c0c;
    transform: translateX(3px);
}

.test-arrow-icon {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.test-read-more-text {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
}

.test-read-more-text a {
    color: #fff;
    text-decoration: none;
}

/* Navigation buttons */
.test-navigation {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.test-nav-btn {
    width: 48px;
    height: 48px;
    background: #1e5aa8;
    border: none;
    border-radius: 6px;
    color: #9a9aa8;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.test-nav-btn:hover:not(:disabled) {
    background: #1e5aa8;
    color: #ffffff;
    transform: translateY(-2px);
}

.test-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive design */
/* Tablet devices */
@media (max-width: 1024px) {
    .test-carousel-container {
        max-width: 95%;
    }

    .test-card.expanded {
        width: 600px;
        height: 340px;
    }

    .test-card.collapsed {
        width: 280px;
        height: 280px;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {


    .test-cards-wrapper {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        margin-bottom: 30px;
    }

    .test-card.expanded {
        width: 100%;
        max-width: 500px;
        height: auto;
        flex-direction: column;
        clip-path: none;
        border-radius: 12px;
    }

    .test-card.collapsed {
        width: 100%;
        max-width: 400px;
        height: 250px;
        clip-path: none;
        border-radius: 12px;
    }

    .test-card.expanded .test-card-image-container {
        width: 100%;
        height: 200px;
    }

    .test-card.expanded .test-card-content {
        width: 100%;
        padding: 30px;
        margin-top: 0;
    }

    .test-card.collapsed .test-card-content {
        padding: 20px;
    }

    .test-card-title {
        font-size: 18px;
    }

    .test-card.expanded .test-card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .test-card.expanded .test-card-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .test-navigation {
        gap: 20px;
    }

    .test-nav-btn {
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

/* Mobile devices */
@media (max-width: 480px) {


    .test-cards-wrapper {
        gap: 15px;
        margin-bottom: 25px;
    }

    .test-card.expanded {
        max-width: 100%;
        border-radius: 8px;
    }

    .test-card.collapsed {
        max-width: 100%;
        height: 220px;
        border-radius: 8px;
    }

    .test-card.expanded .test-card-image-container {
        height: 180px;
    }

    .test-card.expanded .test-card-content {
        padding: 20px;
    }

    .test-card.collapsed .test-card-content {
        padding: 15px;
    }

    .test-card-title {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .test-card.expanded .test-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .test-card.expanded .test-card-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .test-read-more-btn {
        width: 35px;
        height: 35px;
    }

    .test-arrow-icon {
        font-size: 18px;
    }

    .test-read-more-text {
        font-size: 14px;
    }

    .brazil-flag {
        width: 28px;
        height: 20px;
        top: 15px;
        left: 15px;
    }

    .test-navigation {
        gap: 15px;
        margin-top: 20px;
    }

    .test-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* Very small devices */
@media (max-width: 360px) {


    .test-card.collapsed {
        height: 200px;
    }

    .test-card.expanded .test-card-image-container {
        height: 160px;
    }

    .test-card-title {
        font-size: 15px;
    }

    .test-card.expanded .test-card-title {
        font-size: 17px;
    }

    .test-card.expanded .test-card-description {
        font-size: 12px;
    }

    .test-nav-btn {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}

.carousel-title-cont {
    text-align: center;
    font-family: 'montserrat';
    font-size: 24px;
    font-weight: 800;
}

.tak {
    padding-top: 30px;
}