/* Global Styles */
:root {
    --primary-color: #FF00FF; /* Pure bright fuchsia */
    --secondary-color: #9400FF; /* Vivid violet */
    --gradient-start: #FF00FF; /* Bright fuchsia */
    --gradient-end: #9400FF; /* Vivid violet */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
.navbar {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    padding: 0.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

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

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-left: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0rem 1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: calc(100% - 2rem);
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
    color: var(--white);
    padding: 0 0.3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.contact-info .info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info .info-item i {
    width: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info .info-item:hover i {
    transform: scale(1.2);
}

.contact-info .info-item span {
    position: relative;
    transition: all 0.3s ease;
}

.contact-info .info-item:hover span {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.contact-info .info-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.contact-info .info-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
    padding-left: 0.5rem;
}

.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a.facebook {
    background-color: #1877f2;
}

.social-icons a.whatsapp {
    background-color: #25D366;
}

.social-icons a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    width: 52px;
    height: 45px;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.mobile-menu-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    margin-top: 3rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: rem;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section {
    margin-bottom: 4rem;
}

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

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 1rem;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Contact */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

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

/* Footer */
.footer {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 0.5rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-content h3 {
    margin-bottom: 0rem;
}

.footer-content h4 {
    margin-bottom: 0.5rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.quick-links p {
    margin-bottom: 0rem;
}

.quick-links h4 {
    margin-bottom: 0rem;
}

.footer-content i {
    width: 20px;
    margin-right: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-content a:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.footer-social a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
}

.footer-social a.facebook i {
    transform: translate(-45%, -50%); /* Slight adjustment for Facebook icon */
}

.footer-social a.whatsapp i {
    transform: translate(-50%, -50%);
}

.footer-social a.facebook {
    background-color: #1877f2;
}

.footer-social a.whatsapp {
    background-color: #25D366;
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 0rem;
    margin-top: 0.5rem;
    position: relative;
}

.footer-bottom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0.2)
    );
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .developer {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

/* Footer Contact List Animation */
.footer-contact-item {
    display: inline-block;
    transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.footer-contact-item:hover {
     transform: scale(1.02);
     cursor: text;
    /* color: #fff700;
    transform: scale(1.08) translateX(8px);
    box-shadow: 0 2px 18px 0 rgba(255, 247, 0, 0.25);
    text-shadow: 0 0 8px #fff700, 0 0 2px #fff; */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info {
        display: none;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 992px) {
    .contact-info .info-item:first-child {
        display: none;
    }
    
    .contact-info {
        display: flex;
        border-right: none;
        padding: 0;
    }

    .logo img {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        position: relative;
        padding-top: 0.5rem;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }

    .logo img {
        height: 60px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 8px;
        margin-top: 0.5rem;
    }

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

    .contact-info {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .contact-info .info-item {
        justify-content: center;
    }

    .social-icons {
        margin-top: 1rem;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
} 

/* Facebook & WhatsApp Button Hover Animation */
.contact-social-btn, .contact-social-btn:visited {
  transition: transform 0.8s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  will-change: transform, box-shadow;
}
.contact-social-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 4px #FF00FF33, 0 2px 16px 0 #9400FF33;
  filter: brightness(1.08);
}

/* Send Message Button Hover Animation */
.contact-send-btn {
  transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
  will-change: transform, box-shadow;
}
.contact-send-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 0 0 4px #FF00FF33, 0 2px 16px 0 #9400FF33;
  filter: brightness(1.08);
}

/* Map Hover Animation */
.contact-map-animate {
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.22s;
  will-change: transform, box-shadow;
}
.contact-map-animate:hover {
  transform: scale(1.025);
  box-shadow: 0 0 0 6px #FF00FF22, 0 4px 24px 0 #9400FF22;
} 

@keyframes flowing-left-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(30%); }
}

/* .flowing-images-row {
  animation: flowing-left-right 13s linear infinite;
}  */

/* FROM STRIP */

/* Flowing Images Strip Drag-to-Scroll Styles */
.flowing-images-row {
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    animation: flowing-left-right 13s linear infinite;
    animation-play-state: running;
}

.flowing-images-row::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome/Safari */
}

.flowing-images-row:active {
    cursor: grabbing;
}

.flowing-images-row.paused {
    animation-play-state: paused;
}

.flowing-images-row img {
    pointer-events: none; /* Prevent image drag interference */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    /* user-drag: none; */
}

/* Smooth scrolling container */
.flowing-images-container {
    overflow-x: scroll;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    will-change: scroll-position;
    scroll-snap-type: x proximity;
}

.flowing-images-container:active {
    cursor: grabbing;
}

.flowing-images-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar on Chrome/Safari */
}

.flowing-images-container {
    scrollbar-width: none; /* Hide scrollbar on Firefox */
    -ms-overflow-style: none; /* Hide scrollbar on IE/Edge */
} 