/* Base Styles with bright color palette */
:root {
    --color-primary: #f0249c;       /* Vibrant pink */
    --color-secondary: #33CCFF;     /* Bright blue */
    --color-accent-1: #FFCC00;      /* Bright yellow */
    --color-accent-2: #66FF99;      /* Bright green */
    --color-accent-3: #CC33FF;      /* Bright purple */
    --color-dark: #222222;
    --color-light: #FFFFFF;
    --color-gray: #F0F0F0;
    --color-text: #333333;
    
    --gradient-primary: linear-gradient(45deg, var(--color-primary), var(--color-accent-3));
    --gradient-secondary: linear-gradient(45deg, var(--color-secondary), var(--color-accent-2));
}



body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    scroll-behavior: smooth;
    background-color: #ffffff;
    color: var(--color-text);
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

/* Colorful Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
}

.colorful-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: var(--gradient-colorful);
    background-size: 400% 400%;
    opacity: 0.3;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; transform: rotate(0deg); }
    50% { background-position: 100% 50%; transform: rotate(3deg); }
    100% { background-position: 0% 50%; transform: rotate(0deg); }
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.4;
    z-index: -5;
}

.shape-1 {
    top: 10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background: var(--color-primary);
    animation: floatAnimation1 25s infinite alternate;
}

.shape-2 {
    top: 50%;
    right: 15%;
    width: 280px;
    height: 280px;
    background: var(--color-secondary);
    animation: floatAnimation2 20s infinite alternate;
}

.shape-3 {
    bottom: 15%;
    left: 15%;
    width: 320px;
    height: 320px;
    background: var(--color-accent-1);
    animation: floatAnimation3 22s infinite alternate;
}

.shape-4 {
    top: 35%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: var(--color-accent-2);
    animation: floatAnimation4 18s infinite alternate;
}

.shape-5 {
    bottom: 30%;
    right: 25%;
    width: 250px;
    height: 250px;
    background: var(--color-accent-3);
    animation: floatAnimation5 24s infinite alternate;
}

.shape-6 {
    top: 75%;
    left: 55%;
    width: 180px;
    height: 180px;
    background: rgba(255, 51, 102, 0.6);
    animation: floatAnimation6 30s infinite alternate;
}

.shape-7 {
    top: 15%;
    right: 30%;
    width: 220px;
    height: 220px;
    background: rgba(51, 204, 255, 0.6);
    animation: floatAnimation7 27s infinite alternate;
}

.shape-8 {
    top: 40%;
    left: 70%;
    width: 190px;
    height: 190px;
    background: rgba(255, 204, 0, 0.6);
    animation: floatAnimation8 23s infinite alternate;
}

.shape-9 {
    bottom: 20%;
    right: 60%;
    width: 230px;
    height: 230px;
    background: rgba(102, 255, 153, 0.6);
    animation: floatAnimation9 26s infinite alternate;
}

.shape-10 {
    top: 60%;
    left: 15%;
    width: 210px;
    height: 210px;
    background: rgba(204, 51, 255, 0.6);
    animation: floatAnimation10 21s infinite alternate;
}

/* Floating Animations */
@keyframes floatAnimation1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.1); }
}

@keyframes floatAnimation2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 50px) scale(0.9); }
}

@keyframes floatAnimation3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -30px) scale(1.15); }
}

@keyframes floatAnimation4 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, -40px) scale(0.85); }
}

@keyframes floatAnimation5 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(35px, 25px) scale(1.05); }
}

@keyframes floatAnimation6 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 30px) scale(1.2); }
}

@keyframes floatAnimation7 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, -35px) scale(0.9); }
}

@keyframes floatAnimation8 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-35px, -20px) scale(1.1); }
}

@keyframes floatAnimation9 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(0.95); }
}

@keyframes floatAnimation10 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-25px, -30px) scale(1.15); }
}

/* Header Styling */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 42px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 40px;
}

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

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 10px;
}

.nav-links a:hover:after, 
.nav-links a.active:after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.btn-contact {
    background: var(--gradient-primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
    background-size: 200% 100%;
    background-position: right bottom;
    margin-left: 0;
}

.btn-contact:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.4);
    background-position: left bottom;
}

.btn-contact:after {
    display: none !important;
}


.nav-links a.btn-contact {
    color: white !important;
    font-weight: 600;
}

/* Enhanced Contact Button */
.nav-links a.btn-contact {
    color: white !important;
    font-weight: 600;
    font-size: 16px;
    padding: 14px 32px !important;
    border-radius: 50px;
    background: var(--gradient-primary);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
    transition: all 0.3s ease;
    background-size: 200% auto;
    background-position: right center;
    display: inline-block;
    text-align: center;
}

.nav-links a.btn-contact:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.4);
    background-position: left center;
}

/* Remove the underline effect for contact button */
.nav-links a.btn-contact:after {
    display: none;
}

/* Contact button specific styles */
.btn-contact {
    text-decoration: none;
    display: inline-block;
    margin: 0;
    outline: none;
    border: none;
}

/* Make sure the nav links spacing is consistent */
.nav-links li {
    margin-left: 40px;
    display: flex;
    align-items: center;
}

.nav-links li:last-child {
    margin-left: 40px;
    display: inline-block;
}

/* Fix responsive styles for the contact button */
@media (max-width: 768px) {
    .nav-links a.btn-contact {
        margin: 10px 0;
        padding: 12px 30px;
    }
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Main Content */
.contact-page {
    padding-top: 130px;
    padding-bottom: 80px;
    position: relative;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.page-title h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-dark);
    position: relative;
    display: inline-block;
}

.page-title p {
    font-size: 1.2rem;
    color: var(--color-text);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.highlight {
    position: relative;
    z-index: 1;
    color: var(--color-primary);
    font-weight: 700;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 15px;
    background-color: rgba(255, 204, 0, 0.3);
    z-index: -1;
    transform: rotate(-1deg);
    display: block;
}

/* Cards & Content */
.contact-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    position: relative;
    margin-bottom: 60px;
}

.contact-form,
.company-info {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form:hover,
.company-info:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Form Styling */
.section-title {
    margin-top: 0;
    margin-bottom: 35px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

.accent-text {
    color: var(--color-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.15);
    background-color: #fff;
}

.form-group:focus-within label {
    color: var(--color-primary);
}

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

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gradient-primary);
    background-size: 200% auto;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 51, 102, 0.4);
    background-position: right center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Contact Info Styling */
.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item-icon {
    min-width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(204, 51, 255, 0.1));
    border-radius: 15px;
    margin-right: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item:hover .info-item-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
}

.info-item-icon i {
    color: var(--color-primary);
    font-size: 22px;
    transition: all 0.5s ease;
}

.info-item:hover .info-item-icon i {
    color: white;
}

.info-item-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.info-item-content p {
    margin: 0;
    line-height: 1.6;
    color: #666;
    font-size: 16px;
}

.info-item-content a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.info-item-content a:hover {
    color: var(--color-accent-3);
}

.info-item-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

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

/* Social Links */
.social-links-container {
    margin-top: 40px;
}

.social-links-container h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    font-size: 18px;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.linkedin {
    background: #0077B5;
}

.social-link.facebook {
    background: #4267B2;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-section {
    margin-top: 60px;
}

.map-container {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
}

/* Remove rainbow border animation */
.map-container::before {
    content: none;
}

.map-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .page-title h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.show {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .contact-form, 
    .company-info {
        padding: 30px;
    }

    .highlight::after {
        height: 10px;
    }

    .nav-links a.btn-contact {
        padding: 14px 36px !important;
        font-size: 16px;
        margin: 15px 0;
        width: 200px;
    }
}

