/* assets/css/index.css */

.fab.fa-twitter{
    font-family:sans-serif;
}
.fab.fa-twitter::before{
    content:"𝕏";
    font-size:1.2em;
}
:root {
    --primary: #000;
    --secondary: #5ad641;
    --accent: #d8008c;
    --light: #f8f9fa;
    --gray: #e9ecef;
    --dark-gray: #495057;
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --card-bg: #ffffff;
    --header-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--header-bg);
    border-bottom: 3px solid var(--primary);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 3px;
}

.logo span {
    color: var(--secondary);
}
.logo img {
    height: 50px;
    width: auto;
    vertical-align: middle;
    margin-right: 3px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}
.nav-links a.active {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
}


.cta-button {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    padding: 12px 24px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--primary);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: linear-gradient(rgba(27, 105, 37, 0.85), rgba(27, 105, 45, 0.9)), url('../../uploads/images/geobroz-workspace2.png') center/cover no-repeat;
    color: white;
}

.hero-content {
    flex: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e9e2d 100%);
    color: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 25px;
    background: var(--card-bg);
    border: 6px solid var(--primary);
    box-shadow: 12px 12px 0 var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 var(--primary);
    border-color: var(--secondary);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.service-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
}

.service-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 3px;
    background-color: var(--secondary);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.service-card:hover .service-title::after {
    transform: translateX(0);
}

.service-content {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

.process-steps::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100% );
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    cursor: pointer;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 20px;
    border: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    width: 100px;
    height: 100px;
    font-size: 40px;
    background: var(--secondary);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--primary);
}

.step-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 10px;
    color: var(--text-color);
}

.process-step:hover .step-description {
    max-height: 200px;
    opacity: 1;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    padding: 30px;
    background: var(--card-bg);
    border: 6px solid var(--primary);
    box-shadow: 12px 12px 0 var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    position: relative;
}

.team-card.featured {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.team-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 var(--primary);
}

.team-card.featured:hover {
    transform: translate(-5px, -5px) scale(1.05);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--gray);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 4px solid var(--primary);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.team-role {
    font-size: 18px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-skills {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.team-skills li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.team-skills li i {
    color: var(--secondary);
    margin-right: 10px;
}

.team-button {
    border: 3px solid var(--primary);
    background: var(--primary);
    color: var(--light);
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 100%;
    margin-top: 20px;
}

.team-button::before {
    content: "Contact";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-color: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.team-button:hover::before {
    transform: translateY(0);
}

.team-button:active {
    transform: scale(0.95);
}

/* Portfolio */
.portfolio {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-card {
    padding: 25px;
    background: var(--card-bg);
    border: 6px solid var(--primary);
    box-shadow: 12px 12px 0 var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.portfolio-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 var(--primary);
    border-color: var(--secondary);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background-color: var(--gray);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    margin-bottom: 20px;
}

.portfolio-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.portfolio-info p {
    font-size: 14px;
    color: var(--text-color);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    padding: 25px;
    background: var(--card-bg);
    border: 6px solid var(--primary);
    box-shadow: 12px 12px 0 var(--primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 var(--primary);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    color: var(--text-color);
}

.testimonial-content::before {
    font-size: 60px;
    color: var(--secondary);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gray);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--primary);
}

.testimonial-info h4 {
    font-weight: 700;
    color: var(--primary);
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 20%, var(--secondary) 100%);
    color: var(--light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.05"><polygon points="1000,100 1000,0 0,100"></polygon></svg>');
    background-size: cover;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-secondary {
    background-color: transparent;
    color: var(--light);
    border: 3px solid var(--light);
}

.cta-secondary:hover {
    background-color: var(--light);
    color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    color: #ff6b35;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    color: var(--secondary);
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--gray);
}

/* Contact Form */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.contact-card {
    width: 90%;
    max-width: 500px;
    padding: 30px;
    background: var(--card-bg);
    border: 6px solid var(--primary);
    box-shadow: 12px 12px 0 var(--primary);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary);
}

.contact-card .card__title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    position: relative;
    overflow: hidden;
}

.contact-card .card__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    height: 3px;
    background-color: var(--secondary);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.contact-card:hover .card__title::after {
    transform: translateX(0);
}

.contact-card .card__content {
    font-size: 16px;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-card .card__form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card .card__form input, 
.contact-card .card__form select,
.contact-card .card__form textarea {
    padding: 10px;
    border: 3px solid var(--primary);
    font-size: 16px;
    font-family: inherit;
    transition: transform 0.3s;
    width: calc(100% - 26px);
    background-color: var(--card-bg);
    color: var(--text-color);
}

.contact-card .card__form textarea {
    height: 120px;
    resize: vertical;
}

.contact-card .card__form input:focus,
.contact-card .card__form select:focus,
.contact-card .card__form textarea:focus {
    outline: none;
    transform: scale(1.05);
    background-color: var(--primary);
    color: var(--light);
}

.contact-card .card__button {
    border: 3px solid var(--primary);
    background: var(--primary);
    color: var(--light);
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 100%;
    height: 100%;
}

.contact-card .card__button::before {
    content: "Send";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-color: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.contact-card .card__button:hover::before {
    transform: translateY(0);
}

.contact-card .card__button:active {
    transform: scale(0.95);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: -10s;
}

.floating-element:nth-child(4) {
    bottom: 10%;
    right: 5%;
    animation-delay: -15s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 15px) rotate(5deg);
    }
    50% {
        transform: translate(20px, 5px) rotate(0deg);
    }
    75% {
        transform: translate(10px, 15px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    width: 160px;
    border-radius: 30px;
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

.scroll-to-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:  var(--secondary);
    opacity: 0;
    transition: opacity 0.3s, border-radius 0.3s;
    z-index: -1;
}

.scroll-to-top:hover::before {
    opacity: 1;
    border-radius: 30px;
}

.scroll-to-top i {
    transition: all 0.3s ease;
    position: absolute;
}

.scroll-to-top .hover-text {
    position: absolute;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
}

.scroll-to-top:hover i {
    opacity: 0;
    transform: translateX(-20px);
}

.scroll-to-top:hover .hover-text {
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation for the button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(45, 27, 105, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(227, 65, 16, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(45, 27, 105, 0);
    }
}

.scroll-to-top.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .scroll-to-top:hover {
        width: 140px;
    }
    
    .scroll-to-top .hover-text {
        font-size: 12px;
    }
}  

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .team-card.featured {
        transform: scale(1);
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }
    
    .cta-section p {
        font-size: 18px;
    }
    
    /* Hide stats section on mobile */
    .stats {
        display: none;
    }
    
    /* Adjust grid for mobile */
    .services-grid,
    .team-grid,
    .testimonial-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Adjust scroll to top button for mobile */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@keyframes glitch {
  0% {
    transform: translate(2px, 2px);
  }
  25% {
    transform: translate(-2px, -2px);
  }
  50% {
    transform: translate(-2px, 2px);
  }
  75% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(2px, 2px);
  }
}

.glitch {
  animation: glitch 0.3s infinite;
}

/* Success/Error Message Styles */
.success-message {
    background: var(--secondary);
    color: var(--primary);
    padding: 15px;
    margin-bottom: 20px;
    border: 3px solid var(--primary);
    font-weight: bold;
}

.error-message {
    background: #ff6b6b;
    color: white;
    padding: 15px;
    margin-bottom: 20px;
    border: 3px solid var(--primary);
}

.error-message ul {
    margin: 0;
    padding-left: 20px;
}