/*contact cascading stylesheet*/

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #6C68B1;
			--yellow: #F2B30C;
            --secondary: #4A93C8;
            --accent: #ff6b8b;
            --dark: #2d2b55;
            --light: #f8f9fa;
            --gray: #6c757d;
			--lighter-blue:#0765A5;
			
        }

        body {
            background: linear-gradient(135deg, #103E71 0%, #0E308B 50%, #0E62C7 100%);
            color: var(--primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .contact-container {
            max-width: 1600px;
            width: 100%;
            display: grid;
            grid-template-columns: minmax(150px, 1fr) 2fr;
            gap: 40px;
            margin: 0 auto;
        }

        @media (max-width: 968px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
            width: 100%;
        }

        .logo img{
            width: 6%;
            height: 6%;
            color: var(--light);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .logo {
            color: var(--yellow);
			margin-top: 20px;
        }

        .tagline {
            font-size: 1.2rem;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-info {
            background: rgba(38,33,140,0.70);
            backdrop-filter: blur(10px);
            --webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: transform 0.3s ease;
        }

        .contact-info:hover {
            transform: translateY(-5px);
        }

        .contact-form {
            background: rgba(38,33,140,0.70);
            backdrop-filter: blur(10px);
            --webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: transform 0.3s ease;
        }

        .contact-form:hover {
            transform: translateY(-5px);
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--yellow);
            position: relative;
            display: inline-block;
        }

        h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 4px;
            background: var(--yellow);
            border-radius: 2px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            padding: 20px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .info-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: var(--grey);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
        }

        .info-content h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--yellow);
        }

        .info-content p {
            color: var(--grey);
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--light);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
			color: var(--yellow);
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--yellow);
        }

        input, textarea, select {
            width: 100%;
            padding: 15px 20px;
            background: rgba(103, 153, 228, 0.07);
            border: 2px solid rgba(121, 160, 214, 0.1);
            border-radius: 12px;
            font-size: 1rem;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--light);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--yellow);
            border: 2px solid rgba(121, 160, 214, 0.3);
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(108, 99, 255, 0.4);
        }

        .submit-btn:active {
            transform: translateY(2px);
        }

        .map-container {
            grid-column: 1 / -1;
            margin-top: 40px;
            background: rgba(45, 43, 85, 0.7);
            backdrop-filter: blur(10px);
            --webkit-backdrop-filter:blur(10px);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .map-placeholder {
            height: 300px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 20px;
        }

        .map-placeholder i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.8;
        }

       footer {
            margin-top: 60px;
            text-align: center;
            color: var(--gray);
            font-size: 0.9rem;
            padding: 20px;
            width: 100%;
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.1);
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }

        /* Generate multiple floating elements with different sizes and positions */
        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-duration: 25s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-duration: 30s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-duration: 20s;
        }

        .floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 70%;
            animation-duration: 35s;
        }

        .floating-element:nth-child(5) {
            width: 70px;
            height: 70px;
            top: 40%;
            left: 40%;
            animation-duration: 28s;
        }

