  * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: linear-gradient(to right, #e3f2fd, #fce4ec);
            color: #333;
        }

        header {
            background-color: #0d47a1;
            /* padding: 20px 40px; */
            display: flex;
            align-items: center;
            /* justify-content: space-between; */
            flex-wrap: wrap;
            animation: slideDown 0.6s ease-in-out;
            justify-content: center;
            padding: 0px 0px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: relative;
        }

        header .logo img {
            max-height: 120px;
            width: auto;
        }

        header nav {
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
        }

        header nav a {
            margin-left: 20px;
            text-decoration: none;
            font-weight: 500;
            color: #333;
        }

        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
        }

        nav {
            display: flex;
            flex-wrap: wrap;
        }

        nav a {
            color: white;
            text-decoration: none;
            margin-left: 25px;
            font-size: 1rem;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #bbdefb;
        }

        .container {
            max-width: 1100px;
            margin: 40px auto;
            background: white;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.8s ease-in-out;
        }

        h1 {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.4rem;
            color: #0d47a1;
        }

        img.flag {
            display: block;
            margin: 0 auto 25px;
            border-radius: 8px;
            width: 180px;
        }

        ul {
            list-style: none;
            font-size: 1rem;
            padding-left: 20px;
        }

        ul li {
            margin: 10px 0;
            position: relative;
        }

        ul li::before {
            position: absolute;
            left: -20px;
        }

        iframe {
            width: 100%;
            height: 350px;
            border: none;
            border-radius: 12px;
            margin-top: 25px;
        }

        form {
            text-align: center;
            margin-top: 40px;
        }

        button {
            background-color: #0d47a1;
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
        }

        button:hover {
            background-color: #1565c0;
        }

        footer {
            background-color: #0d47a1;
            color: white;
            padding: 40px 20px;
            text-align: center;
            margin-top: 60px;
            animation: slideUp 0.8s ease-in-out;
        }

        footer p {
            font-size: 1rem;
            margin-bottom: 10px;
        }

        footer a {
            color: #bbdefb;
            text-decoration: none;
            margin: 0 12px;
            transition: color 0.3s;
        }

        footer a:hover {
            color: white;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }

            nav a {
                margin: 10px 0 0 0;
            }

            h1 {
                font-size: 1.8rem;
            }

            .container {
                padding: 20px;
            }

            button {
                width: 100%;
            }

            footer a {
                display: block;
                margin: 8px 0;
            }
        }

        /* Contact Section */
        .contact-section {
            padding: 50px 20px;
            background-color: #f5f5f5;
            animation: fadeInUp 1s ease;
        }

        .contact-container {
            max-width: 700px;
            margin: auto;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .section-title {
            text-align: center;
            color: #1976d2;
            margin-bottom: 25px;
            font-size: 28px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            font-size: 16px;
        }

        .contact-form button {
            background-color: #1976d2;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #0f5bb5;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 600px) {
            .contact-section {
                padding: 30px 10px;
            }

            .section-title {
                font-size: 24px;
            }
        }

        .alert {
            padding: 15px 20px;
            border-radius: 8px;
            margin: 20px auto;
            max-width: 700px;
            font-size: 1rem;
            animation: fadeIn 0.5s ease-in-out;
        }

        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border-left: 5px solid #28a745;
        }

        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 5px solid #dc3545;
        }

        .list-unstyled a {
            text-decoration: none;
            /* underline hatana */
            color: #333;
            /* normal color */
            font-weight: 500;
            /* thoda bold */
            display: inline-block;
            /* padding ke liye */
            padding: 5px 0;
            transition: color 0.3s ease;
            /* smooth hover color change */
        }

        .list-unstyled a:hover {
            color: #007bff;
            /* hover pe blue ya apna choice */
        }
/* Contact Form Loader Styles */
.contact-form button {
    position: relative;
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover:not(:disabled) {
    background: #005bb5;
}

.contact-form button:disabled {
    background: #999;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Loader animation inside button */
.contact-form button.loading {
    pointer-events: none;
    opacity: 0.9;
}

.contact-form button.loading::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    transform: translateY(-50%);
}

  h1.fw-bold.display-5.text-primary {
    /* font-weight: 700; */
    /* font-size: 2.5rem; */
    /* color: #0d6efd; */

    font-weight: 700;
    font-size: 2.5rem;
    color: #0d6efd;
    font-family: Arial, sans-serif;
  }
  
   .Banner_728x90 {
            padding: 0% 0% 0% 15%;
            height: 130px;
        }

        .Banner_320x50 {
            height: 130px;
            display: none !important;
            text-align: center;
            padding: 0px 0px 0px 0px;
        }

        @media (max-width: 992px) {
            .Banner_728x90 {
                display: none !important;
            }

            .Banner_320x50 {
                display: block !important;
            }

            .Native {
                display: block !important;
            }
            .sidebar-left,
            .sidebar-right {
                display: none !important;
            }

        }

        .Banner_728x90,
        .Banner_320x50,
        .Banner_160x300,
        .Banner_160x600 {
            margin: 0 auto;
        }

        .sidebar-left,
        .sidebar-right {
            position: fixed;
            top: 80px;
            width: 230px;
            z-index: 10;
        }

        .sidebar-left {
            left: 15px;
        }

        .sidebar-right {
            right: 15px;
        }


@keyframes spin {
    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}
