﻿body {
      margin: 0;
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }
    header {
      background: #0077b6;
      color: #fff;
      padding: 15px 0;
      text-align: center;
    }
    nav {
      background: #023e8a;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
    }
    nav a {
      color: #fff;
      padding: 14px 20px;
      text-decoration: none;
      transition: background 0.3s;
    }
    nav a:hover {
      background: #0096c7;
    }
    .hero {
      background: url('../images/vidya/education.jpg') no-repeat center center/cover;
      color: white;
      height: 40vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
    }
    .hero h1 {
      font-size: 2.5rem;
      background: rgba(0, 0, 0, 0.6);
      padding: 15px 25px;
      border-radius: 10px;
    }
    section {
      padding: 50px 20px;
      max-width: 1100px;
      margin: auto;
    }
    section h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #0077b6;
    }
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }
    .contact-info, .contact-form {
      flex: 1 1 450px;
      background: #f9f9f9;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .contact-info h3 {
      margin-bottom: 15px;
      color: #023e8a;
    }
    .contact-info p {
      margin: 8px 0;
    }
    .contact-form form {
      display: flex;
      flex-direction: column;
    }
    .contact-form input, 
    .contact-form textarea {
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }
    .contact-form button {
      background: #0077b6;
      color: #fff;
      padding: 12px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-size: 1rem;
      transition: background 0.3s;
    }
    .contact-form button:hover {
      background: #0096c7;
    }
    .map {
      margin-top: 40px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .map iframe {
      border: 0;
    }
    footer {
      background: #023e8a;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 20px;
    }

    .contact-hero.hero {
      width: min(100% - 48px, 1180px);
      min-height: 300px;
      margin: 28px auto 0;
      padding: 44px;
      justify-content: flex-start;
      text-align: left;
      border-radius: 18px;
      background:
        linear-gradient(90deg, rgba(2, 62, 138, 0.92) 0%, rgba(0, 119, 182, 0.72) 48%, rgba(0, 119, 182, 0.16) 100%),
        url('../images/home/slider/slider2.jpg') center 42%/cover;
      box-shadow: 0 18px 45px rgba(2, 62, 138, 0.18);
    }
    .contact-hero.hero h1 {
      max-width: 540px;
      margin: 0;
      padding: 0;
      background: transparent;
      border-radius: 0;
      font-size: clamp(2.3rem, 5vw, 4.2rem);
      line-height: 1;
      text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
    }
    @media (max-width: 760px) {
      .contact-hero.hero {
        width: min(100% - 28px, 1180px);
        min-height: 240px;
        padding: 30px 22px;
      }
    }


