/* 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 creative animation */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding: 12px 20px;
    overflow: hidden;
    
}

.logo-img {
    height: 100px;
    width: auto;
}
/* Logo styling with animation */
header .logo {
    font-size: clamp(24px, 4vw, 30px);
    font-weight: bold;
    animation: fadeIn 1s ease-in-out;
}

/* 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;
}

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 a {
        display: inline-flex;
    }

    footer span {
        display: inline-flex;
    }

    .footer-copyright {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.2);
        padding: 1rem 0 0;
        margin-top: 1rem;
    }
}

/* About Us Section Styling */
.about-us {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.about-us::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;
}

.about-us h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    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;
}

.overview {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.overview:hover {
    transform: translateY(-5px);
}

.overview h2 {
    color: #2980b9;
    font-size: 1.8rem;
    margin: 1.5rem 0;
    position: relative;
    padding-left: 1rem;
}

.overview h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(to bottom, #2980b9, #e63946);
    border-radius: 2px;
}

.overview p {
    color: #34495e;
    line-height: 1.8;
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.overview p:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.overview strong {
    color: #e63946;
    font-weight: 600;
}

/* Animations */
@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-us {
        padding: 40px 20px;
    }

    .about-us h1 {
        font-size: 2rem;
    }

    .overview {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .overview h2 {
        font-size: 1.5rem;
    }

    .overview p {
        padding: 0.8rem;
    }
}

/* Media Queries */
@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;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    header .logo {
        font-size: 20px;
    }
}
