    /* General Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: 0.3s;
      text-decoration: none;
    }

    html, body {
      height: 100%;
      width: 100%;
      overflow-x: hidden; /* Hide horizontal scrollbar */
    }

    body{
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f9f9ff;
    }

    html::selection {
      background-color: #11938d;
      color: #fff;
    }



/*    navigation bar start*/

    .header {
      height: 100vh;
      width: 100%;
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("assets/contact.jpg");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px;
      background: #00000067;
      backdrop-filter: blur(5px);
    }

    .logo_section {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      width: 100px;
      height: 100px;
    }

    .logo1 {
      transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    }

    .logo_section:hover .logo1 {
      margin-top: -12.8vh;
    }

    .logo_section img {
      width: 100px;
    }

    .menu {
      display: flex;
      align-items: center;
    }

    .menu ul {
      display: flex;
      list-style: none;
    }

    .menu ul li {
      margin: 0 15px;
      position: relative;
      overflow: hidden;
      height: 20px;
    }

    .menu ul li a {
      display: block;
      transition: all cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
    }

    .menu ul li:hover a {
      margin-top: -25px;
    }

    .menu ul a {
      text-decoration: none;
      font-size: 18px;
      color: #ffffff;
      font-family: Calibri, sans-serif;
    }

    .hamburger {
      display: none;
      font-size: 24px;
      color: #fff;
      cursor: pointer;
    }

    .main-content {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%;
      width: 100%;
      text-align: center;
      flex-direction: column;
    }

    .main-content h1 {
      font-size: 80px;
      margin-top: -300px;
      font-family: Montserrat, sans-serif;
      font-weight: 900;
      color: #ffffff;
      animation: fadeInDown 1s ease;
    }

    .main-content p {
      font-size: 25px;
      font-family: calibri;
      font-weight: 100;
      color: #ffffff;
      margin-top: 20px;
      width: 900px;
      animation: fadeInUp 1s ease 0.3s both;
    }

    /* Responsive Design */
    @media (max-width: 768px) {

      .logo_section {
      width: 80px;
      height: 80px;
    }
      .logo_section:hover .logo1 {
      margin-top: -12.8vh;
    }

    .logo_section img {
      width: 80px;
    }
      .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 20px;
        background: #00000067;
        backdrop-filter: blur(5px);
        width: 200px;
        padding: 10px;
      }

      .menu.active {
        display: flex;
      }

      .menu ul {
        flex-direction: column;
      }

      .menu ul li {
        margin: 10px 0;
      }

      .hamburger {
        display: block;
      }

      .main-content h1 {
        font-size: 50px;
      }

      .main-content p {
        font-size: 20px;
      }

  

      @keyframes slideInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
    }

    @media (max-width: 576px) {
      .main-content h1 {
        font-size: 40px;
        margin-top: -200px;

      }

      .main-content p {
        font-size: 16px;
        width: 400px;
      }
    }




/*    navigation bar end*/






.container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }



            .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 50px 0;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            animation: slideInLeft 0.8s ease;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            animation: slideInRight 0.8s ease;
        }
        
        .info-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .info-card h3 {
            color: #0e7c77;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .info-card h3 i {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        
        .contact-details {
            list-style: none;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-details li i {
            color: #0e7c77;
            margin-right: 10px;
            font-size: 1.2rem;
            width: 25px;
            text-align: center;
        }

               .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #0e7c77;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: #11938d;
            transform: scale(1.1);
        }
        
        form {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2f2e41;
        }

        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        select option:hover {
      background-color: red;
      color: white; /* Text color ko bhi white set karenge, taki readability ho */
    }
        
input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #0e7c77;
            box-shadow: 0 0 0 3px rgba(14, 124, 119, 0.2);
        }
        
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        button {
            background: #0e7c77;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
        }
        
        button:hover {
            background: #11938d;
            transform: translateY(-2px);
        }
        
        button i {
            margin-left: 8px;
        }
        
        .map-container {
            margin-top: 50px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            animation: fadeIn 1s ease 0.5s both;
        }
        
        .map-container iframe {
            width: 100%;
            height: 400px;
            border: none;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
         @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(80px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .success-message {
            display: none;
            background:#28a745;
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin-top: 20px;
            text-align: center;
            animation: fadeIn 0.5s ease;
        }


                @media (max-width: 768px) {
            .contact_heading h1 {
                font-size: 2.2rem;
            }
            
            .contact_heading p {
                font-size: 1rem;
            }
            
            .contact-container {
                flex-direction: column;
            }

            .contact_heading {
            color: white;
            text-align: center;
            position: relative;
            top: 180px;
            overflow: hidden;
        }
        }

     /* Footer Section */
    footer {
      background-color: #333;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      position: relative;
      top: 50px;
    }

    .footer-content {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-section {
      flex: 1;
      min-width: 200px;
      margin-bottom: 20px;
    }

    .footer-section h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #0e7c77;
    }

    .footer-section .p {
/*      margin-top: 10px;*/
      margin-bottom: 10px;
      font-size: 14px;
      color: #ccc;
      text-decoration: none;
      display: block;
    }

    .footer-section .p1 {
/*      margin-top: 10px;*/
      margin-bottom: 10px;
      font-size: 14px;
      color: #ccc;
      text-decoration: none;
    }

    .footer-section .p1:hover , .footer-section .p:hover{
      color: #0e7c77;
    }

    .footer-section ul {
       list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 0px; /* row-gap column-gap */
  max-width: 300px; /* यह width आपके content के अनुसार adjust करें */
  margin: 0 auto;
    }

    .footer-section ul li {
      margin-bottom: 10px;
      flex: 0 0 calc(33.33% - 20px);
    }

    .footer-section ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-section ul li a:hover {
      color: #0e7c77;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .social-icons a {
      color: #fff;
      font-size: 20px;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #0e7c77;
    }

    .footer-bottom {
      margin-top: 40px;
      font-size: 14px;
      color: #ccc;
    }

    /* Responsive Footer */
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .footer-section {
        min-width: 100%;
      }
    }
