/* General Styling */
body {
    font-family: 'Tahoma', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(10px, 3vw, 20px) clamp(20px, 5vw, 40px);
    background-color: #2980b9;
    color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Logo styling with animation */
header .logo {
    font-size: clamp(24px, 4vw, 30px);
    font-weight: bold;
    animation: fadeIn 1s ease-in-out;
}

/* Logo styling with creative animation */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 12px 20px;
    overflow: hidden;
    
}

.logo-img {
    height: 100px;
    width: auto;
}

/* Add fadeIn animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Navigation styling with animated hover effect */
header nav a {
    margin: 0 20px;
    color: white;
    text-decoration: none;
    position: relative;
    padding: 8px 16px;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
    overflow: hidden;
}

/* Active state styling */
header nav a.active {
    color: #000;
    font-weight: bold;
}

/* New hover animation */
header nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    z-index: 1;
}

header nav a:hover::before {
    left: 100%;
    transition: 0.5s;
    transform: skewX(-15deg);
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg, 
        rgba(128, 0, 128, 0.5),  /* Purple with 0.5 opacity */
        rgba(230, 57, 70, 0.5)  /* Light purple with 0.5 opacity */
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}

header nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Active link animation */
@keyframes activeGlow {
    0% {
        box-shadow: 0 0 5px rgba(230, 57, 70, 0.2);
        border-color: rgba(230, 57, 70, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(230, 57, 70, 0.4);
        border-color: rgba(230, 57, 70, 1);
    }
    100% {
        box-shadow: 0 0 5px rgba(230, 57, 70, 0.2);
        border-color: rgba(230, 57, 70, 0.6);
    }
}

/* Smooth transition for nav items */
header nav {
    display: flex;
    gap: 10px;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

/* Scale effect on hover */
header nav a:hover {
    transform: translateY(-2px);
    color: #fff;
    background: rgba(230, 57, 70, 0.1);
}

/* Keep active link styled on hover */
header nav a.active:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

header .cta {
    background-color: #e63946;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .cta:hover {
    background-color: #d02735;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero h1 {
    font-size: 36px;
    margin: 20px 0;
    color: #e63946;
}

.hero p {
    font-size: 18px;
    color: #555;
}

/* Core Offerings Section */
.core-offerings {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #fff;
}

.core-offerings .service {
    width: 30%;
    background-color: #ddd;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.core-offerings .service h3 {
    font-size: 24px;
    color: #e63946;
}

.core-offerings .service p {
    color: #555;
}

/* Footer Styling */
footer {
    background: rgba(41, 128, 185, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 2rem;
    position: relative;
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

footer .footer-info {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

footer a {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}
footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg, 
        rgba(128, 0, 128, 0.5),  /* Purple with 0.5 opacity */
        rgba(230, 57, 70, 0.5)  /* Light purple with 0.5 opacity */
    );
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}
footer a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

footer span {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.1);
}

footer a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.footer-copyright {
    text-align: right;
    opacity: 0.9;
    font-size: 0.9rem;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 2rem;
}

/* Form Styling */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

form input, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

form button {
    background-color: #e63946;
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #d02735;
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-offerings {
        flex-direction: column;
        align-items: center;
    }

    .core-offerings .service {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Logo styling with creative animation */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 12px 20px;
    overflow: hidden;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.company-name {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #ffffff, #e63946);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s infinite;
    background-size: 200% auto;
    letter-spacing: 1px;
}

.ventures {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    transform: translateX(0);
    transition: all 0.3s ease;
}

/* Logo hover effects */
.logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.logo:hover .ventures {
    transform: translateX(5px);
    letter-spacing: 4px;
    color: #e63946;
}

/* Logo animations */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        padding: 8px 15px;
    }
    
    .company-name {
        font-size: 24px;
    }
    
    .ventures {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    footer .footer-info {
        justify-content: center;
    }

    footer .footer-info {
        justify-content: center;
    }

    .footer-copyright {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        padding: 1rem 0 0;
        margin-top: 1rem;
    }
}

/* Contact Section Styling */
.contact {
    padding: clamp(40px, 5vw, 60px) clamp(20px, 3vw, 40px);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(41, 128, 185, 0.2), rgba(230, 57, 70, 0.2));
    z-index: 1;
}

.contact h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, #2980b9, #e63946);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s infinite;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: clamp(1rem, 3vw, 1.5rem);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.info-card i {
    font-size: 2rem;
    color: #2980b9;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.info-card:hover i {
    transform: scale(1.2);
    color: #e63946;
}

/* Contact Form Styling */
.contact-form {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    width: 100%;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0056b3;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(41, 128, 185, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: formFloat 3s ease-in-out infinite;
}

.form-group {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 0.3rem 0;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(41, 128, 185, 0.2);
    border-radius: 12px;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(41, 128, 185, 0.2);
    transform: translateY(-2px);
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: #e63946;
    transform: translateY(-2px);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(90deg, #2980b9, #e63946);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(90deg, #2980b9, #e63946);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-form button::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;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.contact-form button:hover::before {
    left: 100%;
}

@keyframes formFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Input focus animations */
.form-group input:focus + label,
.form-group textarea:focus + label {
    color: #e63946;
    transform: translateY(-2px);
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(41, 128, 185, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2980b9;
    box-shadow: 0 0 10px rgba(41, 128, 185, 0.2);
}

.contact-form button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(90deg, #2980b9, #e63946);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.cta-message {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.1), rgba(230, 57, 70, 0.1));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmerText {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem;
    }

    .form-group {
        margin-bottom: 2rem;
        gap: 0.6rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
    }
}

/* Quote Link Styling */
.quote-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 20px 0;
    text-align: center;
}

.quote-link:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.quote-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f8f9fa;
}

.quote-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav a {
        padding: 0.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    header .logo {
        font-size: 20px;
    }

    .contact h1 {
        font-size: 2rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }
}

/* Add smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
}
