@import url('https://fonts.googleapis.com/css2?family=Bonheur+Royale&family=Quintessential&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barriecito&family=Bonheur+Royale&family=Quintessential&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barriecito&family=Barrio&family=Bonheur+Royale&family=Quintessential&display=swap');
.logo-icon {
    display: none;
}

.hamburger {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
    scroll-behavior: smooth;
}

header {
    background: rgba(66, 66, 66, 0.95);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: Bonheur Royale, cursive;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-family: Barriecito, system-ui;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #94a3b8;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Enhanced Hero Section with Video Background */
.hero {
    position: relative;
    color: #fff;
    padding: 180px 2rem 100px;
    margin-top: 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(51, 65, 85, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    animation: fadeUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #e2e8f0;
}

.hero-cta {
    display: inline-block;
    background: #475569;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 2rem;
    transition: all 0.3s;
    font-weight: 600;
    font-family: Barriecito, system-ui;
    border: 2px solid #475569;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta:hover {
    background: transparent;
    color: #fff;
    border-color: #94a3b8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Redesigned About Section */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: #475569;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section-subtitle {
    color: #64748b;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 700px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    line-height: 1.8;
    color: #475569;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Single Expert Team Highlight */
.expert-team-highlight {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #475569;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    cursor: pointer;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-team-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/team.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.expert-team-highlight:hover::before {
    opacity: 0.1;
}

.expert-team-highlight h4 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.expert-team-highlight p {
    color: #64748b;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.expert-team-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.about-image {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Redesigned Services Section with Carousel - FIXED */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.services-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.services-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(33.333% - 1.34rem);
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:nth-child(1)::before {
    background-image: url('../images/soft.jpg');
}

.service-card:nth-child(2)::before {
    background-image: url('../images/support.jpg');
}

.service-card:nth-child(3)::before {
    background-image: url('../images/cyber.jpg');
}

.service-card:nth-child(4)::before {
    background-image: url('../images/cyber.jpg');
}

.service-card:nth-child(5)::before {
    background-image: url('../images/cloud.jpg');
}

.service-card:nth-child(6)::before {
    background-image: url('../images/network.jpg');
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #475569;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #64748b;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #475569;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #334155;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #475569;
    transform: scale(1.2);
}

/* Service Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    padding: 3rem;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-overlay.active .service-modal {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #1a1a1a;
}

.modal-icon {
    font-size: 3rem;
    color: #475569;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.modal-description {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-features {
    list-style: none;
    margin-bottom: 2rem;
}

.modal-features li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.modal-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #475569;
    font-weight: bold;
}

.modal-cta {
    display: inline-block;
    background: #475569;
    color: #fff;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 500;
    border: 2px solid #475569;
}

.modal-cta:hover {
    background: transparent;
    color: #475569;
}

/* Redesigned Projects Section with Carousel - FIXED */
.projects-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.projects-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.projects-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 1px solid #e2e8f0;
    flex: 0 0 calc(33.333% - 1.34rem);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.project-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.project-client {
    color: #475569;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tag {
    background: #e2e8f0;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #475569;
    transition: all 0.3s;
}

.project-card:hover .tag {
    background: #475569;
    color: white;
}

/* Enhanced Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #475569;
    margin-right: 1rem;
    width: 30px;
}

.contact-text h4 {
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #64748b;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #475569;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #475569;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.optional {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: normal;
}

.submit-btn {
    background: #475569;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #334155;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

/* Redesigned Footer */
footer {
    background: #1a1a1a;
    color: #94a3b8;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 2rem;
}

.footer-left {
    text-align: left;
}

.footer-center {
    text-align: center;
}

.footer-right {
    text-align: right;
}

footer p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.95rem;
}

.footer-tagline {
    font-size: 1.1rem;
    color: #cbd5e1;
}

.footer-contact {
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-card,
    .project-card {
        flex: 0 0 calc(33.333% - 1.34rem);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        height: 300px;
        order: -1;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .service-card,
    .project-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .project-card {
        flex: 0 0 100%;
    }
    
    .hero {
        padding: 150px 1.5rem 80px;
    }
    
    .service-card,
    .project-card {
        padding: 1.5rem;
    }
    
    .service-modal {
        padding: 2rem;
        width: 95%;
    }
}

@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .expert-team-highlight {
        padding: 1.5rem;
        height: 180px;
    }
}

@media (max-width: 768px) {
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0 !important; /* This hides the text */
    text-indent: -9999px; /* Extra safety to hide text */
    overflow: hidden;
}          

.logo-icon {
    display: block;            
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 2;
}



nav {
    flex-direction: row;
    justify-content: space-between;
}

.nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    background: rgba(66, 66, 66, 0.98);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
}

@media (max-width: 480px) {     

.logo-icon {
    width: 25px;
    height: 25px;
}
}