   
:root {
  --main-color: #799ab2;
  --dark-color: #1B4774;
  --light-color: #B5D8EB;
}

    
body {
      font-family: 'Cairo', sans-serif;
      background: linear-gradient(to bottom, #e9f1f7, #ffffff);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      margin: 0;
}
   
*{
      box-sizing: border-box;
}

 .main-container {
      background: #ffffff;
      border-radius: 50px;
      padding: 40px 30px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      text-align: center;
      max-width: 650px;
      width: 100%;
      margin: auto;
    }


 .mainTitle{
    
     color:var(--dark-color);
    }

    
  .main-image {
      max-width: 180px;
      height: auto;
      margin-bottom: 25px;
    }

    .titleOne {
        color: var(--main-color);

    }

    .btn-custom {
      width: 180px; 
      height: 48px; 
      margin: 10px;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease-in-out;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .btn-custom:active {
      transform: scale(0.96);
      box-shadow: none;
    }


    .mainButton{
      background-color: var( --dark-color);
      border: none;
      color:var(--light-color);
    }

    .mainButton:hover {


      background-color: var(--light-color);
            border: 2px solid ver(--dark-color);
            color: var(--dark-color)

    }

      .secondaryButton{
      border: 2px solid var(--dark-color);
      color:var(--dark-color);
    }

    .secondaryButton:hover {


      background-color: var(--dark-color);
            border: none;
            color: var(--light-color)

    }


     footer {
      background: linear-gradient(to bottom, #e9f1f7, #ffffff);
      color: var(--dark-color);
      text-align: center;
      padding: 10px 15px;
      font-size: 0.9rem;
      border-top: 1px solid #799ab2;
      position: fixed;
      bottom: 0;
      width: 100%;
      z-index: 100;
    }


