:root {
    --primary: #1E73BE;
    --secondary: #FFC600;
    --accent: #FF6B6B;
    --dark: #1A2B4A;
    --light: #F5F8FF;
    --text: #333;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(30, 115, 190, 0.15);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
}

/* Header Banner */
.contactBanner {
    background: linear-gradient(135deg, var(--primary) 0%, #0b4685 100%);
    text-align: center;
    padding: 100px 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

    .contactBanner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,128L48,144C96,160,192,192,288,186.7C384,181,480,139,576,138.7C672,139,768,181,864,186.7C960,192,1056,160,1152,138.7C1248,117,1344,107,1392,101.3L1440,96L1440,320L1392,320C1248,320,1152,320,1056,320C960,320,864,320,768,320C672,320,576,320,480,320C384,320,288,320,192,320C96,320,48,320,0,320Z"></path></svg>');
        background-size: cover;
        background-position: center;
        animation: wave 15s linear infinite;
    }

@keyframes wave {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-5%) translateY(-5%);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

.contactBanner h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
}

.contactBanner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Floating Elements */
.floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

    .floating:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .floating:nth-child(2) {
        width: 60px;
        height: 60px;
        top: 20%;
        right: 10%;
        animation-delay: 1s;
    }

    .floating:nth-child(3) {
        width: 40px;
        height: 40px;
        bottom: 20%;
        left: 15%;
        animation-delay: 2s;
    }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Main Container */
.contactUsMain {
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.conatcM {
    display: flex;
    flex-wrap: wrap;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fadeInUp 1.2s ease;
    position: relative;
    z-index: 1;
}

/* Left Section */
.leftCt {
    flex: 1 1 40%;
    background: linear-gradient(160deg, var(--primary), var(--dark));
    color: var(--white);
    padding: 50px 35px;
    position: relative;
    overflow: hidden;
}

    .leftCt::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1248,320,1152,320,1056,320C960,320,864,320,768,320C672,320,576,320,480,320C384,320,288,320,192,320C96,320,48,320,0,320Z"></path></svg>');
        background-size: cover;
        background-position: center;
    }

    .leftCt h2 {
        font-size: 1.8rem;
        border-left: 5px solid var(--secondary);
        padding-left: 15px;
        margin-bottom: 30px;
        position: relative;
    }

.infoBox {
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    padding-top: 10px;
}

    .infoBox::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: left 0.5s;
    }

    .infoBox:hover::before {
        left: 100%;
    }

    .infoBox i {
        font-size: 1.5rem;
        color: var(--secondary);
        margin-right: 20px;
        width: 40px;
        text-align: center;
    }

    .infoBox a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.2s ease;
    }

        .infoBox a:hover {
            color: var(--secondary);
        }

.leftCt hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.leftCt h4 {
    font-size: 1rem;
    font-weight: 500;
}

    .leftCt h4 span {
        color: var(--secondary);
        font-weight: 600;
    }

/* Right Section */
.rightCt {
    flex: 1 1 60%;
    padding: 50px 40px 20px 40px;
    position: relative;
}

    .rightCt::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: var(--secondary);
        border-radius: 0 0 0 100%;
        opacity: 0.1;
    }

    .rightCt h2 {
        color: var(--primary);
        font-size: 23px;
        margin-bottom: 30px;
        border-left: 5px solid var(--secondary);
        padding-left: 15px;
        position: relative;
    }

.infoCard {
    background: var(--light);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

    .infoCard:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(30, 115, 190, 0.1);
    }

    .infoCard h3 {
        color: var(--primary);
        font-size: 1.2rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }

        .infoCard h3 i {
            margin-right: 10px;
            color: var(--secondary);
        }

    .infoCard p {
        color: #444;
        line-height: 1.7;
        font-size: 1rem;
        margin: 0;
    }

    .infoCard a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

        .infoCard a:hover {
            text-decoration: underline;
        }

.highlight {
    background: rgba(255, 198, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid var(--secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive */
@media (max-width: 900px) {
    .conatcM {
        flex-direction: column;
    }

    .leftCt, .rightCt {
        flex: 1 1 100%;
    }

    .leftCt {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .contactBanner h1 {
        font-size: 2.5rem;
    }

    .contactBanner {
        padding: 80px 20px;
    }
}

@media (max-width: 600px) {
    .contactBanner h1 {
        font-size: 2rem;
    }

    .contactBanner p {
        font-size: 1rem;
    }

    .leftCt, .rightCt {
        padding: 30px 25px;
    }

    .infoBox {
        padding: 15px;
    }
}
