  :root {
      --primary-color: #B55DCD;
      --primary-dark: #9b47b4;
      --primary-light: #e8d7ec;
      --secondary-color: #2d2d2d;
      --text-dark: #222224;
      --text-light: #515151;
      --white: #ffffff;
      --light-bg: #f8f9fa;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-weight: 700;
      line-height: 1.2;
  }

  h1 {
      font-size: 3.5rem;
  }

  h2 {
      font-size: 2.5rem;
  }

  h3 {
      font-size: 2rem;
  }

  h4 {
      font-size: 1.5rem;
  }

  p {
      color: var(--text-light);
      line-height: 1.8;
  }

  .btn {
      padding: 12px 32px;
      border-radius: 8px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: var(--transition);
  }

  .btn-primary-custom {
      background: #724EBF;
      border: 2px solid #724EBF;
      color: var(--white);
  }

  .btn-primary-custom:hover {
    color: white;
      background: #724EBF;
      border-color: #724EBF;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(181, 93, 205, 0.2);
  }

  .btn-outline-custom {
      background: transparent;
      border: 2px solid #724EBF;
      color: #724EBF;
  }

  .btn-outline-custom:hover {
      background: var(--white);
      color: #724EBF;
      transform: translateY(-3px);
  }

  .section-padding {
      padding: 80px 0;
  }


  /* ===== HERO SECTION ===== */
  .hero-wrapper {
      min-height: 60vh;
      background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
          url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      /* margin-top: 76px; */
  }

  .hero-content h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #fff, #e6e6e6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
  }

  .hero-content p {
      font-size: 1.25rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto;
  }

  /* ===== CONTACT SECTION ===== */
  #contactus {
      background: var(--light-bg);
      position: relative;
      overflow: hidden;
  }

  #contactus::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="%23e8d7ec" opacity="0.1"/></svg>');
      background-size: cover;
      z-index: 0;
  }

  #contactus>* {
      position: relative;
      z-index: 1;
  }

  .contact-info-box {
      background: var(--white);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: var(--shadow);
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
  }

  .contact-info-box:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
  }

  .contact-info-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: #724EBF;
  }

  .contact-info-box h4 {
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 2px solid var(--primary-light);
  }

  .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid var(--primary-light);
  }

  .contact-info-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
  }

  .contact-info-icon {
      width: 50px;
      height: 50px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: var(--transition);
  }

  .contact-info-item:hover .contact-info-icon {
      background: #724EBF;
      transform: rotateY(180deg);
  }

  .contact-info-icon i {
      color: #724EBF;
      font-size: 1.25rem;
      transition: var(--transition);
  }

  .contact-info-item:hover .contact-info-icon i {
      color: var(--white);
  }

  .contact-info-label {
      font-size: 0.875rem;
      color: var(--text-light);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.25rem;
  }

  .contact-info-text {
      color: var(--text-dark);
      font-weight: 500;
      line-height: 1.6;
  }

  .contact-info-text a {
      color: var(--text-dark);
      text-decoration: none;
      transition: var(--transition);
  }

  .contact-info-text a:hover {
      color: #724EBF;
  }

  /* ===== CONTACT FORM ===== */
  .contact-form-box {
      background: var(--white);
      border-radius: 20px;
      padding: 2.5rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
  }

  .contact-form-box::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--primary-light), transparent);
      border-radius: 0 20px 0 0;
  }

  .contact-form-box h4 {
      color: var(--text-dark);
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 1rem;
  }

  .contact-form-box h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background: #724EBF;
      border-radius: 2px;
  }

  .form-control {
      padding: 15px;
      border: 2px solid var(--primary-light);
      border-radius: 10px;
      transition: var(--transition);
      font-size: 1rem;
  }

  .form-control:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 0.25rem rgba(181, 93, 205, 0.25);
  }

  .form-control::placeholder {
      color: var(--text-light);
  }

  textarea.form-control {
      min-height: 150px;
      resize: vertical;
  }

  .contact-form-box .btn {
      background: #724EBF;
      color: var(--white);
      border: none;
      padding: 15px 40px;
      font-weight: 600;
      width: 100%;
      border-radius: 10px;
      transition: var(--transition);
  }

  .contact-form-box .btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(181, 93, 205, 0.2);
  }

  /* ===== MAP SECTION ===== */
  .map-section {
      position: relative;
      padding: 0;
  }

  .map-section .container {
      position: relative;
      z-index: 2;
      padding-top: 4rem;
      padding-bottom: 4rem;
  }

  .map-title {
      text-align: center;
      margin-bottom: 3rem;
  }

  .map-title h3 {
      color: var(--text-dark);
      margin-bottom: 1rem;
  }

  .map-title p {
      color: var(--text-light);
      max-width: 600px;
      margin: 0 auto;
  }

  .map-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
  }

  .map-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(181, 93, 205, 0.1), transparent);
      z-index: 1;
      pointer-events: none;
  }

  .map-container iframe {
      width: 100%;
      height: 500px;
      border: none;
      display: block;
  }

 
  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 1200px) {
      h1 {
          font-size: 3rem;
      }

      h2 {
          font-size: 2.25rem;
      }

      h3 {
          font-size: 1.75rem;
      }
  }

  @media (max-width: 992px) {
      .hero-content h1 {
          font-size: 2.5rem;
      }

      .hero-content p {
          font-size: 1.125rem;
      }

      .contact-info-box,
      .contact-form-box {
          padding: 2rem;
      }

      .map-container iframe {
          height: 400px;
      }
  }

  @media (max-width: 768px) {
      .hero-content h1 {
          font-size: 2rem;
      }

      .hero-content p {
          font-size: 1rem;
      }

      h2 {
          font-size: 1.75rem;
      }

      h3 {
          font-size: 1.5rem;
      }

      .section-padding {
          padding: 60px 0;
      }

      .contact-info-item {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.75rem;
      }

      .contact-info-icon {
          width: 40px;
          height: 40px;
      }

      .navbar-nav .nav-link {
          padding: 10px 0 !important;
      }

      .map-container iframe {
          height: 350px;
      }
  }

  @media (max-width: 576px) {
      h1 {
          font-size: 1.75rem;
      }

      .hero-content h1 {
          font-size: 1.5rem;
      }

      .btn {
          padding: 10px 24px;
      }

      .contact-info-box,
      .contact-form-box {
          padding: 1.5rem;
      }

      .contact-info-icon {
          width: 35px;
          height: 35px;
      }

      .contact-info-icon i {
          font-size: 1rem;
      }

      .form-control {
          padding: 12px;
      }

      .map-container iframe {
          height: 300px;
      }

   
  }

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

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

  .fade-in-up {
      animation: fadeInUp 0.6s ease-out forwards;
  }

  .stagger-children>* {
      opacity: 0;
      animation: fadeInUp 0.6s ease-out forwards;
  }

  .stagger-children>*:nth-child(1) {
      animation-delay: 0.1s;
  }

  .stagger-children>*:nth-child(2) {
      animation-delay: 0.2s;
  }

  .stagger-children>*:nth-child(3) {
      animation-delay: 0.3s;
  }

  .stagger-children>*:nth-child(4) {
      animation-delay: 0.4s;
  }